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:
LordFowl
2016-12-28 02:23:26 +02:00
committed by skull132
parent 0c59930261
commit bc8871ac2b
65 changed files with 1248 additions and 158 deletions
+6 -18
View File
@@ -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])