-
Notifications
You must be signed in to change notification settings - Fork 67
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[Modular] Makes the Possessive and Kleptomaniac brain trumas into qui…
…rks (#1637) * Traumatic Qurks * Fixes some typos * grammar --------- Co-authored-by: Bloop <[email protected]>
- Loading branch information
1 parent
ce6dafa
commit d36f5b8
Showing
2 changed files
with
38 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,37 @@ | ||
/datum/quirk/possessive | ||
name = "Possessive" | ||
desc = "You feel a strong attachment over any item you own; often times you feel like you can't drop them." | ||
value = 0 | ||
gain_text = span_danger("You feel like everything you own is too precious to drop.") | ||
lose_text = span_notice("Suddenly you feel like your stuff isn't that important anymore.") | ||
medical_record_text = "Subject exhibits a possessive tendency with objects." | ||
icon = FA_ICON_HANDS_HOLDING | ||
|
||
/datum/quirk/possessive/post_add() | ||
. = ..() | ||
var/mob/living/carbon/human/affected_human = quirk_holder | ||
affected_human.gain_trauma(/datum/brain_trauma/mild/possessive, TRAUMA_RESILIENCE_ABSOLUTE) | ||
|
||
/datum/quirk/possessive/remove() | ||
. = ..() | ||
var/mob/living/carbon/human/affected_human = quirk_holder | ||
affected_human?.cure_trauma_type(/datum/brain_trauma/mild/possessive, TRAUMA_RESILIENCE_ABSOLUTE) | ||
|
||
/datum/quirk/kleptomaniac | ||
name = "Kleptomaniac" | ||
desc = "You feel a strong urge to pick up anything around, often without being aware of it." | ||
value = 0 | ||
gain_text = span_danger("You feel a sudden urge to take things. Surely no one will notice.") | ||
lose_text = span_notice("You no longer feel the urge to take things.") | ||
medical_record_text = "Subject exhibits kleptomania." | ||
icon = FA_ICON_HAND_HOLDING | ||
|
||
/datum/quirk/kleptomaniac/post_add() | ||
. = ..() | ||
var/mob/living/carbon/human/affected_human = quirk_holder | ||
affected_human.gain_trauma(/datum/brain_trauma/severe/kleptomaniac, TRAUMA_RESILIENCE_ABSOLUTE) | ||
|
||
/datum/quirk/kleptomaniac/remove() | ||
. = ..() | ||
var/mob/living/carbon/human/affected_human = quirk_holder | ||
affected_human?.cure_trauma_type(/datum/brain_trauma/severe/kleptomaniac, TRAUMA_RESILIENCE_ABSOLUTE) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters