From fd9d5776b84162449fb558696ee3a671f3f03f8c Mon Sep 17 00:00:00 2001 From: Andrew Lee Date: Wed, 21 Dec 2022 21:15:52 -0500 Subject: Added more commands --- commands/work.js | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 commands/work.js (limited to 'commands/work.js') 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)]); + } +}; -- cgit v1.2.3