mirror of
https://github.com/Bubberstation/Bubberstation.git
synced 2025-12-21 07:03:05 +00:00
* Breaks up the three quirk code files into individual quirks * Removals + skyrat edits * Delete positive_quirks.dm * Update tgstation.dme --------- Co-authored-by: Thunder12345 <Thunder12345@users.noreply.github.com> Co-authored-by: Pinta <68373373+softcerv@users.noreply.github.com> Co-authored-by: Giz <13398309+vinylspiders@users.noreply.github.com>
19 lines
762 B
Plaintext
19 lines
762 B
Plaintext
/datum/quirk/hypersensitive
|
|
name = "Hypersensitive"
|
|
desc = "For better or worse, everything seems to affect your mood more than it should."
|
|
icon = FA_ICON_FLUSHED
|
|
value = -2
|
|
gain_text = span_danger("You seem to make a big deal out of everything.")
|
|
lose_text = span_notice("You don't seem to make a big deal out of everything anymore.")
|
|
medical_record_text = "Patient demonstrates a high level of emotional volatility."
|
|
hardcore_value = 3
|
|
mail_goodies = list(/obj/effect/spawner/random/entertainment/plushie_delux)
|
|
|
|
/datum/quirk/hypersensitive/add(client/client_source)
|
|
if (quirk_holder.mob_mood)
|
|
quirk_holder.mob_mood.mood_modifier += 0.5
|
|
|
|
/datum/quirk/hypersensitive/remove()
|
|
if (quirk_holder.mob_mood)
|
|
quirk_holder.mob_mood.mood_modifier -= 0.5
|