Nerfed monsters unlock score

This commit is contained in:
theo@manjaro 2021-09-19 22:37:12 +02:00
parent f9686a6fed
commit 5ccbfdb219
1 changed files with 2 additions and 2 deletions

View File

@ -134,12 +134,12 @@ def getunlocks(highscore):
unlocks = {"normal":["base"],"specials":[]}
if highscore>=50:
unlocks["normal"].append("green")
if highscore>=150:
unlocks["specials"].append("monster")
if highscore>=250:
unlocks["normal"].append("blue")
if highscore>=400:
unlocks["specials"].append("gold")
if highscore>=500:
unlocks["specials"].append("monster")
if highscore>=750:
unlocks["specials"].append("platinum")
return unlocks