Files
Bubberstation/code/datums/quirks/negative_quirks/deafness.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
601 B
Plaintext

/datum/quirk/item_quirk/deafness
name = "Deaf"
desc = "You are incurably deaf."
icon = FA_ICON_DEAF
value = -8
mob_trait = TRAIT_DEAF
gain_text = span_danger("You can't hear anything.")
lose_text = span_notice("You're able to hear again!")
medical_record_text = "Patient's cochlear nerve is incurably damaged."
hardcore_value = 12
mail_goodies = list(/obj/item/clothing/mask/whistle)
/datum/quirk/item_quirk/deafness/add_unique(client/client_source)
give_item_to_holder(/obj/item/clothing/accessory/deaf_pin, list(LOCATION_BACKPACK = ITEM_SLOT_BACKPACK, LOCATION_HANDS = ITEM_SLOT_HANDS))