mirror of
https://github.com/syuilo/ai.git
synced 2024-11-09 23:48:01 +00:00
こんにちはサポート
This commit is contained in:
parent
88f84b8a3d
commit
2f14ba690c
|
@ -120,6 +120,18 @@ export default class CoreModule implements IModule {
|
|||
msg.friend.incLove();
|
||||
};
|
||||
|
||||
if (msg.text.includes('こんにちは')) {
|
||||
if (msg.friend.name) {
|
||||
msg.reply(serifs.core.helloWithName.replace('{name}', msg.friend.name));
|
||||
} else {
|
||||
msg.reply(serifs.core.hello);
|
||||
}
|
||||
|
||||
incLove();
|
||||
|
||||
return true;
|
||||
}
|
||||
|
||||
if (msg.text.includes('おはよ')) {
|
||||
if (msg.friend.name) {
|
||||
msg.reply(serifs.core.goodMorningWithName.replace('{name}', msg.friend.name));
|
||||
|
|
|
@ -3,6 +3,8 @@ export default {
|
|||
setNameOk: 'わかりました。これからは{name}とお呼びしますね!',
|
||||
san: 'さん付けした方がいいですか?',
|
||||
yesOrNo: '「はい」か「いいえ」しかわからないんです...',
|
||||
hello: 'こんにちは♪',
|
||||
helloWithName: 'こんにちは、{name}♪',
|
||||
goodMorning: 'おはようございます!',
|
||||
goodMorningWithName: 'おはようございます、{name}!',
|
||||
goodNight: 'おやすみなさい!',
|
||||
|
|
Loading…
Reference in a new issue