mirror of
https://github.com/Aurorastation/Aurora.3.git
synced 2026-08-30 16:38:22 +01:00
New food as well as updating lasagnas and pancakes (#18412)
* added a bunch of things * updated pancakes * more updates * updated bounty, made changelog
This commit is contained in:
@@ -337,3 +337,12 @@
|
||||
reagents = list(/singleton/reagent/nutriment/protein/egg = 6, /singleton/reagent/drink/ice = 5, /singleton/reagent/drink/milk/cream = 5, /singleton/reagent/sugar = 10)
|
||||
result = /obj/item/reagent_containers/food/snacks/sliceable/lady_lulaine
|
||||
reagent_mix = RECIPE_REAGENT_REPLACE //Simplify and replace
|
||||
|
||||
/singleton/recipe/pazillo
|
||||
appliance = OVEN
|
||||
fruit = list ("tomato" = 1 , "chickpeas" = 1, "onion" = 1)
|
||||
items = list(
|
||||
/obj/item/reagent_containers/food/snacks/sliceable/flatdough
|
||||
)
|
||||
result = /obj/item/reagent_containers/food/snacks/pazillo
|
||||
reagent_mix = RECIPE_REAGENT_REPLACE //Simplify and replace so it's not full of juice
|
||||
|
||||
@@ -177,3 +177,13 @@
|
||||
/obj/item/reagent_containers/food/snacks/egg
|
||||
)
|
||||
result = /obj/item/reagent_containers/food/snacks/aghrasshcake
|
||||
|
||||
/singleton/recipe/eyebowl
|
||||
appliance = SAUCEPAN | POT
|
||||
fruit = list("aghrassh nut" = 1, "tomato" = 1)
|
||||
reagents = list(/singleton/reagent/blackpepper = 2, /singleton/reagent/nutriment/protein/egg = 6)
|
||||
items = list(
|
||||
/obj/item/reagent_containers/food/snacks/meat
|
||||
)
|
||||
result = /obj/item/reagent_containers/food/snacks/sliceable/eyebowl
|
||||
reagent_mix = RECIPE_REAGENT_REPLACE
|
||||
|
||||
@@ -66,3 +66,33 @@
|
||||
appliance = OVEN
|
||||
items = list(/obj/item/reagent_containers/food/snacks/donkpocket/takoyaki)
|
||||
result = /obj/item/reagent_containers/food/snacks/donkpocket/takoyaki/warm
|
||||
|
||||
/singleton/recipe/meat_lasagna_tray
|
||||
appliance = OVEN
|
||||
fruit = list("tomato" = 3)
|
||||
items = list(
|
||||
/obj/item/reagent_containers/food/snacks/sliceable/flatdough,
|
||||
/obj/item/reagent_containers/food/snacks/sliceable/flatdough,
|
||||
/obj/item/reagent_containers/food/snacks/sliceable/flatdough,
|
||||
/obj/item/reagent_containers/food/snacks/meat,
|
||||
/obj/item/reagent_containers/food/snacks/meat,
|
||||
/obj/item/reagent_containers/food/snacks/cheesewedge,
|
||||
/obj/item/reagent_containers/food/snacks/cheesewedge,
|
||||
/obj/item/reagent_containers/food/snacks/cheesewedge
|
||||
)
|
||||
result = /obj/item/reagent_containers/food/snacks/sliceable/meat_lasagna_tray
|
||||
reagent_mix = RECIPE_REAGENT_REPLACE //Replacing the ingredients and filling in a bit extra for simplicity's sake
|
||||
|
||||
/singleton/recipe/veggie_lasagna_tray
|
||||
appliance = OVEN
|
||||
fruit = list("tomato" = 3, "eggplant" = 1, "onion" = 1, "mushroom" = 2)
|
||||
items = list(
|
||||
/obj/item/reagent_containers/food/snacks/sliceable/flatdough,
|
||||
/obj/item/reagent_containers/food/snacks/sliceable/flatdough,
|
||||
/obj/item/reagent_containers/food/snacks/sliceable/flatdough,
|
||||
/obj/item/reagent_containers/food/snacks/cheesewedge,
|
||||
/obj/item/reagent_containers/food/snacks/cheesewedge,
|
||||
/obj/item/reagent_containers/food/snacks/cheesewedge
|
||||
)
|
||||
result = /obj/item/reagent_containers/food/snacks/sliceable/veggie_lasagna_tray
|
||||
reagent_mix = RECIPE_REAGENT_REPLACE //Replacing the ingredients and filling in a bit extra for simplicity's sake
|
||||
|
||||
@@ -102,18 +102,6 @@
|
||||
result = /obj/item/reagent_containers/food/snacks/nugget
|
||||
result_quantity = 4
|
||||
|
||||
/singleton/recipe/lasagna
|
||||
appliance = OVEN
|
||||
fruit = list("tomato" = 2, "eggplant" = 1)
|
||||
items = list(
|
||||
/obj/item/reagent_containers/food/snacks/sliceable/flatdough,
|
||||
/obj/item/reagent_containers/food/snacks/sliceable/flatdough,
|
||||
/obj/item/reagent_containers/food/snacks/meat,
|
||||
/obj/item/reagent_containers/food/snacks/meat
|
||||
)
|
||||
result = /obj/item/reagent_containers/food/snacks/lasagna
|
||||
reagent_mix = RECIPE_REAGENT_REPLACE
|
||||
|
||||
/singleton/recipe/donerkebab
|
||||
fruit = list("tomato" = 1, "cabbage" = 1)
|
||||
reagents = list(/singleton/reagent/sodiumchloride = 1, /singleton/reagent/spacespice = 1)
|
||||
|
||||
@@ -29,14 +29,18 @@
|
||||
|
||||
/singleton/recipe/pancakes
|
||||
appliance = SKILLET
|
||||
reagents = list(/singleton/reagent/sugar = 5)
|
||||
items = list(
|
||||
/obj/item/reagent_containers/food/snacks/sliceable/flatdough
|
||||
)
|
||||
)
|
||||
result = /obj/item/reagent_containers/food/snacks/pancakes
|
||||
result_quantity = 1
|
||||
|
||||
/singleton/recipe/pancakes/berry
|
||||
/singleton/recipe/pancakes/berry //alternate way to get berry pancakes if you want to use actual berries and not syrup.
|
||||
fruit = list("berries" = 1)
|
||||
reagents = list(/singleton/reagent/sugar = 5)
|
||||
items = list(
|
||||
/obj/item/reagent_containers/food/snacks/sliceable/flatdough
|
||||
)
|
||||
result = /obj/item/reagent_containers/food/snacks/pancakes/berry
|
||||
|
||||
////////////////////////////////////////////WAFFLES////////////////////////////////////////////
|
||||
@@ -211,6 +215,11 @@
|
||||
)
|
||||
result = /obj/item/reagent_containers/food/snacks/sliceable/cake/NTellacheesecake
|
||||
|
||||
/singleton/recipe/cake/starcake
|
||||
fruit = list("orange" = 1)
|
||||
reagents = list(/singleton/reagent/nutriment/flour = 10, /singleton/reagent/sugar = 15, /singleton/reagent/nutriment/coco = 10, /singleton/reagent/drink/milk/cream = 5, /singleton/reagent/nutriment/protein/egg = 6)
|
||||
result = /obj/item/reagent_containers/food/snacks/sliceable/cake/starcake
|
||||
|
||||
//Predesigned pies
|
||||
//=======================
|
||||
/singleton/recipe/berryclafoutis
|
||||
|
||||
Reference in New Issue
Block a user