Eh, kinda working

This commit is contained in:
2026-02-09 14:08:41 -06:00
parent 377b6b496b
commit 6f693dc19c
7 changed files with 384 additions and 0 deletions

23
constants.py Normal file
View File

@@ -0,0 +1,23 @@
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)),
}