Skip to content
This repository was archived by the owner on May 22, 2025. It is now read-only.
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 12 additions & 3 deletions code/modules/food_and_drinks/food/snacks_pastry.dm
Original file line number Diff line number Diff line change
Expand Up @@ -270,13 +270,22 @@
/obj/item/reagent_containers/food/snacks/donkpocket/warm/MakeBakeable()
AddComponent(/datum/component/bakeable, /obj/item/reagent_containers/food/snacks/badrecipe, rand(10 SECONDS, 15 SECONDS), FALSE)

/obj/item/reagent_containers/food/snacks/dankpocket
/obj/item/reagent_containers/food/snacks/donkpocket/dank
name = "dankpocket"
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)
list_reagents = list(/datum/reagent/drug/space_drugs = 1, /datum/reagent/consumable/nutriment = 1)
cooked_type = /obj/item/reagent_containers/food/snacks/donkpocket/warm/dank
filling_color = "#00FF00"
tastes = list("meat" = 2, "dough" = 2)
tastes = list("grass" = 2, "dough" = 2)
foodtype = GRAIN | VEGETABLES

/obj/item/reagent_containers/food/snacks/donkpocket/warm/dank
name = "warm dankpocket"
desc = "The food of choice for the seasoned botanist. Smells danker now."
icon_state = "dankpocket"
list_reagents = list(/datum/reagent/toxin/lipolicide = 3, /datum/reagent/drug/space_drugs = 3, /datum/reagent/consumable/nutriment = 4)
tastes = list("grass" = 2, "dough" = 2, "drugs" = 2)
foodtype = GRAIN | VEGETABLES

/obj/item/reagent_containers/food/snacks/donkpocket/spicy
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -199,7 +199,7 @@ datum/crafting_recipe/food/donut/meat
/obj/item/reagent_containers/food/snacks/pastrybase = 1,
/obj/item/reagent_containers/food/snacks/grown/cannabis = 1
)
result = /obj/item/reagent_containers/food/snacks/dankpocket
result = /obj/item/reagent_containers/food/snacks/donkpocket/dank
subcategory = CAT_PASTRY

/datum/crafting_recipe/food/donkpocket/spicy
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
name = "Dank Pizza"
reqs = list(
/obj/item/reagent_containers/food/snacks/flatdough = 1,
/obj/item/reagent_containers/food/snacks/grown/ambrosia/vulgaris = 3,
/obj/item/reagent_containers/food/snacks/grown/cannabis = 3,
/obj/item/reagent_containers/food/snacks/cheesewedge = 1,
/obj/item/reagent_containers/food/snacks/grown/tomato = 1
)
Expand Down