Files
Bubberstation/code/datums/quirks/positive_quirks/apathetic.dm
SkyratBot c83ac65e63 [MIRROR] Breaks up the three quirk code files into individual quirks [MDB IGNORE] (#23781)
* 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>
2023-09-18 17:19:28 -04:00

15 lines
560 B
Plaintext

/datum/quirk/apathetic
name = "Apathetic"
desc = "You just don't care as much as other people. That's nice to have in a place like this, I guess."
icon = FA_ICON_MEH
value = 4
quirk_flags = QUIRK_HUMAN_ONLY|QUIRK_MOODLET_BASED
medical_record_text = "Patient was administered the Apathy Evaluation Scale but did not bother to complete it."
mail_goodies = list(/obj/item/hourglass)
/datum/quirk/apathetic/add(client/client_source)
quirk_holder.mob_mood?.mood_modifier -= 0.2
/datum/quirk/apathetic/remove()
quirk_holder.mob_mood?.mood_modifier += 0.2