mirror of
https://github.com/Aurorastation/Aurora.3.git
synced 2026-07-16 02:17:06 +01:00
7265630dde
Turned a ton of unmanaged globals into managed globals. Refactored some UT output. Removed some unused things, including vars. Added a test to ensure people don't keep adding new unmanaged vars.
16 lines
389 B
Plaintext
16 lines
389 B
Plaintext
GLOBAL_LIST_INIT_TYPED(wax_recipes, /datum/stack_recipe, list(
|
|
new /datum/stack_recipe("candle", /obj/item/flame/candle)
|
|
))
|
|
|
|
/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 = GLOB.wax_recipes
|