From 3483e85e149bba4b8d4a83c2b76918630a1c824c Mon Sep 17 00:00:00 2001 From: ThePooba <81843097+ThePooba@users.noreply.github.com> Date: Mon, 2 Dec 2024 08:36:36 -0700 Subject: [PATCH] scroink --- .../objects/items/rayne_corp/chest_lantern | 23 +++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 monkestation/code/game/objects/items/rayne_corp/chest_lantern diff --git a/monkestation/code/game/objects/items/rayne_corp/chest_lantern b/monkestation/code/game/objects/items/rayne_corp/chest_lantern new file mode 100644 index 000000000000..655c06ecb897 --- /dev/null +++ b/monkestation/code/game/objects/items/rayne_corp/chest_lantern @@ -0,0 +1,23 @@ +/obj/item/flashlight/lantern/rayne + name = "lantern" + icon_state = "lantern" + inhand_icon_state = "lantern" + lefthand_file = 'icons/mob/inhands/equipment/mining_lefthand.dmi' + righthand_file = 'icons/mob/inhands/equipment/mining_righthand.dmi' + desc = "A lantern that hangs off the shoulder providing some warmth and lighting. It is stamped with a Rayne Corp" + light_outer_range = 5// luminosity when on + light_system = OVERLAY_LIGHT + icon = 'icons/obj/lighting.dmi' + dir = WEST + icon_state = "flashlight" + inhand_icon_state = "flashlight" + worn_icon_state = "flashlight" + slot_flags = ITEM_SLOT_NECK + light_system = OVERLAY_LIGHT_DIRECTIONAL + /// The sound the light makes when it's turned on + var/sound_on = 'sound/weapons/magin.ogg' + /// The sound the light makes when it's turned off + var/sound_off = 'sound/weapons/magout.ogg' + /// Is the light turned on or off currently + var/on = FALSE + var/start_on = FALSE