From f198b8de0dd0f0a9ae9ffd4de4643e5e52965cc8 Mon Sep 17 00:00:00 2001 From: Henry <31442053+HenrySpartGlobal@users.noreply.github.com> Date: Thu, 30 May 2024 18:58:24 +0100 Subject: [PATCH] feat: add seasons commands (#99) * feat: add seasons command * feat: add seasons command --- .vscode/settings.json | 5 ---- src/data/commands.ts | 55 +++++++++++++++++++++++++++++++++++++++++++ 2 files changed, 55 insertions(+), 5 deletions(-) delete mode 100644 .vscode/settings.json diff --git a/.vscode/settings.json b/.vscode/settings.json deleted file mode 100644 index 9dc58ac..0000000 --- a/.vscode/settings.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "editor.tabSize": 2, - "typescript.enablePromptUseWorkspaceTsdk": true, - "tailwindCSS.classAttributes": ["class", "className", "ngClass", ".*Styles"] -} diff --git a/src/data/commands.ts b/src/data/commands.ts index 38d1999..36717b0 100644 --- a/src/data/commands.ts +++ b/src/data/commands.ts @@ -597,6 +597,61 @@ const commands = [ "/create_draft d3441a8c", ] }, + { + "name": "season_start", + "type": "Admin", + "description": "Start a new season in the server.", + "usage": [ + "/season_start [days] [game] [channel] [season_name] [role]" + ], + "examples": [ + "/season_start 30 Valorant #announcements Spring_Split @season_role" + ] + }, + { + "name": "season_extend", + "type": "Admin", + "description": "Extend the current season.", + "usage": [ + "/season_extend [game] [days]" + ], + "examples": [ + "/season_extend Valorant 10" + ] + }, + { + "name": "season_shorten", + "type": "Admin", + "description": "Shorten the current season.", + "usage": [ + "/season_shorten [game] [days]" + ], + "examples": [ + "/season_shorten Overwatch 5" + ] + }, + { + "name": "season_end", + "type": "Admin", + "description": "End the current season early.", + "usage": [ + "/season_end [game]" + ], + "examples": [ + "/season_end League Of Legends" + ] + }, + { + "name": "season_stats", + "type": "Admin", + "description": "View the current season stats.", + "usage": [ + "/season_stats [game]" + ], + "examples": [ + "/season_stats Custom" + ] + }, // ~ Set-up {