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