mirror of
https://github.com/arthur-pbty/xiao.git
synced 2026-06-05 22:01:54 +02:00
25 lines
534 B
JavaScript
25 lines
534 B
JavaScript
const Command = require('../../structures/Command');
|
|
|
|
module.exports = class KazumaKazumaCommand extends Command {
|
|
constructor(client) {
|
|
super(client, {
|
|
name: 'kazuma-kazuma',
|
|
group: 'single',
|
|
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'
|
|
}
|
|
]
|
|
});
|
|
}
|
|
|
|
run(msg) {
|
|
return msg.say('Hai, Kazuma desu.');
|
|
}
|
|
};
|