mirror of
https://github.com/MarioSpore/Grinch-AP.git
synced 2025-10-21 20:21:32 -06:00
13 lines
297 B
Python
13 lines
297 B
Python
![]() |
class Performance:
|
||
|
basic = "Basic"
|
||
|
decent = "Decent"
|
||
|
good = "Good"
|
||
|
great = "Great"
|
||
|
galaxy = "Galaxy"
|
||
|
maximum = "Maximum"
|
||
|
tiers = {0: basic,
|
||
|
1: decent,
|
||
|
2: good,
|
||
|
3: great,
|
||
|
4: galaxy,
|
||
|
5: maximum}
|