mirror of
https://github.com/Aurorastation/Aurora.3.git
synced 2026-08-23 21:12:24 +01:00
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:
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user