mirror of
https://github.com/arthur-pbty/xiao.git
synced 2026-06-04 07:46:43 +02:00
25 lines
594 B
JavaScript
25 lines
594 B
JavaScript
const Command = require('../../structures/Command');
|
|
|
|
module.exports = class GiveFlowerCommand extends Command {
|
|
constructor(client) {
|
|
super(client, {
|
|
name: 'give-flower',
|
|
group: 'single',
|
|
memberName: 'give-flower',
|
|
description: 'Gives Xiao Pai a flower.',
|
|
credit: [
|
|
{
|
|
name: 'Marvelous',
|
|
url: 'http://www.marv.jp/',
|
|
reasonURL: 'http://www.runefactory4.com/index1.html',
|
|
reason: 'Original "Rune Factory 4" Game'
|
|
}
|
|
]
|
|
});
|
|
}
|
|
|
|
run(msg) {
|
|
return msg.say('Ooh, what a pretty flower. What, I may have it? Thanks! I like flowers, yes? ♪');
|
|
}
|
|
};
|