removes other stupid races, more icon fixes.
This commit is contained in:
+15
-11
@@ -278,8 +278,6 @@ datum
|
||||
adjective="scaled"
|
||||
taur="naga"
|
||||
tail=1
|
||||
|
||||
|
||||
murid // i have no idea what this is
|
||||
//name="murid"
|
||||
id="murid"
|
||||
@@ -556,16 +554,9 @@ datum
|
||||
adjective="rocky"
|
||||
restricted=2
|
||||
zombie
|
||||
//name="zombie"
|
||||
//name = "High Functioning Zombie"
|
||||
id="zombie"
|
||||
generic="undead"
|
||||
adjective="rotten"
|
||||
restricted=2
|
||||
cosmetic_zombie // considering renaming to zombie/cosmetic
|
||||
//name="zombie"
|
||||
id="zombie"
|
||||
generic="undead"
|
||||
adjective="particularly rotten"
|
||||
say_mod="moans"
|
||||
restricted=2
|
||||
plasmaman
|
||||
//name="Plasmabone"
|
||||
@@ -612,6 +603,19 @@ datum
|
||||
tail=0
|
||||
eyes="jelleyes"
|
||||
restricted=2
|
||||
synth
|
||||
//name = "Synth" //inherited from the real species, for health scanners and things
|
||||
id = "synth"
|
||||
say_mod = "beep boops" //inherited from a user's real species
|
||||
restricted=2
|
||||
synth/military
|
||||
//name = "Military Synth"
|
||||
id = "military_synth"
|
||||
restricted=2
|
||||
corporate
|
||||
//name = "Corporate Agent"
|
||||
id = "agent"
|
||||
restricted=2
|
||||
/*
|
||||
var/list/kpcode_race_list
|
||||
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
//Configuraton defines //TODO: Move all yes/no switches into bitflags
|
||||
f//Configuraton defines //TODO: Move all yes/no switches into bitflags
|
||||
|
||||
//Used by jobs_have_maint_access
|
||||
#define ASSISTANTS_HAVE_MAINT_ACCESS 1
|
||||
|
||||
@@ -289,7 +289,7 @@ var/list/preferences_datums = list()
|
||||
|
||||
dat += "</td>"
|
||||
|
||||
if(config.mutant_races) //We don't allow mutant bodyparts for humans either unless this is true.
|
||||
/*if(config.mutant_races) //We don't allow mutant bodyparts for humans either unless this is true.
|
||||
|
||||
if((MUTCOLORS in pref_species.specflags) || (MUTCOLORS_PARTSONLY in pref_species.specflags))
|
||||
|
||||
@@ -382,7 +382,7 @@ var/list/preferences_datums = list()
|
||||
|
||||
dat += "<a href='?_src_=prefs;preference=wings;task=input'>[features["wings"]]</a><BR>"
|
||||
|
||||
dat += "</td>"
|
||||
dat += "</td>"*/
|
||||
|
||||
dat += "</tr></table>"
|
||||
|
||||
@@ -1019,6 +1019,7 @@ var/list/preferences_datums = list()
|
||||
//if("be_taur")
|
||||
// be_taur = !be_taur
|
||||
|
||||
/*
|
||||
if("tail_lizard")
|
||||
var/new_tail
|
||||
new_tail = input(user, "Choose your character's tail:", "Character Preference") as null|anything in tails_list_lizard
|
||||
@@ -1072,6 +1073,7 @@ var/list/preferences_datums = list()
|
||||
new_body_markings = input(user, "Choose your character's body markings:", "Character Preference") as null|anything in body_markings_list
|
||||
if(new_body_markings)
|
||||
features["body_markings"] = new_body_markings
|
||||
*/
|
||||
|
||||
if("s_tone")
|
||||
var/new_s_tone = input(user, "Choose your character's skin-tone:", "Character Preference") as null|anything in skin_tones
|
||||
|
||||
@@ -413,6 +413,7 @@ SAVEFILE UPDATING/VERSIONING - 'Simplified', or rather, more coder-friendly ~Car
|
||||
eye_color = sanitize_hexcolor(eye_color, 3, 0)
|
||||
skin_tone = sanitize_inlist(skin_tone, skin_tones)
|
||||
backbag = sanitize_inlist(backbag, backbaglist, initial(backbag))
|
||||
/*
|
||||
features["mcolor"] = sanitize_hexcolor(features["mcolor"], 3, 0)
|
||||
features["tail_lizard"] = sanitize_inlist(features["tail_lizard"], tails_list_lizard)
|
||||
features["tail_human"] = sanitize_inlist(features["tail_human"], tails_list_human, "None")
|
||||
@@ -421,7 +422,13 @@ SAVEFILE UPDATING/VERSIONING - 'Simplified', or rather, more coder-friendly ~Car
|
||||
features["ears"] = sanitize_inlist(features["ears"], ears_list, "None")
|
||||
features["frills"] = sanitize_inlist(features["frills"], frills_list)
|
||||
features["spines"] = sanitize_inlist(features["spines"], spines_list)
|
||||
features["body_markings"] = sanitize_inlist(features["body_markings"], body_markings_list)
|
||||
features["body_markings"] = sanitize_inlist(features["body_markings"], body_markings_list)*/
|
||||
|
||||
mutant_tail = sanitize_text(mutant_tail, initial(mutant_tail))
|
||||
mutant_wing = sanitize_text(mutant_wing, initial(mutant_wing))
|
||||
wingcolor = sanitize_hexcolor(wingcolor, 3, 0)
|
||||
character_size = sanitize_text(character_size, initial(character_size))
|
||||
// mutant_color = sanitize_hexcolor(mutant_color, 3, 0)
|
||||
|
||||
vore_ability=sanitize_vore_list(vore_ability)
|
||||
if(isnull(vore_banned_methods))vore_banned_methods=0
|
||||
|
||||
Binary file not shown.
|
Before Width: | Height: | Size: 42 KiB After Width: | Height: | Size: 42 KiB |
Binary file not shown.
|
Before Width: | Height: | Size: 29 KiB After Width: | Height: | Size: 28 KiB |
Reference in New Issue
Block a user