mirror of
https://github.com/syuilo/ai.git
synced 2025-03-25 21:12:56 +00:00
index.ts
This commit is contained in:
parent
8cbb3ad5c2
commit
46eacd08d2
1 changed files with 29 additions and 30 deletions
|
@ -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;
|
||||||
|
|
Loading…
Reference in a new issue