From: themias <89101928+themias@users.noreply.github.com> Date: Thu, 15 Aug 2024 19:30:08 +0000 (-0400) Subject: Cook-able cutlets for kebabs/tacos (#31048) X-Git-Url: https://git.smokeofanarchy.ru/gitweb.cgi?a=commitdiff_plain;h=f06176ac39760f4d7a9e3c5df3e55937873f4952;p=space-station-14.git Cook-able cutlets for kebabs/tacos (#31048) --- diff --git a/Resources/Prototypes/Entities/Objects/Consumable/Food/meat.yml b/Resources/Prototypes/Entities/Objects/Consumable/Food/meat.yml index d1e885080f..22ebbda7c9 100644 --- a/Resources/Prototypes/Entities/Objects/Consumable/Food/meat.yml +++ b/Resources/Prototypes/Entities/Objects/Consumable/Food/meat.yml @@ -1512,6 +1512,10 @@ sprite: sprite: Objects/Consumable/Food/skewer.rsi state: skewer-meat + - type: Construction + graph: Cutlet + node: start + defaultTarget: cutlet - type: entity name: raw bear cutlet @@ -1547,6 +1551,10 @@ name: food-sequence-burger-content-bear taco: name: food-sequence-content-bear + - type: Construction + graph: BearCutlet + node: start + defaultTarget: bear cutlet - type: entity name: raw penguin cutlet @@ -1580,6 +1588,10 @@ name: food-sequence-burger-content-penguin taco: name: food-sequence-content-penguin + - type: Construction + graph: PenguinCutlet + node: start + defaultTarget: penguin cutlet - type: entity name: raw chicken cutlet @@ -1618,6 +1630,10 @@ sprite: sprite: Objects/Consumable/Food/skewer.rsi state: skewer-meat + - type: Construction + graph: ChickenCutlet + node: start + defaultTarget: chicken cutlet - type: entity name: raw duck cutlet @@ -1656,6 +1672,10 @@ sprite: sprite: Objects/Consumable/Food/skewer.rsi state: skewer-meat + - type: Construction + graph: DuckCutlet + node: start + defaultTarget: duck cutlet - type: entity name: raw lizard cutlet @@ -1697,6 +1717,10 @@ sprite: sprite: Objects/Consumable/Food/skewer.rsi state: skewer-tail + - type: Construction + graph: LizardCutlet + node: start + defaultTarget: lizard cutlet - type: entity name: raw spider cutlet @@ -1728,6 +1752,10 @@ name: food-sequence-burger-content-spider taco: name: food-sequence-content-spider + - type: Construction + graph: SpiderCutlet + node: start + defaultTarget: spider cutlet - type: entity name: raw xeno cutlet @@ -1761,6 +1789,10 @@ name: food-sequence-content-xeno taco: name: food-sequence-content-xeno + - type: Construction + graph: XenoCutlet + node: start + defaultTarget: xeno cutlet - type: entity name: raw killer tomato cutlet @@ -1850,6 +1882,9 @@ sprite: sprite: Objects/Consumable/Food/meat.rsi state: cutlet-cooked + - type: Construction + graph: Cutlet + node: cutlet - type: entity name: bear cutlet @@ -1884,6 +1919,9 @@ name: food-sequence-burger-content-bear taco: name: food-sequence-content-bear + - type: Construction + graph: BearCutlet + node: bear cutlet - type: entity name: penguin cutlet @@ -1916,6 +1954,9 @@ name: food-sequence-burger-content-penguin taco: name: food-sequence-content-penguin + - type: Construction + graph: PenguinCutlet + node: penguin cutlet - type: entity name: chicken cutlet @@ -1953,6 +1994,9 @@ sprite: sprite: Objects/Consumable/Food/skewer.rsi state: skewer-meat + - type: Construction + graph: ChickenCutlet + node: chicken cutlet - type: entity name: duck cutlet @@ -1990,6 +2034,9 @@ sprite: sprite: Objects/Consumable/Food/skewer.rsi state: skewer-meat + - type: Construction + graph: DuckCutlet + node: duck cutlet - type: entity name: lizard cutlet @@ -2028,6 +2075,9 @@ sprite: sprite: Objects/Consumable/Food/skewer.rsi state: skewer-tail-cooked + - type: Construction + graph: LizardCutlet + node: lizard cutlet - type: entity name: spider cutlet @@ -2057,6 +2107,9 @@ entries: burger: name: food-sequence-burger-content-spider + - type: Construction + graph: SpiderCutlet + node: spider cutlet - type: entity name: xeno cutlet @@ -2086,3 +2139,6 @@ entries: burger: name: food-sequence-content-xeno + - type: Construction + graph: XenoCutlet + node: xeno cutlet \ No newline at end of file diff --git a/Resources/Prototypes/Recipes/Construction/Graphs/food/steak.yml b/Resources/Prototypes/Recipes/Construction/Graphs/food/steak.yml index bbf8f5ef54..4c10400331 100644 --- a/Resources/Prototypes/Recipes/Construction/Graphs/food/steak.yml +++ b/Resources/Prototypes/Recipes/Construction/Graphs/food/steak.yml @@ -173,3 +173,125 @@ - minTemperature: 345 - node: bacon entity: FoodMeatBaconCooked + +# cutlets + +- type: constructionGraph + id: Cutlet + start: start + graph: + - node: start + edges: + - to: cutlet + completed: + - !type:PlaySound + sound: /Audio/Effects/sizzle.ogg + steps: + - minTemperature: 335 + - node: cutlet + entity: FoodMeatCutletCooked + +- type: constructionGraph + id: BearCutlet + start: start + graph: + - node: start + edges: + - to: bear cutlet + completed: + - !type:PlaySound + sound: /Audio/Effects/sizzle.ogg + steps: + - minTemperature: 345 + - node: bear cutlet + entity: FoodMeatBearCutletCooked + +- type: constructionGraph + id: PenguinCutlet + start: start + graph: + - node: start + edges: + - to: penguin cutlet + completed: + - !type:PlaySound + sound: /Audio/Effects/sizzle.ogg + steps: + - minTemperature: 345 + - node: penguin cutlet + entity: FoodMeatPenguinCutletCooked + +- type: constructionGraph + id: ChickenCutlet + start: start + graph: + - node: start + edges: + - to: chicken cutlet + completed: + - !type:PlaySound + sound: /Audio/Effects/sizzle.ogg + steps: + - minTemperature: 345 + - node: chicken cutlet + entity: FoodMeatChickenCutletCooked + +- type: constructionGraph + id: DuckCutlet + start: start + graph: + - node: start + edges: + - to: duck cutlet + completed: + - !type:PlaySound + sound: /Audio/Effects/sizzle.ogg + steps: + - minTemperature: 335 + - node: duck cutlet + entity: FoodMeatDuckCutletCooked + +- type: constructionGraph + id: LizardCutlet + start: start + graph: + - node: start + edges: + - to: lizard cutlet + completed: + - !type:PlaySound + sound: /Audio/Effects/sizzle.ogg + steps: + - minTemperature: 345 + - node: lizard cutlet + entity: FoodMeatLizardCutletCooked + +- type: constructionGraph + id: SpiderCutlet + start: start + graph: + - node: start + edges: + - to: spider cutlet + completed: + - !type:PlaySound + sound: /Audio/Effects/sizzle.ogg + steps: + - minTemperature: 345 + - node: spider cutlet + entity: FoodMeatSpiderCutletCooked + +- type: constructionGraph + id: XenoCutlet + start: start + graph: + - node: start + edges: + - to: xeno cutlet + completed: + - !type:PlaySound + sound: /Audio/Effects/sizzle.ogg + steps: + - minTemperature: 345 + - node: xeno cutlet + entity: FoodMeatXenoCutletCooked \ No newline at end of file