mirror of
https://github.com/Aurorastation/Aurora.3.git
synced 2026-01-04 14:33:10 +00:00
15 lines
374 B
Plaintext
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)
|
|
) |