mirror of
https://github.com/Bubberstation/Bubberstation.git
synced 2025-12-21 15:14:17 +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>
15 lines
560 B
Plaintext
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
|