mirror of
https://github.com/Bubberstation/Bubberstation.git
synced 2026-01-13 02:13:06 +00:00
* Splits eye color into two vars | Heterochromia Quirk * yesyes * eeee Co-authored-by: Zephyr <12817816+ZephyrTFA@users.noreply.github.com> Co-authored-by: Gandalf <9026500+Gandalf2k15@users.noreply.github.com>
51 lines
1.7 KiB
Plaintext
51 lines
1.7 KiB
Plaintext
/**
|
|
* # Cult eyes element
|
|
*
|
|
* Applies and removes the glowing cult eyes
|
|
*/
|
|
/datum/element/cult_eyes
|
|
element_flags = ELEMENT_DETACH
|
|
|
|
/datum/element/cult_eyes/Attach(datum/target, initial_delay = 20 SECONDS)
|
|
. = ..()
|
|
if (!isliving(target))
|
|
return ELEMENT_INCOMPATIBLE
|
|
|
|
// Register signals for mob transformation to prevent premature halo removal
|
|
RegisterSignal(target, list(COMSIG_CHANGELING_TRANSFORM, COMSIG_MONKEY_HUMANIZE, COMSIG_HUMAN_MONKEYIZE), .proc/set_eyes)
|
|
addtimer(CALLBACK(src, .proc/set_eyes, target), initial_delay)
|
|
|
|
/**
|
|
* Cult eye setter proc
|
|
*
|
|
* Changes the eye color, and adds the glowing eye trait to the mob.
|
|
*/
|
|
/datum/element/cult_eyes/proc/set_eyes(mob/living/target)
|
|
SIGNAL_HANDLER
|
|
|
|
ADD_TRAIT(target, TRAIT_UNNATURAL_RED_GLOWY_EYES, CULT_TRAIT)
|
|
if (ishuman(target))
|
|
var/mob/living/carbon/human/human_parent = target
|
|
human_parent.eye_color_left = BLOODCULT_EYE
|
|
human_parent.eye_color_right = BLOODCULT_EYE
|
|
human_parent.dna.update_ui_block(DNA_EYE_COLOR_LEFT_BLOCK)
|
|
human_parent.dna.update_ui_block(DNA_EYE_COLOR_RIGHT_BLOCK)
|
|
human_parent.update_body()
|
|
|
|
/**
|
|
* Detach proc
|
|
*
|
|
* Removes the eye color, and trait from the mob
|
|
*/
|
|
/datum/element/cult_eyes/Detach(mob/living/target, ...)
|
|
REMOVE_TRAIT(target, TRAIT_UNNATURAL_RED_GLOWY_EYES, CULT_TRAIT)
|
|
if (ishuman(target))
|
|
var/mob/living/carbon/human/human_parent = target
|
|
human_parent.eye_color_left = initial(human_parent.eye_color_left)
|
|
human_parent.eye_color_right = initial(human_parent.eye_color_right)
|
|
human_parent.dna.update_ui_block(DNA_EYE_COLOR_LEFT_BLOCK)
|
|
human_parent.dna.update_ui_block(DNA_EYE_COLOR_RIGHT_BLOCK)
|
|
human_parent.update_body()
|
|
UnregisterSignal(target, list(COMSIG_CHANGELING_TRANSFORM, COMSIG_HUMAN_MONKEYIZE, COMSIG_MONKEY_HUMANIZE))
|
|
return ..()
|