-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathrobot_assets.py
48 lines (47 loc) · 2.22 KB
/
robot_assets.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
robot_art = r"""
0: {head_name}
Is available: {head_status}
Attack: {head_attack}
Defense: {head_defense}
Energy consumption: {head_energy_consump}
^
| |1: {weapon_name}
| |Is available: {weapon_status}
____ | ____ |Attack: {weapon_attack}
|oooo| ____ |oooo| ------> |Defense: {weapon_defense}
|oooo| ' ' |oooo| |Energy consumption: {weapon_energy_consump}
|oooo|/\_||_/\|oooo|
`----' / __ \ `----' |2: {left_arm_name}
'/ |#|/\/__\/\|#| \' |Is available: {left_arm_status}
/ \|#|| |/\| ||#|/ \ |Attack: {left_arm_attack}
/ \_/|_|| |/\| ||_|\_/ \ |Defense: {left_arm_defense}
|_\/ O\=----=/O \/_| |Energy consumption: {left_arm_energy_consump}
<_> |=\__/=| <_> ------> |
<_> |------| <_> |3: {right_arm_name}
| | ___|======|___ | | |Is available: {right_arm_status}
// \\ / |O|======|O| \ //\\ |Attack: {right_arm_attack}
| | | |O+------+O| | | | |Defense: {right_arm_defense}
|\/| \_+/ \+_/ |\/| |Energy consumption: {right_arm_energy_consump}
\__/ _||| |||_ \__/
| || || | |4: {left_leg_name}
[==|] [|==] |Is available: {left_leg_status}
[===] [===] |Attack: {left_leg_attack}
>_< >_< |Defense: {left_leg_defense}
|| || || || |Energy consumption: {left_leg_energy_consump}
|| || || || ------> |
|| || || || |5: {right_leg_name}
__|\_/|__ __|\_/|__ |Is available: {right_leg_status}
/___n_n___\ /___n_n___\ |Attack: {right_leg_attack}
|Defense: {right_leg_defense}
|Energy consumption: {right_leg_energy_consump}
"""
colors = {
"Black": '\x1b[90m',
"Blue": '\x1b[94m',
"Cyan": '\x1b[96m',
"Green": '\x1b[92m',
"Magenta": '\x1b[95m',
"Red": '\x1b[91m',
"White": '\x1b[97m',
"Yellow":'\x1b[93m',
}