@@ -421,6 +421,15 @@ GLOBAL_LIST_INIT(cardboard_recipes, list ( \
|
||||
new/datum/stack_recipe("large box", /obj/structure/closet/cardboard, 4), \
|
||||
new/datum/stack_recipe("cardboard cutout", /obj/item/cardboard_cutout, 5), \
|
||||
null, \
|
||||
new /datum/stack_recipe("donut box", /obj/item/storage/fancy/donut_box), \
|
||||
new /datum/stack_recipe("donk-pockets box", /obj/item/storage/box/donkpockets), \
|
||||
new /datum/stack_recipe("donk-pockets spicy box", /obj/item/storage/box/donkpockets/donkpocketspicy), \
|
||||
new /datum/stack_recipe("donk-pockets teriyaki box", /obj/item/storage/box/donkpockets/donkpocketteriyaki), \
|
||||
new /datum/stack_recipe("donk-pockets pizza box", /obj/item/storage/box/donkpockets/donkpocketpizza), \
|
||||
new /datum/stack_recipe("donk-pockets berry box", /obj/item/storage/box/donkpockets/donkpocketberry), \
|
||||
new /datum/stack_recipe("donk-pockets honk box", /obj/item/storage/box/donkpockets/donkpockethonk), \
|
||||
new /datum/stack_recipe("monkey cube box", /obj/item/storage/box/monkeycubes),
|
||||
null, \
|
||||
new/datum/stack_recipe("colored brown", /obj/item/storage/box/brown), \
|
||||
new/datum/stack_recipe("colored green", /obj/item/storage/box/green), \
|
||||
new/datum/stack_recipe("colored red", /obj/item/storage/box/blue), \
|
||||
|
||||
@@ -425,6 +425,90 @@
|
||||
for(var/i in 1 to 6)
|
||||
new /obj/item/reagent_containers/food/snacks/donkpocket(src)
|
||||
|
||||
/obj/item/storage/box/donkpockets/donkpocketspicy
|
||||
name = "box of spicy-flavoured donk-pockets"
|
||||
icon_state = "donkpocketboxspicy"
|
||||
var/donktype = /obj/item/reagent_containers/food/snacks/donkpocket/spicy
|
||||
|
||||
/obj/item/storage/box/donkpockets/donkpocketspicy/ComponentInitialize()
|
||||
. = ..()
|
||||
var/datum/component/storage/STR = GetComponent(/datum/component/storage)
|
||||
STR.can_hold = typecacheof(list(/obj/item/reagent_containers/food/snacks/donkpocket/spicy))
|
||||
|
||||
/obj/item/storage/box/donkpockets/donkpocketspicy/PopulateContents()
|
||||
for(var/i in 1 to 6)
|
||||
new /obj/item/reagent_containers/food/snacks/donkpocket/spicy(src)
|
||||
|
||||
/obj/item/storage/box/donkpockets/donkpocketteriyaki
|
||||
name = "box of teriyaki-flavoured donk-pockets"
|
||||
icon_state = "donkpocketboxteriyaki"
|
||||
var/donktype = /obj/item/reagent_containers/food/snacks/donkpocket/teriyaki
|
||||
|
||||
/obj/item/storage/box/donkpockets/donkpocketteriyaki/ComponentInitialize()
|
||||
. = ..()
|
||||
var/datum/component/storage/STR = GetComponent(/datum/component/storage)
|
||||
STR.can_hold = typecacheof(list(/obj/item/reagent_containers/food/snacks/donkpocket/teriyaki))
|
||||
|
||||
/obj/item/storage/box/donkpockets/donkpocketteriyaki/PopulateContents()
|
||||
for(var/i in 1 to 6)
|
||||
new /obj/item/reagent_containers/food/snacks/donkpocket/teriyaki(src)
|
||||
|
||||
/obj/item/storage/box/donkpockets/donkpocketpizza
|
||||
name = "box of pizza-flavoured donk-pockets"
|
||||
icon_state = "donkpocketboxpizza"
|
||||
var/donktype = /obj/item/reagent_containers/food/snacks/donkpocket/pizza
|
||||
|
||||
/obj/item/storage/box/donkpockets/donkpocketpizza/ComponentInitialize()
|
||||
. = ..()
|
||||
var/datum/component/storage/STR = GetComponent(/datum/component/storage)
|
||||
STR.can_hold = typecacheof(list(/obj/item/reagent_containers/food/snacks/donkpocket/pizza))
|
||||
|
||||
/obj/item/storage/box/donkpockets/donkpocketpizza/PopulateContents()
|
||||
for(var/i in 1 to 6)
|
||||
new /obj/item/reagent_containers/food/snacks/donkpocket/pizza(src)
|
||||
|
||||
/obj/item/storage/box/donkpockets/donkpocketgondola
|
||||
name = "box of gondola-flavoured donk-pockets"
|
||||
icon_state = "donkpocketboxgondola"
|
||||
var/donktype = /obj/item/reagent_containers/food/snacks/donkpocket/gondola
|
||||
|
||||
/obj/item/storage/box/donkpockets/donkpocketgondola/ComponentInitialize()
|
||||
. = ..()
|
||||
var/datum/component/storage/STR = GetComponent(/datum/component/storage)
|
||||
STR.can_hold = typecacheof(list(/obj/item/reagent_containers/food/snacks/donkpocket/gondola))
|
||||
|
||||
/obj/item/storage/box/donkpockets/donkpocketgondola/PopulateContents()
|
||||
for(var/i in 1 to 6)
|
||||
new /obj/item/reagent_containers/food/snacks/donkpocket/gondola(src)
|
||||
|
||||
/obj/item/storage/box/donkpockets/donkpocketberry
|
||||
name = "box of berry-flavoured donk-pockets"
|
||||
icon_state = "donkpocketboxberry"
|
||||
var/donktype = /obj/item/reagent_containers/food/snacks/donkpocket/berry
|
||||
|
||||
/obj/item/storage/box/donkpockets/donkpocketberry/ComponentInitialize()
|
||||
. = ..()
|
||||
var/datum/component/storage/STR = GetComponent(/datum/component/storage)
|
||||
STR.can_hold = typecacheof(list(/obj/item/reagent_containers/food/snacks/donkpocket/berry))
|
||||
|
||||
/obj/item/storage/box/donkpockets/donkpocketberry/PopulateContents()
|
||||
for(var/i in 1 to 6)
|
||||
new /obj/item/reagent_containers/food/snacks/donkpocket/berry(src)
|
||||
|
||||
/obj/item/storage/box/donkpockets/donkpockethonk
|
||||
name = "box of banana-flavoured donk-pockets"
|
||||
icon_state = "donkpocketboxbanana"
|
||||
var/donktype = /obj/item/reagent_containers/food/snacks/donkpocket/honk
|
||||
|
||||
/obj/item/storage/box/donkpockets/donkpockethonk/ComponentInitialize()
|
||||
. = ..()
|
||||
var/datum/component/storage/STR = GetComponent(/datum/component/storage)
|
||||
STR.can_hold = typecacheof(list(/obj/item/reagent_containers/food/snacks/donkpocket/honk))
|
||||
|
||||
/obj/item/storage/box/donkpockets/donkpockethonk/PopulateContents()
|
||||
for(var/i in 1 to 6)
|
||||
new /obj/item/reagent_containers/food/snacks/donkpocket/honk(src)
|
||||
|
||||
/obj/item/storage/box/monkeycubes
|
||||
name = "monkey cube box"
|
||||
desc = "Drymate brand monkey cubes. Just add water!"
|
||||
|
||||
@@ -115,13 +115,6 @@
|
||||
reward = 4000
|
||||
wanted_types = list(/obj/item/reagent_containers/food/snacks/soylentgreen)
|
||||
|
||||
/datum/bounty/item/chef/pancakes
|
||||
name = "Pancakes"
|
||||
description = "Here at Kinaris.Co we consider employees to be family. And you know what families love? Pancakes. Ship a baker's dozen."
|
||||
reward = 4000
|
||||
required_count = 13
|
||||
wanted_types = list(/datum/crafting_recipe/food/pancakes)
|
||||
|
||||
/datum/bounty/item/chef/nuggies
|
||||
name = "Chicken Nuggets"
|
||||
description = "The vice president's son won't shut up about chicken nuggies. Would you mind shipping some?"
|
||||
|
||||
@@ -460,6 +460,120 @@
|
||||
tastes = list("meat" = 2, "dough" = 2)
|
||||
foodtype = GRAIN | VEGETABLES
|
||||
|
||||
/obj/item/reagent_containers/food/snacks/donkpocket/spicy
|
||||
name = "\improper Spicy-pocket"
|
||||
desc = "The classic snack food, now with a heat-activated spicy flair."
|
||||
icon_state = "donkpocketspicy"
|
||||
list_reagents = list(/datum/reagent/consumable/nutriment = 3, /datum/reagent/consumable/capsaicin = 2)
|
||||
cooked_type = /obj/item/reagent_containers/food/snacks/donkpocket/warm/spicy
|
||||
filling_color = "#CD853F"
|
||||
tastes = list("meat" = 2, "dough" = 2, "spice" = 1)
|
||||
foodtype = GRAIN
|
||||
|
||||
/obj/item/reagent_containers/food/snacks/donkpocket/warm/spicy
|
||||
name = "warm Spicy-pocket"
|
||||
desc = "The classic snack food, now maybe a bit too spicy."
|
||||
icon_state = "donkpocketspicy"
|
||||
bonus_reagents = list(/datum/reagent/medicine/omnizine = 1, /datum/reagent/consumable/capsaicin = 3)
|
||||
list_reagents = list(/datum/reagent/consumable/nutriment = 3, /datum/reagent/medicine/omnizine = 1, /datum/reagent/consumable/capsaicin = 2)
|
||||
tastes = list("meat" = 2, "dough" = 2, "weird spices" = 2)
|
||||
foodtype = GRAIN
|
||||
|
||||
/obj/item/reagent_containers/food/snacks/donkpocket/teriyaki
|
||||
name = "\improper Teriyaki-pocket"
|
||||
desc = "An east-asian take on the classic stationside snack."
|
||||
icon_state = "donkpocketteriyaki"
|
||||
list_reagents = list(/datum/reagent/consumable/nutriment = 3, /datum/reagent/consumable/soysauce = 2)
|
||||
cooked_type = /obj/item/reagent_containers/food/snacks/donkpocket/warm/teriyaki
|
||||
filling_color = "#CD853F"
|
||||
tastes = list("meat" = 2, "dough" = 2, "soy sauce" = 2)
|
||||
foodtype = GRAIN
|
||||
|
||||
/obj/item/reagent_containers/food/snacks/donkpocket/warm/teriyaki
|
||||
name = "warm Teriyaki-pocket"
|
||||
desc = "An east-asian take on the classic stationside snack, now steamy and warm."
|
||||
icon_state = "donkpocketteriyaki"
|
||||
bonus_reagents = list(/datum/reagent/medicine/omnizine = 1)
|
||||
list_reagents = list(/datum/reagent/consumable/nutriment = 3, /datum/reagent/medicine/omnizine = 1, /datum/reagent/consumable/soysauce = 2)
|
||||
tastes = list("meat" = 2, "dough" = 2, "soy sauce" = 2)
|
||||
foodtype = GRAIN
|
||||
|
||||
/obj/item/reagent_containers/food/snacks/donkpocket/pizza
|
||||
name = "\improper Pizza-pocket"
|
||||
desc = "Delicious, cheesy and surprisingly filling."
|
||||
icon_state = "donkpocketpizza"
|
||||
list_reagents = list(/datum/reagent/consumable/nutriment = 3, /datum/reagent/consumable/tomatojuice = 2)
|
||||
cooked_type = /obj/item/reagent_containers/food/snacks/donkpocket/warm/pizza
|
||||
filling_color = "#CD853F"
|
||||
tastes = list("meat" = 2, "dough" = 2, "cheese"= 2)
|
||||
foodtype = GRAIN
|
||||
|
||||
/obj/item/reagent_containers/food/snacks/donkpocket/warm/pizza
|
||||
name = "warm Pizza-pocket"
|
||||
desc = "Delicious, cheesy, and even better when hot."
|
||||
icon_state = "donkpocketpizza"
|
||||
bonus_reagents = list(/datum/reagent/medicine/omnizine = 1)
|
||||
list_reagents = list(/datum/reagent/consumable/nutriment = 3, /datum/reagent/medicine/omnizine = 1, /datum/reagent/consumable/tomatojuice = 2)
|
||||
tastes = list("meat" = 2, "dough" = 2, "melty cheese"= 2)
|
||||
foodtype = GRAIN
|
||||
|
||||
/obj/item/reagent_containers/food/snacks/donkpocket/honk
|
||||
name = "\improper Honk-pocket"
|
||||
desc = "The award-winning donk-pocket that won the hearts of clowns and humans alike."
|
||||
icon_state = "donkpocketbanana"
|
||||
list_reagents = list(/datum/reagent/consumable/nutriment = 4, /datum/reagent/consumable/banana = 4)
|
||||
cooked_type = /obj/item/reagent_containers/food/snacks/donkpocket/warm/honk
|
||||
filling_color = "#XXXXXX"
|
||||
tastes = list("banana" = 2, "dough" = 2, "children's antibiotics" = 1)
|
||||
foodtype = GRAIN
|
||||
|
||||
/obj/item/reagent_containers/food/snacks/donkpocket/warm/honk
|
||||
name = "warm Honk-pocket"
|
||||
desc = "The award-winning donk-pocket, now warm and toasty."
|
||||
icon_state = "donkpocketbanana"
|
||||
bonus_reagents = list(/datum/reagent/medicine/omnizine = 1, /datum/reagent/consumable/laughter = 3)
|
||||
list_reagents = list(/datum/reagent/consumable/nutriment = 4, /datum/reagent/medicine/omnizine = 1, /datum/reagent/consumable/banana = 4, /datum/reagent/consumable/laughter = 3)
|
||||
tastes = list("dough" = 2, "children's antibiotics" = 1)
|
||||
foodtype = GRAIN
|
||||
|
||||
/obj/item/reagent_containers/food/snacks/donkpocket/berry
|
||||
name = "\improper Berry-pocket"
|
||||
desc = "A relentlessly sweet donk-pocket first created for use in Operation Dessert Storm."
|
||||
icon_state = "donkpocketberry"
|
||||
list_reagents = list(/datum/reagent/consumable/nutriment = 4, /datum/reagent/consumable/berryjuice = 3)
|
||||
cooked_type = /obj/item/reagent_containers/food/snacks/donkpocket/warm/berry
|
||||
filling_color = "#CD853F"
|
||||
tastes = list("dough" = 2, "jam" = 2)
|
||||
foodtype = GRAIN
|
||||
|
||||
/obj/item/reagent_containers/food/snacks/donkpocket/warm/berry
|
||||
name = "warm Berry-pocket"
|
||||
desc = "A relentlessly sweet donk-pocket, now warm and delicious."
|
||||
icon_state = "donkpocketberry"
|
||||
bonus_reagents = list(/datum/reagent/medicine/omnizine = 1)
|
||||
list_reagents = list(/datum/reagent/consumable/nutriment = 4, /datum/reagent/medicine/omnizine = 1, /datum/reagent/consumable/berryjuice = 3)
|
||||
tastes = list("dough" = 2, "warm jam" = 2)
|
||||
foodtype = GRAIN
|
||||
|
||||
/obj/item/reagent_containers/food/snacks/donkpocket/gondola
|
||||
name = "\improper Gondola-pocket"
|
||||
desc = "The choice to use real gondola meat in the recipe is controversial, to say the least." //Only a monster would craft this.
|
||||
icon_state = "donkpocketgondola"
|
||||
list_reagents = list(/datum/reagent/consumable/nutriment = 3, /datum/reagent/tranquility = 5)
|
||||
cooked_type = /obj/item/reagent_containers/food/snacks/donkpocket/warm/gondola
|
||||
filling_color = "#CD853F"
|
||||
tastes = list("meat" = 2, "dough" = 2, "inner peace" = 1)
|
||||
foodtype = GRAIN
|
||||
|
||||
/obj/item/reagent_containers/food/snacks/donkpocket/warm/gondola
|
||||
name = "warm Gondola-pocket"
|
||||
desc = "The choice to use real gondola meat in the recipe is controversial, to say the least."
|
||||
icon_state = "donkpocketgondola"
|
||||
bonus_reagents = list(/datum/reagent/medicine/omnizine = 1, /datum/reagent/tranquility = 5)
|
||||
list_reagents = list(/datum/reagent/consumable/nutriment = 3, /datum/reagent/medicine/omnizine = 1, /datum/reagent/tranquility = 5)
|
||||
tastes = list("meat" = 2, "dough" = 2, "inner peace" = 1)
|
||||
foodtype = GRAIN
|
||||
|
||||
/obj/item/reagent_containers/food/snacks/fortunecookie
|
||||
name = "fortune cookie"
|
||||
desc = "A true prophecy in each cookie!"
|
||||
|
||||
@@ -344,6 +344,203 @@ datum/crafting_recipe/food/donut/meat
|
||||
result = /obj/item/reagent_containers/food/snacks/dankpocket
|
||||
subcategory = CAT_PASTRY
|
||||
|
||||
/obj/item/reagent_containers/food/snacks/donkpocket/warm
|
||||
name = "warm Donk-pocket"
|
||||
desc = "The heated food of choice for the seasoned traitor."
|
||||
bonus_reagents = list(/datum/reagent/medicine/omnizine = 3) //The original donk pocket has the most omnizine, can't beat the original on everything...
|
||||
list_reagents = list(/datum/reagent/consumable/nutriment = 3, /datum/reagent/medicine/omnizine = 3)
|
||||
cooked_type = null
|
||||
tastes = list("meat" = 2, "dough" = 2, "laziness" = 1)
|
||||
foodtype = GRAIN
|
||||
|
||||
/obj/item/reagent_containers/food/snacks/dankpocket
|
||||
name = "\improper Dank-pocket"
|
||||
desc = "The food of choice for the seasoned botanist."
|
||||
icon_state = "dankpocket"
|
||||
list_reagents = list(/datum/reagent/toxin/lipolicide = 3, /datum/reagent/drug/space_drugs = 3, /datum/reagent/consumable/nutriment = 4)
|
||||
filling_color = "#00FF00"
|
||||
tastes = list("meat" = 2, "dough" = 2)
|
||||
foodtype = GRAIN | VEGETABLES
|
||||
|
||||
/datum/crafting_recipe/food/donkpocket/spicy
|
||||
time = 15
|
||||
name = "Spicy-pocket"
|
||||
reqs = list(
|
||||
/obj/item/reagent_containers/food/snacks/pastrybase = 1,
|
||||
/obj/item/reagent_containers/food/snacks/meatball = 1,
|
||||
/obj/item/reagent_containers/food/snacks/grown/chili
|
||||
)
|
||||
result = /obj/item/reagent_containers/food/snacks/donkpocket/spicy
|
||||
subcategory = CAT_PASTRY
|
||||
|
||||
/obj/item/reagent_containers/food/snacks/donkpocket/spicy
|
||||
name = "\improper Spicy-pocket"
|
||||
desc = "The classic snack food, now with a heat-activated spicy flair."
|
||||
icon_state = "donkpocketspicy"
|
||||
list_reagents = list(/datum/reagent/consumable/nutriment = 3, /datum/reagent/consumable/capsaicin = 2)
|
||||
cooked_type = /obj/item/reagent_containers/food/snacks/donkpocket/warm/spicy
|
||||
filling_color = "#CD853F"
|
||||
tastes = list("meat" = 2, "dough" = 2, "spice" = 1)
|
||||
foodtype = GRAIN
|
||||
|
||||
/obj/item/reagent_containers/food/snacks/donkpocket/warm/spicy
|
||||
name = "warm Spicy-pocket"
|
||||
desc = "The classic snack food, now maybe a bit too spicy."
|
||||
icon_state = "donkpocketspicy"
|
||||
bonus_reagents = list(/datum/reagent/medicine/omnizine = 1, /datum/reagent/consumable/capsaicin = 3)
|
||||
list_reagents = list(/datum/reagent/consumable/nutriment = 3, /datum/reagent/medicine/omnizine = 1, /datum/reagent/consumable/capsaicin = 2)
|
||||
tastes = list("meat" = 2, "dough" = 2, "weird spices" = 2)
|
||||
foodtype = GRAIN
|
||||
|
||||
/datum/crafting_recipe/food/donkpocket/teriyaki
|
||||
time = 15
|
||||
name = "Teriyaki-pocket"
|
||||
reqs = list(
|
||||
/obj/item/reagent_containers/food/snacks/pastrybase = 1,
|
||||
/obj/item/reagent_containers/food/snacks/meatball = 1,
|
||||
/datum/reagent/consumable/soysauce = 3
|
||||
)
|
||||
result = /obj/item/reagent_containers/food/snacks/donkpocket/teriyaki
|
||||
subcategory = CAT_PASTRY
|
||||
|
||||
/obj/item/reagent_containers/food/snacks/donkpocket/teriyaki
|
||||
name = "\improper Teriyaki-pocket"
|
||||
desc = "An east-asian take on the classic stationside snack."
|
||||
icon_state = "donkpocketteriyaki"
|
||||
list_reagents = list(/datum/reagent/consumable/nutriment = 3, /datum/reagent/consumable/soysauce = 2)
|
||||
cooked_type = /obj/item/reagent_containers/food/snacks/donkpocket/warm/teriyaki
|
||||
filling_color = "#CD853F"
|
||||
tastes = list("meat" = 2, "dough" = 2, "soy sauce" = 2)
|
||||
foodtype = GRAIN
|
||||
|
||||
/obj/item/reagent_containers/food/snacks/donkpocket/warm/teriyaki
|
||||
name = "warm Teriyaki-pocket"
|
||||
desc = "An east-asian take on the classic stationside snack, now steamy and warm."
|
||||
icon_state = "donkpocketteriyaki"
|
||||
bonus_reagents = list(/datum/reagent/medicine/omnizine = 1)
|
||||
list_reagents = list(/datum/reagent/consumable/nutriment = 3, /datum/reagent/medicine/omnizine = 1, /datum/reagent/consumable/soysauce = 2)
|
||||
tastes = list("meat" = 2, "dough" = 2, "soy sauce" = 2)
|
||||
foodtype = GRAIN
|
||||
|
||||
/datum/crafting_recipe/food/donkpocket/pizza
|
||||
time = 15
|
||||
name = "Pizza-pocket"
|
||||
reqs = list(
|
||||
/obj/item/reagent_containers/food/snacks/pastrybase = 1,
|
||||
/obj/item/reagent_containers/food/snacks/meatball = 1,
|
||||
/obj/item/reagent_containers/food/snacks/grown/tomato = 1
|
||||
)
|
||||
result = /obj/item/reagent_containers/food/snacks/donkpocket/pizza
|
||||
subcategory = CAT_PASTRY
|
||||
|
||||
/obj/item/reagent_containers/food/snacks/donkpocket/pizza
|
||||
name = "\improper Pizza-pocket"
|
||||
desc = "Delicious, cheesy and surprisingly filling."
|
||||
icon_state = "donkpocketpizza"
|
||||
list_reagents = list(/datum/reagent/consumable/nutriment = 3, /datum/reagent/consumable/tomatojuice = 2)
|
||||
cooked_type = /obj/item/reagent_containers/food/snacks/donkpocket/warm/pizza
|
||||
filling_color = "#CD853F"
|
||||
tastes = list("meat" = 2, "dough" = 2, "cheese"= 2)
|
||||
foodtype = GRAIN
|
||||
|
||||
/obj/item/reagent_containers/food/snacks/donkpocket/warm/pizza
|
||||
name = "warm Pizza-pocket"
|
||||
desc = "Delicious, cheesy, and even better when hot."
|
||||
icon_state = "donkpocketpizza"
|
||||
bonus_reagents = list(/datum/reagent/medicine/omnizine = 1)
|
||||
list_reagents = list(/datum/reagent/consumable/nutriment = 3, /datum/reagent/medicine/omnizine = 1, /datum/reagent/consumable/tomatojuice = 2)
|
||||
tastes = list("meat" = 2, "dough" = 2, "melty cheese"= 2)
|
||||
foodtype = GRAIN
|
||||
|
||||
/datum/crafting_recipe/food/donkpocket/honk
|
||||
time = 15
|
||||
name = "Honk-Pocket"
|
||||
reqs = list(
|
||||
/obj/item/reagent_containers/food/snacks/pastrybase = 1,
|
||||
/obj/item/reagent_containers/food/snacks/grown/banana = 1,
|
||||
/datum/reagent/consumable/sugar = 3
|
||||
)
|
||||
result = /obj/item/reagent_containers/food/snacks/donkpocket/honk
|
||||
subcategory = CAT_PASTRY
|
||||
|
||||
/obj/item/reagent_containers/food/snacks/donkpocket/honk
|
||||
name = "\improper Honk-pocket"
|
||||
desc = "The award-winning donk-pocket that won the hearts of clowns and humans alike."
|
||||
icon_state = "donkpocketbanana"
|
||||
list_reagents = list(/datum/reagent/consumable/nutriment = 4, /datum/reagent/consumable/banana = 4)
|
||||
cooked_type = /obj/item/reagent_containers/food/snacks/donkpocket/warm/honk
|
||||
filling_color = "#XXXXXX"
|
||||
tastes = list("banana" = 2, "dough" = 2, "children's antibiotics" = 1)
|
||||
foodtype = GRAIN
|
||||
|
||||
/obj/item/reagent_containers/food/snacks/donkpocket/warm/honk
|
||||
name = "warm Honk-pocket"
|
||||
desc = "The award-winning donk-pocket, now warm and toasty."
|
||||
icon_state = "donkpocketbanana"
|
||||
bonus_reagents = list(/datum/reagent/medicine/omnizine = 1, /datum/reagent/consumable/laughter = 3)
|
||||
list_reagents = list(/datum/reagent/consumable/nutriment = 4, /datum/reagent/medicine/omnizine = 1, /datum/reagent/consumable/banana = 4, /datum/reagent/consumable/laughter = 3)
|
||||
tastes = list("dough" = 2, "children's antibiotics" = 1)
|
||||
foodtype = GRAIN
|
||||
|
||||
/datum/crafting_recipe/food/donkpocket/berry
|
||||
time = 15
|
||||
name = "Berry-pocket"
|
||||
reqs = list(
|
||||
/obj/item/reagent_containers/food/snacks/pastrybase = 1,
|
||||
/obj/item/reagent_containers/food/snacks/grown/berries = 1
|
||||
)
|
||||
result = /obj/item/reagent_containers/food/snacks/donkpocket/berry
|
||||
subcategory = CAT_PASTRY
|
||||
|
||||
/obj/item/reagent_containers/food/snacks/donkpocket/berry
|
||||
name = "\improper Berry-pocket"
|
||||
desc = "A relentlessly sweet donk-pocket first created for use in Operation Dessert Storm."
|
||||
icon_state = "donkpocketberry"
|
||||
list_reagents = list(/datum/reagent/consumable/nutriment = 4, /datum/reagent/consumable/berryjuice = 3)
|
||||
cooked_type = /obj/item/reagent_containers/food/snacks/donkpocket/warm/berry
|
||||
filling_color = "#CD853F"
|
||||
tastes = list("dough" = 2, "jam" = 2)
|
||||
foodtype = GRAIN
|
||||
|
||||
/obj/item/reagent_containers/food/snacks/donkpocket/warm/berry
|
||||
name = "warm Berry-pocket"
|
||||
desc = "A relentlessly sweet donk-pocket, now warm and delicious."
|
||||
icon_state = "donkpocketberry"
|
||||
bonus_reagents = list(/datum/reagent/medicine/omnizine = 1)
|
||||
list_reagents = list(/datum/reagent/consumable/nutriment = 4, /datum/reagent/medicine/omnizine = 1, /datum/reagent/consumable/berryjuice = 3)
|
||||
tastes = list("dough" = 2, "warm jam" = 2)
|
||||
foodtype = GRAIN
|
||||
|
||||
/obj/item/reagent_containers/food/snacks/donkpocket/gondola
|
||||
name = "\improper Gondola-pocket"
|
||||
desc = "The choice to use real gondola meat in the recipe is controversial, to say the least." //Only a monster would craft this.
|
||||
icon_state = "donkpocketgondola"
|
||||
list_reagents = list(/datum/reagent/consumable/nutriment = 3, /datum/reagent/tranquility = 5)
|
||||
cooked_type = /obj/item/reagent_containers/food/snacks/donkpocket/warm/gondola
|
||||
filling_color = "#CD853F"
|
||||
tastes = list("meat" = 2, "dough" = 2, "inner peace" = 1)
|
||||
foodtype = GRAIN
|
||||
|
||||
/obj/item/reagent_containers/food/snacks/donkpocket/warm/gondola
|
||||
name = "warm Gondola-pocket"
|
||||
desc = "The choice to use real gondola meat in the recipe is controversial, to say the least."
|
||||
icon_state = "donkpocketgondola"
|
||||
bonus_reagents = list(/datum/reagent/medicine/omnizine = 1, /datum/reagent/tranquility = 5)
|
||||
list_reagents = list(/datum/reagent/consumable/nutriment = 3, /datum/reagent/medicine/omnizine = 1, /datum/reagent/tranquility = 5)
|
||||
tastes = list("meat" = 2, "dough" = 2, "inner peace" = 1)
|
||||
foodtype = GRAIN
|
||||
|
||||
/datum/crafting_recipe/food/donkpocket/gondola
|
||||
time = 15
|
||||
name = "Gondola-pocket"
|
||||
reqs = list(
|
||||
/obj/item/reagent_containers/food/snacks/pastrybase = 1,
|
||||
/obj/item/reagent_containers/food/snacks/meatball = 1,
|
||||
/datum/reagent/tranquility = 5
|
||||
)
|
||||
result = /obj/item/reagent_containers/food/snacks/donkpocket/gondola
|
||||
subcategory = CAT_PASTRY
|
||||
|
||||
////////////////////////////////////////////////MUFFINS////////////////////////////////////////////////
|
||||
|
||||
/datum/crafting_recipe/food/muffin
|
||||
|
||||
|
Before Width: | Height: | Size: 70 KiB After Width: | Height: | Size: 70 KiB |
|
Before Width: | Height: | Size: 64 KiB After Width: | Height: | Size: 66 KiB |
BIN
icons/turf/floors/carpet_donk.dmi
Normal file
|
After Width: | Height: | Size: 2.8 KiB |
|
Before Width: | Height: | Size: 208 KiB After Width: | Height: | Size: 211 KiB |