Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We鈥檒l occasionally send you account related emails.

Already on GitHub? Sign in to your account

adds mud pie #14630

Merged
merged 3 commits into from Apr 23, 2017
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.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
8 changes: 8 additions & 0 deletions code/modules/food/recipes_microwave.dm
Expand Up @@ -2265,3 +2265,11 @@
)
result = /obj/structure/poutineocean/poutinecitadel


/datum/recipe/mud_pie
reagents = list(WATER = 25)
items = list(
/obj/item/weapon/ore/glass,
/obj/item/weapon/ore/glass,
)
result = /obj/item/weapon/reagent_containers/food/snacks/pie/mudpie
21 changes: 20 additions & 1 deletion code/modules/reagents/reagent_containers/food/snacks.dm
Expand Up @@ -4971,4 +4971,23 @@

/obj/item/weapon/reagent_containers/food/snacks/bleachkipper/New()
..()
reagents.add_reagent(FISHBLEACH, 1)
reagents.add_reagent(FISHBLEACH, 1)

/obj/item/weapon/reagent_containers/food/snacks/pie/mudpie
name = "mud pie"
desc = "While not looking very appetizing, it at least looks like somebody had fun making it."
icon_state = "mud_pie"
filling_color = "#462B20"

/obj/item/weapon/reagent_containers/food/snacks/pie/mudpie/New()
..()
reagents.clear_reagents()
reagents.add_reagent(NUTRIMENT, rand(0,2))
reagents.add_reagent(TOXIN, rand(1,5))
if(prob(15))
name = "exceptional " + initial(name)
desc = "The cr猫me de la pire of culinary arts."
reagents.add_reagent(SUGAR, 2)
reagents.add_reagent(TOXIN, rand(3,8))
reagents.add_reagent(COCO, 3)
bitesize = 2
Binary file modified icons/obj/food.dmi
Binary file not shown.