UNPKG

@haelp/teto

Version:

A typescript-based controllable TETR.IO client.

24 lines (22 loc) 351 B
import { RNG } from "../../utils"; import { Mino } from "../types"; export const bag14 = (seed: number) => { const gen = new RNG(seed); return () => gen.shuffleArray([ "z", "l", "o", "s", "i", "j", "t", "z", "l", "o", "s", "i", "j", "t" ] as Mino[]); };