Soul Vesseled corpses can be consumed by Vitality Matrices (#23158)

* Soul Vesseled corpses can be drained by Vitality Matrices

* L.

* scarabs don't need this
This commit is contained in:
Joan Lung
2017-01-25 03:34:50 +04:00
committed by Razharas
parent 35aa5f0db8
commit 9db41ec546
5 changed files with 16 additions and 1 deletions
+11
View File
@@ -0,0 +1,11 @@
//Largely negative status effects go here, even if they have small benificial effects
/datum/status_effect/sigil_mark //allows the affected target to always trigger sigils while mindless
id = "sigil_mark"
duration = -1
alert_type = null
var/stat_allowed = DEAD //if owner's stat is below this, will remove itself
/datum/status_effect/sigil_mark/tick()
if(owner.stat < stat_allowed)
qdel(src)