mirror of
https://github.com/Bubberstation/Bubberstation.git
synced 2025-12-25 00:51:55 +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
601 B
Plaintext
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))
|