diff options
author | Viljami Ilola <+@hix.fi> | 2024-04-27 00:40:24 +0300 |
---|---|---|
committer | Viljami Ilola <+@hix.fi> | 2024-04-27 00:40:24 +0300 |
commit | a4794437d561a01c8bea12d59502e4cc72acfbea (patch) | |
tree | a27f26062bf766f0b90b0965c179be0f29022240 /src/sliceitoff/settings/static.py | |
parent | 54cf5ab6dde77dff1afe177b33a054925569a0cf (diff) |
separate settings from hiscore
Diffstat (limited to 'src/sliceitoff/settings/static.py')
-rw-r--r-- | src/sliceitoff/settings/static.py | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/src/sliceitoff/settings/static.py b/src/sliceitoff/settings/static.py new file mode 100644 index 0000000..8c8935b --- /dev/null +++ b/src/sliceitoff/settings/static.py @@ -0,0 +1,26 @@ +""" settings.static - default settings etc static data """ + +DEFAULT_SETTINGS = [ + ("hiscore", "281238!HIL"), + ("hiscore", "190355!VIL"), + ("hiscore", "164710!KSU"), + ("hiscore", "100000!---"), + ("hiscore", "90000!---"), + ("hiscore", "80000!-S-"), + ("hiscore", "70000!-L-"), + ("hiscore", "60000!-I-"), + ("hiscore", "50000!-C-"), + ("hiscore", "40000!-E-"), + ("hiscore", "30000!---"), + ("hiscore", "25000!-I-"), + ("hiscore", "20000!-T-"), + ("hiscore", "15000!---"), + ("hiscore", "10000!-O-"), + ("hiscore", "8000!-F-"), + ("hiscore", "6000!-F-"), + ("hiscore", "4000!---"), + ("hiscore", "2000!---"), + ("hiscore", "0!---"), + ("sfx_volume", "10"), + ("music_volume", "10") +] |