Winged space critters.
This commit is contained in:
skull132
2014-10-08 21:30:25 +03:00
parent dad1705c46
commit 12019e7abd
2 changed files with 20 additions and 3 deletions
@@ -38,13 +38,15 @@
faction = "carp"
var/attackv = "nashes"
/mob/living/simple_animal/hostile/carp/Process_Spacemove(var/check_drift = 0)
return 1 //No drifting in space for space carp! //original comments do not steal
/mob/living/simple_animal/hostile/carp/FindTarget()
. = ..()
if(.)
custom_emote(1,"nashes at [.]")
custom_emote(1,"[attackv] at [.]")
/mob/living/simple_animal/hostile/carp/AttackingTarget()
. =..()
@@ -52,4 +54,16 @@
if(istype(L))
if(prob(15))
L.Weaken(3)
L.visible_message("<span class='danger'>\the [src] knocks down \the [L]!</span>")
L.visible_message("<span class='danger'>\the [src] knocks down \the [L]!</span>")
//////////////////////////////////////////////////////////////////////////////////////////////////
/////////////////////////////////SPACE RAKK! Or, namely, critters!////////////////////////////////
//////////////////////////////////////////////////////////////////////////////////////////////////
/mob/living/simple_animal/hostile/carp/critter
name = "winged critter"
desc = "An apparently winged creature, bat-like in appearance, with sharp teeth and claws."
icon_state = "critter"
icon_living = "critter"
icon_dead = "critter_dead"
attackv = "swoops"