Files
Aurora-Old/code/modules/food/cereal_maker.dm
Duck- 74519c6c9d Kitchen additions
Please add: obj/machinery/cooker/cerealmaker,
obj/machinery/cooker/foodgrill, /obj/machinery/cooking/candy, and
/obj/machinery/cooking/oven to the map.  Adds those items.  Also,
/obj/machinery/icemachine  Adds a lot of foods.  Eating monkey cubes now
results in disaster and pain.  There's probably!  A lot of stuff broken
but it totally compiles and honestly, the only broken stuff I can find
is a lack of idiocy checks (So you can grill cerealized cardboard and
turn it into a sandwich a mile high and stuff like that).  I think Para
actually removed the idiot-checks to make cooking more fun, so.  I kind
of approve of that.  Yes.
2014-08-26 02:43:06 -04:00

25 lines
777 B
Plaintext

/obj/machinery/cooker/cerealmaker
name = "cereal maker"
desc = "Now with Dann O's available!"
icon = 'icons/obj/cooking_machines.dmi'
icon_state = "cereal_off"
thiscooktype = "cerealized"
cooktime = 200
onicon = "cereal_on"
officon = "cereal_off"
obj/machinery/cooker/cerealmaker/setIcon(obj/item/copyme, obj/item/copyto)
var/image/img = new(copyme.icon, copyme.icon_state)
img.transform *= 0.7
copyto.overlays += img
copyto.overlays += copyme.overlays
obj/machinery/cooker/cerealmaker/changename(obj/item/name, obj/item/setme)
setme.name = "box of [name] cereal"
setme.desc = "[name.desc] It has been [thiscooktype]"
obj/machinery/cooker/cerealmaker/gettype()
var/obj/item/weapon/reagent_containers/food/snacks/cereal/type = new(get_turf(src))
return type