Making human a standardized species

This commit is contained in:
ZomgPonies
2013-10-30 10:32:33 -04:00
parent 7048545d6d
commit f1fd068104
3 changed files with 10 additions and 6 deletions
@@ -54,10 +54,14 @@
species = new /datum/species/skellington(src)
..()
/mob/living/carbon/human/human/New()
species = new /datum/species/human(src)
..()
/mob/living/carbon/human/New()
if(!species)
set_species()
set_species("Human")
if(species.language)
var/datum/language/L = all_languages[species.language]
@@ -1330,7 +1334,7 @@ mob/living/carbon/human/yank_out_object()
new_species = "Human"
if(species && (species.name && species.name == new_species))
return
return 1
species = all_species[new_species]
+3 -3
View File
@@ -46,8 +46,10 @@
/datum/species/human
name = "Human"
icobase = 'icons/mob/human_races/r_human.dmi'
deform = 'icons/mob/human_races/r_def_human.dmi'
primitive = /mob/living/carbon/monkey
path = /mob/living/carbon/human
path = /mob/living/carbon/human/human
flags = HAS_SKIN_TONE | HAS_LIPS | HAS_UNDERWEAR | CAN_BE_FAT
/datum/species/unathi
@@ -187,6 +189,4 @@
max_hurt_damage = 3 // From 5 (for humans)
default_mutations=list(mRemotetalk) // TK is also another candidate, but TK is overpowered as fuck.
primitive = /mob/living/carbon/monkey // TODO
flags = WHITELISTED | HAS_LIPS | HAS_UNDERWEAR | CAN_BE_FAT
+1 -1
View File
@@ -374,7 +374,7 @@
if("Grey")
new_character = new /mob/living/carbon/human/grey(loc)
if("Human")
new_character = new /mob/living/carbon/human(loc)
new_character = new /mob/living/carbon/human/human(loc)
// new_character.set_species(client.prefs.species)
if(chosen_species.language)
new_character.add_language(chosen_species.language)