-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathSettings.py
More file actions
52 lines (52 loc) · 1.16 KB
/
Copy pathSettings.py
File metadata and controls
52 lines (52 loc) · 1.16 KB
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
class Settings:
"""This class planned to visualize settings as widget
which contains buttons and key-binding"""
FA = False
keys = {
"Move": {
"move_up": ("w", "up"),
"move_down": ("s", "down"),
"move_left": ("a", "left"),
"move_right": ("d", "right")
},
"Combat": {
"fire": ("spacebar", "mouse left")
},
"Utils": {
"FA": ["z", False]
},
}
# PLANNED FEATURES
difficulty = {
"Normal": {
"Overheat": {
"forward_t": 0,
"backward_t": 0,
"left_t": 0,
"right_t": 0,
"weapon_t": 0,
}
}
}
Weapons = {
"Cannon": {
"image": None,
"mass": 100,
"AI": None,
"fire power": 200000
}
}
Ammo = {
"Bullet": {
"image": "img/bullet.png",
"mass": 10000,
"AI": None
}
}
bonuses = {
'HPBonus': 50,
'SpeedBonus': 5,
'AmmoBonus': 100,
'HPTrap': 50,
'SpeedTrap': 5
}