aboutsummaryrefslogtreecommitdiff
path: root/commands/ratecuteness.js
blob: 8263907c945c75d9520a079da26a9d67321a65f3 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
import { SlashCommandBuilder } from 'discord.js';

export default {
    data: new SlashCommandBuilder()
        .setName('ratecuteness')
        .setDescription('100% accurate cuteness rater.'),
    async execute(interaction, bot) {
        return await interaction.reply(':two_hearts: Royce\'s cuteness is -100000/10');
    }
};