From 5c29f1e5259a74277db33bf1771cc75cc9d66ff3 Mon Sep 17 00:00:00 2001 From: Cameron Lennox Date: Wed, 24 Sep 2025 17:32:35 -0400 Subject: [PATCH] adds sexes (#18551) --- .../mob/living/carbon/human/species/outsider/replicant.dm | 2 ++ code/modules/mob/living/carbon/human/species/station/alraune.dm | 2 ++ 2 files changed, 4 insertions(+) diff --git a/code/modules/mob/living/carbon/human/species/outsider/replicant.dm b/code/modules/mob/living/carbon/human/species/outsider/replicant.dm index 3007a9c85c..6ed5dc77cb 100644 --- a/code/modules/mob/living/carbon/human/species/outsider/replicant.dm +++ b/code/modules/mob/living/carbon/human/species/outsider/replicant.dm @@ -16,6 +16,8 @@ blood_color = "#aaaadd" + genders = list(MALE, FEMALE, NEUTER, PLURAL) + show_ssd = "eerily still." min_age = 0 diff --git a/code/modules/mob/living/carbon/human/species/station/alraune.dm b/code/modules/mob/living/carbon/human/species/station/alraune.dm index 3db989a342..567de9ed49 100644 --- a/code/modules/mob/living/carbon/human/species/station/alraune.dm +++ b/code/modules/mob/living/carbon/human/species/station/alraune.dm @@ -47,6 +47,8 @@ flags = NO_DNA | NO_SLEEVE | IS_PLANT | NO_MINOR_CUT appearance_flags = HAS_HAIR_COLOR | HAS_LIPS | HAS_UNDERWEAR | HAS_SKIN_COLOR | HAS_EYE_COLOR + genders = list(MALE, FEMALE, NEUTER, PLURAL) + inherent_verbs = list(/mob/living/carbon/human/proc/alraune_fruit_select, //Give them the voremodes related to wrapping people in vines and sapping their fluids /mob/living/carbon/human/proc/tie_hair, /mob/living/proc/toggle_thorns)