-
Notifications
You must be signed in to change notification settings - Fork 0
/
color.py
39 lines (30 loc) · 897 Bytes
/
color.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
"""Color declarations"""
white = (0xFF, 0xFF, 0xFF)
blue = (0x00, 0x00, 0xFF)
black = (0x0, 0x0, 0x0)
red = (0xFF, 0x0, 0x0)
yellow = (0xFF, 0xFF, 0x0)
player_atk = (0xE0, 0xE0, 0xE0)
enemy_atk = (0xFF, 0xC0, 0xC0)
needs_target = (0x3F, 0xFF, 0xFF)
status_effect_applied = (0x3F, 0xFF, 0x3F)
ascend = (0x9F, 0x3F, 0xFF)
blood = (0x60, 0x0, 0x0)
power_boost = (0x9F, 0x0, 0x0)
defense_boost = (0x9F, 0x3F, 0x9F)
boost_fade = (0x40, 0x40, 0x40)
player_die = (0xFF, 0x30, 0x30)
enemy_die = (0xFF, 0xA0, 0x30)
invalid = (0xFF, 0xFF, 0x00)
impossible = (0x80, 0x80, 0x80)
error = (0xFF, 0x40, 0x40)
welcome_text = (0x20, 0xA0, 0xFF)
health_recovered = (0x0, 0xFF, 0x0)
hp_bar_text = white
hp_bar_filled = (0x0, 0x60, 0x0)
hp_bar_empty = (0x40, 0x10, 0x10)
exp_bar_text = white
exp_bar_filled = (0xB2, 0x8F, 0x0)
exp_bar_empty = (0x40, 0x10, 0x10)
menu_title = (0xE6, 00, 00)
menu_text = white