feat: Add seed game config entries (#51)

This commit is contained in:
demenik
2025-11-30 16:59:23 +01:00
parent 7337b553ba
commit 710f7beb5a
6 changed files with 110 additions and 32 deletions

View File

@@ -1,5 +1,25 @@
{
"grid_width": 12,
"grid_height": 4,
"pom_speed": 1.5
"pom_speed": 1.5,
"berry_seeds": [
{
"name": "Normale Samen",
"cost": 1,
"grants": 2,
"slice": "Seed1"
},
{
"name": "Super-Samen",
"cost": 3,
"grants": 9,
"slice": "Seed2"
},
{
"name": "Zauber-Samen",
"cost": 5,
"grants": 20,
"slice": "Seed3"
}
]
}