mirror of
https://github.com/syuilo/ai.git
synced 2024-11-09 15:38:00 +00:00
ote
This commit is contained in:
parent
5b9d9bc0ef
commit
1962c27388
|
@ -34,6 +34,7 @@ export default class extends Module {
|
|||
this.humu(msg) ||
|
||||
this.batou(msg) ||
|
||||
this.itai(msg) ||
|
||||
this.ote(msg) ||
|
||||
this.ponkotu(msg) ||
|
||||
this.rmrf(msg) ||
|
||||
this.shutdown(msg)
|
||||
|
@ -292,6 +293,18 @@ export default class extends Module {
|
|||
return true;
|
||||
}
|
||||
|
||||
@autobind
|
||||
private ote(msg: Message): boolean {
|
||||
if (!msg.or(['お手'])) return false;
|
||||
|
||||
// メッセージのみ
|
||||
if (!msg.isDm) return true;
|
||||
|
||||
msg.reply(serifs.core.ote);
|
||||
|
||||
return true;
|
||||
}
|
||||
|
||||
@autobind
|
||||
private ponkotu(msg: Message): boolean | HandlerResult {
|
||||
if (!msg.includes(['ぽんこつ'])) return false;
|
||||
|
|
|
@ -100,6 +100,8 @@ export default {
|
|||
|
||||
itai: name => name ? `${name}、大丈夫ですか…? いたいのいたいの飛んでけっ!` : '大丈夫ですか…? いたいのいたいの飛んでけっ!',
|
||||
|
||||
ote: 'くぅん... 私わんちゃんなんですか?',
|
||||
|
||||
shutdown: '私まだ眠くないですよ...?',
|
||||
},
|
||||
|
||||
|
|
Loading…
Reference in a new issue