mirror of
https://github.com/CHOMPStation2/CHOMPStation2.git
synced 2025-12-11 10:43:20 +00:00
Lets people be colorblind
Adds four types of colorblindness to the traits in the setup menu - protanopia, deuteranopia, tritanopia, and monochromacy. Previously, there were ones defined in the code, but not actually usable to players.
This commit is contained in:
@@ -84,20 +84,38 @@
|
||||
|
||||
icon_scale_percent = 0.9
|
||||
|
||||
/datum/modifier/trait/colorblind_protanopia
|
||||
name = "Protanopia"
|
||||
desc = "You have a form of red-green colorblindness. You cannot see reds, and have trouble distinguishing them from yellows and greens."
|
||||
|
||||
client_color = MATRIX_Protanopia
|
||||
|
||||
/datum/modifier/trait/colorblind_deuteranopia
|
||||
name = "Deuteranopia"
|
||||
desc = "You have a form of red-green colorblindness. You cannot see greens, and have trouble distinguishing between yellows and reds."
|
||||
|
||||
client_color = MATRIX_Deuteranopia
|
||||
|
||||
/datum/modifier/trait/colorblind_tritanopia
|
||||
name = "Tritanopia"
|
||||
desc = "You have a form of blue-yellow colorblindness. You have trouble distinguishing between blues, greens, and yellows, and see blues and violets as dim."
|
||||
|
||||
client_color = MATRIX_Tritanopia
|
||||
|
||||
/datum/modifier/trait/colorblind_taj
|
||||
name = "Colorblind - B+R"
|
||||
name = "Colorblind - Blue-red"
|
||||
desc = "You are colorblind. You have a minor issue with blue colors and have difficulty recognizing them from red colors."
|
||||
|
||||
|
||||
client_color = MATRIX_Taj_Colorblind
|
||||
|
||||
/datum/modifier/trait/colorblind_vulp
|
||||
name = "Colorblind - G+R"
|
||||
name = "Colorblind - Red-green"
|
||||
desc = "You are colorblind. You have a severe issue with green colors and have difficulty recognizing them from red colors."
|
||||
|
||||
|
||||
client_color = MATRIX_Vulp_Colorblind
|
||||
|
||||
/datum/modifier/trait/colorblind_mono
|
||||
name = "Colorblind - Mono"
|
||||
desc = "You are colorblind. Your condition is rare, but you can see no colors at all."
|
||||
|
||||
/datum/modifier/trait/colorblind_monochrome
|
||||
name = "Monochromacy"
|
||||
desc = "You are fully colorblind. Your condition is rare, but you can see no colors at all."
|
||||
|
||||
client_color = MATRIX_Monochromia
|
||||
|
||||
Reference in New Issue
Block a user