-
Notifications
You must be signed in to change notification settings - Fork 2
/
palettes.py
99 lines (92 loc) · 2.78 KB
/
palettes.py
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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
palettes_dict = {}
crystal = {}
crystal["name"] = "Vanishing Blue"
crystal["background"] = (0.1, 0.1, 0.25)
crystal["terrain"] = (0.2, 0.6, 1)
crystal["obstacle"] = (0, 0.5, 1)
crystal["powerup_speed"] = (0, 0.8, 0)
crystal["powerup_invulnerability"] = (1, 0, 1)
crystal["powerup_agility"] = (0.8, 0.8, 0)
crystal["mirage"] = (1, 0, 0)
crystal["luna"] = (0.8, 0.8, 0.8)
crystal["plume"] = (1,0.1,0.8)
crystal["sparks"] = (0,1,1)
palettes_dict["crystal"] = crystal
msk = {}
msk["name"] = "Murasakino"
msk["background"] = (0.2, 0.1, 0.15)
msk["terrain"] = (0.8, 0.1, 0.8)
msk["obstacle"] = (1, 0, 0.5)
msk["powerup_speed"] = (0.2, 0.8, 0.9)
msk["powerup_invulnerability"] = (0.9, 0.9, 0.1)
msk["powerup_agility"] = (0, 0.8, 0)
msk["mirage"] = (0.3, 0.2, 1)
msk["luna"] = (0.9, 0.2, 0.2)
msk["plume"] = (1,0.1,0.8)
msk["sparks"] = (0.85,0.1,0.9)
palettes_dict["msk"] = msk
neon = {}
neon["name"] = "Luminous Jade"
neon["background"] = (0, 0.15, 0)
neon["terrain"] = (0, 0.8, 0)
neon["obstacle"] = (0, 1, 0)
neon["powerup_speed"] = (0, 0.8, 1)
neon["powerup_invulnerability"] = (1, 0.1, 0.1)
neon["powerup_agility"] = (0.9, 0.9, 0)
neon["mirage"] = (1, 0, 1)
neon["luna"] = (0.9, 0.9, 0.9)
neon["plume"] = (1, 0.1, 0.8)
neon["sparks"] = (0.2, 0.9, 0.2)
palettes_dict["neon"] = neon
rm = {}
rm["name"] = "Rememoried"
rm["background"] = (0, 0, 0)
rm["terrain"] = (0.8, 0.8, 0.8)
rm["obstacle"] = (1, 1, 1)
rm["powerup_speed"] = (0, 1, 0)
rm["powerup_invulnerability"] = (1, 0, 0)
rm["powerup_agility"] = (1, 1, 0)
rm["mirage"] = (0, 1, 0.8)
rm["luna"] = (0.9, 0.9, 0.9)
rm["plume"] = (0.3, 0.1, 1)
rm["sparks"] = (0, 0.9, 0.9)
palettes_dict["rm"] = rm
tw = {}
tw["name"] = "Timewind"
tw["background"] = (0.04, 0.22, 0.15)
tw["terrain"] = (0.8, 0.7, 0.05)
tw["obstacle"] = (0.9, 0.8, 0.075)
tw["powerup_speed"] = (0, 1, 0.3)
tw["powerup_invulnerability"] = (1, 0, 0.4)
tw["powerup_agility"] = (0, 0.45, 0.8)
tw["mirage"] = (1, 0.3, 0.45)
tw["luna"] = (0.7, 0.9, 0.9)
tw["plume"] = (0.7, 0.2, 0.2)
tw["sparks"] = (0.8, 0.5, 0)
palettes_dict["tw"] = tw
us = {}
us["name"] = "Sonsuzluk"
us["background"] = (0.85, 0.85, 0.85)
us["terrain"] = (0.7, 0.7, 0)
us["obstacle"] = (0.75, 0.75, 0)
us["powerup_speed"] = (0, 0.8, 0)
us["powerup_invulnerability"] = (1, 0.4, 0.425)
us["powerup_agility"] = (0.8, 0.05, 0.8)
us["mirage"] = (1, 0.1, 0.5)
us["luna"] = (0.9, 0, 0)
us["plume"] = (0.7, 0.2, 0.3)
us["sparks"] = (0, 0.95, 0.05)
palettes_dict["us"] = us
ix = {}
ix["name"] = "Queen of Hearts"
ix["background"] = (0.3, 0.0, 0.01)
ix["terrain"] = (0.8, 0.05, 0)
ix["obstacle"] = (0.9, 0.1, 0)
ix["powerup_speed"] = (1, 1, 1)
ix["powerup_invulnerability"] = (0.3, 0.0, 0.01)
ix["powerup_agility"] = (0.3, 0.0, 0.01)
ix["mirage"] = (0, 0.3, 0.7)
ix["luna"] = (1, 0.6, 0.6)
ix["plume"] = (1, 0.2, 0)
ix["sparks"] = (0, 0.5, 0.9)
palettes_dict["ix"] = ix