diff options
Diffstat (limited to 'bot/src/commands/adventure.js')
| -rw-r--r-- | bot/src/commands/adventure.js | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/bot/src/commands/adventure.js b/bot/src/commands/adventure.js new file mode 100644 index 0000000..0565478 --- /dev/null +++ b/bot/src/commands/adventure.js @@ -0,0 +1,12 @@ +// The plan for this command is that the user can select a story, then the bot sends the story that the user selected, and it will be interactive +// so it will be like an adventure story, and it will have multiple paths that the user can select. +import { SlashCommandBuilder } from 'discord.js'; + +export default { + data: new SlashCommandBuilder() + .setName('adventure') + .setDescription('Select an interactive story'), + async execute(interaction) { + return await interaction.reply('Hello world'); + } +}; |
