2018-01-25 20:27:56 +00:00
|
|
|
|
import aiohttp
|
|
|
|
|
import asyncio
|
2018-02-14 02:02:48 +00:00
|
|
|
|
import urllib.parse
|
2018-03-01 02:04:45 +00:00
|
|
|
|
from threading import Thread
|
2018-01-25 20:27:56 +00:00
|
|
|
|
|
2018-02-07 03:01:08 +00:00
|
|
|
|
class CardsObject(object):
|
2018-02-21 19:42:58 +00:00
|
|
|
|
"""
|
|
|
|
|
Master class that all card objects inherit from.
|
|
|
|
|
|
|
|
|
|
Positional arguments:
|
|
|
|
|
No positional arguments are required.
|
|
|
|
|
|
|
|
|
|
Optional arguments:
|
|
|
|
|
format : str ... Returns data in the specified method. Defaults to JSON.
|
|
|
|
|
face : str ... If you're using the `image` format, this will specify if
|
|
|
|
|
you want the front or back face.
|
|
|
|
|
version : str ... If you're using the `image` format, this will specify if
|
|
|
|
|
you want the small, normal, large, etc version of the image.
|
|
|
|
|
pretty : str ... Returns a prettier version of the json object. Note that
|
|
|
|
|
this may break functionality with Scrython.
|
|
|
|
|
Attributes:
|
|
|
|
|
object : str ..... Returns the type of object it is. (card, error, etc)
|
|
|
|
|
id : str ................................. The scryfall id of the card.
|
|
|
|
|
multiverse_ids : list ...... The associated multiverse ids of the card.
|
|
|
|
|
mtgo_id : int ........................ The Magic Online id of the card.
|
|
|
|
|
mtgo_foil_id : int .............. The Magic Online foil id of the card.
|
|
|
|
|
name : str ................................. The full name of the card.
|
|
|
|
|
uri : str .......................... The Scryfall API uri for the card.
|
|
|
|
|
scryfall_uri : str ................ The full Scryfall page of the card.
|
|
|
|
|
layout : str ... The image layout of the card. (normal, transform, etc)
|
|
|
|
|
highres_image : bool ... Returns True if the card has a high res image.
|
|
|
|
|
image_uris : dict .... All image uris of the card in various qualities.
|
|
|
|
|
cmc : float ........... A float of the converted mana cost of the card.
|
|
|
|
|
type_line : str ....................... The full type line of the card.
|
|
|
|
|
oracle_text : str ................. The official oracle text of a card.
|
|
|
|
|
mana_cost : str .... The full mana cost using shorthanded mana symbols.
|
|
|
|
|
colors : list ... An array of strings with all colors found in the mana cost.
|
|
|
|
|
color_identity : list ... An array of strings with all colors found on the card itself.
|
|
|
|
|
legalities : dict ..... A dictionary of all formats and their legality.
|
|
|
|
|
reserved : bool ..... Returns True if the card is on the reserved list.
|
|
|
|
|
reprint : bool .... Returns True if the card has been reprinted before.
|
|
|
|
|
set_code : str ............. The 3 letter code for the set of the card.
|
|
|
|
|
set_name : str ................. The full name for the set of the card.
|
|
|
|
|
set_uri : str .......... The API uri for the full set list of the card.
|
|
|
|
|
set_search_uri : str .......................... Same output as set_uri.
|
|
|
|
|
scryfall_set_uri : str .......... The full link to the set on Scryfall.
|
|
|
|
|
rulings_uri : str ............ The API uri for the rulings of the card.
|
|
|
|
|
prints_search_uri : str ... A link to where you can begin paginating all re/prints for this card on Scryfall’s API.
|
|
|
|
|
collector_number : str .............. The collector number of the card.
|
|
|
|
|
digital : bool ....... Returns True if the card is the digital version.
|
|
|
|
|
rarity : str .................................. The rarity of the card.
|
|
|
|
|
illuStringation_id : str .............. The related id of the card art.
|
|
|
|
|
artist : str .................................. The artist of the card.
|
|
|
|
|
frame : str ............................... The year of the card frame.
|
|
|
|
|
full_art : bool ...... Returns True if the card is considered full art.
|
|
|
|
|
border_color : str ...................... The color of the card border.
|
|
|
|
|
timeshifted : bool ........... Returns True if the card is timeshifted.
|
|
|
|
|
colorshifted : bool ......... Returns True if the card is colorshifted.
|
|
|
|
|
futureshifted : bool ....... Returns True if the card is futureshifted.
|
|
|
|
|
edhrec_rank : int .................. The rank of the card on edhrec.com
|
|
|
|
|
currency("<mode>")` : str ... Returns currency from modes `usd`, `eur`, and `tix`.
|
|
|
|
|
related_uris : dict ... A dictionary of related websites for this card.
|
|
|
|
|
purchase_uris : dict ...... A dictionary of links to purchase the card.
|
|
|
|
|
life_modifier : str ... This is the cards life modifier value, assuming it's a Vanguard card.
|
|
|
|
|
hand_modifier : str ... This cards hand modifier value, assuming it's a Vanguard card.
|
|
|
|
|
color_indicator : list ... An array of all colors found in this card's color indicator.
|
|
|
|
|
all_parts : list ... This this card is closely related to other cards, this property will be an array with it.
|
|
|
|
|
card_faces : list ... If it exists, all parts found on a card's face will be found as an object from this array.
|
|
|
|
|
watermark : str ......... The associated watermark of the card, if any.
|
|
|
|
|
story_spotlight_number : int ... This card's story spotlight number, if any.
|
|
|
|
|
story_spotlight_uri : str ... The URI for the card's story article, if any.
|
2018-06-13 18:22:14 +00:00
|
|
|
|
power : str ................. The power of the creature, if applicable.
|
|
|
|
|
toughness : str ......... The toughness of the creature, if applicable.
|
|
|
|
|
flavor_text : str ................ The flavor text of the card, if any.
|
|
|
|
|
arena_id : int ...................... The Arena ID of the card, if any.
|
|
|
|
|
lang : str ... The language of the card.
|
|
|
|
|
printed_name : str .. If the card is in a non-English language, this will be the name as it appears on the card.
|
|
|
|
|
printed_type_line : str .. If the card is in a non-English language, this will be the type line as it appears on the card.
|
|
|
|
|
printed_text : str ... If the card is in a non-English language, this will be the rules text as it appears on the card.
|
2018-02-21 19:42:58 +00:00
|
|
|
|
"""
|
2018-01-30 03:32:08 +00:00
|
|
|
|
def __init__(self, _url, **kwargs):
|
2018-02-14 02:02:48 +00:00
|
|
|
|
|
|
|
|
|
self.params = {
|
|
|
|
|
'format': kwargs.get('format', 'json'), 'face': kwargs.get('face', ''),
|
|
|
|
|
'version': kwargs.get('version', ''), 'pretty': kwargs.get('pretty', '')
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
self.encodedParams = urllib.parse.urlencode(self.params)
|
2018-03-04 01:41:33 +00:00
|
|
|
|
self._url = 'https://api.scryfall.com/{0}&{1}'.format(_url, self.encodedParams)
|
2018-01-25 20:27:56 +00:00
|
|
|
|
|
2018-02-15 20:03:18 +00:00
|
|
|
|
async def getRequest(client, url, **kwargs):
|
|
|
|
|
async with client.get(url, **kwargs) as response:
|
2018-01-25 20:27:56 +00:00
|
|
|
|
return await response.json()
|
|
|
|
|
|
2018-02-15 20:03:18 +00:00
|
|
|
|
async def main(loop):
|
|
|
|
|
async with aiohttp.ClientSession(loop=loop) as client:
|
|
|
|
|
self.scryfallJson = await getRequest(client, self._url)
|
|
|
|
|
|
2018-03-01 02:04:45 +00:00
|
|
|
|
def do_everything():
|
|
|
|
|
loop = asyncio.new_event_loop()
|
|
|
|
|
asyncio.set_event_loop(loop)
|
|
|
|
|
loop.run_until_complete(main(loop))
|
|
|
|
|
|
|
|
|
|
t = Thread(target=do_everything)
|
|
|
|
|
t.run()
|
2018-01-30 03:32:08 +00:00
|
|
|
|
|
|
|
|
|
if self.scryfallJson['object'] == 'error':
|
|
|
|
|
raise Exception(self.scryfallJson['details'])
|
|
|
|
|
|
2018-03-03 21:37:24 +00:00
|
|
|
|
def _checkForKey(self, key):
|
2018-04-19 00:55:11 +00:00
|
|
|
|
if not key in self.scryfallJson:
|
2018-03-03 21:37:24 +00:00
|
|
|
|
raise KeyError('This card has no key \'{}\''.format(key))
|
|
|
|
|
|
|
|
|
|
def _checkForTupleKey(self, parent, num, key):
|
2018-04-19 00:55:11 +00:00
|
|
|
|
if not key in self.scryfallJson[parent][num]:
|
2018-03-03 21:37:24 +00:00
|
|
|
|
raise KeyError('This tuple has no key \'{}\''.format(key))
|
2018-01-30 04:43:36 +00:00
|
|
|
|
|
2018-01-25 20:27:56 +00:00
|
|
|
|
def object(self):
|
2018-03-03 21:37:24 +00:00
|
|
|
|
self._checkForKey('object')
|
2018-01-30 04:43:36 +00:00
|
|
|
|
|
2018-01-25 20:27:56 +00:00
|
|
|
|
return self.scryfallJson['object']
|
|
|
|
|
|
|
|
|
|
def id(self):
|
2018-03-03 21:37:24 +00:00
|
|
|
|
self._checkForKey('id')
|
2018-01-30 04:43:36 +00:00
|
|
|
|
|
2018-01-25 20:27:56 +00:00
|
|
|
|
return self.scryfallJson['id']
|
|
|
|
|
|
|
|
|
|
def multiverse_ids(self):
|
2018-03-03 21:37:24 +00:00
|
|
|
|
self._checkForKey('multiverse_ids')
|
2018-01-30 04:43:36 +00:00
|
|
|
|
|
2018-01-25 20:27:56 +00:00
|
|
|
|
return self.scryfallJson['multiverse_ids']
|
|
|
|
|
|
|
|
|
|
def mtgo_id(self):
|
2018-03-03 21:37:24 +00:00
|
|
|
|
self._checkForKey('mtgo_id')
|
2018-01-30 04:43:36 +00:00
|
|
|
|
|
2018-01-25 20:27:56 +00:00
|
|
|
|
return self.scryfallJson['mtgo_id']
|
|
|
|
|
|
|
|
|
|
def mtgo_foil_id(self):
|
2018-03-03 21:37:24 +00:00
|
|
|
|
self._checkForKey('mtgo_foil_id')
|
2018-01-30 04:43:36 +00:00
|
|
|
|
|
2018-01-25 20:27:56 +00:00
|
|
|
|
return self.scryfallJson['mtgo_foil_id']
|
|
|
|
|
|
|
|
|
|
def name(self):
|
2018-03-03 21:37:24 +00:00
|
|
|
|
self._checkForKey('name')
|
2018-01-30 04:43:36 +00:00
|
|
|
|
|
2018-01-25 20:27:56 +00:00
|
|
|
|
return self.scryfallJson['name']
|
|
|
|
|
|
|
|
|
|
def uri(self):
|
2018-03-03 21:37:24 +00:00
|
|
|
|
self._checkForKey('uri')
|
2018-01-30 04:43:36 +00:00
|
|
|
|
|
2018-01-25 20:27:56 +00:00
|
|
|
|
return self.scryfallJson['uri']
|
|
|
|
|
|
|
|
|
|
def scryfall_uri(self):
|
2018-03-03 21:37:24 +00:00
|
|
|
|
self._checkForKey('scryfall_uri')
|
2018-01-30 04:43:36 +00:00
|
|
|
|
|
2018-01-25 20:27:56 +00:00
|
|
|
|
return self.scryfallJson['scryfall_uri']
|
|
|
|
|
|
|
|
|
|
def layout(self):
|
2018-03-03 21:37:24 +00:00
|
|
|
|
self._checkForKey('layout')
|
2018-01-30 04:43:36 +00:00
|
|
|
|
|
2018-01-25 20:27:56 +00:00
|
|
|
|
return self.scryfallJson['layout']
|
|
|
|
|
|
|
|
|
|
def highres_image(self):
|
2018-03-03 21:37:24 +00:00
|
|
|
|
self._checkForKey('highres_image')
|
2018-01-30 04:43:36 +00:00
|
|
|
|
|
2018-01-25 20:27:56 +00:00
|
|
|
|
return self.scryfallJson['highres_image']
|
|
|
|
|
|
|
|
|
|
def image_uris(self):
|
2018-03-03 21:37:24 +00:00
|
|
|
|
self._checkForKey('image_uris')
|
2018-01-30 04:43:36 +00:00
|
|
|
|
|
2018-01-25 20:27:56 +00:00
|
|
|
|
return self.scryfallJson['image_uris']
|
|
|
|
|
|
|
|
|
|
def cmc(self):
|
2018-03-03 21:37:24 +00:00
|
|
|
|
self._checkForKey('cmc')
|
2018-01-30 04:43:36 +00:00
|
|
|
|
|
2018-01-25 20:27:56 +00:00
|
|
|
|
return self.scryfallJson['cmc']
|
|
|
|
|
|
|
|
|
|
def type_line(self):
|
2018-03-03 21:37:24 +00:00
|
|
|
|
self._checkForKey('type_line')
|
2018-01-30 04:43:36 +00:00
|
|
|
|
|
2018-01-25 20:27:56 +00:00
|
|
|
|
return self.scryfallJson['type_line']
|
|
|
|
|
|
|
|
|
|
def oracle_text(self):
|
2018-03-03 21:37:24 +00:00
|
|
|
|
self._checkForKey('oracle_text')
|
2018-01-30 04:43:36 +00:00
|
|
|
|
|
2018-01-25 20:27:56 +00:00
|
|
|
|
return self.scryfallJson['oracle_text']
|
|
|
|
|
|
|
|
|
|
def mana_cost(self):
|
2018-03-03 21:37:24 +00:00
|
|
|
|
self._checkForKey('mana_cost')
|
2018-01-30 04:43:36 +00:00
|
|
|
|
|
2018-01-25 20:27:56 +00:00
|
|
|
|
return self.scryfallJson['mana_cost']
|
|
|
|
|
|
|
|
|
|
def colors(self):
|
2018-03-03 21:37:24 +00:00
|
|
|
|
self._checkForKey('colors')
|
2018-01-30 04:43:36 +00:00
|
|
|
|
|
2018-01-25 20:27:56 +00:00
|
|
|
|
return self.scryfallJson['colors']
|
|
|
|
|
|
|
|
|
|
def color_identity(self):
|
2018-03-03 21:37:24 +00:00
|
|
|
|
self._checkForKey('color_identity')
|
2018-01-30 04:43:36 +00:00
|
|
|
|
|
2018-01-25 20:27:56 +00:00
|
|
|
|
return self.scryfallJson['color_identity']
|
|
|
|
|
|
|
|
|
|
def legalities(self):
|
2018-03-03 21:37:24 +00:00
|
|
|
|
self._checkForKey('legalities')
|
2018-01-30 04:43:36 +00:00
|
|
|
|
|
2018-01-25 20:27:56 +00:00
|
|
|
|
return self.scryfallJson['legalities']
|
|
|
|
|
|
|
|
|
|
def reserved(self):
|
2018-03-03 21:37:24 +00:00
|
|
|
|
self._checkForKey('reserved')
|
2018-01-30 04:43:36 +00:00
|
|
|
|
|
2018-01-25 20:27:56 +00:00
|
|
|
|
return self.scryfallJson['reserved']
|
|
|
|
|
|
|
|
|
|
def reprint(self):
|
2018-03-03 21:37:24 +00:00
|
|
|
|
self._checkForKey('reprint')
|
2018-01-30 04:43:36 +00:00
|
|
|
|
|
2018-01-25 20:27:56 +00:00
|
|
|
|
return self.scryfallJson['reprint']
|
|
|
|
|
|
2018-02-07 01:11:18 +00:00
|
|
|
|
def set_code(self):
|
2018-03-03 21:37:24 +00:00
|
|
|
|
self._checkForKey('set')
|
2018-01-30 04:43:36 +00:00
|
|
|
|
|
2018-01-25 20:27:56 +00:00
|
|
|
|
return self.scryfallJson['set']
|
|
|
|
|
|
|
|
|
|
def set_name(self):
|
2018-03-03 21:37:24 +00:00
|
|
|
|
self._checkForKey('set_name')
|
2018-01-30 04:43:36 +00:00
|
|
|
|
|
2018-01-25 20:27:56 +00:00
|
|
|
|
return self.scryfallJson['set_name']
|
|
|
|
|
|
|
|
|
|
def set_uri(self):
|
2018-03-03 21:37:24 +00:00
|
|
|
|
self._checkForKey('set_uri')
|
2018-01-30 04:43:36 +00:00
|
|
|
|
|
2018-01-25 20:27:56 +00:00
|
|
|
|
return self.scryfallJson['set_uri']
|
|
|
|
|
|
|
|
|
|
def set_search_uri(self):
|
2018-03-03 21:37:24 +00:00
|
|
|
|
self._checkForKey('set_search_uri')
|
2018-01-30 04:43:36 +00:00
|
|
|
|
|
2018-01-25 20:27:56 +00:00
|
|
|
|
return self.scryfallJson['set_search_uri']
|
|
|
|
|
|
|
|
|
|
def scryfall_set_uri(self):
|
2018-03-03 21:37:24 +00:00
|
|
|
|
self._checkForKey('scryfall_set_uri')
|
2018-01-30 04:43:36 +00:00
|
|
|
|
|
2018-01-25 20:27:56 +00:00
|
|
|
|
return self.scryfallJson['scryfall_set_uri']
|
|
|
|
|
|
|
|
|
|
def rulings_uri(self):
|
2018-03-03 21:37:24 +00:00
|
|
|
|
self._checkForKey('rulings_uri')
|
2018-01-30 04:43:36 +00:00
|
|
|
|
|
2018-01-25 20:27:56 +00:00
|
|
|
|
return self.scryfallJson['rulings_uri']
|
|
|
|
|
|
|
|
|
|
def prints_search_uri(self):
|
2018-03-03 21:37:24 +00:00
|
|
|
|
self._checkForKey('prints_search_uri')
|
2018-01-30 04:43:36 +00:00
|
|
|
|
|
2018-01-25 20:27:56 +00:00
|
|
|
|
return self.scryfallJson['prints_search_uri']
|
|
|
|
|
|
|
|
|
|
def collector_number(self):
|
2018-03-03 21:37:24 +00:00
|
|
|
|
self._checkForKey('collector_number')
|
2018-01-30 04:43:36 +00:00
|
|
|
|
|
2018-01-25 20:27:56 +00:00
|
|
|
|
return self.scryfallJson['collector_number']
|
|
|
|
|
|
|
|
|
|
def digital(self):
|
2018-03-03 21:37:24 +00:00
|
|
|
|
self._checkForKey('digital')
|
2018-01-30 04:43:36 +00:00
|
|
|
|
|
2018-01-25 20:27:56 +00:00
|
|
|
|
return self.scryfallJson['digital']
|
|
|
|
|
|
|
|
|
|
def rarity(self):
|
2018-03-03 21:37:24 +00:00
|
|
|
|
self._checkForKey('rarity')
|
2018-01-30 04:43:36 +00:00
|
|
|
|
|
2018-01-25 20:27:56 +00:00
|
|
|
|
return self.scryfallJson['rarity']
|
|
|
|
|
|
|
|
|
|
def illustration_id(self):
|
2018-03-03 21:37:24 +00:00
|
|
|
|
self._checkForKey('illustration_id')
|
2018-01-30 04:43:36 +00:00
|
|
|
|
|
2018-01-25 20:27:56 +00:00
|
|
|
|
return self.scryfallJson['illustration_id']
|
|
|
|
|
|
|
|
|
|
def artist(self):
|
2018-03-03 21:37:24 +00:00
|
|
|
|
self._checkForKey('artist')
|
2018-01-30 04:43:36 +00:00
|
|
|
|
|
2018-01-25 20:27:56 +00:00
|
|
|
|
return self.scryfallJson['artist']
|
|
|
|
|
|
|
|
|
|
def frame(self):
|
2018-03-03 21:37:24 +00:00
|
|
|
|
self._checkForKey('frame')
|
2018-01-30 04:43:36 +00:00
|
|
|
|
|
2018-01-25 20:27:56 +00:00
|
|
|
|
return self.scryfallJson['frame']
|
|
|
|
|
|
|
|
|
|
def full_art(self):
|
2018-03-03 21:37:24 +00:00
|
|
|
|
self._checkForKey('')
|
2018-01-30 04:43:36 +00:00
|
|
|
|
|
2018-01-25 20:27:56 +00:00
|
|
|
|
return self.scryfallJson['full_art']
|
|
|
|
|
|
|
|
|
|
def border_color(self):
|
2018-03-03 21:37:24 +00:00
|
|
|
|
self._checkForKey('border_color')
|
2018-01-30 04:43:36 +00:00
|
|
|
|
|
2018-01-25 20:27:56 +00:00
|
|
|
|
return self.scryfallJson['border_color']
|
|
|
|
|
|
|
|
|
|
def timeshifted(self):
|
2018-03-03 21:37:24 +00:00
|
|
|
|
self._checkForKey('timeshifted')
|
2018-01-30 04:43:36 +00:00
|
|
|
|
|
2018-01-25 20:27:56 +00:00
|
|
|
|
return self.scryfallJson['timeshifted']
|
|
|
|
|
|
|
|
|
|
def colorshifted(self):
|
2018-03-03 21:37:24 +00:00
|
|
|
|
self._checkForKey('colorshifted')
|
2018-01-30 04:43:36 +00:00
|
|
|
|
|
2018-01-25 20:27:56 +00:00
|
|
|
|
return self.scryfallJson['colorshifted']
|
|
|
|
|
|
|
|
|
|
def futureshifted(self):
|
2018-03-03 21:37:24 +00:00
|
|
|
|
self._checkForKey('futureshifted')
|
2018-01-30 04:43:36 +00:00
|
|
|
|
|
2018-01-25 20:27:56 +00:00
|
|
|
|
return self.scryfallJson['futureshifted']
|
|
|
|
|
|
|
|
|
|
def edhrec_rank(self):
|
2018-03-03 21:37:24 +00:00
|
|
|
|
self._checkForKey('edhrec_rank')
|
2018-01-30 04:43:36 +00:00
|
|
|
|
|
2018-01-25 20:27:56 +00:00
|
|
|
|
return self.scryfallJson['edhrec_rank']
|
|
|
|
|
|
|
|
|
|
def currency(self, mode):
|
|
|
|
|
modes = ['usd', 'eur', 'tix']
|
|
|
|
|
if mode not in modes:
|
2018-02-13 21:17:20 +00:00
|
|
|
|
raise KeyError("{} is not a key.".format(mode))
|
2018-01-30 04:43:36 +00:00
|
|
|
|
|
2018-03-03 21:37:24 +00:00
|
|
|
|
self._checkForKey(mode)
|
2018-01-30 04:43:36 +00:00
|
|
|
|
|
2018-01-25 20:27:56 +00:00
|
|
|
|
return self.scryfallJson[mode]
|
|
|
|
|
|
|
|
|
|
def related_uris(self):
|
2018-03-03 21:37:24 +00:00
|
|
|
|
self._checkForKey('related_uris')
|
2018-01-30 04:43:36 +00:00
|
|
|
|
|
2018-01-25 20:27:56 +00:00
|
|
|
|
return self.scryfallJson['related_uris']
|
|
|
|
|
|
|
|
|
|
def purchase_uris(self):
|
2018-03-03 21:37:24 +00:00
|
|
|
|
self._checkForKey('purchase_uris')
|
2018-01-30 04:43:36 +00:00
|
|
|
|
|
2018-01-25 20:27:56 +00:00
|
|
|
|
return self.scryfallJson['purchase_uris']
|
2018-01-30 15:18:47 +00:00
|
|
|
|
|
|
|
|
|
def life_modifier(self):
|
2018-03-03 21:37:24 +00:00
|
|
|
|
self._checkForKey('life_modifier')
|
2018-01-30 15:18:47 +00:00
|
|
|
|
|
|
|
|
|
return self.scryfallJson['life_modifier']
|
|
|
|
|
|
|
|
|
|
def hand_modifier(self):
|
2018-03-03 21:37:24 +00:00
|
|
|
|
self._checkForKey('hand_modifier')
|
2018-01-30 15:18:47 +00:00
|
|
|
|
|
|
|
|
|
return self.scryfallJson['hand_modifier']
|
|
|
|
|
|
|
|
|
|
def color_indicator(self):
|
2018-03-03 21:37:24 +00:00
|
|
|
|
self._checkForKey('color_indicator')
|
2018-01-30 15:18:47 +00:00
|
|
|
|
|
|
|
|
|
return self.scryfallJson['color_indicator']
|
|
|
|
|
|
|
|
|
|
def all_parts(self):
|
2018-03-03 21:37:24 +00:00
|
|
|
|
self._checkForKey('all_parts')
|
2018-01-30 15:18:47 +00:00
|
|
|
|
|
|
|
|
|
return self.scryfallJson['all_parts']
|
|
|
|
|
|
|
|
|
|
def card_faces(self):
|
2018-03-03 21:37:24 +00:00
|
|
|
|
self._checkForKey('card_faces')
|
2018-01-30 15:18:47 +00:00
|
|
|
|
|
|
|
|
|
return self.scryfallJson['card_faces']
|
|
|
|
|
|
|
|
|
|
def watermark(self):
|
2018-03-03 21:37:24 +00:00
|
|
|
|
self._checkForKey('watermark')
|
2018-01-30 15:18:47 +00:00
|
|
|
|
|
|
|
|
|
return self.scryfallJson['watermark']
|
|
|
|
|
|
|
|
|
|
def story_spotlight_number(self):
|
2018-03-03 21:37:24 +00:00
|
|
|
|
self._checkForKey('story_spotlight_number')
|
2018-01-30 15:18:47 +00:00
|
|
|
|
|
|
|
|
|
return self.scryfallJson['story_spotlight_number']
|
|
|
|
|
|
|
|
|
|
def story_spotlight_uri(self):
|
2018-03-03 21:37:24 +00:00
|
|
|
|
self._checkForKey('story_spotlight_uri')
|
2018-01-30 15:18:47 +00:00
|
|
|
|
|
|
|
|
|
return self.scryfallJson['story_spotlight_uri']
|
2018-02-26 23:19:00 +00:00
|
|
|
|
|
|
|
|
|
def power(self):
|
2018-03-03 21:37:24 +00:00
|
|
|
|
self._checkForKey('power')
|
2018-02-28 03:42:34 +00:00
|
|
|
|
|
2018-02-26 23:19:00 +00:00
|
|
|
|
return self.scryfallJson['power']
|
2018-02-28 03:42:34 +00:00
|
|
|
|
|
2018-02-26 23:19:00 +00:00
|
|
|
|
def toughness(self):
|
2018-03-03 21:37:24 +00:00
|
|
|
|
self._checkForKey('toughness')
|
2018-02-28 03:42:34 +00:00
|
|
|
|
|
2018-02-26 23:19:00 +00:00
|
|
|
|
return self.scryfallJson['toughness']
|
2018-02-28 03:42:34 +00:00
|
|
|
|
|
2018-02-26 23:19:00 +00:00
|
|
|
|
def loyalty(self):
|
2018-03-03 21:37:24 +00:00
|
|
|
|
self._checkForKey('loyalty')
|
2018-02-28 03:42:34 +00:00
|
|
|
|
|
2018-02-26 23:19:00 +00:00
|
|
|
|
return self.scryfallJson['loyalty']
|
2018-02-28 03:42:34 +00:00
|
|
|
|
|
2018-02-26 23:19:00 +00:00
|
|
|
|
def flavor_text(self):
|
2018-03-03 21:37:24 +00:00
|
|
|
|
self._checkForKey('flavor_text')
|
2018-02-28 03:42:34 +00:00
|
|
|
|
|
2018-02-26 23:19:00 +00:00
|
|
|
|
return self.scryfallJson['flavor_text']
|
2018-06-13 17:37:44 +00:00
|
|
|
|
|
|
|
|
|
def arena_id(self):
|
|
|
|
|
self._checkForKey('arena_id')
|
|
|
|
|
|
|
|
|
|
return self.scryfallJson['arena_id']
|
2018-06-13 17:44:26 +00:00
|
|
|
|
|
|
|
|
|
def lang(self):
|
|
|
|
|
self._checkForKey('lang')
|
|
|
|
|
|
2018-06-13 18:01:12 +00:00
|
|
|
|
return self.scryfallJson['lang']
|
|
|
|
|
|
|
|
|
|
def printed_name(self):
|
|
|
|
|
self._checkForKey('printed_name')
|
|
|
|
|
|
|
|
|
|
return self.scryfallJson['printed_name']
|
|
|
|
|
|
|
|
|
|
def printed_type_line(self):
|
|
|
|
|
self._checkForKey('printed_type_line')
|
|
|
|
|
|
|
|
|
|
return self.scryfallJson['printed_type_line']
|
|
|
|
|
|
|
|
|
|
def printed_text(self):
|
|
|
|
|
self._checkForKey('printed_text')
|
|
|
|
|
|
|
|
|
|
return self.scryfallJson['printed_text']
|