mirror of
https://github.com/Bubberstation/Bubberstation.git
synced 2025-12-26 01:22:03 +00:00
24 lines
1.0 KiB
Plaintext
24 lines
1.0 KiB
Plaintext
/datum/quirk/monochromatic
|
|
name = "Monochromacy"
|
|
desc = "You suffer from full colorblindness, and perceive nearly the entire world in blacks and whites."
|
|
icon = FA_ICON_ADJUST
|
|
value = 0
|
|
medical_record_text = "Patient is afflicted with almost complete color blindness."
|
|
mail_goodies = list( // Noir detective wannabe
|
|
/obj/item/clothing/suit/toggle/jacket/det_trench/noir,
|
|
/obj/item/clothing/suit/jacket/det_suit/noir,
|
|
/obj/item/clothing/head/fedora/beige,
|
|
/obj/item/clothing/head/fedora/white,
|
|
)
|
|
|
|
/datum/quirk/monochromatic/add(client/client_source)
|
|
quirk_holder.add_client_colour(/datum/client_colour/monochrome, QUIRK_TRAIT)
|
|
|
|
/datum/quirk/monochromatic/post_add()
|
|
if(is_detective_job(quirk_holder.mind.assigned_role))
|
|
to_chat(quirk_holder, span_bolddanger("Mmm. Nothing's ever clear on this station. It's all shades of gray..."))
|
|
quirk_holder.playsound_local(quirk_holder, 'sound/ambience/security/ambidet1.ogg', 50, FALSE)
|
|
|
|
/datum/quirk/monochromatic/remove()
|
|
quirk_holder.remove_client_colour(QUIRK_TRAIT)
|