//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)