Offbrand sightlights fix (#21012)

Now that I know how object hierarchies work...

Fixes offbrand sightlights (they were inheriting the original obj
restrictions).
This commit is contained in:
Batrachophreno
2025-07-21 10:33:33 +00:00
committed by GitHub
parent 628bcecdd3
commit 8abffa70cc
3 changed files with 85 additions and 27 deletions
@@ -1,24 +1,25 @@
/obj/item/organ/internal/augment/sightlights
name = "Zeng-Hu ocular sightlights"
desc = "Designed to assist Zeng-Hu medical personnel in darker areas or places experiencing periodic power issues, sightlights will allow one to be able to use their eyes as a flashlight. These are the original high-spec models available exclusively through Zeng-Hu."
icon_state = "sightlights"
organ_tag = BP_AUG_SIGHTLIGHTS
parent_organ = BP_HEAD
action_button_name = "Activate Ocular Installed Sightlights "
action_button_icon = "sightlights"
cooldown = 30
activable = TRUE
var/lights_on = FALSE
var/lights_color = "#e9dfea" // Pale violet, very Zeng-Hu.
var/lights_range = 6
var/lights_intensity = 2
/obj/item/organ/internal/augment/sightlights/generic
name = "offbrand ocular sightlights"
desc = "Designed to assist personnel in darker areas or places experiencing periodic power issues, Zeng-Hu sightlights will allow one to be able to use their eyes as a flashlight. Later SCC-mediated negotiation loosened the augment's patent restrictions, allowing offbrand manufacture and use of lesser models by other members of the Chainlink."
icon_state = "m2eyes"
lights_color = LIGHT_COLOR_TUNGSTEN
lights_range = 4
action_button_name = "Activate Ocular Installed Sightlights "
action_button_icon = "sightlights"
activable = TRUE
organ_tag = BP_AUG_SIGHTLIGHTS
parent_organ = BP_HEAD
cooldown = 30
var/lights_on = FALSE
var/lights_color = LIGHT_COLOR_TUNGSTEN
var/lights_range = 4
var/lights_intensity = 2
/obj/item/organ/internal/augment/sightlights/zenghu
name = "Zeng-Hu ocular sightlights"
desc = "Designed to assist Zeng-Hu medical personnel in darker areas or places experiencing periodic power issues, sightlights will allow one to be able to use their eyes as a flashlight. These are the original high-spec models available exclusively through Zeng-Hu."
icon_state = "sightlights"
lights_color = "#e9dfea" // Pale violet, very Zeng-Hu.
lights_range = 6
lights_intensity = 2
/obj/item/organ/internal/augment/sightlights/attack_self(var/mob/user)