From d5276c2368820bff20cbdda46abdd66d3041ae1a Mon Sep 17 00:00:00 2001 From: Fuwn Date: Wed, 1 Oct 2025 20:32:10 -0700 Subject: feat(interactions): Add age-verify command --- packages/interactions/discord/commands/index.ts | 50 +++++++++++++++++++++++++ 1 file changed, 50 insertions(+) (limited to 'packages/interactions/discord/commands') diff --git a/packages/interactions/discord/commands/index.ts b/packages/interactions/discord/commands/index.ts index b4c6721..a69e786 100644 --- a/packages/interactions/discord/commands/index.ts +++ b/packages/interactions/discord/commands/index.ts @@ -124,3 +124,53 @@ export const ROLEPLAY_VERIFY_COMMAND: DiscordCommand = { }, ], }; + +export const AGE_VERIFY_COMMAND: DiscordCommand = { + name: "age-verify", + description: + "Manage the verified age role (Staff 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, + }, + { + type: 3, + name: "access", + description: "Type of access to grant", + required: true, + choices: [ + { + name: "Art & Media", + value: "art_media", + }, + { + name: "Roleplay NSFW", + value: "roleplay_nsfw", + }, + ], + }, + ], +}; -- cgit v1.2.3