IJzerkoekje (#10189)

* This commit adds a sprite for a Vlaardingse cookie called an IJzerkoekje.

Signed-off-by: Jeroen de Neef <jeroen52@gmail.com>

* Code for a Vlaardingse cookie called an IJzerkoekje.

Signed-off-by: Jeroen de Neef <jeroen52@gmail.com>

* Adding a recipe for the IJzerkoekjes.

Signed-off-by: Jeroen de Neef <jeroen52@gmail.com>

* Adding a changelog entry for the IJzerkoekjes.

Signed-off-by: Jeroen de Neef <jeroen52@gmail.com>

* I got a comment at 9d2c4b0b83 (commitcomment-17593712) that I should put it in quotes because it contains a colon. So I am doing that.

* Thanks for @DeityLink for this improved sprite of the IJzerkoekje!

* The previous recipe doesn't really work, the ingredients would stay in the microwave and it would bug out.

If anyone knows how to make multiple objects from ingredients in the microwave, please do tell so I can have a way to make batches of IJzerkoekjes.

* Thanks to @Kurfursten I now know how to spawn 6 IJzerkoekjes from a microwave.
This commit is contained in:
Jeroen
2016-05-27 07:08:44 +02:00
committed by clusterfack
parent 8ca4b2eeee
commit 685323c5e7
4 changed files with 28 additions and 0 deletions

View File

@@ -1656,6 +1656,19 @@
)
result = /obj/item/weapon/reagent_containers/food/snacks/cinnamonpie
/datum/recipe/ijzerkoekje
reagents = list("flour" = 30, "iron" = 30)
result = /obj/item/weapon/reagent_containers/food/snacks/ijzerkoekje_helper_dummy
/obj/item/weapon/reagent_containers/food/snacks/ijzerkoekje_helper_dummy
name = "Helper Dummy"
desc = "You should never see this text."
/obj/item/weapon/reagent_containers/food/snacks/ijzerkoekje_helper_dummy/New()
for(var/i = 1 to 6)
new /obj/item/weapon/reagent_containers/food/snacks/ijzerkoekje(get_turf(src))
qdel(src)
// Currently Disabled //////////////////////////////////////////
/*

View File

@@ -3985,6 +3985,17 @@
..()
reagents.add_reagent("nutriment", 3)
reagents.add_reagent("cream", 2)
/obj/item/weapon/reagent_containers/food/snacks/ijzerkoekje
name = "IJzerkoekje"
desc = "Bevat geen ijzer."
icon_state = "ijzerkoekje"
New()
..()
reagents.add_reagent("nutriment", 5)
reagents.add_reagent("iron", 5)
bitesize = 2
/obj/item/weapon/reagent_containers/food/snacks/pie/nofruitpie
name = "no-fruit pie"

View File

@@ -0,0 +1,4 @@
author: jeroen52
changes:
- rscadd : "Added the IJzerkoekje as a snack which contains 5 nutriment and 5 iron. Ingredients to make six: 30u flour 30u iron."
delete-after: true

Binary file not shown.

Before

Width:  |  Height:  |  Size: 153 KiB

After

Width:  |  Height:  |  Size: 154 KiB