mirror of
https://github.com/Aurorastation/Aurora.3.git
synced 2026-08-27 06:54:18 +01:00
Shells and Periphery (#1327)
Adds Shells. Adds tags. Adds IPC subspecies. Adds HK-47's. Does not add IPC construction. Beyond the obvious review of shells, the exact stats of the IPC subspecies need review. They were largely an afterthought, and quickly overshadowed by the shell project.
This commit is contained in:
@@ -148,25 +148,13 @@ datum/preferences
|
||||
save_preferences()
|
||||
save_character()
|
||||
|
||||
/datum/preferences/proc/getMinAge(var/age_min)
|
||||
if(species == "Vaurca Worker" || species == "Vaurca Warrior" || species == "Machine" || species == "Diona")
|
||||
age_min = 1
|
||||
if(species == "Human" || species == "Skrell" || species == "Tajara" || species == "Unathi")
|
||||
age_min = 17
|
||||
return age_min
|
||||
/datum/preferences/proc/getMinAge()
|
||||
var/datum/species/mob_species = all_species[species]
|
||||
return mob_species.age_min
|
||||
|
||||
/datum/preferences/proc/getMaxAge(var/age_max)
|
||||
if((species == "Vaurca Worker" || species == "Vaurca Warrior"))
|
||||
age_max = 20
|
||||
if(species == "Machine")
|
||||
age_max = 30
|
||||
if(species == "Skrell" || species == "Diona")
|
||||
age_max = 500
|
||||
if(species == "Human")
|
||||
age_max = 120
|
||||
if(species == "Tajara" || species == "Unathi")
|
||||
age_max = 85
|
||||
return age_max
|
||||
/datum/preferences/proc/getMaxAge()
|
||||
var/datum/species/mob_species = all_species[species]
|
||||
return mob_species.age_max
|
||||
|
||||
/datum/preferences/proc/ZeroSkills(var/forced = 0)
|
||||
for(var/V in SKILLS) for(var/datum/skill/S in SKILLS[V])
|
||||
|
||||
Reference in New Issue
Block a user