24 lines
720 B
Python
24 lines
720 B
Python
import os
|
|
|
|
VALORANT_RANKS = [
|
|
"Iron 1","Iron 2","Iron 3",
|
|
"Bronze 1","Bronze 2","Bronze 3",
|
|
"Silver 1","Silver 2","Silver 3",
|
|
"Gold 1","Gold 2","Gold 3",
|
|
"Platinum 1","Platinum 2","Platinum 3",
|
|
"Diamond 1","Diamond 2","Diamond 3",
|
|
"Ascendant 1","Ascendant 2","Ascendant 3",
|
|
"Immortal 1","Immortal 2","Immortal 3",
|
|
"Radiant"
|
|
]
|
|
|
|
WORKOUTS = {
|
|
"Sit Ups": int(os.getenv("SITUPS", 0)),
|
|
"Bicep Curls": int(os.getenv("BICEP_CURLS", 0)),
|
|
"Pushups": int(os.getenv("PUSHUPS", 0)),
|
|
"Squats": int(os.getenv("SQUATS", 0)),
|
|
"Lunges": int(os.getenv("LUNGES", 0)),
|
|
"Russian Twists": int(os.getenv("RUSSIAN_TWISTS", 0)),
|
|
"Wall Pushups": int(os.getenv("WALL_PUSHUPS", 0)),
|
|
}
|