From f4adb1895920ca1f26326cfe3ed1796e44da7eb7 Mon Sep 17 00:00:00 2001 From: Alberyk Date: Tue, 16 Mar 2021 20:16:23 -0300 Subject: [PATCH] Tweaks character ages (#11432) --- code/modules/mob/living/carbon/human/species/species.dm | 4 ++-- .../living/carbon/human/species/station/skrell/skrell.dm | 1 + .../living/carbon/human/species/station/tajara/tajara.dm | 2 ++ html/changelogs/example - Copia.yml | 6 ++++++ 4 files changed, 11 insertions(+), 2 deletions(-) create mode 100644 html/changelogs/example - Copia.yml diff --git a/code/modules/mob/living/carbon/human/species/species.dm b/code/modules/mob/living/carbon/human/species/species.dm index 6720397e6e0..366e937740d 100644 --- a/code/modules/mob/living/carbon/human/species/species.dm +++ b/code/modules/mob/living/carbon/human/species/species.dm @@ -12,7 +12,7 @@ var/category_name // a name for this overarching species, ie 'Human', 'Skrell', 'IPC'. only used in character creation var/blurb = "A completely nondescript species." // A brief lore summary for use in the chargen screen. var/bodytype - var/age_min = 17 + var/age_min = 18 var/age_max = 85 var/economic_modifier = 0 var/list/default_genders = list(MALE, FEMALE) @@ -658,7 +658,7 @@ /datum/species/proc/get_injection_modifier() return injection_mod - + /datum/species/proc/is_naturally_insulated() return FALSE diff --git a/code/modules/mob/living/carbon/human/species/station/skrell/skrell.dm b/code/modules/mob/living/carbon/human/species/station/skrell/skrell.dm index e7041038496..898b1dff293 100644 --- a/code/modules/mob/living/carbon/human/species/station/skrell/skrell.dm +++ b/code/modules/mob/living/carbon/human/species/station/skrell/skrell.dm @@ -4,6 +4,7 @@ name_plural = "Skrell" category_name = "Skrell" bodytype = BODYTYPE_SKRELL + age_min = 30 age_max = 500 default_genders = list(PLURAL) selectable_pronouns = null diff --git a/code/modules/mob/living/carbon/human/species/station/tajara/tajara.dm b/code/modules/mob/living/carbon/human/species/station/tajara/tajara.dm index ef5ade6f78b..8cb497293ee 100644 --- a/code/modules/mob/living/carbon/human/species/station/tajara/tajara.dm +++ b/code/modules/mob/living/carbon/human/species/station/tajara/tajara.dm @@ -24,6 +24,8 @@ grab_mod = 1.25 // Fur easy to cling onto + age_max = 80 + num_alternate_languages = 2 secondary_langs = list(LANGUAGE_SIIK_MAAS, LANGUAGE_SIIK_TAJR, LANGUAGE_YA_SSA) name_language = LANGUAGE_SIIK_MAAS diff --git a/html/changelogs/example - Copia.yml b/html/changelogs/example - Copia.yml new file mode 100644 index 00000000000..d7beb34f0ac --- /dev/null +++ b/html/changelogs/example - Copia.yml @@ -0,0 +1,6 @@ +author: Alberyk + +delete-after: True + +changes: + - tweak: "Some species' ages were tweaked to be more lore accurate." \ No newline at end of file