-
Notifications
You must be signed in to change notification settings - Fork 186
/
Copy pathtypes.py
64 lines (60 loc) · 1.54 KB
/
types.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
types = {
"normal": {
"effective": [],
"ineffective": [],
"color": [],
},
"stone": {
"effective": ["flying", "fire"],
"ineffective": ["plant"],
"color": ["grey"]
},
"plant": {
"effective": ["stone", "ground", "water"],
"ineffective": ["fire", "ice"],
"color": ["green"]
},
"water": {
"effective": ["stone", "flying", "fire"],
"ineffective": ["plant", "ice"],
"color": ["lightblue"]
},
"fire": {
"effective": ["flying", "plant", "undead", "ice"],
"ineffective": ["stone", "water"],
"color": ["thicc", "red"]
},
"ground": {
"effective": ["normal"],
"ineffective": ["flying", "ice"],
"color": ["grey"]
},
"electro": {
"effective": ["stone", "flying"],
"ineffective": ["ground"],
"color": ["thicc", "yellow"]
},
"flying": {
"effective": ["plant"],
"ineffective": ["stone"],
"color": ["thicc"]
},
"undead": {
"effective": ["normal", "ground", "plant", "water", "poison"],
"ineffective": ["fire"],
"color": ["purple"]
},
"ice": {
"effective": ["water", "plant", "ground"],
"ineffective": ["fire"],
"color": ["cyan"]
},
"poison": {
"effective": ["normal"],
"ineffective": ["undead"],
"color": ["thicc", "green"]
},
}
sub_types = ["bird", "snake"]
if __name__ == "__main__":
print("\033[31;1mDo not execute this!\033[0m")