You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Only english cards are filtered.
Even Card.where(language='Portuguese (Brazil)').where(set="RIX").all() just brings up english text as states in a closed issue.
Angrath's Fury
{3}{B}{R}
None
None
['Sorcery']
Rare
Destroy target creature. Angrath's Fury deals 3 damage to target player. You may search your library and/or graveyard for a card named Angrath, Minotaur Pirate, reveal it, and put it into your hand. If you search your library this way, shuffle it.
None
None
None
441898
http://gatherer.wizards.com/Handlers/Image.ashx?multiverseid=441898&type=card
RIX
Rivals of Ixalan
[{'date': '2018-01-19', 'text': "You can't cast Angrath's Fury unless you choose both a target creature and a target player."}, {'date': '2018-01-19', 'text': "If either target becomes illegal after you cast Angrath's Fury but before it resolves, the other is still affected as appropriate and you'll search for Angrath. However, if both targets become illegal, the spell is countered and you won't search."}]
The text was updated successfully, but these errors were encountered:
Language queries don't produce results in the given language.
Non-english names and text are provided with all API calls, and nested under a foreignNames key (in API JSON, which gets converted to foreign_names in Python).
You can get to the data you're looking for with:
[printing['text'] for printing in card.foreign_names if printing['language'] == 'Portuguese (Brazil)'][0]
You could also use any other code that checks the 'language' key in the 'foreign_names' dict, then gets the relevant info from that dict using keys like 'name', 'text', 'flavor', 'image_url'.
Only english cards are filtered.
Even Card.where(language='Portuguese (Brazil)').where(set="RIX").all() just brings up english text as states in a closed issue.
Example Output:
The text was updated successfully, but these errors were encountered: