blob: d069baf90ca2cd18f66d7ffeaf4581d5603df4ce (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
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)]);
}
};
|