Unapologetic Undead Buffs (#5259)

Halloween is close, and due to such, we must increase the spookyness.

This pr adds zombies. They spread via the bite, that will infect someone with a chemical, that will create a parasite, if left unchecked, it will turn the victim into a flesh eating undead.
This commit is contained in:
Alberyk
2018-09-30 21:32:29 +03:00
committed by Erki
parent 297d581350
commit 9f8cfc7e87
13 changed files with 182 additions and 11 deletions
@@ -135,7 +135,7 @@
/spell/targeted/mend/cast(list/targets, mob/user)
..()
for(var/mob/living/target in targets)
if(isskeleton(target))
if(isundead(target))
user << "This spell can't affect the undead."
return 0
@@ -217,7 +217,7 @@
user << "<span class='warning'>\The [target] is still alive!</span>"
return 0
if(isskeleton(target))
if(isundead(target))
user << "This spell can't affect the undead."
return 0
@@ -91,7 +91,7 @@
user << "This spell can't affect the living."
return 0
if(isskeleton(target))
if(isundead(target))
user << "This spell can't affect the undead."
return 0
@@ -144,7 +144,7 @@
/spell/targeted/lichdom/cast(mob/target,var/mob/living/carbon/human/user as mob)
if(isskeleton(user))
if(isundead(user))
user << "You have no soul or life to offer."
return 0