From 6595363a8a257e8ac2e82de2a603fa3c30072ef2 Mon Sep 17 00:00:00 2001 From: Sadhorizon <108196626+Sadhorizon@users.noreply.github.com> Date: Mon, 20 May 2024 10:58:59 +0200 Subject: [PATCH] Raises Sarathi max age to 175. (#2959) ## About The Pull Request Title. ## Why It's Good For The Game Quoting [the wiki](https://shiptest.net/wiki/Sarathi), > Sarathi have a longer lifespan than humans, with the oldest typically reaching 175 years old. I assume lore people forgor to update it code-wise. ## Changelog :cl: tweak: Sarathi max age is now 175. /:cl: --- .../mob/living/carbon/human/species_types/lizardpeople.dm | 1 + 1 file changed, 1 insertion(+) diff --git a/code/modules/mob/living/carbon/human/species_types/lizardpeople.dm b/code/modules/mob/living/carbon/human/species_types/lizardpeople.dm index 384677cfb73c4..6cb15357cc64c 100644 --- a/code/modules/mob/living/carbon/human/species_types/lizardpeople.dm +++ b/code/modules/mob/living/carbon/human/species_types/lizardpeople.dm @@ -3,6 +3,7 @@ name = "\improper Sarathi" id = SPECIES_SARATHI default_color = "00FF00" + species_age_max = 175 species_traits = list(MUTCOLORS,EYECOLOR,LIPS,SCLERA,EMOTE_OVERLAY,MUTCOLORS_SECONDARY) inherent_biotypes = MOB_ORGANIC|MOB_HUMANOID|MOB_REPTILE mutant_bodyparts = list("tail_lizard", "face_markings", "frills", "horns", "spines", "body_markings", "legs")