mirror of
https://github.com/Aurorastation/Aurora.3.git
synced 2026-08-23 04:51:32 +01:00
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:
@@ -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
|
||||
|
||||
|
||||
Reference in New Issue
Block a user