diff options
Diffstat (limited to 'src/sliceitoff/hiscores/static.py')
-rw-r--r-- | src/sliceitoff/hiscores/static.py | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/src/sliceitoff/hiscores/static.py b/src/sliceitoff/hiscores/static.py new file mode 100644 index 0000000..cf17ba8 --- /dev/null +++ b/src/sliceitoff/hiscores/static.py @@ -0,0 +1,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, "---") +] |