mirror of
https://github.com/ParadiseSS13/Paradise.git
synced 2026-08-23 03:57:13 +01:00
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:
@@ -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()
|
||||
|
||||
Reference in New Issue
Block a user