|
|
|
@ -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
|
|
|
|
|