summaryrefslogtreecommitdiff
path: root/commands/fun/gay.js
blob: 7d1b65aab5d9cce633907967c59a3de858779207 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
const { Command } = require('discord.js-commando');

module.exports = class GayFun extends Command {
    constructor(client) {
        super(client, {
            name: 'gay',
            aliases: ['gayamount', 'gayrange', 'gayrate'],
            group: 'fun',
            memberName: 'gay',
            description: 'tells you your gay-ness amount',
        });
    }
        var gayAmount = Math.floor((Math.random() * 100) + 1);
        var gayAmountDecimal = Math.floor((Math.random() * 100) + 1);

        msg.reply('scanning..').then(scanningMsg => {
            scanningMsg.delete()
            msg.reply('your gay-ness amount is **' + gayAmount + '.' + gayAmountDecimal + '%**');
        });
    }
};