From a9639a59bdc7cd0d9bf7ba7d11106ab9802aa6af Mon Sep 17 00:00:00 2001 From: TalkingCactus Date: Thu, 11 Aug 2016 23:08:39 -0400 Subject: [PATCH] hey stop that --- .../mob/living/carbon/human/species_types.dm | 39 +++++++++++++++++-- 1 file changed, 35 insertions(+), 4 deletions(-) diff --git a/code/modules/mob/living/carbon/human/species_types.dm b/code/modules/mob/living/carbon/human/species_types.dm index e0786d433d..10c7bc64a7 100644 --- a/code/modules/mob/living/carbon/human/species_types.dm +++ b/code/modules/mob/living/carbon/human/species_types.dm @@ -1059,19 +1059,50 @@ SYNDICATE BLACK OPS /datum/species/wolf name = "Wolf" id = "wolf" - say_mod = "howls" default_color = "4B4B4B" roundstart = 1 specflags = list(MUTCOLORS,EYECOLOR,LIPS,HAIR) - mutant_bodyparts = list("tail_human", "ears", "wings") - default_features = list("mcolor" = "FFF", "tail_human" = "Wolf", "ears" = "Wolf", "wings" = "None") + mutant_bodyparts = list("tail_human", "ears", "wings") //Most mammal species will use the 'tail_human' and 'ears'. For exotic species and birds, consider making and using a different type to avoid monstrocities. + default_features = list("mcolor" = "FFF","mcolor2" = "FFF","mcolor3" = "FFF", "tail_human" = "Wolf", "ears" = "Wolf", "wings" = "None") attack_verb = "claw" attack_sound = 'sound/weapons/slash.ogg' miss_sound = 'sound/weapons/slashmiss.ogg' - meat = /obj/item/weapon/reagent_containers/food/snacks/meat/slab/human +/datum/species/wolf/spec_death(gibbed, mob/living/carbon/human/H) + if(H) + H.endTailWag() + +/datum/species/fox + name = "Fox" + id = "fox" + default_color = "FF7414" + roundstart = 1 + specflags = list(MUTCOLORS,EYECOLOR,LIPS,HAIR) + mutant_bodyparts = list("tail_human", "ears", "wings") + default_features = list("mcolor" = "FFF","mcolor2" = "FFF","mcolor3" = "FFF", "tail_human" = "Fox", "ears" = "Fox", "wings" = "None") + attack_verb = "claw" + attack_sound = 'sound/weapons/slash.ogg' + miss_sound = 'sound/weapons/slashmiss.ogg' + +/datum/species/fox/spec_death(gibbed, mob/living/carbon/human/H) + if(H) + H.endTailWag() //FELINE// +/datum/species/tajaran + name = "Tajaran" + id = "tajaran" + default_color = "BCAC9B" + roundstart = 1 + specflags = list(MUTCOLORS,EYECOLOR,LIPS,HAIR) + mutant_bodyparts = list("tail_human", "ears", "wings") + default_features = list("mcolor" = "FFF","mcolor2" = "FFF","mcolor3" = "FFF", "tail_human" = "Tajaran", "ears" = "Tajaran", "wings" = "None") + attack_verb = "claw" + attack_sound = 'sound/weapons/slash.ogg' + miss_sound = 'sound/weapons/slashmiss.ogg' +/datum/species/tajaran/spec_death(gibbed, mob/living/carbon/human/H) + if(H) + H.endTailWag() //AVIAN// //RODENT//