blob: 133c9ebf6af70aee98317926794bfcc3808c5d5f (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
const atquotes = require('at-quotes');
module.exports = {
name: 'quote',
aliases: ['quotes'],
description: '',
execute(msg, args, bot) {
if (!args.length) {
msg.reply(atquotes.getQuote());
} else if (args[0] == 'finn') {
msg.reply(atquotes.getFinnQuote());
} else if (args[0] == 'jake') {
msg.reply(atquotes.getJakeQuote());
} else if (args[0] == 'ice-king') {
msg.reply(atquotes.getIceKingQuote());
}
}
};
|