diff options
Diffstat (limited to 'src/discord/commands.ts')
| -rw-r--r-- | src/discord/commands.ts | 33 |
1 files changed, 33 insertions, 0 deletions
diff --git a/src/discord/commands.ts b/src/discord/commands.ts index 85ff7c0..652a20a 100644 --- a/src/discord/commands.ts +++ b/src/discord/commands.ts @@ -75,3 +75,36 @@ export const COLOURS_COMMAND: DiscordCommand = { name: "colours", description: "Show the distribution of colour roles in the server", }; + +export const ROLEPLAY_SERIOUS_COMMAND: DiscordCommand = { + name: "roleplay-serious", + description: "Manage the serious roleplay role (Admin/Roleplay Curator only)", + options: [ + { + type: 3, + name: "action", + description: "Action to perform on the role", + required: true, + choices: [ + { + name: "Add Role", + value: "add", + }, + { + name: "Remove Role", + value: "remove", + }, + { + name: "Toggle Role", + value: "toggle", + }, + ], + }, + { + type: 6, + name: "user", + description: "User to perform the action on", + required: true, + }, + ], +}; |