From: Nim <128169402+Nimfar11@users.noreply.github.com> Date: Sat, 20 Jan 2024 23:38:10 +0000 (+0200) Subject: Add snake kebab (#24341) X-Git-Url: https://git.smokeofanarchy.ru/gitweb.cgi?a=commitdiff_plain;h=6a0c8004923769a3cb5db88c4fb602c9def12abd;p=space-station-14.git Add snake kebab (#24341) * add snake kebab * fix sprite * just meat --- diff --git a/Resources/Prototypes/Entities/Markers/Spawners/Random/Food_Drinks/food_single.yml b/Resources/Prototypes/Entities/Markers/Spawners/Random/Food_Drinks/food_single.yml index 36386b55a0..829ae92fc9 100644 --- a/Resources/Prototypes/Entities/Markers/Spawners/Random/Food_Drinks/food_single.yml +++ b/Resources/Prototypes/Entities/Markers/Spawners/Random/Food_Drinks/food_single.yml @@ -74,6 +74,7 @@ - FoodMeatLizardtailKebab - FoodMeatRatKebab - FoodMeatRatdoubleKebab + - FoodMeatSnakeKebab - FoodPizzaArnoldSlice - FoodTacoRat rareChance: 0.05 diff --git a/Resources/Prototypes/Entities/Objects/Consumable/Food/skewer.yml b/Resources/Prototypes/Entities/Objects/Consumable/Food/skewer.yml index 4cbd975a08..c313f2d046 100644 --- a/Resources/Prototypes/Entities/Objects/Consumable/Food/skewer.yml +++ b/Resources/Prototypes/Entities/Objects/Consumable/Food/skewer.yml @@ -157,3 +157,21 @@ - state: skewer-corn2 - state: skewer-mushroom2 - state: skewer-tomato1 + +- type: entity + name: snake kebab + parent: FoodSkewerBase + id: FoodMeatSnakeKebab + description: Snake meat on a stick. It's a little tough. + components: + - type: Sprite + layers: + - state: skewer + - state: skewer-snake1 + - state: skewer-snake2 + - type: SolutionContainerManager + solutions: + food: + reagents: + - ReagentId: Nutriment + Quantity: 12 diff --git a/Resources/Prototypes/Recipes/Cooking/meal_recipes.yml b/Resources/Prototypes/Recipes/Cooking/meal_recipes.yml index 8416430ceb..0b66658d16 100644 --- a/Resources/Prototypes/Recipes/Cooking/meal_recipes.yml +++ b/Resources/Prototypes/Recipes/Cooking/meal_recipes.yml @@ -1818,6 +1818,17 @@ FoodMeatLizard: 1 FoodKebabSkewer: 1 +- type: microwaveMealRecipe + id: RecipeSnakeKebab + name: snake kebab recipe + result: FoodMeatSnakeKebab + time: 15 + reagents: + Wine: 5 + solids: + FoodMeatSnake: 1 + FoodKebabSkewer: 1 + - type: microwaveMealRecipe id: RecipeFoodMealSoftTaco name: soft taco recipe diff --git a/Resources/Textures/Objects/Consumable/Food/skewer.rsi/meta.json b/Resources/Textures/Objects/Consumable/Food/skewer.rsi/meta.json index 0416b44460..03fb0afdae 100644 --- a/Resources/Textures/Objects/Consumable/Food/skewer.rsi/meta.json +++ b/Resources/Textures/Objects/Consumable/Food/skewer.rsi/meta.json @@ -93,6 +93,12 @@ }, { "name": "skewer-rat2" + }, + { + "name": "skewer-snake1" + }, + { + "name": "skewer-snake2" } ] } diff --git a/Resources/Textures/Objects/Consumable/Food/skewer.rsi/skewer-snake1.png b/Resources/Textures/Objects/Consumable/Food/skewer.rsi/skewer-snake1.png new file mode 100644 index 0000000000..a3a7ce808b Binary files /dev/null and b/Resources/Textures/Objects/Consumable/Food/skewer.rsi/skewer-snake1.png differ diff --git a/Resources/Textures/Objects/Consumable/Food/skewer.rsi/skewer-snake2.png b/Resources/Textures/Objects/Consumable/Food/skewer.rsi/skewer-snake2.png new file mode 100644 index 0000000000..aac0763b6e Binary files /dev/null and b/Resources/Textures/Objects/Consumable/Food/skewer.rsi/skewer-snake2.png differ