Tweaks character ages (#11432)

This commit is contained in:
Alberyk
2021-03-17 00:16:23 +01:00
committed by GitHub
parent aff057152f
commit f4adb18959
4 changed files with 11 additions and 2 deletions
@@ -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
@@ -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
@@ -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
+6
View File
@@ -0,0 +1,6 @@
author: Alberyk
delete-after: True
changes:
- tweak: "Some species' ages were tweaked to be more lore accurate."