aboutsummaryrefslogtreecommitdiff
path: root/commands/work.js
diff options
context:
space:
mode:
authorAndrew Lee <alee14498@protonmail.com>2022-12-21 21:15:52 -0500
committerAndrew Lee <alee14498@protonmail.com>2022-12-21 21:15:52 -0500
commitfd9d5776b84162449fb558696ee3a671f3f03f8c (patch)
tree67c4c86247d2f38562d6365f02e5c42a1ca5593a /commands/work.js
parentae562f8b06f8834cb3bc51be81568a018ad0bc7c (diff)
downloadshrimpbot-js-master.tar.gz
shrimpbot-js-master.tar.bz2
shrimpbot-js-master.zip
Added more commandsHEADmaster
Diffstat (limited to 'commands/work.js')
-rw-r--r--commands/work.js14
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)]);
+ }
+};