From 8ee94ad622ef9c3b30dcc4c2fa714a554f82bd00 Mon Sep 17 00:00:00 2001 From: ZomgPonies Date: Thu, 6 Mar 2014 22:23:19 -0500 Subject: [PATCH] alien weeds also --- code/game/objects/effects/aliens.dm | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/code/game/objects/effects/aliens.dm b/code/game/objects/effects/aliens.dm index 812ee92b20c..64b3369d800 100644 --- a/code/game/objects/effects/aliens.dm +++ b/code/game/objects/effects/aliens.dm @@ -276,6 +276,13 @@ Alien plants should do something if theres a lot of poison qdel(src) return + +/obj/effect/alien/weeds/fire_act(null, temperature, volume) + if(temperature > T0C+200) + health -= 1 * temperature + healthcheck() + + /obj/effect/alien/weeds/attackby(var/obj/item/weapon/W, var/mob/user) if(W.attack_verb.len) visible_message("\red \The [src] have been [pick(W.attack_verb)] with \the [W][(user ? " by [user]." : ".")]")