add note variant

This commit is contained in:
syuilo 2021-11-21 14:17:07 +09:00
parent b69ad7a0ba
commit 84a425a9c3
2 changed files with 5 additions and 0 deletions

View file

@ -32,6 +32,10 @@ export default class extends Module {
const item = genItem(); const item = genItem();
return serifs.noting.see(item); return serifs.noting.see(item);
}, },
() => {
const item = genItem();
return serifs.noting.expire(item);
},
]; ];
const note = notes[Math.floor(Math.random() * notes.length)]; const note = notes[Math.floor(Math.random() * notes.length)];

View file

@ -460,6 +460,7 @@ export default {
], ],
want: item => `${item}、欲しいなぁ...`, want: item => `${item}、欲しいなぁ...`,
see: item => `お散歩していたら、道に${item}が落ちているのを見たんです!`, see: item => `お散歩していたら、道に${item}が落ちているのを見たんです!`,
expire: item => `気づいたら、${item}の賞味期限が切れてました…`,
}, },
}; };