mirror of
https://github.com/Bubberstation/Bubberstation.git
synced 2025-12-25 09:01:40 +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>
21 lines
920 B
Plaintext
21 lines
920 B
Plaintext
/datum/quirk/item_quirk/blindness
|
|
name = "Blind"
|
|
desc = "You are completely blind, nothing can counteract this."
|
|
icon = FA_ICON_EYE_SLASH
|
|
value = -16
|
|
gain_text = span_danger("You can't see anything.")
|
|
lose_text = span_notice("You miraculously gain back your vision.")
|
|
medical_record_text = "Patient has permanent blindness."
|
|
hardcore_value = 15
|
|
quirk_flags = QUIRK_HUMAN_ONLY|QUIRK_CHANGES_APPEARANCE
|
|
mail_goodies = list(/obj/item/clothing/glasses/sunglasses, /obj/item/cane/white)
|
|
|
|
/datum/quirk/item_quirk/blindness/add_unique(client/client_source)
|
|
give_item_to_holder(/obj/item/clothing/glasses/blindfold/white, list(LOCATION_EYES = ITEM_SLOT_EYES, LOCATION_BACKPACK = ITEM_SLOT_BACKPACK, LOCATION_HANDS = ITEM_SLOT_HANDS))
|
|
|
|
/datum/quirk/item_quirk/blindness/add(client/client_source)
|
|
quirk_holder.become_blind(QUIRK_TRAIT)
|
|
|
|
/datum/quirk/item_quirk/blindness/remove()
|
|
quirk_holder.cure_blind(QUIRK_TRAIT)
|