Adds a voidtamer-unique lantern (#22716)

Includes a new voidic lantern for the voidtamer ship crew and as a
loadout item for the culture

It's a buffed lantern able to barely sustain a dionae, its a little
stong but only locked to the one specific culture and ship by default,
i'm not sure if it'll spawn in the warehouse tbh, but it's fine if it
does

---------

Signed-off-by: Yonnimer <31339047+Yonnimer@users.noreply.github.com>
This commit is contained in:
Yonnimer
2026-06-20 14:07:06 +00:00
committed by GitHub
parent fbd917a1e2
commit 35a8154ed0
5 changed files with 91 additions and 0 deletions
@@ -387,3 +387,24 @@
/obj/item/flashlight/lantern/on
on = TRUE
/obj/item/flashlight/lantern/voidtamer
name = "voidic lantern"
desc = "A strange lantern mounted on a metallic stick, draped in carphide. When activated, it ignites a gaseous system resembling a nebula."
icon = 'icons/obj/diona_items.dmi'
icon_state = "voidtamer_lantern"
item_state = "voidtamer_lantern"
flashlight_power = 2 //strong enough to sustain a dionae
light_range = 5
light_color = LIGHT_COLOR_BLUE
efficiency_modifier = 1.5
/obj/item/flashlight/lantern/voidtamer/update_icon()
..()
if(on)
item_state = "voidtamer_lantern-on"
else
item_state = "voidtamer_lantern"
/obj/item/flashlight/lantern/voidtamer/on
on = TRUE