2.0.1 • Published 4 months ago

oot-bingo-lists v2.0.1

Weekly downloads
-
License
GPL-3.0-only
Repository
github
Last release
4 months ago

OoT Bingo Lists

image

Provides the bingo goal lists and generators of various Ocarina of Time Bingo versions.

Related packages:

Install

npm install --save oot-bingo-lists

Supported bingo versions

  • v9.1
  • v9.2
  • v9.3
  • v9.4
  • v9.5
  • v9.5.1
  • v10.0
  • v10.1
  • v10.2
  • v10.3
  • v10.3.1
  • v10.3.2
  • v10.4

Usage

Bingo lists and generators

Use the getBingoList() function to retrieve the bingo list of a specific bingo version:

import { getBingoList } from "oot-bingo-lists";

const bingoList = getBingoList("v10.2");

Note that the latest version of the oot-bingo-generator might not match with the generator that was used for a specific bingo version. Get a version specific generator with getGenerator():

import { getGenerator } from "oot-bingo-lists";

const generator = getGenerator("v10.2");

Latest version

Get the bingo list of the latest version:

import { getBingoList, latestBingoVersion } from "oot-bingo-lists";

const bingoList = getBingoList(latestBingoVersion);

Generate boards

It's also possible to generate boards. The package will use the generator that actually belonged to your specified version, so that the resulting boards are correct:

import { generateBingoBoardFromVersion } from "oot-bingo-lists";

const board = generateBingoBoardFromVersion("v9.3", "blackout", 654321);

Run source code directly

If you would like to work with the source code directly rather than installing this as a package, you can clone the repo and install the dependencies:

npm install

Build

Create a build of the package outputted in the folder build:

npm run build

Publish

Publish the package to NPM:

npm run prepare
npm publish
2.0.1

4 months ago

2.0.0

4 months ago

1.4.0

4 months ago

1.3.4

5 months ago

1.3.3

8 months ago

1.3.2

8 months ago

1.3.1

9 months ago

1.2.2

9 months ago

1.3.0

9 months ago

1.2.1

9 months ago

1.2.0

2 years ago

1.1.0

2 years ago

1.0.4

2 years ago

1.0.3

2 years ago

1.0.2

2 years ago

1.0.1

2 years ago

1.0.0

2 years ago