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