-
-
Notifications
You must be signed in to change notification settings - Fork 444
/
Copy pathpiping_colors_lists.dm
48 lines (46 loc) · 1.28 KB
/
piping_colors_lists.dm
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
///All colors available to pipes and atmos components
GLOBAL_LIST_INIT(pipe_paint_colors, list(
"amethyst" = COLOR_AMETHYST, //supplymain
"omni" = COLOR_VERY_LIGHT_GRAY,
"green" = COLOR_VIBRANT_LIME,
"blue" = COLOR_BLUE,
"red" = COLOR_RED,
"orange" = COLOR_TAN_ORANGE,
"cyan" = COLOR_CYAN,
"dark" = COLOR_DARK,
"yellow" = COLOR_YELLOW,
"brown" = COLOR_BROWN,
"pink" = COLOR_LIGHT_PINK,
"purple" = COLOR_PURPLE,
"violet" = COLOR_STRONG_VIOLET,
))
///List that sorts the colors and is used for setting up the pipes layer so that they overlap correctly
GLOBAL_LIST_INIT(pipe_colors_ordered, sort_list(list(
COLOR_AMETHYST = -6,
COLOR_BLUE = -5,
COLOR_BROWN = -4,
COLOR_CYAN = -3,
COLOR_DARK = -2,
COLOR_VIBRANT_LIME = -1,
COLOR_VERY_LIGHT_GRAY = 0,
COLOR_TAN_ORANGE = 1,
COLOR_PURPLE = 2,
COLOR_RED = 3,
COLOR_STRONG_VIOLET = 4,
COLOR_YELLOW = 5
)))
///Names shown in the examine for every colored atmos component
GLOBAL_LIST_INIT(pipe_color_name, sort_list(list(
COLOR_VERY_LIGHT_GRAY = "omni",
COLOR_BLUE = "blue",
COLOR_RED = "red",
COLOR_VIBRANT_LIME = "green",
COLOR_TAN_ORANGE = "orange",
COLOR_CYAN = "cyan",
COLOR_DARK = "dark",
COLOR_YELLOW = "yellow",
COLOR_BROWN = "brown",
COLOR_LIGHT_PINK = "pink",
COLOR_PURPLE = "purple",
COLOR_STRONG_VIOLET = "violet"
)))