Adding herms all the way

This commit is contained in:
kcin2001
2018-04-27 15:47:46 -07:00
parent cfbab1de8e
commit 51cd8636be
6 changed files with 31 additions and 5 deletions
@@ -99,7 +99,7 @@
set name = "Set Gender Identity"
set desc = "Sets the pronouns when examined and performing an emote."
set category = "IC"
var/new_gender_identity = input("Please select a gender Identity.") as null|anything in list(FEMALE, MALE, NEUTER, PLURAL)
var/new_gender_identity = input("Please select a gender Identity.") as null|anything in list(FEMALE, MALE, NEUTER, PLURAL, HERM)
if(!new_gender_identity)
return 0
change_gender_identity(new_gender_identity)
@@ -110,4 +110,4 @@
set category = "IC"
set desc = "Switch tail layer on top."
tail_alt = !tail_alt
update_tail_showing()
update_tail_showing()
@@ -35,6 +35,12 @@
t_he = "it"
t_His = "Its"
t_his = "its"
if(HERM)
t_He = "Shi"
t_he = "shi"
t_His = "Hir"
t_his = "hir"
t_heavy = "curvy"
switch(weight_examine)
if(0 to 74)
@@ -88,6 +94,10 @@
t_He = "It"
t_his = "its"
t_His = "Its"
if(HERM)
t_He = "Shi"
t_his = "hir"
t_His = "Hir"
switch(nutrition_examine)
if(0 to 49)
message = "<span class='warning'>[t_He] [t_is] starving! You can hear [t_his] stomach snarling from across the room!</span>\n"
@@ -130,7 +130,7 @@ var/list/wrapped_species_by_ref = list()
if(!new_gender)
return
var/new_gender_identity = input("Please select a gender Identity.", "Shapeshifter Gender Identity") as null|anything in list(FEMALE, MALE, NEUTER, PLURAL)
var/new_gender_identity = input("Please select a gender Identity.", "Shapeshifter Gender Identity") as null|anything in list(FEMALE, MALE, NEUTER, PLURAL, HERM) //VOREStation Edit
if(!new_gender_identity)
return
@@ -181,6 +181,8 @@ VOREStation Removal End */
t_she = "They are"
else if(H.identifying_gender == NEUTER)
t_she = "It is"
else if(H.identifying_gender == HERM) //VOREStation Edit
t_she = "Shi is"
switch(stored_shock_by_ref["\ref[H]"])
if(1 to 10)