From: Redfire1331 <125223432+Redfire1331@users.noreply.github.com> Date: Thu, 20 Jun 2024 12:34:46 +0000 (-0400) Subject: made cup ramen eatable with anything with the fork component (#27826) X-Git-Url: https://git.smokeofanarchy.ru/gitweb.cgi?a=commitdiff_plain;h=68c414e8ed424b8801ad19a9087af9b581fc6030;p=space-station-14.git made cup ramen eatable with anything with the fork component (#27826) * made cup ramen eatable with anything with the fork component * removed extra png * made cupramen fillable with water, and made hot ramen dry ramen. --------- Co-authored-by: redfire1331 --- diff --git a/Resources/Prototypes/Entities/Objects/Consumable/Drinks/drinks.yml b/Resources/Prototypes/Entities/Objects/Consumable/Drinks/drinks.yml index 42814f7fd8..5c55f9ff17 100644 --- a/Resources/Prototypes/Entities/Objects/Consumable/Drinks/drinks.yml +++ b/Resources/Prototypes/Entities/Objects/Consumable/Drinks/drinks.yml @@ -2328,44 +2328,6 @@ - type: Sprite sprite: Objects/Consumable/Drinks/shake-white.rsi -- type: entity - parent: DrinkGlassBase - id: DrinkRamen - name: cup ramen - description: Just add 10ml boiling water. A taste that reminds you of your school years. - components: - - type: SolutionContainerManager - solutions: - drink: - maxVol: 40 #big cup - reagents: - - ReagentId: DryRamen - Quantity: 25 - - ReagentId: Soysauce - Quantity: 5 - - type: Sprite - sprite: Objects/Consumable/Drinks/ramen.rsi - - type: Tag - tags: - - Trash - - type: SpaceGarbage - -- type: entity - parent: DrinkRamen - id: DrinkHellRamen - name: hell ramen - description: Just add 10ml boiling water. Super spicy flavor. - components: - - type: SolutionContainerManager - solutions: - drink: - maxVol: 40 - reagents: - - ReagentId: DryRamen - Quantity: 25 - - ReagentId: CapsaicinOil - Quantity: 5 - - type: entity parent: DrinkGlass id: DrinkBloodGlass diff --git a/Resources/Prototypes/Entities/Objects/Consumable/Food/snacks.yml b/Resources/Prototypes/Entities/Objects/Consumable/Food/snacks.yml index 223ac6376c..d620dbda6f 100644 --- a/Resources/Prototypes/Entities/Objects/Consumable/Food/snacks.yml +++ b/Resources/Prototypes/Entities/Objects/Consumable/Food/snacks.yml @@ -272,6 +272,46 @@ - type: Food trash: FoodPacketSyndiTrash +- type: entity + parent: FoodSnackBase + id: DrinkRamen + name: cup ramen + description: A cheap food with a taste that reminds you of your school years. + components: + - type: RefillableSolution + solution: food + - type: InjectableSolution + solution: food + - type: SolutionContainerManager + solutions: + food: + maxVol: 50 #big cup + reagents: + - ReagentId: DryRamen + Quantity: 30 + - ReagentId: Soysauce + Quantity: 5 + - type: Sprite + state: ramen + - type: Food + trash: FoodPacketCupRamenTrash + +- type: entity + parent: DrinkRamen + id: DrinkHellRamen + name: hell ramen + description: Super spicy flavor! + components: + - type: SolutionContainerManager + solutions: + food: + maxVol: 50 + reagents: + - ReagentId: DryRamen + Quantity: 30 + - ReagentId: CapsaicinOil + Quantity: 5 + - type: entity name: chow mein parent: FoodSnackBase @@ -573,6 +613,15 @@ - type: Sprite state: syndicakes-trash +- type: entity + noSpawn: true + parent: FoodPacketTrash + id: FoodPacketCupRamenTrash + name: empty cup ramen + components: + - type: Sprite + state: ramen + - type: entity noSpawn: true parent: FoodPacketTrash diff --git a/Resources/Textures/Objects/Consumable/Drinks/ramen.rsi/meta.json b/Resources/Textures/Objects/Consumable/Drinks/ramen.rsi/meta.json deleted file mode 100644 index db0ac608ed..0000000000 --- a/Resources/Textures/Objects/Consumable/Drinks/ramen.rsi/meta.json +++ /dev/null @@ -1 +0,0 @@ -{"version": 1, "size": {"x": 32, "y": 32}, "license": "CC-BY-SA-3.0", "copyright": "https://github.com/discordia-space/CEV-Eris/raw/f7aa28fd4b4d0386c3393d829681ebca526f1d2d/icons/obj/drinks.dmi", "states": [{"name": "icon"}]} \ No newline at end of file diff --git a/Resources/Textures/Objects/Consumable/Food/snacks.rsi/meta.json b/Resources/Textures/Objects/Consumable/Food/snacks.rsi/meta.json index 6f69910384..4ff3230cae 100644 --- a/Resources/Textures/Objects/Consumable/Food/snacks.rsi/meta.json +++ b/Resources/Textures/Objects/Consumable/Food/snacks.rsi/meta.json @@ -1,12 +1,15 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/c6e3401f2e7e1e55c57060cdf956a98ef1fefc24, chinese from paradise, ticket by peptide, cnds-trash based on boritos-trash and syndicakes modified by potato1234x", + "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/c6e3401f2e7e1e55c57060cdf956a98ef1fefc24, chinese from paradise, ticket by peptide, cnds-trash based on boritos-trash and syndicakes modified by potato1234x, ramen from https://github.com/discordia-space/CEV-Eris/raw/f7aa28fd4b4d0386c3393d829681ebca526f1d2d/icons/obj/drinks.dmi", "size": { "x": 32, "y": 32 }, "states": [ + { + "name": "ramen" + }, { "name": "boritos" }, diff --git a/Resources/Textures/Objects/Consumable/Drinks/ramen.rsi/icon.png b/Resources/Textures/Objects/Consumable/Food/snacks.rsi/ramen.png similarity index 100% rename from Resources/Textures/Objects/Consumable/Drinks/ramen.rsi/icon.png rename to Resources/Textures/Objects/Consumable/Food/snacks.rsi/ramen.png