fixed basic movement, now add world loading

This commit is contained in:
anonoe 2026-02-09 22:44:11 +01:00
parent 34ba37312a
commit 50f37ebc5f
Signed by: anonoe
SSH key fingerprint: SHA256:OnAs6gNQelOnDiY5tBpDYKQiuTgBvnmIdMo5P09cdqg
23 changed files with 482 additions and 27 deletions

View file

@ -0,0 +1,24 @@
{
"schema": 1,
"npcdefs": [
{
"id": "npcdef:shopkeeper_basic",
"name": "Mara",
"dialogue": ["Welcome!", "Take a look at my goods."],
"shop_inventory": [
{ "item": "item:forest_herb", "price": 10 }
]
},
{
"id": "npcdef:trainer_story_01",
"name": "Rook",
"dialogue": ["If you want to pass, prove yourself."],
"battle": {
"team": ["creature:ember_fox"],
"reward_money": 25,
"on_win_unlocks": ["ability:dash"]
}
}
]
}