diff options
Diffstat (limited to 'content/encyclopediae')
| -rw-r--r-- | content/encyclopediae/crops.json | 14 | ||||
| -rw-r--r-- | content/encyclopediae/default_encyclopedia.json | 39 |
2 files changed, 27 insertions, 26 deletions
diff --git a/content/encyclopediae/crops.json b/content/encyclopediae/crops.json index 7e493b3..1fc5ea0 100644 --- a/content/encyclopediae/crops.json +++ b/content/encyclopediae/crops.json @@ -151,13 +151,13 @@ } }, "items": { - "radishseed": {"sprite": "seed", "action": ["build", ["plantedradishseed", ["Floor", "Soil"], ["Occupied", "Blocking"]]]}, - "radish": {"sprite": "food", "action": ["eat", 3]}, - "radishes": {"sprite": "food", "name": "radish", "entity": "radish", "action": ["eat", 3]}, - "eldritch_radish": {"sprite": "food", "name": "eldritch_radish", "action": ["eat", 20]}, - "carrotseed": {"sprite": "seed", "action": ["build", ["plantedcarrotseed", ["Floor", "Soil"], ["Occupied", "Blocking"]]]}, - "carrot": {"sprite": "food", "action": ["eat", 5]}, - "cottonseed": {"sprite": "seed", "action": ["build", ["plantedcottonseed", ["Floor", "Soil"], ["Occupied", "Blocking"]]]}, + "radishseed": {"sprite": "seed", "action": {"build": ["plantedradishseed", ["Floor", "Soil"], ["Occupied", "Blocking"]]}}, + "radish": {"sprite": "food", "action": {"eat": 3}}, + "radishes": {"sprite": "food", "name": "radish", "entity": "radish", "action": {"eat": 3}}, + "eldritch_radish": {"sprite": "food", "name": "eldritch_radish", "action": {"eat": 20}}, + "carrotseed": {"sprite": "seed", "action": {"build": ["plantedcarrotseed", ["Floor", "Soil"], ["Occupied", "Blocking"]]}}, + "carrot": {"sprite": "food", "action": {"eat": 5}}, + "cottonseed": {"sprite": "seed", "action": {"build": ["plantedcottonseed", ["Floor", "Soil"], ["Occupied", "Blocking"]]}}, "cotton": {"sprite": "cotton"}, "cottonyarn": {"sprite": "cottonyarn"}, "cottoncloth": {"sprite": "cottoncloth"} diff --git a/content/encyclopediae/default_encyclopedia.json b/content/encyclopediae/default_encyclopedia.json index 8ea6bcc..573fbfa 100644 --- a/content/encyclopediae/default_encyclopedia.json +++ b/content/encyclopediae/default_encyclopedia.json @@ -155,70 +155,71 @@ }, "items": { "pebble": {}, - "stone": {"action": ["build", ["builtwall", ["Floor"], ["Blocking"]]]}, - "sword": {"action": ["equip", { + "stone": {"action": {"build": ["builtwall", ["Floor"], ["Blocking"]]}}, + "sword": {"action": {"equip": { "slot": "hand", "stats": {"strength": 5} - }]}, + }}}, "eldritch_sword": { "sprite": "sword", "name": "eldritch sword", - "action": ["equip", { + "action": {"equip": { "slot": "hand", "stats": {"strength": 500} - }] + }} }, - "club": {"action": ["equip", { + "club": {"action": {"equip": { "slot": "hand", "stats": {"strength": 3} - }]}, + }}}, "armour": { "sprite": "armour", - "action": ["equip", { + "action": {"equip": { "slot": "body", "stats": {"defence": 3} - }]}, + }} + }, "pickaxe": { "sprite": "sword", - "action": ["equip", { + "action": {"equip": { "slot": "hand", "stats": {"mining": 5} - }] + }} }, "reddye": {"sprite": "bag"}, "greendye": {"sprite": "bag"}, "bluedye": {"sprite": "bag"}, "cape": { "sprite": "armour", - "action": ["equip", { + "action": {"equip": { "slot": "back", "stats": {}, "sprite": "grayplayer" - }] + }} }, "redcape": { "sprite": "armour", - "action": ["equip", { + "action": {"equip": { "slot": "back", "stats": {}, "sprite": "redplayer" - }] + }} }, "greencape": { "sprite": "armour", - "action": ["equip", { + "action": {"equip": { "slot": "back", "stats": {}, "sprite": "greenplayer" - }] + }} }, "bluecape": { "sprite": "armour", - "action": ["equip", { + "action": {"equip": { "slot": "back", "stats": {}, "sprite": "blueplayer" - }] + }} } } } |
