Files
Aurora.3/code/modules/hydroponics/beekeeping/wax.dm
2021-01-21 22:17:29 -03:00

15 lines
374 B
Plaintext

/obj/item/stack/wax
name = "wax"
singular_name = "wax piece"
desc = "Soft substance produced by botany. Used to make candles."
icon = 'icons/obj/beekeeping.dmi'
icon_state = "wax"
max_amount = 50
/obj/item/stack/wax/New()
..()
recipes = wax_recipes
var/global/list/datum/stack_recipe/wax_recipes = list(
new /datum/stack_recipe("candle", /obj/item/flame/candle)
)