Ports Lusty Xenomorph Maid

This commit is contained in:
Fox-McCloud
2016-03-26 20:29:37 -04:00
parent a19f646e0e
commit f215ab650f
2 changed files with 22 additions and 0 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("[src] cleans up \the [target].")
qdel(target)
return
var/atom/movable/M = target
M.clean_blood()
visible_message("[src] polishes \the [target].")