diff options
| author | Andrew Lee <alee14498@protonmail.com> | 2022-12-21 21:15:52 -0500 |
|---|---|---|
| committer | Andrew Lee <alee14498@protonmail.com> | 2022-12-21 21:15:52 -0500 |
| commit | fd9d5776b84162449fb558696ee3a671f3f03f8c (patch) | |
| tree | 67c4c86247d2f38562d6365f02e5c42a1ca5593a /commands/work.js | |
| parent | ae562f8b06f8834cb3bc51be81568a018ad0bc7c (diff) | |
| download | shrimpbot-js-fd9d5776b84162449fb558696ee3a671f3f03f8c.tar.gz shrimpbot-js-fd9d5776b84162449fb558696ee3a671f3f03f8c.tar.bz2 shrimpbot-js-fd9d5776b84162449fb558696ee3a671f3f03f8c.zip | |
Diffstat (limited to 'commands/work.js')
| -rw-r--r-- | commands/work.js | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/commands/work.js b/commands/work.js new file mode 100644 index 0000000..d069baf --- /dev/null +++ b/commands/work.js @@ -0,0 +1,14 @@ +import { SlashCommandBuilder } from 'discord.js'; + +export default { + data: new SlashCommandBuilder() + .setName('work') + .setDescription('Work for Squid Grill to get some money.'), + async execute(interaction, bot) { + const squidJobs = [ + 'You helped crackdown a child trafficking operation at Okaerinasaimase Goshunjinsama!, and got {insert number} dollars!', + 'You made a virus for FMP and got {insert number} dollars!' + ]; + return await interaction.reply(squidJobs[Math.floor(Math.random() * squidJobs.length)]); + } +}; |
