mirror of
https://github.com/arthur-pbty/xiao.git
synced 2026-06-04 15:56:52 +02:00
25 lines
540 B
JavaScript
25 lines
540 B
JavaScript
const Command = require('../../structures/commands/AutoReply');
|
|
|
|
module.exports = class KazumaKazumaCommand extends Command {
|
|
constructor(client) {
|
|
super(client, {
|
|
name: 'kazuma-kazuma',
|
|
group: 'auto',
|
|
memberName: 'kazuma-kazuma',
|
|
description: 'Hai, Kazuma desu.',
|
|
patterns: [/kazuma,? kazuma!?/i],
|
|
credit: [
|
|
{
|
|
name: 'KONOSUBA -God\'s blessing on this wonderful world!',
|
|
url: 'http://konosuba.com/',
|
|
reason: 'Original Anime'
|
|
}
|
|
]
|
|
});
|
|
}
|
|
|
|
generateText() {
|
|
return 'Hai, Kazuma desu.';
|
|
}
|
|
};
|