mirror of
https://github.com/syuilo/ai.git
synced 2024-11-09 15:38:00 +00:00
Improve AI
This commit is contained in:
parent
cf612396db
commit
56a5718cbd
|
@ -168,6 +168,12 @@ export default class extends Module {
|
|||
return true;
|
||||
}
|
||||
|
||||
const match3 = msg.extractedText.match(/(.+?)だから(褒|ほ)めて/);
|
||||
if (match3) {
|
||||
msg.reply(getSerif(serifs.core.erait.specify(match3[1], msg.friend.name)));
|
||||
return true;
|
||||
}
|
||||
|
||||
if (!msg.includes(['褒めて', 'ほめて'])) return false;
|
||||
|
||||
msg.reply(getSerif(serifs.core.erait.general(msg.friend.name)));
|
||||
|
@ -315,7 +321,7 @@ export default class extends Module {
|
|||
|
||||
@autobind
|
||||
private itai(msg: Message): boolean {
|
||||
if (!msg.or(['痛い', 'いたい'])) return false;
|
||||
if (!msg.or(['痛い', 'いたい']) && !msg.extractedText.endsWith('痛い')) return false;
|
||||
|
||||
// メッセージのみ
|
||||
if (!msg.isDm) return true;
|
||||
|
|
|
@ -42,6 +42,14 @@ export default {
|
|||
`${thing}てえらいです!`,
|
||||
`${thing}てえらいですよ~♪`
|
||||
],
|
||||
|
||||
specify2: (thing, name) => name ? [
|
||||
`${name}、${thing}でえらいです!`,
|
||||
`${name}、${thing}でえらいですよ~♪`
|
||||
] : [
|
||||
`${thing}でえらいです!`,
|
||||
`${thing}でえらいですよ~♪`
|
||||
],
|
||||
},
|
||||
|
||||
okaeri: {
|
||||
|
|
Loading…
Reference in a new issue