mirror of
https://github.com/syuilo/ai.git
synced 2024-11-22 05:08:00 +00:00
Improve AI
This commit is contained in:
parent
5d58f1930c
commit
ee245cd787
|
@ -33,6 +33,7 @@ export default class CoreModule implements IModule {
|
||||||
this.greet(msg) ||
|
this.greet(msg) ||
|
||||||
this.nadenade(msg) ||
|
this.nadenade(msg) ||
|
||||||
this.kawaii(msg) ||
|
this.kawaii(msg) ||
|
||||||
|
this.humu(msg) ||
|
||||||
this.batou(msg) ||
|
this.batou(msg) ||
|
||||||
this.ponkotu(msg)
|
this.ponkotu(msg)
|
||||||
);
|
);
|
||||||
|
@ -208,6 +209,16 @@ export default class CoreModule implements IModule {
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
private humu = (msg: MessageLike): boolean => {
|
||||||
|
if (!includes(msg.text, ['踏んで'])) return false;
|
||||||
|
|
||||||
|
msg.reply(
|
||||||
|
msg.friend.love <= -3 ? serifs.core.humu.hate :
|
||||||
|
serifs.core.humu.normal);
|
||||||
|
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
|
||||||
private batou = (msg: MessageLike): boolean => {
|
private batou = (msg: MessageLike): boolean => {
|
||||||
if (!includes(msg.text, ['罵倒して', '罵って'])) return false;
|
if (!includes(msg.text, ['罵倒して', '罵って'])) return false;
|
||||||
|
|
||||||
|
|
|
@ -46,6 +46,12 @@ export default {
|
||||||
hate: '…ありがとうございます'
|
hate: '…ありがとうございます'
|
||||||
},
|
},
|
||||||
|
|
||||||
|
humu: {
|
||||||
|
normal: 'え、えっと…… ふみふみ……… どうですか…?',
|
||||||
|
|
||||||
|
hate: '…'
|
||||||
|
},
|
||||||
|
|
||||||
batou: {
|
batou: {
|
||||||
love: 'AIに罵られたいって... ちょっと引きます',
|
love: 'AIに罵られたいって... ちょっと引きます',
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue