diff --git a/README.md b/README.md index f39622f..25cce03 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,4 @@ -*Hier Logo* + --- # BitBiome - TextAdventure ## What is the game about? diff --git a/src/main/resources/gameconfig.json b/src/main/resources/gameconfig.json index cb08775..f3021c1 100644 --- a/src/main/resources/gameconfig.json +++ b/src/main/resources/gameconfig.json @@ -1,55 +1,47 @@ { - "shopitems": [ - { - "name": "Holz", - "amount": 10, - "gold": 10 - }, - { - "name": "Heiliges Schwert der Engel", - "amount": 1, - "gold": 1000 - }, - { - "name": "Stein", - "amount": 5, - "gold": 100 - } - ], - "locations": [ - { - "name": "Wald", - "items": [ - "Holz", - "Stein" - ], - "mobs": [ - { - "name": "Big Foot", - "hp": 50, - "damage": "10-15", - "items": [ - "Fell" - ] - } - ] - }, - { - "name": "Strand", - "items": [ - "Holz", - "Stein" - ], - "mobs": [ - { - "name": "Big Foot", - "hp": 50, - "damage": "10-15", - "items": [ - "Fell" - ] - } - ] - } - ] + "shopitems": [ + { + "gold": 100, + "amount": 500, + "name": "Fell" + }, + { + "gold": 1000, + "amount": 1, + "name": "Heiliges Schwert der Engel" + }, + { + "gold": 2, + "amount": 1500, + "name": "Stein" + } + ], + "locations": [ + { + "mobs": [{ + "damage": "10-15", + "name": "Big Foot", + "hp": 50, + "items": ["Fell"] + }], + "name": "Wald", + "items": [ + "Holz", + "Stein" + ] + }, + { + "mobs": [{ + "damage": "10-15", + "name": "Big Foot", + "hp": 50, + "items": ["Fell"] + }], + "name": "Strand", + "items": [ + "Holz", + "Stein" + ] + } + ] } \ No newline at end of file