TG: Chaplains are no longer immune to cult magic. Instead, a new item, the null rod,

spawns in the chaplains office. Having the rod on your person will make you
immune to cult magic.

Runes are now dispelled with the null rod, not the bible.

Chaplains can no longer self heal with the bible.

Simple animals can now attack mechas and critters

Constructs no longer take extra damage from bibles.

Fueltanks now explode when shot by lasers or bullets.
Revision: r3125
Author: 	 kortgstation
This commit is contained in:
Ren Erthilo
2012-04-23 19:28:05 +01:00
parent 44c674984f
commit 7707b3d6bd
3 changed files with 17 additions and 7 deletions

View File

@@ -121,3 +121,13 @@ Contains the procs that control attacking critters
if(prob(25))
src.Die()
return
attack_animal(mob/living/simple_animal/M as mob)
if(M.melee_damage_upper == 0)
M.emote("[M.friendly] [src]")
else
for(var/mob/O in viewers(src, null))
O.show_message("\red <B>[M]</B> [M.attacktext] [src]!", 1)
var/damage = rand(M.melee_damage_lower, M.melee_damage_upper)
TakeDamage(damage)
return