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

View File

@@ -24,8 +24,8 @@ var/global/list/joblist = list() //list of all jobstypes, minus borg and AI
var/global/list/turfs = list() //list of all turfs
#define all_genders_define_list list(MALE,FEMALE,PLURAL,NEUTER)
#define all_genders_text_list list("Male","Female","Plural","Neuter")
#define all_genders_define_list list(MALE,FEMALE,PLURAL,NEUTER,HERM) //VOREStaton Edit
#define all_genders_text_list list("Male","Female","Plural","Neuter","Herm") //VOREStation Edit
//Languages/species/whitelist.
var/global/list/all_species[0]

View File

@@ -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)

View File

@@ -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"

View File

@@ -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

View File

@@ -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)

14
gender_vr.dm Normal file
View File

@@ -0,0 +1,14 @@
/datum/gender/herm
key = "herm"
He = "Shi"
he = "shi"
His = "Hir"
his = "hir"
him = "hir"
has = "has"
is = "is"
does = "does"
himself = "hirself"
s = "s"
hes = "shi's"