Alien weeds now don't spread FUCKING EVERYWHERE, instead being limited to 3 tiles within the nearest weed node (which are now planted for 50 plasma instead of weeds for 100 plasma). Weed nodes spread weeds.

git-svn-id: http://tgstation13.googlecode.com/svn/trunk@2326 316c924e-a436-60f5-8080-3fe189b3f50e
This commit is contained in:
uporotiy
2011-10-03 16:19:17 +00:00
parent 4cbdcb2395
commit 6288dc77f2
4 changed files with 20 additions and 7 deletions
@@ -19,16 +19,15 @@ Doesn't work on other aliens/AI.*/
else return 1
/mob/living/carbon/alien/humanoid/verb/plant()
set name = "Plant Weeds (100)"
set name = "Plant Weeds (50)"
set desc = "Plants some alien weeds"
set category = "Alien"
if(powerc(100,1))
toxloss -= 100
if(powerc(50,1))
toxloss -= 50
for(var/mob/O in viewers(src, null))
O.show_message(text("\green <B>[src] has planted some alien weeds!</B>"), 1)
var/obj/effect/alien/weeds/W = new (loc)
W.Life()
new /obj/effect/alien/weeds/bush(loc)
return
/mob/living/carbon/alien/humanoid/verb/call_to()