-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathConfig.py
More file actions
42 lines (32 loc) · 749 Bytes
/
Copy pathConfig.py
File metadata and controls
42 lines (32 loc) · 749 Bytes
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
'''
Import configurations from this class
'''
NUMBER_OF_BOTS = 10
NUMBER_OF_AI = 1
FPS = 60
# Screen dimensions
SCREEN = {
'SIZE': (800, 600) #(800, 600)
}
# 'Mask Dude', 'Ninja frog', 'Pink Man', 'Virtual Guy'
MAIN_CHARACTER = {
'NAME': ['Mask_Dude', 'Ninja_Frog', 'Pink_Man', 'Virtual_Guy'],
'SIZE': (64, 64)
}
TERRAIN = {
'NAME': ['Gray_Stone', 'Green_Dirt', 'Wood', 'Yellow_Dirt', 'Bricks', 'Leafs', 'Pink_Dirt'],
'OFFSET': [0, 6, 88, 94, 105, 176, 182],
'SIZE': (32, 32)
}
BACKGROUND = {
'NAME': ['Blue', 'Brown', 'Gray', 'Green', 'Pink', 'Purple', 'Yellow'],
'SIZE': (64, 64)
}
COLLECTIBLE = {
'NAME': ['Apple'],
'SIZE': (32,32)
}
CHECKPOINT = {
'NAME': ['Flag'],
'SIZE': (128,128)
}