npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

ygopro-data

v1.4.1

Published

Parses information from YGOPro card databases

Downloads

116

Readme

ygopro-data

Build Status Coverage Status

A Node.js module that handles Yu-Gi-Oh! card data using YGOPro's CDB format.

Installation

npm install ygopro-data --save

Usage

Javascript

const ygoData = require("ygopro-data");
const options = require("./options.json");
const data = new ygoData.YgoData(options);
data.getCard("Pot of Greed", "en").then(card => {
	console.log(card.text["en"].name);
});
Output should be "Pot of Greed"

TypeScript

// exports other useful tools like the Card class, translations module, and enums module
import { YgoData } from "ygopro-data";
const options = require("./options.json");
const data = new ygoData(options);
data.getCard(55144522).then(card => {
	console.log(card.text["en"].name);
});
Output should be "Pot of Greed"

Test

npm run test

Options

The options file should be a JSON Object, with string keys representing different segments of the config.

  • cardOpts will control where cards are downloaded. Its value should be another object, with string keys representing languages. The value of each language will be an object that currently only has one key, remoteDBs, an array of Objects representing GitHub API repository download settings for repos that contain databases you want to download. Databases on the hard drive will be loaded automatically from the same location remote databases are downloaded to.

  • stringOpts will control where YGOPro strings.conf files are downloaded from, for archetypes (and in the future, counters). Its value should be an object with language keys, and URLs as string values.

  • transOpts will control translations of various game terms in different languages. Its value should be another language-keyed object, and language value should be an object with the following keys: attribute, category, ot, race, type. Each of these values will be another object, with the hexadecimal values for each property as the keys and the corresponding translation as the value.

  • filterNames will control what valid property names are for filter parsing. Its value should be an object with the following keys: attribute, category, ot, race, type, setcode, level, atk, def. The value of each of those keys should be an array of lower-case strings, filled with names for the property in any and all desired languages.

  • shortcuts is an optional field that contains abbreviations you want to recognise as card names. Its value is, again, a language-keyed object, and the values of that object should be an object with abbreviations in lower case as keys and the full name as values.

  • banlist should be a string of a URL to a YGOPro lflist.conf file, imageLink should be a string of a URL to which card IDs can be appended to download card images, ending in a slash, and imageExt should be the file extension of the images expected to be found at the imageLink, without the dot.

{
	"cardOpts": {
		"langs": {
			"en": {
				"remoteDBs": [
					{
						"owner": "Ygoproco",
						"repo": "Live2017Links",
						"path": ""
					}
				]
			}
		}
	},
	"stringOpts": {
		"en": "https://raw.githubusercontent.com/Ygoproco/Live2017Links/master/strings.conf"
	},
	"transOpts": {
		"en": {
			"attribute": {
				"0x1": "Earth"
			},
			"category": {
				"0x1": "Destroy Spell/Trap"
			},
			"ot": {
				"0x1": "OCG"
			},
			"race": {
				"0x1": "Warrior"
			},
			"type": {
				"0x1": "Monster"
			}
		}
	},
	"shortcuts": {
		"en": {
			"mst": "Mystical Space Typhoon"
		}
	},
	"filterNames": {
		"attribute": ["att", "attribute"],
		"category": ["cat", "category"],
		"ot": ["ot", "status", "region"],
		"race": ["race", "mtype", "monstertype"],
		"type": ["type", "ctype", "cardtype"],
		"level": ["lvl", "level", "rank", "link"],
		"atk": ["atk", "attack"],
		"def": ["def", "defense", "defence"],
		"setcode": ["set", "setcode", "archetype", "series", "theme", "arch"]
	},
	"banlist": "https://raw.githubusercontent.com/Ygoproco/Live2017Links/master/lflist.conf",
	"imageLink": "https://cdn.exampleimagesite.fake/images/",
	"imageExt": "png"
}