From 1ef3f55a5eff056c005937439413b18b23ecd85e Mon Sep 17 00:00:00 2001 From: jc_gargma Date: Sun, 4 Feb 2024 00:24:11 -0800 Subject: Move the stirfry dishes to a single json to prevent superloading issues. --- json/items/comestible/stirfry.json | 40 +++++++++++++++++++++++++++++++++ json/items/comestible/veggy_dishes.json | 30 ------------------------- 2 files changed, 40 insertions(+), 30 deletions(-) create mode 100644 json/items/comestible/stirfry.json delete mode 100644 json/items/comestible/veggy_dishes.json diff --git a/json/items/comestible/stirfry.json b/json/items/comestible/stirfry.json new file mode 100644 index 0000000..9bda612 --- /dev/null +++ b/json/items/comestible/stirfry.json @@ -0,0 +1,40 @@ +[ + { + "type": "COMESTIBLE", + "id": "tofu_stirfry", + "name": { "str": "tofu stirfry", "str_pl": "tofu stirfry" }, + "weight": "135 g", + "color": "yellow", + "spoils_in": "4 days", + "comestible_type": "FOOD", + "symbol": "%", + "healthy": 1, + "calories": 525, + "charges": 4, + "description": "A tofu stirfry with rice and a sweet bold flavor sure to be on your mind through these dark days.", + "price": "12 USD", + "material": "veggy", + "volume": "1 L", + "flags": [ "EATEN_HOT" ], + "fun": 12, + "vitamins": [ [ "vitA", 2 ], [ "calcium", 7 ], [ "iron", 5 ], [ "vitC", 24 ] ] + }, + { + "type": "COMESTIBLE", + "id": "veggy_stirfry", + "looks_like": "tofu_stirfry", + "copy-from": "tofu_stirfry", + "name": { "str": "veggy stirfry", "str_pl": "veggy stirfry" }, + "description": "A vegetable stirfry with rice and a sweet bold flavor sure to be on your mind through these dark days." + }, + { + "type": "COMESTIBLE", + "id": "meat_stirfry", + "looks_like": "tofu_stirfry", + "copy-from": "tofu_stirfry", + "name": { "str": "meat stirfry", "str_pl": "meat stirfry" }, + "description": "A meat stirfry with rice and a sweet bold flavor sure to be on your mind through these dark days.", + "material": [ "flesh", "veggy" ], + "fun": 12 + } +] diff --git a/json/items/comestible/veggy_dishes.json b/json/items/comestible/veggy_dishes.json deleted file mode 100644 index 89c6830..0000000 --- a/json/items/comestible/veggy_dishes.json +++ /dev/null @@ -1,30 +0,0 @@ -[ - { - "type": "COMESTIBLE", - "id": "tofu_stirfry", - "name": { "str": "tofu stirfry", "str_pl": "tofu stirfry" }, - "weight": "135 g", - "color": "yellow", - "spoils_in": "4 days", - "comestible_type": "FOOD", - "symbol": "%", - "healthy": 1, - "calories": 525, - "charges": 4, - "description": "A tofu stirfry with rice and a sweet bold flavor sure to be on your mind through these dark days.", - "price": "12 USD", - "material": "veggy", - "volume": "1 L", - "flags": [ "EATEN_HOT" ], - "fun": 12, - "vitamins": [ [ "vitA", 2 ], [ "calcium", 7 ], [ "iron", 5 ], [ "vitC", 24 ] ] - }, - { - "type": "COMESTIBLE", - "id": "veggy_stirfry", - "looks_like": "tofu_stirfry", - "copy-from": "tofu_stirfry", - "name": { "str": "veggy stirfry", "str_pl": "veggy stirfry" }, - "description": "A vegetable stirfry with rice and a sweet bold flavor sure to be on your mind through these dark days." - } -] -- cgit v1.2.1