mirror of
https://github.com/nullnyat/NullcatChan.git
synced 2025-07-02 08:59:59 +09:00
Update vocabulary.ts
This commit is contained in:
@ -276,7 +276,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() * 3) === 0) {
|
if (Math.floor(rng() * 6) === 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)];
|
||||||
|
Reference in New Issue
Block a user