package mage.verify.mtgjson; import java.util.List; public final class MtgJsonCard { // v5 support // https://mtgjson.com/data-models/card-atomic/ // contains only used fields, if you need more for tests then just add it here public String name; public String asciiName; // mtgjson uses it for some cards like El-Hajjaj public String number; // from sets source only, see https://mtgjson.com/data-models/card/ public String faceName; public String side; public String manaCost; public List colorIdentity; public List colors; public List supertypes; public List types; public List subtypes; public String text; // rules splits by \n public String loyalty; public String power; public String toughness; public Integer edhrecRank; public String layout; public boolean isFullArt; public List printings; // set codes with that card }