Oh god, ALL viruses spread through blood contact! This is not good because robot nanites and alien embryo are "SPECIAL" contagions but are still VIRUSES, so they're spread through blood. This is not okay!


Metroids:
     Quick edit - they don't attack metroid men (this is a mutant race) anymore.

git-svn-id: http://tgstation13.googlecode.com/svn/trunk@1778 316c924e-a436-60f5-8080-3fe189b3f50e
This commit is contained in:
vageyenaman@gmail.com
2011-07-05 22:30:59 +00:00
parent 5dd08f4650
commit 59c09088c0
2 changed files with 7 additions and 3 deletions

View File

@@ -86,19 +86,23 @@
if(!istype(C, /mob/living/carbon/metroid)) // does not eat his bros! BROSBROSBROSBROS
if(C.stat != 2 && C.health > 0) // chooses only healthy targets
var/notarget = 0
if(istype(C, /mob/living/carbon/human))
var/mob/living/carbon/human/H = C
if(H.mutantrace == "metroid")
notarget = 1 // don't hurt metroidmen!
if(!C.canmove)
for(var/mob/living/carbon/metroid/M in view(1,C))
if(M.Victim == C)
notarget = 1
break // They don't go for prey already being eaten
if(!notarget) targets += C
if((hungry || starving) && targets.len > 0)
if(!istype(src, /mob/living/carbon/metroid/adult))
if(!starving)