Merge pull request #4010 from Fox-McCloud/lusty-xeno-maid

Ports Lusty Xenomorph Maid
This commit is contained in:
TheDZD
2016-03-28 22:45:41 -04:00
3 changed files with 24 additions and 1 deletions
@@ -145,3 +145,25 @@
dead = 1
visible_message("[src] lets out a waning guttural screech, green blood bubbling from its maw...")
playsound(src, 'sound/voice/hiss6.ogg', 100, 1)
/mob/living/simple_animal/hostile/alien/maid
name = "lusty xenomorph maid"
melee_damage_lower = 0
melee_damage_upper = 0
a_intent = "help"
friendly = "caresses"
environment_smash = 0
icon_state = "maid"
icon_living = "maid"
icon_dead = "maid_dead"
/mob/living/simple_animal/hostile/alien/maid/AttackingTarget()
if(istype(target, /atom/movable))
if(istype(target, /obj/effect/decal/cleanable))
visible_message("<span class='notice'>\The [src] cleans up \the [target].</span>")
qdel(target)
return
var/atom/movable/M = target
M.clean_blood()
visible_message("<span class='notice'>\The [src] polishes \the [target].</span>")