mirror of
https://github.com/syuilo/ai.git
synced 2024-11-12 17:08:00 +00:00
✨
This commit is contained in:
parent
1d99839fa7
commit
a1c5dc8d56
|
@ -75,11 +75,6 @@ export default class extends Module {
|
|||
// メッセージのみ
|
||||
if (!msg.isDm) return true;
|
||||
|
||||
if (msg.friend.love < 5) {
|
||||
msg.reply(serifs.core.requireMoreLove);
|
||||
return true;
|
||||
}
|
||||
|
||||
const name = msg.text.match(/^(.+?)って呼んで/)![1];
|
||||
|
||||
if (name.length > 10) {
|
||||
|
|
|
@ -40,6 +40,8 @@ export default class extends Module {
|
|||
|
||||
const note = notes[Math.floor(Math.random() * notes.length)];
|
||||
|
||||
// TODO: 季節に応じたセリフ
|
||||
|
||||
this.ai.post({
|
||||
text: typeof note === 'function' ? note() : note
|
||||
});
|
||||
|
|
|
@ -76,8 +76,6 @@ export default {
|
|||
|
||||
invalidName: '発音が難しい気がします',
|
||||
|
||||
requireMoreLove: 'もっと仲良くなったら考えてあげてもいいですよ?',
|
||||
|
||||
nadenade: {
|
||||
normal: 'ひゃっ…! びっくりしました',
|
||||
|
||||
|
|
Loading…
Reference in a new issue