mirror of
https://github.com/syuilo/ai.git
synced 2024-11-09 15:38:00 +00:00
Update vocabulary.ts
This commit is contained in:
parent
d0401f22f9
commit
b69ad7a0ba
|
@ -111,6 +111,8 @@ export const itemPrefixes = [
|
||||||
'消える',
|
'消える',
|
||||||
'等速直線運動する',
|
'等速直線運動する',
|
||||||
'X線照射',
|
'X線照射',
|
||||||
|
'蠢く',
|
||||||
|
'形而上学的',
|
||||||
];
|
];
|
||||||
|
|
||||||
export const items = [
|
export const items = [
|
||||||
|
@ -305,7 +307,7 @@ export function genItem(seedOrRng?: (() => number) | string | number) {
|
||||||
let item = '';
|
let item = '';
|
||||||
if (Math.floor(rng() * 5) !== 0) item += itemPrefixes[Math.floor(rng() * itemPrefixes.length)];
|
if (Math.floor(rng() * 5) !== 0) item += itemPrefixes[Math.floor(rng() * itemPrefixes.length)];
|
||||||
item += items[Math.floor(rng() * items.length)];
|
item += items[Math.floor(rng() * items.length)];
|
||||||
if (Math.floor(rng() * 6) === 0) {
|
if (Math.floor(rng() * 10) === 0) {
|
||||||
item += and[Math.floor(rng() * and.length)];
|
item += and[Math.floor(rng() * and.length)];
|
||||||
if (Math.floor(rng() * 5) !== 0) item += itemPrefixes[Math.floor(rng() * itemPrefixes.length)];
|
if (Math.floor(rng() * 5) !== 0) item += itemPrefixes[Math.floor(rng() * itemPrefixes.length)];
|
||||||
item += items[Math.floor(rng() * items.length)];
|
item += items[Math.floor(rng() * items.length)];
|
||||||
|
|
Loading…
Reference in a new issue