mirror of
https://github.com/CHOMPStation2/CHOMPStation2.git
synced 2025-12-13 03:33:21 +00:00
Adding herms all the way
This commit is contained in:
@@ -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
|
var/global/list/turfs = list() //list of all turfs
|
||||||
|
|
||||||
#define all_genders_define_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")
|
#define all_genders_text_list list("Male","Female","Plural","Neuter","Herm") //VOREStation Edit
|
||||||
|
|
||||||
//Languages/species/whitelist.
|
//Languages/species/whitelist.
|
||||||
var/global/list/all_species[0]
|
var/global/list/all_species[0]
|
||||||
|
|||||||
@@ -99,7 +99,7 @@
|
|||||||
set name = "Set Gender Identity"
|
set name = "Set Gender Identity"
|
||||||
set desc = "Sets the pronouns when examined and performing an emote."
|
set desc = "Sets the pronouns when examined and performing an emote."
|
||||||
set category = "IC"
|
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)
|
if(!new_gender_identity)
|
||||||
return 0
|
return 0
|
||||||
change_gender_identity(new_gender_identity)
|
change_gender_identity(new_gender_identity)
|
||||||
@@ -110,4 +110,4 @@
|
|||||||
set category = "IC"
|
set category = "IC"
|
||||||
set desc = "Switch tail layer on top."
|
set desc = "Switch tail layer on top."
|
||||||
tail_alt = !tail_alt
|
tail_alt = !tail_alt
|
||||||
update_tail_showing()
|
update_tail_showing()
|
||||||
|
|||||||
@@ -35,6 +35,12 @@
|
|||||||
t_he = "it"
|
t_he = "it"
|
||||||
t_His = "Its"
|
t_His = "Its"
|
||||||
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)
|
switch(weight_examine)
|
||||||
if(0 to 74)
|
if(0 to 74)
|
||||||
@@ -88,6 +94,10 @@
|
|||||||
t_He = "It"
|
t_He = "It"
|
||||||
t_his = "its"
|
t_his = "its"
|
||||||
t_His = "Its"
|
t_His = "Its"
|
||||||
|
if(HERM)
|
||||||
|
t_He = "Shi"
|
||||||
|
t_his = "hir"
|
||||||
|
t_His = "Hir"
|
||||||
switch(nutrition_examine)
|
switch(nutrition_examine)
|
||||||
if(0 to 49)
|
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"
|
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)
|
if(!new_gender)
|
||||||
return
|
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)
|
if(!new_gender_identity)
|
||||||
return
|
return
|
||||||
|
|
||||||
|
|||||||
@@ -181,6 +181,8 @@ VOREStation Removal End */
|
|||||||
t_she = "They are"
|
t_she = "They are"
|
||||||
else if(H.identifying_gender == NEUTER)
|
else if(H.identifying_gender == NEUTER)
|
||||||
t_she = "It is"
|
t_she = "It is"
|
||||||
|
else if(H.identifying_gender == HERM) //VOREStation Edit
|
||||||
|
t_she = "Shi is"
|
||||||
|
|
||||||
switch(stored_shock_by_ref["\ref[H]"])
|
switch(stored_shock_by_ref["\ref[H]"])
|
||||||
if(1 to 10)
|
if(1 to 10)
|
||||||
|
|||||||
14
gender_vr.dm
Normal file
14
gender_vr.dm
Normal 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"
|
||||||
Reference in New Issue
Block a user