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
|
""" settings.static - default settings etc static data """
DEFAULT_SETTINGS = [
("hiscore", "100000!---"),
("hiscore", "90000!---"),
("hiscore", "80000!---"),
("hiscore", "70000!---"),
("hiscore", "60000!---"),
("hiscore", "50000!---"),
("hiscore", "40000!---"),
("hiscore", "30000!---"),
("hiscore", "25000!---"),
("hiscore", "20000!---"),
("hiscore", "15000!---"),
("hiscore", "10000!---"),
("hiscore", "8000!---"),
("hiscore", "6000!---"),
("hiscore", "4000!---"),
("hiscore", "2000!---"),
("hiscore", "1000!---"),
("hiscore", "500!---"),
("hiscore", "250!---"),
("hiscore", "125!---"),
("sfx_volume", "10"),
("music_volume", "10")
]
|