From 2ed6a506ad4facf4b5a0517e4d84b72218afb99c Mon Sep 17 00:00:00 2001 From: Orotheim <81803907+Orotheim@users.noreply.github.com> Date: Wed, 21 Aug 2024 17:12:06 +0100 Subject: [PATCH] adds recipe includes a lot of mushrooms and also a mushroom bowl to make. its basically just a bunch of shrooms mixed together --- .../food_and_drinks/recipes/recipes_ported.dm | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/GainStation13/code/modules/food_and_drinks/recipes/recipes_ported.dm b/GainStation13/code/modules/food_and_drinks/recipes/recipes_ported.dm index 22f2e2c2..cb1aab3c 100644 --- a/GainStation13/code/modules/food_and_drinks/recipes/recipes_ported.dm +++ b/GainStation13/code/modules/food_and_drinks/recipes/recipes_ported.dm @@ -111,3 +111,16 @@ ) result = /obj/item/reagent_containers/food/snacks/cinammonbun subcategory = CAT_PASTRY + +//GS Food + +/datum/crafting_recipe/food/lavaland_soup + name = "Lavaland Stew" + reqs = list( + /obj/item/reagent_containers/food/snacks/grown/ash_flora/mushroom_leaf = 1, + /obj/item/reagent_containers/food/snacks/grown/ash_flora/mushroom_stem = 1, + /obj/item/reagent_containers/food/snacks/grown/ash_flora/cactus_fruit = 2, + /obj/item/reagent_containers/glass/bowl/mushroom_bowl = 1 + ) + result = /obj/item/reagent_containers/food/tribal/soup + subcategory = CAT_PRIMAL \ No newline at end of file