mirror of
https://github.com/syuilo/ai.git
synced 2024-11-09 23:48:01 +00:00
Update serif
This commit is contained in:
parent
13481451f3
commit
fb668dc0f8
|
@ -36,7 +36,7 @@ export default class FortuneModule implements IModule {
|
||||||
const rng = seedrandom(seed);
|
const rng = seedrandom(seed);
|
||||||
const omikuji = omikujis[Math.floor(rng() * omikujis.length)];
|
const omikuji = omikujis[Math.floor(rng() * omikujis.length)];
|
||||||
const item = items[Math.floor(rng() * items.length)];
|
const item = items[Math.floor(rng() * items.length)];
|
||||||
msg.reply(`**${omikuji}🎉**\nラッキーアイテム: ${item}`, serifs.fortune.cw);
|
msg.reply(`**${omikuji}🎉**\nラッキーアイテム: ${item}`, serifs.fortune.cw(msg.friend.name));
|
||||||
return true;
|
return true;
|
||||||
} else {
|
} else {
|
||||||
return false;
|
return false;
|
||||||
|
|
|
@ -220,7 +220,7 @@ export default {
|
||||||
* 占い
|
* 占い
|
||||||
*/
|
*/
|
||||||
fortune: {
|
fortune: {
|
||||||
cw: '私が今日のあなたの運勢を占いました...',
|
cw: name => name ? `私が今日の${name}の運勢を占いました...` : '私が今日のあなたの運勢を占いました...',
|
||||||
},
|
},
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|
Loading…
Reference in a new issue