Merge pull request #2045 from Yoshax/bunbunmakefunfun

adds bun-bun, a bread monkey made with two burger buns
This commit is contained in:
Neerti
2016-07-05 18:52:07 -04:00
committed by GitHub
3 changed files with 20 additions and 2 deletions
+8 -1
View File
@@ -144,6 +144,13 @@ I said no!
)
result = /obj/item/weapon/reagent_containers/food/snacks/mimeburger
/datum/recipe/bunbun
items = list(
/obj/item/weapon/reagent_containers/food/snacks/bun,
/obj/item/weapon/reagent_containers/food/snacks/bun
)
result = /obj/item/weapon/reagent_containers/food/snacks/bunbun
/datum/recipe/hotdog
items = list(
/obj/item/weapon/reagent_containers/food/snacks/bun,
@@ -1021,4 +1028,4 @@ I said no!
/datum/recipe/cake/brain
items = list(/obj/item/organ/internal/brain)
result = /obj/item/weapon/reagent_containers/food/snacks/sliceable/braincake
result = /obj/item/weapon/reagent_containers/food/snacks/sliceable/braincake
@@ -14,7 +14,7 @@
var/nutriment_amt = 0
center_of_mass = list("x"=16, "y"=16)
w_class = 2
/obj/item/weapon/reagent_containers/food/snacks/New()
..()
if(nutriment_amt)
@@ -3182,6 +3182,17 @@
else
..()
/obj/item/weapon/reagent_containers/food/snacks/bunbun
name = "\improper Bun Bun"
desc = "A small bread monkey fashioned from two burger buns."
icon_state = "bunbun"
bitesize = 2
center_of_mass = list("x"=16, "y"=8)
/obj/item/weapon/reagent_containers/food/snacks/bunbun/New()
..()
reagents.add_reagent("nutriment", 8)
/obj/item/weapon/reagent_containers/food/snacks/taco
name = "taco"
desc = "Take a bite!"
Binary file not shown.

Before

Width:  |  Height:  |  Size: 88 KiB

After

Width:  |  Height:  |  Size: 89 KiB