Skip to content

Commit

Permalink
adds mud pie (#14630)
Browse files Browse the repository at this point in the history
* adds mud pie

* corrections

* damn you dream maker
  • Loading branch information
skullyton authored and d3athrow committed Jul 4, 2017
1 parent 091dd2e commit 7cfdf93
Show file tree
Hide file tree
Showing 3 changed files with 28 additions and 1 deletion.
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.

0 comments on commit 7cfdf93

Please sign in to comment.