mirror of
https://github.com/Bubberstation/Bubberstation.git
synced 2026-07-16 18:45:22 +01:00
[MIRROR] Pies are now refactored for new foods. (#1677)
* Pies are now refactored for new foods. (#54751) Moves over pies to the newfood typepaths, as well as the few select pie slices. Co-authored-by: Jared-Fogle <35135081+Jared-Fogle@ users.noreply.github.com> * Pies are now refactored for new foods. Co-authored-by: ArcaneMusic <41715314+ArcaneMusic@users.noreply.github.com> Co-authored-by: Jared-Fogle <35135081+Jared-Fogle@ users.noreply.github.com>
This commit is contained in:
@@ -49,7 +49,7 @@
|
||||
name = "Pie"
|
||||
description = "3.14159? No! CentCom management wants edible pie! Ship a whole one."
|
||||
reward = 3142
|
||||
wanted_types = list(/obj/item/reagent_containers/food/snacks/pie)
|
||||
wanted_types = list(/obj/item/food/pie)
|
||||
|
||||
/datum/bounty/item/chef/salad
|
||||
name = "Salad or Rice Bowls"
|
||||
|
||||
@@ -84,4 +84,4 @@
|
||||
inhand_icon_state = "clownpriest"
|
||||
body_parts_covered = CHEST|GROIN|LEGS|ARMS
|
||||
flags_inv = HIDEJUMPSUIT
|
||||
allowed = list(/obj/item/megaphone/clown, /obj/item/soap, /obj/item/reagent_containers/food/snacks/pie/cream, /obj/item/bikehorn, /obj/item/bikehorn/golden, /obj/item/bikehorn/airhorn, /obj/item/instrument/bikehorn, /obj/item/reagent_containers/food/drinks/soda_cans/canned_laughter, /obj/item/toy/crayon, /obj/item/toy/crayon/spraycan, /obj/item/toy/crayon/spraycan/lubecan, /obj/item/grown/bananapeel, /obj/item/reagent_containers/food/snacks/grown/banana)
|
||||
allowed = list(/obj/item/megaphone/clown, /obj/item/soap, /obj/item/food/pie/cream, /obj/item/bikehorn, /obj/item/bikehorn/golden, /obj/item/bikehorn/airhorn, /obj/item/instrument/bikehorn, /obj/item/reagent_containers/food/drinks/soda_cans/canned_laughter, /obj/item/toy/crayon, /obj/item/toy/crayon/spraycan, /obj/item/toy/crayon/spraycan/lubecan, /obj/item/grown/bananapeel, /obj/item/reagent_containers/food/snacks/grown/banana)
|
||||
|
||||
@@ -104,7 +104,7 @@
|
||||
icon_state = "piedough"
|
||||
slice_path = /obj/item/reagent_containers/food/snacks/rawpastrybase
|
||||
slices_num = 3
|
||||
cooked_type = /obj/item/reagent_containers/food/snacks/pie/plain
|
||||
cooked_type = /obj/item/food/pie/plain
|
||||
list_reagents = list(/datum/reagent/consumable/nutriment = 9)
|
||||
w_class = WEIGHT_CLASS_NORMAL
|
||||
tastes = list("dough" = 1)
|
||||
|
||||
@@ -1,303 +0,0 @@
|
||||
|
||||
/obj/item/reagent_containers/food/snacks/pie
|
||||
icon = 'icons/obj/food/piecake.dmi'
|
||||
trash = /obj/item/trash/plate
|
||||
bitesize = 3
|
||||
w_class = WEIGHT_CLASS_NORMAL
|
||||
volume = 80
|
||||
list_reagents = list(/datum/reagent/consumable/nutriment = 10, /datum/reagent/consumable/nutriment/vitamin = 2)
|
||||
tastes = list("pie" = 1)
|
||||
foodtype = GRAIN
|
||||
|
||||
/obj/item/reagent_containers/food/snacks/pie/plain
|
||||
name = "plain pie"
|
||||
desc = "A simple pie, still delicious."
|
||||
icon_state = "pie"
|
||||
custom_food_type = /obj/item/reagent_containers/food/snacks/customizable/pie
|
||||
bonus_reagents = list(/datum/reagent/consumable/nutriment = 8, /datum/reagent/consumable/nutriment/vitamin = 1)
|
||||
tastes = list("pie" = 1)
|
||||
foodtype = GRAIN
|
||||
value = FOOD_JUNK
|
||||
|
||||
/obj/item/reagent_containers/food/snacks/pie/cream
|
||||
name = "banana cream pie"
|
||||
desc = "Just like back home, on clown planet! HONK!"
|
||||
icon_state = "pie"
|
||||
trash = /obj/item/trash/plate
|
||||
bonus_reagents = list(/datum/reagent/consumable/nutriment = 2, /datum/reagent/consumable/nutriment/vitamin = 2)
|
||||
list_reagents = list(/datum/reagent/consumable/nutriment = 6, /datum/reagent/consumable/banana = 5, /datum/reagent/consumable/nutriment/vitamin = 2)
|
||||
tastes = list("pie" = 1)
|
||||
foodtype = GRAIN | DAIRY | SUGAR
|
||||
var/stunning = TRUE
|
||||
value = FOOD_FAST
|
||||
|
||||
/obj/item/reagent_containers/food/snacks/pie/cream/throw_impact(atom/hit_atom, datum/thrownthing/throwingdatum)
|
||||
. = ..()
|
||||
if(!.) //if we're not being caught
|
||||
splat(hit_atom)
|
||||
|
||||
/obj/item/reagent_containers/food/snacks/pie/cream/proc/splat(atom/movable/hit_atom)
|
||||
if(isliving(loc)) //someone caught us!
|
||||
return
|
||||
var/turf/T = get_turf(hit_atom)
|
||||
new/obj/effect/decal/cleanable/food/pie_smudge(T)
|
||||
if(reagents?.total_volume)
|
||||
reagents.expose(hit_atom, TOUCH)
|
||||
if(isliving(hit_atom))
|
||||
var/mob/living/L = hit_atom
|
||||
if(stunning)
|
||||
L.Paralyze(20) //splat!
|
||||
L.adjust_blurriness(1)
|
||||
L.visible_message("<span class='warning'>[L] is creamed by [src]!</span>", "<span class='userdanger'>You've been creamed by [src]!</span>")
|
||||
playsound(L, "desecration", 50, TRUE)
|
||||
if(is_type_in_typecache(hit_atom, GLOB.creamable))
|
||||
hit_atom.AddComponent(/datum/component/creamed, src)
|
||||
qdel(src)
|
||||
|
||||
/obj/item/reagent_containers/food/snacks/pie/cream/nostun
|
||||
stunning = FALSE
|
||||
|
||||
/obj/item/reagent_containers/food/snacks/pie/berryclafoutis
|
||||
name = "berry clafoutis"
|
||||
desc = "No black birds, this is a good sign."
|
||||
icon_state = "berryclafoutis"
|
||||
bonus_reagents = list(/datum/reagent/consumable/nutriment = 1, /datum/reagent/consumable/nutriment/vitamin = 2)
|
||||
list_reagents = list(/datum/reagent/consumable/nutriment = 10, /datum/reagent/consumable/berryjuice = 5, /datum/reagent/consumable/nutriment/vitamin = 2)
|
||||
tastes = list("pie" = 1, "blackberries" = 1)
|
||||
foodtype = GRAIN | FRUIT | SUGAR
|
||||
value = FOOD_FAST
|
||||
|
||||
/obj/item/reagent_containers/food/snacks/pie/bearypie
|
||||
name = "beary pie"
|
||||
desc = "No brown bears, this is a good sign."
|
||||
icon_state = "bearypie"
|
||||
bonus_reagents = list(/datum/reagent/consumable/nutriment = 2, /datum/reagent/consumable/nutriment/protein = 2, /datum/reagent/consumable/nutriment/vitamin = 3)
|
||||
list_reagents = list(/datum/reagent/consumable/nutriment = 10, /datum/reagent/consumable/nutriment/protein = 5, /datum/reagent/consumable/nutriment/vitamin = 2)
|
||||
tastes = list("pie" = 1, "meat" = 1, "salmon" = 1)
|
||||
foodtype = GRAIN | SUGAR | MEAT | FRUIT
|
||||
value = FOOD_EXOTIC
|
||||
|
||||
/obj/item/reagent_containers/food/snacks/pie/meatpie
|
||||
name = "meat-pie"
|
||||
icon_state = "meatpie"
|
||||
desc = "An old barber recipe, very delicious!"
|
||||
bonus_reagents = list(/datum/reagent/consumable/nutriment/protein = 2, /datum/reagent/consumable/nutriment/vitamin = 4)
|
||||
tastes = list("pie" = 1, "meat" = 1)
|
||||
foodtype = GRAIN | MEAT
|
||||
value = FOOD_RARE
|
||||
|
||||
/obj/item/reagent_containers/food/snacks/pie/tofupie
|
||||
name = "tofu-pie"
|
||||
icon_state = "meatpie"
|
||||
desc = "A delicious tofu pie."
|
||||
bonus_reagents = list(/datum/reagent/consumable/nutriment = 1, /datum/reagent/consumable/nutriment/protein = 1, /datum/reagent/consumable/nutriment/vitamin = 2)
|
||||
tastes = list("pie" = 1, "tofu" = 1)
|
||||
foodtype = GRAIN
|
||||
|
||||
/obj/item/reagent_containers/food/snacks/pie/amanita_pie
|
||||
name = "amanita pie"
|
||||
desc = "Sweet and tasty poison pie."
|
||||
icon_state = "amanita_pie"
|
||||
bitesize = 4
|
||||
bonus_reagents = list(/datum/reagent/consumable/nutriment = 1, /datum/reagent/consumable/nutriment/vitamin = 4)
|
||||
list_reagents = list(/datum/reagent/consumable/nutriment = 6, /datum/reagent/toxin/amatoxin = 3, /datum/reagent/drug/mushroomhallucinogen = 1, /datum/reagent/consumable/nutriment/vitamin = 4)
|
||||
tastes = list("pie" = 1, "mushroom" = 1)
|
||||
foodtype = GRAIN | VEGETABLES | TOXIC | GROSS
|
||||
value = FOOD_RARE
|
||||
|
||||
/obj/item/reagent_containers/food/snacks/pie/plump_pie
|
||||
name = "plump pie"
|
||||
desc = "I bet you love stuff made out of plump helmets!"
|
||||
icon_state = "plump_pie"
|
||||
bonus_reagents = list(/datum/reagent/consumable/nutriment = 1, /datum/reagent/consumable/nutriment/vitamin = 4)
|
||||
tastes = list("pie" = 1, "mushroom" = 1)
|
||||
foodtype = GRAIN | VEGETABLES
|
||||
value = FOOD_RARE
|
||||
|
||||
/obj/item/reagent_containers/food/snacks/pie/plump_pie/Initialize()
|
||||
. = ..()
|
||||
var/fey = prob(10)
|
||||
if(fey)
|
||||
name = "exceptional plump pie"
|
||||
desc = "Microwave is taken by a fey mood! It has cooked an exceptional plump pie!"
|
||||
bonus_reagents = list(/datum/reagent/consumable/nutriment = 1, /datum/reagent/medicine/omnizine = 5, /datum/reagent/consumable/nutriment/vitamin = 4)
|
||||
if(fey)
|
||||
reagents.add_reagent(/datum/reagent/medicine/omnizine, 5)
|
||||
|
||||
/obj/item/reagent_containers/food/snacks/pie/xemeatpie
|
||||
name = "xeno-pie"
|
||||
icon_state = "xenomeatpie"
|
||||
desc = "A delicious meatpie. Probably heretical."
|
||||
trash = /obj/item/trash/plate
|
||||
bonus_reagents = list(/datum/reagent/consumable/nutriment = 1, /datum/reagent/consumable/nutriment/protein = 4, /datum/reagent/consumable/nutriment/vitamin = 6)
|
||||
tastes = list("pie" = 1, "meat" = 1, "acid" = 1)
|
||||
foodtype = GRAIN | MEAT
|
||||
value = FOOD_EXOTIC
|
||||
|
||||
/obj/item/reagent_containers/food/snacks/pie/applepie
|
||||
name = "apple pie"
|
||||
desc = "A pie containing sweet sweet love...or apple."
|
||||
icon_state = "applepie"
|
||||
bonus_reagents = list(/datum/reagent/consumable/nutriment = 1, /datum/reagent/consumable/nutriment/vitamin = 3)
|
||||
tastes = list("pie" = 1, "apple" = 1)
|
||||
foodtype = GRAIN | FRUIT | SUGAR
|
||||
value = FOOD_RARE
|
||||
|
||||
/obj/item/reagent_containers/food/snacks/pie/cherrypie
|
||||
name = "cherry pie"
|
||||
desc = "Taste so good, make a grown man cry."
|
||||
icon_state = "cherrypie"
|
||||
bonus_reagents = list(/datum/reagent/consumable/nutriment = 1, /datum/reagent/consumable/nutriment/vitamin = 2)
|
||||
tastes = list("pie" = 7, "Nicole Paige Brooks" = 2)
|
||||
foodtype = GRAIN | FRUIT | SUGAR
|
||||
value = FOOD_RARE
|
||||
|
||||
/obj/item/reagent_containers/food/snacks/pie/pumpkinpie
|
||||
name = "pumpkin pie"
|
||||
desc = "A delicious treat for the autumn months."
|
||||
icon_state = "pumpkinpie"
|
||||
slice_path = /obj/item/reagent_containers/food/snacks/pumpkinpieslice
|
||||
slices_num = 5
|
||||
bonus_reagents = list(/datum/reagent/consumable/nutriment = 1, /datum/reagent/consumable/nutriment/vitamin = 5)
|
||||
tastes = list("pie" = 1, "pumpkin" = 1)
|
||||
foodtype = GRAIN | VEGETABLES
|
||||
value = FOOD_RARE
|
||||
|
||||
/obj/item/reagent_containers/food/snacks/pumpkinpieslice
|
||||
name = "pumpkin pie slice"
|
||||
desc = "A slice of pumpkin pie, with whipped cream on top. Perfection."
|
||||
icon = 'icons/obj/food/piecake.dmi'
|
||||
icon_state = "pumpkinpieslice"
|
||||
trash = /obj/item/trash/plate
|
||||
filling_color = "#FFA500"
|
||||
list_reagents = list(/datum/reagent/consumable/nutriment = 2)
|
||||
tastes = list("pie" = 1, "pumpkin" = 1)
|
||||
foodtype = GRAIN | VEGETABLES
|
||||
value = FOOD_JUNK
|
||||
|
||||
/obj/item/reagent_containers/food/snacks/pie/appletart
|
||||
name = "golden apple streusel tart"
|
||||
desc = "A tasty dessert that won't make it through a metal detector."
|
||||
icon_state = "gappletart"
|
||||
bonus_reagents = list(/datum/reagent/consumable/nutriment = 1, /datum/reagent/consumable/nutriment/vitamin = 4)
|
||||
list_reagents = list(/datum/reagent/consumable/nutriment = 8, /datum/reagent/gold = 5, /datum/reagent/consumable/nutriment/vitamin = 4)
|
||||
tastes = list("pie" = 1, "apple" = 1, "expensive metal" = 1)
|
||||
foodtype = GRAIN | FRUIT | SUGAR
|
||||
value = FOOD_EXOTIC
|
||||
|
||||
/obj/item/reagent_containers/food/snacks/pie/grapetart
|
||||
name = "grape tart"
|
||||
desc = "A tasty dessert that reminds you of the wine you didn't make."
|
||||
icon_state = "grapetart"
|
||||
bonus_reagents = list(/datum/reagent/consumable/nutriment = 1, /datum/reagent/consumable/nutriment/vitamin = 4)
|
||||
list_reagents = list(/datum/reagent/consumable/nutriment = 4, /datum/reagent/consumable/nutriment/vitamin = 4)
|
||||
tastes = list("pie" = 1, "grape" = 1)
|
||||
foodtype = GRAIN | FRUIT | SUGAR
|
||||
value = FOOD_RARE
|
||||
|
||||
/obj/item/reagent_containers/food/snacks/pie/mimetart
|
||||
name = "mime tart"
|
||||
desc = "..."
|
||||
icon_state = "mimetart"
|
||||
bonus_reagents = list(/datum/reagent/consumable/nutriment = 1, /datum/reagent/consumable/nutriment/vitamin = 4, /datum/reagent/consumable/nothing = 10)
|
||||
list_reagents = list(/datum/reagent/consumable/nutriment = 5, /datum/reagent/consumable/nutriment/vitamin = 5)
|
||||
tastes = list("nothing" = 3)
|
||||
foodtype = GRAIN
|
||||
value = FOOD_EXOTIC
|
||||
|
||||
/obj/item/reagent_containers/food/snacks/pie/berrytart
|
||||
name = "berry tart"
|
||||
desc = "A tasty dessert of many different small barries on a thin pie crust."
|
||||
icon_state = "berrytart"
|
||||
bonus_reagents = list(/datum/reagent/consumable/nutriment = 1, /datum/reagent/consumable/nutriment/vitamin = 4)
|
||||
list_reagents = list(/datum/reagent/consumable/nutriment = 3, /datum/reagent/consumable/nutriment/vitamin = 5)
|
||||
tastes = list("pie" = 1, "berries" = 2)
|
||||
foodtype = GRAIN | FRUIT
|
||||
value = FOOD_RARE
|
||||
|
||||
/obj/item/reagent_containers/food/snacks/pie/cocolavatart
|
||||
name = "chocolate lava tart"
|
||||
desc = "A tasty dessert made of chocolate, with a liquid core."
|
||||
icon_state = "cocolavatart"
|
||||
bonus_reagents = list(/datum/reagent/consumable/nutriment = 1, /datum/reagent/consumable/nutriment/vitamin = 4)
|
||||
list_reagents = list(/datum/reagent/consumable/nutriment = 4, /datum/reagent/consumable/nutriment/vitamin = 4)
|
||||
tastes = list("pie" = 1, "dark chocolate" = 3)
|
||||
foodtype = GRAIN | SUGAR
|
||||
value = FOOD_EXOTIC
|
||||
|
||||
/obj/item/reagent_containers/food/snacks/pie/blumpkinpie
|
||||
name = "blumpkin pie"
|
||||
desc = "An odd blue pie made with toxic blumpkin."
|
||||
icon_state = "blumpkinpie"
|
||||
slice_path = /obj/item/reagent_containers/food/snacks/blumpkinpieslice
|
||||
slices_num = 5
|
||||
bonus_reagents = list(/datum/reagent/consumable/nutriment = 3, /datum/reagent/consumable/nutriment/vitamin = 6)
|
||||
tastes = list("pie" = 1, "a mouthful of pool water" = 1)
|
||||
foodtype = GRAIN | VEGETABLES
|
||||
value = FOOD_EXOTIC
|
||||
|
||||
/obj/item/reagent_containers/food/snacks/blumpkinpieslice
|
||||
name = "blumpkin pie slice"
|
||||
desc = "A slice of blumpkin pie, with whipped cream on top. Is this edible?"
|
||||
icon = 'icons/obj/food/piecake.dmi'
|
||||
icon_state = "blumpkinpieslice"
|
||||
trash = /obj/item/trash/plate
|
||||
filling_color = "#1E90FF"
|
||||
list_reagents = list(/datum/reagent/consumable/nutriment = 2)
|
||||
tastes = list("pie" = 1, "a mouthful of pool water" = 1)
|
||||
foodtype = GRAIN | VEGETABLES
|
||||
value = FOOD_JUNK
|
||||
|
||||
/obj/item/reagent_containers/food/snacks/pie/dulcedebatata
|
||||
name = "dulce de batata"
|
||||
desc = "A delicious jelly made with sweet potatoes."
|
||||
icon_state = "dulcedebatata"
|
||||
slice_path = /obj/item/reagent_containers/food/snacks/dulcedebatataslice
|
||||
slices_num = 5
|
||||
bonus_reagents = list(/datum/reagent/consumable/nutriment = 4, /datum/reagent/consumable/nutriment/vitamin = 8)
|
||||
tastes = list("jelly" = 1, "sweet potato" = 1)
|
||||
foodtype = GRAIN | VEGETABLES | SUGAR
|
||||
value = FOOD_EXOTIC
|
||||
|
||||
/obj/item/reagent_containers/food/snacks/dulcedebatataslice
|
||||
name = "dulce de batata slice"
|
||||
desc = "A slice of sweet dulce de batata jelly."
|
||||
icon = 'icons/obj/food/piecake.dmi'
|
||||
icon_state = "dulcedebatataslice"
|
||||
trash = /obj/item/trash/plate
|
||||
filling_color = "#8B4513"
|
||||
list_reagents = list(/datum/reagent/consumable/nutriment = 2)
|
||||
tastes = list("jelly" = 1, "sweet potato" = 1)
|
||||
foodtype = GRAIN | VEGETABLES | SUGAR
|
||||
value = FOOD_JUNK
|
||||
|
||||
/obj/item/reagent_containers/food/snacks/pie/frostypie
|
||||
name = "frosty pie"
|
||||
desc = "Tastes like blue and cold."
|
||||
icon_state = "frostypie"
|
||||
bonus_reagents = list(/datum/reagent/consumable/nutriment = 4, /datum/reagent/consumable/nutriment/vitamin = 6)
|
||||
tastes = list("mint" = 1, "pie" = 1)
|
||||
foodtype = GRAIN | FRUIT | SUGAR
|
||||
value = FOOD_RARE
|
||||
|
||||
/obj/item/reagent_containers/food/snacks/pie/baklava
|
||||
name = "baklava"
|
||||
desc = "A delightful healthy snack made of nut layers with thin bread."
|
||||
icon_state = "baklava"
|
||||
slice_path = /obj/item/reagent_containers/food/snacks/baklavaslice
|
||||
slices_num = 6
|
||||
bonus_reagents = list(/datum/reagent/consumable/nutriment = 2, /datum/reagent/consumable/nutriment/vitamin = 6)
|
||||
tastes = list("nuts" = 1, "pie" = 1)
|
||||
foodtype = GRAIN
|
||||
value = FOOD_EXOTIC
|
||||
|
||||
/obj/item/reagent_containers/food/snacks/baklavaslice
|
||||
name = "baklava dish"
|
||||
desc = "A portion of a delightful healthy snack made of nut layers with thin bread"
|
||||
icon = 'icons/obj/food/piecake.dmi'
|
||||
icon_state = "baklavaslice"
|
||||
trash = /obj/item/trash/plate
|
||||
filling_color = "#1E90FF"
|
||||
tastes = list("nuts" = 1, "pie" = 1)
|
||||
foodtype = GRAIN
|
||||
value = FOOD_JUNK
|
||||
@@ -7,10 +7,10 @@
|
||||
name = "Banana cream pie"
|
||||
reqs = list(
|
||||
/datum/reagent/consumable/milk = 5,
|
||||
/obj/item/reagent_containers/food/snacks/pie/plain = 1,
|
||||
/obj/item/food/pie/plain = 1,
|
||||
/obj/item/reagent_containers/food/snacks/grown/banana = 1
|
||||
)
|
||||
result = /obj/item/reagent_containers/food/snacks/pie/cream
|
||||
result = /obj/item/food/pie/cream
|
||||
subcategory = CAT_PIE
|
||||
|
||||
/datum/crafting_recipe/food/meatpie
|
||||
@@ -18,83 +18,83 @@
|
||||
reqs = list(
|
||||
/datum/reagent/consumable/blackpepper = 1,
|
||||
/datum/reagent/consumable/salt = 1,
|
||||
/obj/item/reagent_containers/food/snacks/pie/plain = 1,
|
||||
/obj/item/food/pie/plain = 1,
|
||||
/obj/item/food/meat/steak/plain = 1
|
||||
)
|
||||
result = /obj/item/reagent_containers/food/snacks/pie/meatpie
|
||||
result = /obj/item/food/pie/meatpie
|
||||
subcategory = CAT_PIE
|
||||
|
||||
/datum/crafting_recipe/food/tofupie
|
||||
name = "Tofu pie"
|
||||
reqs = list(
|
||||
/obj/item/reagent_containers/food/snacks/pie/plain = 1,
|
||||
/obj/item/food/pie/plain = 1,
|
||||
/obj/item/food/tofu = 1
|
||||
)
|
||||
result = /obj/item/reagent_containers/food/snacks/pie/tofupie
|
||||
result = /obj/item/food/pie/tofupie
|
||||
subcategory = CAT_PIE
|
||||
|
||||
/datum/crafting_recipe/food/xenopie
|
||||
name = "Xeno pie"
|
||||
reqs = list(
|
||||
/obj/item/reagent_containers/food/snacks/pie/plain = 1,
|
||||
/obj/item/food/pie/plain = 1,
|
||||
/obj/item/food/meat/cutlet/xeno = 1
|
||||
)
|
||||
result = /obj/item/reagent_containers/food/snacks/pie/xemeatpie
|
||||
result = /obj/item/food/pie/xemeatpie
|
||||
subcategory = CAT_PIE
|
||||
|
||||
/datum/crafting_recipe/food/cherrypie
|
||||
name = "Cherry pie"
|
||||
reqs = list(
|
||||
/obj/item/reagent_containers/food/snacks/pie/plain = 1,
|
||||
/obj/item/food/pie/plain = 1,
|
||||
/obj/item/reagent_containers/food/snacks/grown/cherries = 1
|
||||
)
|
||||
result = /obj/item/reagent_containers/food/snacks/pie/cherrypie
|
||||
result = /obj/item/food/pie/cherrypie
|
||||
subcategory = CAT_PIE
|
||||
|
||||
/datum/crafting_recipe/food/berryclafoutis
|
||||
name = "Berry clafoutis"
|
||||
reqs = list(
|
||||
/obj/item/reagent_containers/food/snacks/pie/plain = 1,
|
||||
/obj/item/food/pie/plain = 1,
|
||||
/obj/item/reagent_containers/food/snacks/grown/berries = 1
|
||||
)
|
||||
result = /obj/item/reagent_containers/food/snacks/pie/berryclafoutis
|
||||
result = /obj/item/food/pie/berryclafoutis
|
||||
subcategory = CAT_PIE
|
||||
|
||||
/datum/crafting_recipe/food/bearypie
|
||||
name = "Beary Pie"
|
||||
reqs = list(
|
||||
/obj/item/reagent_containers/food/snacks/pie/plain = 1,
|
||||
/obj/item/food/pie/plain = 1,
|
||||
/obj/item/reagent_containers/food/snacks/grown/berries = 1,
|
||||
/obj/item/food/meat/steak/bear = 1
|
||||
)
|
||||
result = /obj/item/reagent_containers/food/snacks/pie/bearypie
|
||||
result = /obj/item/food/pie/bearypie
|
||||
subcategory = CAT_PIE
|
||||
|
||||
/datum/crafting_recipe/food/amanitapie
|
||||
name = "Amanita pie"
|
||||
reqs = list(
|
||||
/obj/item/reagent_containers/food/snacks/pie/plain = 1,
|
||||
/obj/item/food/pie/plain = 1,
|
||||
/obj/item/reagent_containers/food/snacks/grown/mushroom/amanita = 1
|
||||
)
|
||||
result = /obj/item/reagent_containers/food/snacks/pie/amanita_pie
|
||||
result = /obj/item/food/pie/amanita_pie
|
||||
subcategory = CAT_PIE
|
||||
|
||||
/datum/crafting_recipe/food/plumppie
|
||||
name = "Plump pie"
|
||||
reqs = list(
|
||||
/obj/item/reagent_containers/food/snacks/pie/plain = 1,
|
||||
/obj/item/food/pie/plain = 1,
|
||||
/obj/item/reagent_containers/food/snacks/grown/mushroom/plumphelmet = 1
|
||||
)
|
||||
result = /obj/item/reagent_containers/food/snacks/pie/plump_pie
|
||||
result = /obj/item/food/pie/plump_pie
|
||||
subcategory = CAT_PIE
|
||||
|
||||
/datum/crafting_recipe/food/applepie
|
||||
name = "Apple pie"
|
||||
reqs = list(
|
||||
/obj/item/reagent_containers/food/snacks/pie/plain = 1,
|
||||
/obj/item/food/pie/plain = 1,
|
||||
/obj/item/reagent_containers/food/snacks/grown/apple = 1
|
||||
)
|
||||
result = /obj/item/reagent_containers/food/snacks/pie/applepie
|
||||
result = /obj/item/food/pie/applepie
|
||||
subcategory = CAT_PIE
|
||||
|
||||
/datum/crafting_recipe/food/pumpkinpie
|
||||
@@ -102,10 +102,10 @@
|
||||
reqs = list(
|
||||
/datum/reagent/consumable/milk = 5,
|
||||
/datum/reagent/consumable/sugar = 5,
|
||||
/obj/item/reagent_containers/food/snacks/pie/plain = 1,
|
||||
/obj/item/food/pie/plain = 1,
|
||||
/obj/item/reagent_containers/food/snacks/grown/pumpkin = 1
|
||||
)
|
||||
result = /obj/item/reagent_containers/food/snacks/pie/pumpkinpie
|
||||
result = /obj/item/food/pie/pumpkinpie
|
||||
subcategory = CAT_PIE
|
||||
|
||||
/datum/crafting_recipe/food/goldenappletart
|
||||
@@ -113,10 +113,10 @@
|
||||
reqs = list(
|
||||
/datum/reagent/consumable/milk = 5,
|
||||
/datum/reagent/consumable/sugar = 5,
|
||||
/obj/item/reagent_containers/food/snacks/pie/plain = 1,
|
||||
/obj/item/food/pie/plain = 1,
|
||||
/obj/item/reagent_containers/food/snacks/grown/apple/gold = 1
|
||||
)
|
||||
result = /obj/item/reagent_containers/food/snacks/pie/appletart
|
||||
result = /obj/item/food/pie/appletart
|
||||
subcategory = CAT_PIE
|
||||
|
||||
/datum/crafting_recipe/food/grapetart
|
||||
@@ -124,10 +124,10 @@
|
||||
reqs = list(
|
||||
/datum/reagent/consumable/milk = 5,
|
||||
/datum/reagent/consumable/sugar = 5,
|
||||
/obj/item/reagent_containers/food/snacks/pie/plain = 1,
|
||||
/obj/item/food/pie/plain = 1,
|
||||
/obj/item/reagent_containers/food/snacks/grown/grapes = 3
|
||||
)
|
||||
result = /obj/item/reagent_containers/food/snacks/pie/grapetart
|
||||
result = /obj/item/food/pie/grapetart
|
||||
subcategory = CAT_PIE
|
||||
|
||||
/datum/crafting_recipe/food/mimetart
|
||||
@@ -136,10 +136,10 @@
|
||||
reqs = list(
|
||||
/datum/reagent/consumable/milk = 5,
|
||||
/datum/reagent/consumable/sugar = 5,
|
||||
/obj/item/reagent_containers/food/snacks/pie/plain = 1,
|
||||
/obj/item/food/pie/plain = 1,
|
||||
/datum/reagent/consumable/nothing = 5
|
||||
)
|
||||
result = /obj/item/reagent_containers/food/snacks/pie/mimetart
|
||||
result = /obj/item/food/pie/mimetart
|
||||
subcategory = CAT_PIE
|
||||
|
||||
/datum/crafting_recipe/food/berrytart
|
||||
@@ -148,10 +148,10 @@
|
||||
reqs = list(
|
||||
/datum/reagent/consumable/milk = 5,
|
||||
/datum/reagent/consumable/sugar = 5,
|
||||
/obj/item/reagent_containers/food/snacks/pie/plain = 1,
|
||||
/obj/item/food/pie/plain = 1,
|
||||
/obj/item/reagent_containers/food/snacks/grown/berries = 3
|
||||
)
|
||||
result = /obj/item/reagent_containers/food/snacks/pie/berrytart
|
||||
result = /obj/item/food/pie/berrytart
|
||||
subcategory = CAT_PIE
|
||||
|
||||
/datum/crafting_recipe/food/cocolavatart
|
||||
@@ -160,11 +160,11 @@
|
||||
reqs = list(
|
||||
/datum/reagent/consumable/milk = 5,
|
||||
/datum/reagent/consumable/sugar = 5,
|
||||
/obj/item/reagent_containers/food/snacks/pie/plain = 1,
|
||||
/obj/item/food/pie/plain = 1,
|
||||
/obj/item/reagent_containers/food/snacks/chocolatebar = 3,
|
||||
/obj/item/slime_extract = 1 //The reason you dont know how to make it!
|
||||
)
|
||||
result = /obj/item/reagent_containers/food/snacks/pie/cocolavatart
|
||||
result = /obj/item/food/pie/cocolavatart
|
||||
subcategory = CAT_PIE
|
||||
|
||||
/datum/crafting_recipe/food/blumpkinpie
|
||||
@@ -172,10 +172,10 @@
|
||||
reqs = list(
|
||||
/datum/reagent/consumable/milk = 5,
|
||||
/datum/reagent/consumable/sugar = 5,
|
||||
/obj/item/reagent_containers/food/snacks/pie/plain = 1,
|
||||
/obj/item/food/pie/plain = 1,
|
||||
/obj/item/reagent_containers/food/snacks/grown/blumpkin = 1
|
||||
)
|
||||
result = /obj/item/reagent_containers/food/snacks/pie/blumpkinpie
|
||||
result = /obj/item/food/pie/blumpkinpie
|
||||
subcategory = CAT_PIE
|
||||
|
||||
/datum/crafting_recipe/food/dulcedebatata
|
||||
@@ -185,16 +185,16 @@
|
||||
/datum/reagent/water = 5,
|
||||
/obj/item/reagent_containers/food/snacks/grown/potato/sweet = 2
|
||||
)
|
||||
result = /obj/item/reagent_containers/food/snacks/pie/dulcedebatata
|
||||
result = /obj/item/food/pie/dulcedebatata
|
||||
subcategory = CAT_PIE
|
||||
|
||||
/datum/crafting_recipe/food/frostypie
|
||||
name = "Frosty pie"
|
||||
reqs = list(
|
||||
/obj/item/reagent_containers/food/snacks/pie/plain = 1,
|
||||
/obj/item/food/pie/plain = 1,
|
||||
/obj/item/reagent_containers/food/snacks/grown/bluecherries = 1
|
||||
)
|
||||
result = /obj/item/reagent_containers/food/snacks/pie/frostypie
|
||||
result = /obj/item/food/pie/frostypie
|
||||
subcategory = CAT_PIE
|
||||
|
||||
/datum/crafting_recipe/food/baklava
|
||||
@@ -204,5 +204,5 @@
|
||||
/obj/item/reagent_containers/food/snacks/tortilla = 4, //Layers
|
||||
/obj/item/seeds/wheat/oat = 4
|
||||
)
|
||||
result = /obj/item/reagent_containers/food/snacks/pie/baklava
|
||||
result = /obj/item/food/pie/baklava
|
||||
subcategory = CAT_PIE
|
||||
|
||||
Reference in New Issue
Block a user