This commit is contained in:
L̷O̷N̷D̷O̷N̷少林 2025-01-21 11:25:47 -05:00 committed by GitHub
parent 8cbb3ad5c2
commit 46eacd08d2
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -6,35 +6,34 @@ import seedrandom from 'seedrandom';
import { genItem } from '@/vocabulary.js'; import { genItem } from '@/vocabulary.js';
export const blessing = [ export const blessing = [
'藍吉', 'mysterious child',
'ヨタ吉', 'alright',
'ゼタ吉', 'good',
'エクサ吉', 'okay',
'ペタ吉', 'pretty lucky',
'テラ吉', 'best in the world,
'ギガ吉', 'approx. Sept. 8',
'メガ吉', 'succubus',
'キロ吉', 'slight luck',
'ヘクト吉', 'financial luck',
'デカ吉', 'big luck',
'デシ吉', 'Desi Fortuna',
'センチ吉', 'centipedent',
'ミリ吉', 'Not yet',
'マイクロ吉', 'Nanokichi',
'ナノ吉', 'PicoKichi',
'ピコ吉', 'Good Luck',
'フェムト吉', 'Auspicious',
'アト吉', 'Lucky #7',
'ゼプト吉', 'night of the 14th day of the eight month of the lunar calendar',
'ヨクト吉', 'very good luck',
'超吉', 'mucho lucko',
'大大吉', 'excellent luck',
'大吉', 'good luck',
'吉', '15th day of the second month of the lunar calendar (around mid-spring)',
'中吉', 'slightly good luck ',
'小吉', 'unlucky',
'凶', 'Very bad luck',
'大凶',
]; ];
export default class extends Module { export default class extends Module {
@ -55,7 +54,7 @@ export default class extends Module {
const rng = seedrandom(seed); const rng = seedrandom(seed);
const omikuji = blessing[Math.floor(rng() * blessing.length)]; const omikuji = blessing[Math.floor(rng() * blessing.length)];
const item = genItem(rng); const item = genItem(rng);
msg.reply(`**${omikuji}🎉**\nラッキーアイテム: ${item}`, { msg.reply('$[fg.red ' + `**${omikuji}🎉**\nラッキーアイテム: ${item} + ']' `, {
cw: serifs.fortune.cw(msg.friend.name) cw: serifs.fortune.cw(msg.friend.name)
}); });
return true; return true;