mam_body_markings functional

This commit is contained in:
TalkingCactus
2016-08-15 22:07:45 -04:00
parent 4dffc5c716
commit 0b744a9fcb
3 changed files with 9 additions and 4 deletions

View File

@@ -333,10 +333,10 @@
m_type = 2
if("wag","wags")
if(dna && dna.species && (("tail_lizard" in dna.species.mutant_bodyparts) || ((dna.features["tail_human"] != "None") && !("waggingtail_human" in dna.species.mutant_bodyparts))))
if(dna && dna.species && (("tail_lizard" in dna.species.mutant_bodyparts) || ((dna.features["mam_tail"] != "None") && !("mam_waggingtail" in dna.species.mutant_bodyparts)) || ((dna.features["tail_human"] != "None") && !("waggingtail_human" in dna.species.mutant_bodyparts))))
message = "<B>[src]</B> wags \his tail."
startTailWag()
else if(dna && dna.species && (("waggingtail_lizard" in dna.species.mutant_bodyparts) || ("waggingtail_human" in dna.species.mutant_bodyparts)))
else if(dna && dna.species && (("waggingtail_lizard" in dna.species.mutant_bodyparts) || ("mam_waggingtail" in dna.species.mutant_bodyparts) || ("waggingtail_human" in dna.species.mutant_bodyparts)))
endTailWag()
else
src << "<span class='notice'>Unusable emote '[act]'. Say *help for a list.</span>"
@@ -384,6 +384,9 @@
if("tail_human" in dna.species.mutant_bodyparts)
dna.species.mutant_bodyparts -= "tail_human"
dna.species.mutant_bodyparts |= "waggingtail_human"
if("mam_tail" in dna.species.mutant_bodyparts)
dna.species.mutant_bodyparts -= "mam_tail"
dna.species.mutant_bodyparts |= "mam_waggingtail"
update_body()

View File

@@ -1480,12 +1480,14 @@
icon_state = "belly"
gender_specific = 1
/*
/datum/sprite_accessory/mam_body_markings/handsfeet
name = "Hands & Feet"
icon_state = "handsfeet"
color_src = MUTCOLORS3
/datum/sprite_accessory/mam_body_markings/bellyhandsfeet
name = "Belly,Hands,Feet"
name = "Belly, Hands, & Feet"
icon_state = "bellyhandsfeet"
gender_specific = 1
*/

Binary file not shown.

Before

Width:  |  Height:  |  Size: 16 KiB

After

Width:  |  Height:  |  Size: 4.8 KiB