aboutsummaryrefslogtreecommitdiff
path: root/commands/work.js
diff options
context:
space:
mode:
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)]);
+ }
+};