Created
March 6, 2022 05:23
-
-
Save trezy/a674d43c1dde34ec9e2f0c43b4791b11 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Local imports | |
import { Command } from '../structures/Command.js' | |
export default new Command({ | |
// Meta | |
name: '8ball', | |
description: 'Ask the Magic 8-ball a question and it may tell you your fortune...', | |
options: [ | |
{ | |
name: 'query', | |
description: 'Your question for the Magic 8-ball', | |
type: 'string', | |
isRequired: true, | |
}, | |
], | |
// Functionality | |
execute: async interaction => { '...' }, | |
}) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment