Skip to content

Commit

Permalink
Do Not Revive
Browse files Browse the repository at this point in the history
New quirk that prevents you from being revived, uses the same doodad as revs revival blacklisting. Was the easiest way to do this.
  • Loading branch information
Noot-Toot committed Oct 28, 2024
1 parent 63da0fe commit 10e1bf9
Showing 1 changed file with 16 additions and 0 deletions.
16 changes: 16 additions & 0 deletions monkestation/code/datums/quirks/negative_quirks.dm
Original file line number Diff line number Diff line change
Expand Up @@ -240,3 +240,19 @@
*/
/datum/quirk/tunnel_vision/remove()
quirk_holder.remove_fov_trait("tunnel vision quirk")

/datum/quirk/dnr
name = "Do Not Revive"
desc = "For whatever reason, you have been blacklisted from revival. Death Is Permanent."
value = -6
icon = FA_ICON_HEART
gain_text = span_danger("You have one shot left.")
lose_text = span_notice("Something feels better about your medical record status.")
medical_record_text = "Patient cannot be revived whatsoever due to a blacklist from revival. Ensure heightened care."

/datum/quirk/dnr/add()
ADD_TRAIT(quirk_holder, TRAIT_DEFIB_BLACKLISTED, "DNR Quirk")

/datum/quirk/dnr/remove()
REMOVE_TRAIT(quirk_holder, TRAIT_DEFIB_BLACKLISTED, "DNR Quirk")

0 comments on commit 10e1bf9

Please sign in to comment.