forked from tgstation/tgstation
-
Notifications
You must be signed in to change notification settings - Fork 37
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #282 from JimKil3/unholy_aura
Replaces Fundamentally Evil
- Loading branch information
Showing
9 changed files
with
62 additions
and
2 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 |
---|---|---|
@@ -1,2 +1,5 @@ | ||
/// The trait that determines if someone has the system shock quirk. | ||
#define TRAIT_SYSTEM_SHOCK "trait_system_shock" | ||
|
||
/// The trait given to people with bad vibes. | ||
#define TRAIT_BAD_VIBES "trait_bad_vibes" |
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
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
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
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
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
15 changes: 15 additions & 0 deletions
15
modular_doppler/modular_quirks/evil_replacements/bad_vibes.dm
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,15 @@ | ||
/datum/quirk/bad_vibes | ||
name = "Bad Vibes" | ||
desc = "By a quirk of your personality or exposure to too many horrible sights, you give off a bad aura which affects \ | ||
empaths and anyone else who looks too closely." | ||
icon = FA_ICON_HAND_MIDDLE_FINGER | ||
value = 0 | ||
mob_trait = TRAIT_BAD_VIBES | ||
gain_text = span_notice("You give off a negative aura.") | ||
lose_text = span_notice("You try to be more approachable.") | ||
medical_record_text = "Patient scared away a nurse prior to physical examination." | ||
|
||
/datum/mood_event/bad_vibes | ||
description = "Some people truly disturb me... What could happen to make someone like that?" | ||
mood_change = -4 | ||
timeout = 1 MINUTES |
15 changes: 15 additions & 0 deletions
15
modular_doppler/modular_quirks/evil_replacements/unholy_aura.dm
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,15 @@ | ||
/datum/quirk/unholy | ||
name = "Unholy Aura" | ||
desc = "Whether it's as a punishment for your actions or due to the circumstances of your birth, you've been cursed by \ | ||
whatever dieties take an interest in this sector. You have a harder time interacting with holy figures." | ||
icon = FA_ICON_SMOG | ||
value = -2 | ||
mob_trait = TRAIT_EVIL | ||
gain_text = span_warning("A dispassionate gaze from on high weighs on you.") | ||
lose_text = span_notice("The deities' gaze turns away.") | ||
medical_record_text = "Patient has a strong aversion to religious figures." | ||
|
||
/datum/mood_event/holy_figure | ||
description = "Holy people are anathema to me. I must be more careful..." | ||
mood_change = -4 | ||
timeout = 1 MINUTES |
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