mirror of
https://github.com/syuilo/ai.git
synced 2024-11-24 22:01:07 +00:00
add note variant
This commit is contained in:
parent
b69ad7a0ba
commit
84a425a9c3
|
@ -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)];
|
||||||
|
|
|
@ -460,6 +460,7 @@ export default {
|
||||||
],
|
],
|
||||||
want: item => `${item}、欲しいなぁ...`,
|
want: item => `${item}、欲しいなぁ...`,
|
||||||
see: item => `お散歩していたら、道に${item}が落ちているのを見たんです!`,
|
see: item => `お散歩していたら、道に${item}が落ちているのを見たんです!`,
|
||||||
|
expire: item => `気づいたら、${item}の賞味期限が切れてました…`,
|
||||||
},
|
},
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue