diff --git a/code/citadel/races.dm b/code/citadel/races.dm index 42948d5ebb..18dd713421 100644 --- a/code/citadel/races.dm +++ b/code/citadel/races.dm @@ -272,13 +272,13 @@ datum attack_verb = "kick" restricted=2 lizard - //name="lizard" + name="lizard" id="lizard" generic="reptile" adjective="scaled" taur="naga" tail=1 - restricted=2 + murid // i have no idea what this is //name="murid" @@ -750,7 +750,7 @@ var/list/mutant_tails = list( "kangaroo"="kangaroo", "kangaroo"="kangaroo", "pony"="pony", -// "lizard"="lizard", + "lizard"="lizard", "cyborg"="cyborg") var/list/mutant_wings = list( diff --git a/code/modules/mob/living/carbon/human/species.dm b/code/modules/mob/living/carbon/human/species.dm index 811771aa1f..fe77e2b697 100644 --- a/code/modules/mob/living/carbon/human/species.dm +++ b/code/modules/mob/living/carbon/human/species.dm @@ -61,7 +61,7 @@ var/darksight = 2 // species flags. these can be found in flags.dm - var/list/specflags = list() + var/list/specflags = list(EYECOLOR,HAIR,FACEHAIR,LIPS) var/attack_verb = "punch" // punch-specific attack verb var/sound/attack_sound = 'sound/weapons/punch1.ogg' diff --git a/code/modules/mob/living/carbon/human/species_types.dm b/code/modules/mob/living/carbon/human/species_types.dm index b204cb18b7..8300e894b0 100644 --- a/code/modules/mob/living/carbon/human/species_types.dm +++ b/code/modules/mob/living/carbon/human/species_types.dm @@ -6,7 +6,7 @@ name = "Human" id = "human" default_color = "FFFFFF" - specflags = list(EYECOLOR,HAIR,FACEHAIR,LIPS) + //specflags = list(EYECOLOR,HAIR,FACEHAIR,LIPS) mutant_bodyparts = list("tail_human", "ears", "wings") default_features = list("mcolor" = "FFF", "tail_human" = "None", "ears" = "None", "wings" = "None") use_skintones = 1 @@ -54,7 +54,7 @@ say_mod = "hisses" default_color = "00FF00" roundstart = 1 - specflags = list(MUTCOLORS,EYECOLOR,LIPS) + specflags = list(MUTCOLORS,EYECOLOR,LIPS,HAIR,FACEHAIR) mutant_bodyparts = list("tail_lizard", "snout", "spines", "horns", "frills", "body_markings") mutant_organs = list(/obj/item/organ/tongue/lizard) default_features = list("mcolor" = "0F0", "tail" = "Smooth", "snout" = "Round", "horns" = "None", "frills" = "None", "spines" = "None", "body_markings" = "None") @@ -189,7 +189,7 @@ default_color = "00FF90" say_mod = "chirps" eyes = "jelleyes" - specflags = list(MUTCOLORS,EYECOLOR,NOBLOOD,VIRUSIMMUNE, TOXINLOVER) + specflags = list(MUTCOLORS,EYECOLOR,HAIR,FACEHAIR,NOBLOOD) meat = /obj/item/weapon/reagent_containers/food/snacks/meat/slab/human/mutant/slime exotic_blood = "slimejelly" var/datum/action/innate/regenerate_limbs/regenerate_limbs @@ -286,7 +286,7 @@ id = "slime" default_color = "00FFFF" darksight = 3 - specflags = list(MUTCOLORS,EYECOLOR,HAIR,FACEHAIR,NOBLOOD,VIRUSIMMUNE, TOXINLOVER) + specflags = list(MUTCOLORS,EYECOLOR,HAIR,FACEHAIR,NOBLOOD) say_mod = "says" eyes = "eyes" hair_color = "mutcolor" diff --git a/icons/mob/human_parts.dmi b/icons/mob/human_parts.dmi index 0034990c51..53d85d3abc 100644 Binary files a/icons/mob/human_parts.dmi and b/icons/mob/human_parts.dmi differ