mtgsdk

1.0.1 • Public • Published

Magic: The Gathering SDK

npm version discord

This is the Magic: The Gathering SDK Javascript implementation. It is a wrapper around the MTG API of magicthegathering.io.

Installation

npm install mtgsdk

Usage

const mtg = require('mtgsdk')

const result = await mtg.card.find(3)
console.log(result.card.name) // "Black Lotus"

const result = await mtg.set.find('AER')
console.log(result.set.name) // "Aether Revolt"

Query cards and sets by any property:

const result = await card.where({ supertypes: 'legendary', subtypes: 'goblin' })
console.log(cards[0].name) // "Squee, Goblin Nabob"

const result = await set.where({ block: 'Shadows over Innistrad', border: 'black' })
console.log(sets[0].name) // "Welcome Deck 2016"
console.log(sets[1].name) // "Shadows over Innistrad"
console.log(sets[2].name) // "Eldritch Moon"

Retrieve cards across multiple pages of results:

card.all({ name: 'Squee', pageSize: 1 })
.on('data', card => {
    console.log(card.name)
})

// Squee
// Squee, Goblin Nabob Avatar
// Squee's Toy
// Squeeze
// Squee, Goblin Nabob
// Squee's Embrace
// Squee's Revenge
// Squee, Goblin Nabob
// Squee, Goblin Nabob
// (the duplicates are from different sets)

set.all({ name: 'limited' })
.on('data', set => {
  console.log(set.name)
})

// Limited Edition Alpha
// Limited Edition Beta
// Unlimited Edition

Properties

Card

name
multiverseid
layout
names
manaCost
cmc
colors
type
types
subtypes
rarity
text
flavor
artist
number
power
toughness
reserved
rulings
printings
originalText
originalType
legalities
source
imageUrl
set
id

Set

code
name
gatherer_code
old_code
magic_cards_info_code
release_date
border
type
block
online_only
booster
mkm_id
mkm_name

Please note: Currently, sets are only queryable on their name and block fields.

Readme

Keywords

none

Package Sidebar

Install

npm i mtgsdk

Weekly Downloads

38

Version

1.0.1

License

MIT

Unpacked Size

2.85 MB

Total Files

57

Last publish

Collaborators

  • raine