From 1bb0dee6603e9f3e8d2e8d32a3bd6a5a7d938a4d Mon Sep 17 00:00:00 2001 From: Olive <49600480+zeskorion@users.noreply.github.com> Date: Tue, 30 Dec 2025 16:17:25 -0800 Subject: [PATCH] Adds the "Color changing eyes" trait (#18957) * Add ability for any non-kin species to change their eye colour mid-round. * done * quality control * okay, try this --------- Co-authored-by: CameronSTaljaard --- .../carbon/human/species/station/traits/neutral.dm | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/code/modules/mob/living/carbon/human/species/station/traits/neutral.dm b/code/modules/mob/living/carbon/human/species/station/traits/neutral.dm index 38d9ccbb1fc..f5674905e43 100644 --- a/code/modules/mob/living/carbon/human/species/station/traits/neutral.dm +++ b/code/modules/mob/living/carbon/human/species/station/traits/neutral.dm @@ -1599,6 +1599,17 @@ H.touch_reaction_flags |= SPECIES_TRAIT_PERSONAL_BUBBLE add_verb(H, /mob/living/proc/toggle_personal_space) +/datum/trait/neutral/colour_changing_eyes + name = "Colour changing eyes" + desc = "You can change your eye color at will using an intuitive mental process." + cost = 0 + custom_only = FALSE + banned_species = list(SPECIES_SHADEKIN, SPECIES_SHADEKIN_CREW) + +/datum/trait/neutral/colour_changing_eyes/apply(var/datum/species/S, var/mob/living/carbon/human/H, var/list/trait_prefs) + ..() + add_verb(H, /mob/living/carbon/human/proc/shapeshifter_select_eye_colour) + /* // Commented out in lieu of finding a better solution. /datum/trait/neutral/coldadapt/xenochimera sort = TRAIT_SORT_SPECIES