summaryrefslogtreecommitdiff
path: root/src/sliceitoff/hiscores/static.py
blob: 65a032ef292af63ba192ee389cc2938fdd5903b8 (plain)
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
""" hiscores.static - static data of highscores """
MAX_HIGHSCORES = 20

INITIAL_HIGHSCORES = [
    (281238, "HIL"),
    (190355, "VIL"),
    (164710, "KSU"),
    (100000, "---"),
    (90000, "---"),
    (80000, "-S-"),
    (70000, "-L-"),
    (60000, "-I-"),
    (50000, "-C-"),
    (40000, "-E-"),
    (30000, "---"),
    (25000, "-I-"),
    (20000, "-T-"),
    (15000, "---"),
    (10000, "-O-"),
    (8000, "-F-"),
    (6000, "-F-"),
    (4000, "---"),
    (2000, "---"),
    (0, "---")
]