UNPKG

mtga

Version:

MTGA card details as backbone models

194 lines (192 loc) 51.2 kB
const { CardPool, Card } = require('./models.js') let aether_revolt = new CardPool({name: "aether_revolt", cards: []}) aether_revolt.addCard(new Card({ mtgaID: 64173, setNumber: 98, name: "shock", prettyName: "Shock", cardType: "Instant", set: "AER", subTypes: "", colorIdentity: ['R'], colors: ['Red'], rarity: "Common", cost: ['R'] })) aether_revolt.addCard(new Card({ mtgaID: 64181, setNumber: 12, name: "conviction", prettyName: "Conviction", cardType: "Enchantment", set: "AER", subTypes: "Aura", colorIdentity: ['W'], colors: ['White'], rarity: "Common", cost: ['1', 'W'] })) aether_revolt.addCard(new Card({ mtgaID: 64183, setNumber: 13, name: "countless_gears_renegade", prettyName: "Countless Gears Renegade", cardType: "Creature", set: "AER", subTypes: "Dwarf Artificer", colorIdentity: ['W'], colors: ['White'], rarity: "Common", cost: ['1', 'W'] })) aether_revolt.addCard(new Card({ mtgaID: 64185, setNumber: 20, name: "ghirapur_osprey", prettyName: "Ghirapur Osprey", cardType: "Creature", set: "AER", subTypes: "Bird", colorIdentity: ['W'], colors: ['White'], rarity: "Common", cost: ['2', 'W'] })) aether_revolt.addCard(new Card({ mtgaID: 64187, setNumber: 8, name: "bastion_enforcer", prettyName: "Bastion Enforcer", cardType: "Creature", set: "AER", subTypes: "Dwarf Soldier", colorIdentity: ['W'], colors: ['White'], rarity: "Common", cost: ['2', 'W'] })) aether_revolt.addCard(new Card({ mtgaID: 64189, setNumber: 16, name: "decommission", prettyName: "Decommission", cardType: "Instant", set: "AER", subTypes: "", colorIdentity: ['W'], colors: ['White'], rarity: "Common", cost: ['2', 'W'] })) aether_revolt.addCard(new Card({ mtgaID: 64193, setNumber: 14, name: "dawnfeather_eagle", prettyName: "Dawnfeather Eagle", cardType: "Creature", set: "AER", subTypes: "Bird", colorIdentity: ['W'], colors: ['White'], rarity: "Common", cost: ['4', 'W'] })) aether_revolt.addCard(new Card({ mtgaID: 64197, setNumber: 10, name: "caught_in_the_brights", prettyName: "Caught in the Brights", cardType: "Enchantment", set: "AER", subTypes: "Aura", colorIdentity: ['W'], colors: ['White'], rarity: "Common", cost: ['2', 'W'] })) aether_revolt.addCard(new Card({ mtgaID: 64199, setNumber: 21, name: "restoration_specialist", prettyName: "Restoration Specialist", cardType: "Creature", set: "AER", subTypes: "Dwarf Artificer", colorIdentity: ['W'], colors: ['White'], rarity: "Uncommon", cost: ['1', 'W'] })) aether_revolt.addCard(new Card({ mtgaID: 64201, setNumber: 25, name: "thopter_arrest", prettyName: "Thopter Arrest", cardType: "Enchantment", set: "AER", subTypes: "", colorIdentity: ['W'], colors: ['White'], rarity: "Uncommon", cost: ['2', 'W'] })) aether_revolt.addCard(new Card({ mtgaID: 64203, setNumber: 15, name: "deadeye_harpooner", prettyName: "Deadeye Harpooner", cardType: "Creature", set: "AER", subTypes: "Dwarf Warrior", colorIdentity: ['W'], colors: ['White'], rarity: "Uncommon", cost: ['2', 'W'] })) aether_revolt.addCard(new Card({ mtgaID: 64205, setNumber: 19, name: "felidar_guardian", prettyName: "Felidar Guardian", cardType: "Creature", set: "AER", subTypes: "Cat Beast", colorIdentity: ['W'], colors: ['White'], rarity: "Uncommon", cost: ['3', 'W'] })) aether_revolt.addCard(new Card({ mtgaID: 64207, setNumber: 2, name: "aeronaut_admiral", prettyName: "Aeronaut Admiral", cardType: "Creature", set: "AER", subTypes: "Human Pilot", colorIdentity: ['W'], colors: ['White'], rarity: "Uncommon", cost: ['3', 'W'] })) aether_revolt.addCard(new Card({ mtgaID: 64209, setNumber: 17, name: "deft_dismissal", prettyName: "Deft Dismissal", cardType: "Instant", set: "AER", subTypes: "", colorIdentity: ['W'], colors: ['White'], rarity: "Uncommon", cost: ['3', 'W'] })) aether_revolt.addCard(new Card({ mtgaID: 64211, setNumber: 5, name: "airdrop_aeronauts", prettyName: "Airdrop Aeronauts", cardType: "Creature", set: "AER", subTypes: "Dwarf Scout", colorIdentity: ['W'], colors: ['White'], rarity: "Uncommon", cost: ['3', 'W', 'W'] })) aether_revolt.addCard(new Card({ mtgaID: 64213, setNumber: 1, name: "aerial_modification", prettyName: "Aerial Modification", cardType: "Enchantment", set: "AER", subTypes: "Aura", colorIdentity: ['W'], colors: ['White'], rarity: "Uncommon", cost: ['4', 'W'] })) aether_revolt.addCard(new Card({ mtgaID: 64215, setNumber: 23, name: "sram_senior_edificer", prettyName: "Sram, Senior Edificer", cardType: "Legendary Creature", set: "AER", subTypes: "Dwarf Advisor", colorIdentity: ['W'], colors: ['White'], rarity: "Rare", cost: ['1', 'W'] })) aether_revolt.addCard(new Card({ mtgaID: 64217, setNumber: 22, name: "solemn_recruit", prettyName: "Solemn Recruit", cardType: "Creature", set: "AER", subTypes: "Dwarf Warrior", colorIdentity: ['W'], colors: ['White'], rarity: "Rare", cost: ['1', 'W', 'W'] })) aether_revolt.addCard(new Card({ mtgaID: 64219, setNumber: 9, name: "call_for_unity", prettyName: "Call for Unity", cardType: "Enchantment", set: "AER", subTypes: "", colorIdentity: ['W'], colors: ['White'], rarity: "Rare", cost: ['3', 'W', 'W'] })) aether_revolt.addCard(new Card({ mtgaID: 64231, setNumber: 35, name: "ice_over", prettyName: "Ice Over", cardType: "Enchantment", set: "AER", subTypes: "Aura", colorIdentity: ['U'], colors: ['Blue'], rarity: "Common", cost: ['1', 'U'] })) aether_revolt.addCard(new Card({ mtgaID: 64233, setNumber: 34, name: "hinterland_drake", prettyName: "Hinterland Drake", cardType: "Creature", set: "AER", subTypes: "Drake", colorIdentity: ['U'], colors: ['Blue'], rarity: "Common", cost: ['2', 'U'] })) aether_revolt.addCard(new Card({ mtgaID: 64235, setNumber: 40, name: "negate", prettyName: "Negate", cardType: "Instant", set: "AER", subTypes: "", colorIdentity: ['U'], colors: ['Blue'], rarity: "Common", cost: ['1', 'U'] })) aether_revolt.addCard(new Card({ mtgaID: 64237, setNumber: 32, name: "dispersal_technician", prettyName: "Dispersal Technician", cardType: "Creature", set: "AER", subTypes: "Vedalken Artificer", colorIdentity: ['U'], colors: ['Blue'], rarity: "Common", cost: ['4', 'U'] })) aether_revolt.addCard(new Card({ mtgaID: 64239, setNumber: 39, name: "metallic_rebuke", prettyName: "Metallic Rebuke", cardType: "Instant", set: "AER", subTypes: "", colorIdentity: ['U'], colors: ['Blue'], rarity: "Common", cost: ['2', 'U'] })) aether_revolt.addCard(new Card({ mtgaID: 64245, setNumber: 37, name: "leave_in_the_dust", prettyName: "Leave in the Dust", cardType: "Instant", set: "AER", subTypes: "", colorIdentity: ['U'], colors: ['Blue'], rarity: "Common", cost: ['3', 'U'] })) aether_revolt.addCard(new Card({ mtgaID: 64249, setNumber: 46, name: "skyship_plunderer", prettyName: "Skyship Plunderer", cardType: "Creature", set: "AER", subTypes: "Human Pirate", colorIdentity: ['U'], colors: ['Blue'], rarity: "Uncommon", cost: ['1', 'U'] })) aether_revolt.addCard(new Card({ mtgaID: 64261, setNumber: 42, name: "reverse_engineer", prettyName: "Reverse Engineer", cardType: "Sorcery", set: "AER", subTypes: "", colorIdentity: ['U'], colors: ['Blue'], rarity: "Uncommon", cost: ['3', 'U', 'U'] })) aether_revolt.addCard(new Card({ mtgaID: 64265, setNumber: 38, name: "mechanized_production", prettyName: "Mechanized Production", cardType: "Enchantment", set: "AER", subTypes: "Aura", colorIdentity: ['U'], colors: ['Blue'], rarity: "Mythic Rare", cost: ['2', 'U', 'U'] })) aether_revolt.addCard(new Card({ mtgaID: 64267, setNumber: 41, name: "quicksmith_spy", prettyName: "Quicksmith Spy", cardType: "Creature", set: "AER", subTypes: "Human Artificer", colorIdentity: ['U'], colors: ['Blue'], rarity: "Rare", cost: ['3', 'U'] })) aether_revolt.addCard(new Card({ mtgaID: 64271, setNumber: 27, name: "aethertide_whale", prettyName: "Aethertide Whale", cardType: "Creature", set: "AER", subTypes: "Whale", colorIdentity: ['U'], colors: ['Blue'], rarity: "Rare", cost: ['4', 'U', 'U'] })) aether_revolt.addCard(new Card({ mtgaID: 64273, setNumber: 28, name: "baral_chief_of_compliance", prettyName: "Baral, Chief of Compliance", cardType: "Legendary Creature", set: "AER", subTypes: "Human Wizard", colorIdentity: ['U'], colors: ['Blue'], rarity: "Rare", cost: ['1', 'U'] })) aether_revolt.addCard(new Card({ mtgaID: 64275, setNumber: 49, name: "whir_of_invention", prettyName: "Whir of Invention", cardType: "Instant", set: "AER", subTypes: "", colorIdentity: ['U'], colors: ['Blue'], rarity: "Rare", cost: ['X', 'U', 'U', 'U'] })) aether_revolt.addCard(new Card({ mtgaID: 64281, setNumber: 52, name: "alley_strangler", prettyName: "Alley Strangler", cardType: "Creature", set: "AER", subTypes: "Aetherborn Rogue", colorIdentity: ['B'], colors: ['Black'], rarity: "Common", cost: ['2', 'B'] })) aether_revolt.addCard(new Card({ mtgaID: 64285, setNumber: 56, name: "defiant_salvager", prettyName: "Defiant Salvager", cardType: "Creature", set: "AER", subTypes: "Aetherborn Artificer", colorIdentity: ['B'], colors: ['Black'], rarity: "Common", cost: ['2', 'B'] })) aether_revolt.addCard(new Card({ mtgaID: 64289, setNumber: 67, name: "night_market_aeronaut", prettyName: "Night Market Aeronaut", cardType: "Creature", set: "AER", subTypes: "Aetherborn Warrior", colorIdentity: ['B'], colors: ['Black'], rarity: "Common", cost: ['3', 'B'] })) aether_revolt.addCard(new Card({ mtgaID: 64293, setNumber: 58, name: "fen_hauler", prettyName: "Fen Hauler", cardType: "Creature", set: "AER", subTypes: "Insect", colorIdentity: ['B'], colors: ['Black'], rarity: "Common", cost: ['6', 'B'] })) aether_revolt.addCard(new Card({ mtgaID: 64297, setNumber: 60, name: "fourth_bridge_prowler", prettyName: "Fourth Bridge Prowler", cardType: "Creature", set: "AER", subTypes: "Human Rogue", colorIdentity: ['B'], colors: ['Black'], rarity: "Common", cost: ['B'] })) aether_revolt.addCard(new Card({ mtgaID: 64299, setNumber: 59, name: "foundry_hornet", prettyName: "Foundry Hornet", cardType: "Creature", set: "AER", subTypes: "Insect", colorIdentity: ['B'], colors: ['Black'], rarity: "Uncommon", cost: ['3', 'B'] })) aether_revolt.addCard(new Card({ mtgaID: 64301, setNumber: 68, name: "perilous_predicament", prettyName: "Perilous Predicament", cardType: "Instant", set: "AER", subTypes: "", colorIdentity: ['B'], colors: ['Black'], rarity: "Uncommon", cost: ['4', 'B'] })) aether_revolt.addCard(new Card({ mtgaID: 64303, setNumber: 73, name: "vengeful_rebel", prettyName: "Vengeful Rebel", cardType: "Creature", set: "AER", subTypes: "Aetherborn Warrior", colorIdentity: ['B'], colors: ['Black'], rarity: "Uncommon", cost: ['2', 'B'] })) aether_revolt.addCard(new Card({ mtgaID: 64311, setNumber: 57, name: "fatal_push", prettyName: "Fatal Push", cardType: "Instant", set: "AER", subTypes: "", colorIdentity: ['B'], colors: ['Black'], rarity: "Uncommon", cost: ['B'] })) aether_revolt.addCard(new Card({ mtgaID: 64315, setNumber: 74, name: "yahenni_undying_partisan", prettyName: "Yahenni, Undying Partisan", cardType: "Legendary Creature", set: "AER", subTypes: "Aetherborn Vampire", colorIdentity: ['B'], colors: ['Black'], rarity: "Rare", cost: ['2', 'B'] })) aether_revolt.addCard(new Card({ mtgaID: 64317, setNumber: 65, name: "ironclad_revolutionary", prettyName: "Ironclad Revolutionary", cardType: "Creature", set: "AER", subTypes: "Aetherborn Artificer", colorIdentity: ['B'], colors: ['Black'], rarity: "Uncommon", cost: ['4', 'B', 'B'] })) aether_revolt.addCard(new Card({ mtgaID: 64319, setNumber: 53, name: "battle_at_the_bridge", prettyName: "Battle at the Bridge", cardType: "Sorcery", set: "AER", subTypes: "", colorIdentity: ['B'], colors: ['Black'], rarity: "Rare", cost: ['X', 'B'] })) aether_revolt.addCard(new Card({ mtgaID: 64323, setNumber: 66, name: "midnight_entourage", prettyName: "Midnight Entourage", cardType: "Creature", set: "AER", subTypes: "Aetherborn Rogue", colorIdentity: ['B'], colors: ['Black'], rarity: "Rare", cost: ['2', 'B', 'B'] })) aether_revolt.addCard(new Card({ mtgaID: 64325, setNumber: 62, name: "glintsleeve_siphoner", prettyName: "Glint-Sleeve Siphoner", cardType: "Creature", set: "AER", subTypes: "Human Rogue", colorIdentity: ['B'], colors: ['Black'], rarity: "Rare", cost: ['1', 'B'] })) aether_revolt.addCard(new Card({ mtgaID: 64333, setNumber: 92, name: "precise_strike", prettyName: "Precise Strike", cardType: "Instant", set: "AER", subTypes: "", colorIdentity: ['R'], colors: ['Red'], rarity: "Common", cost: ['R'] })) aether_revolt.addCard(new Card({ mtgaID: 64335, setNumber: 78, name: "destructive_tampering", prettyName: "Destructive Tampering", cardType: "Sorcery", set: "AER", subTypes: "", colorIdentity: ['R'], colors: ['Red'], rarity: "Common", cost: ['2', 'R'] })) aether_revolt.addCard(new Card({ mtgaID: 64339, setNumber: 100, name: "sweatworks_brawler", prettyName: "Sweatworks Brawler", cardType: "Creature", set: "AER", subTypes: "Human Artificer", colorIdentity: ['R'], colors: ['Red'], rarity: "Common", cost: ['3', 'R'] })) aether_revolt.addCard(new Card({ mtgaID: 64343, setNumber: 89, name: "lathnu_sailback", prettyName: "Lathnu Sailback", cardType: "Creature", set: "AER", subTypes: "Lizard", colorIdentity: ['R'], colors: ['Red'], rarity: "Common", cost: ['4', 'R'] })) aether_revolt.addCard(new Card({ mtgaID: 64345, setNumber: 101, name: "wrangle", prettyName: "Wrangle", cardType: "Sorcery", set: "AER", subTypes: "", colorIdentity: ['R'], colors: ['Red'], rarity: "Common", cost: ['1', 'R'] })) aether_revolt.addCard(new Card({ mtgaID: 64347, setNumber: 84, name: "hungry_flames", prettyName: "Hungry Flames", cardType: "Instant", set: "AER", subTypes: "", colorIdentity: ['R'], colors: ['Red'], rarity: "Uncommon", cost: ['2', 'R'] })) aether_revolt.addCard(new Card({ mtgaID: 64351, setNumber: 86, name: "invigorated_rampage", prettyName: "Invigorated Rampage", cardType: "Instant", set: "AER", subTypes: "", colorIdentity: ['R'], colors: ['Red'], rarity: "Uncommon", cost: ['1', 'R'] })) aether_revolt.addCard(new Card({ mtgaID: 64355, setNumber: 99, name: "siege_modification", prettyName: "Siege Modification", cardType: "Enchantment", set: "AER", subTypes: "Aura", colorIdentity: ['R'], colors: ['Red'], rarity: "Uncommon", cost: ['1', 'R', 'R'] })) aether_revolt.addCard(new Card({ mtgaID: 64357, setNumber: 83, name: "gremlin_infestation", prettyName: "Gremlin Infestation", cardType: "Enchantment", set: "AER", subTypes: "Aura", colorIdentity: ['R'], colors: ['Red'], rarity: "Uncommon", cost: ['3', 'R'] })) aether_revolt.addCard(new Card({ mtgaID: 64361, setNumber: 80, name: "enraged_giant", prettyName: "Enraged Giant", cardType: "Creature", set: "AER", subTypes: "Giant", colorIdentity: ['R'], colors: ['Red'], rarity: "Uncommon", cost: ['5', 'R'] })) aether_revolt.addCard(new Card({ mtgaID: 64367, setNumber: 81, name: "freejam_regent", prettyName: "Freejam Regent", cardType: "Creature", set: "AER", subTypes: "Dragon", colorIdentity: ['R'], colors: ['Red'], rarity: "Rare", cost: ['4', 'R', 'R'] })) aether_revolt.addCard(new Card({ mtgaID: 64373, setNumber: 96, name: "release_the_gremlins", prettyName: "Release the Gremlins", cardType: "Sorcery", set: "AER", subTypes: "", colorIdentity: ['R'], colors: ['Red'], rarity: "Rare", cost: ['X', 'X', 'R'] })) aether_revolt.addCard(new Card({ mtgaID: 64375, setNumber: 90, name: "lightning_runner", prettyName: "Lightning Runner", cardType: "Creature", set: "AER", subTypes: "Human Warrior", colorIdentity: ['R'], colors: ['Red'], rarity: "Mythic Rare", cost: ['3', 'R', 'R'] })) aether_revolt.addCard(new Card({ mtgaID: 64379, setNumber: 111, name: "highspire_infusion", prettyName: "Highspire Infusion", cardType: "Instant", set: "AER", subTypes: "", colorIdentity: ['G'], colors: ['Green'], rarity: "Common", cost: ['1', 'G'] })) aether_revolt.addCard(new Card({ mtgaID: 64381, setNumber: 106, name: "druid_of_the_cowl", prettyName: "Druid of the Cowl", cardType: "Creature", set: "AER", subTypes: "Elf Druid", colorIdentity: ['G'], colors: ['Green'], rarity: "Common", cost: ['1', 'G'] })) aether_revolt.addCard(new Card({ mtgaID: 64383, setNumber: 118, name: "natural_obsolescence", prettyName: "Natural Obsolescence", cardType: "Instant", set: "AER", subTypes: "", colorIdentity: ['G'], colors: ['Green'], rarity: "Common", cost: ['1', 'G'] })) aether_revolt.addCard(new Card({ mtgaID: 64387, setNumber: 126, name: "unbridled_growth", prettyName: "Unbridled Growth", cardType: "Enchantment", set: "AER", subTypes: "Aura", colorIdentity: ['G'], colors: ['Green'], rarity: "Common", cost: ['G'] })) aether_revolt.addCard(new Card({ mtgaID: 64391, setNumber: 113, name: "lifecraft_cavalry", prettyName: "Lifecraft Cavalry", cardType: "Creature", set: "AER", subTypes: "Elf Warrior", colorIdentity: ['G'], colors: ['Green'], rarity: "Common", cost: ['4', 'G'] })) aether_revolt.addCard(new Card({ mtgaID: 64399, setNumber: 115, name: "maulfist_revolutionary", prettyName: "Maulfist Revolutionary", cardType: "Creature", set: "AER", subTypes: "Human Warrior", colorIdentity: ['G'], colors: ['Green'], rarity: "Uncommon", cost: ['1', 'G', 'G'] })) aether_revolt.addCard(new Card({ mtgaID: 64401, setNumber: 119, name: "peema_aetherseer", prettyName: "Peema Aether-Seer", cardType: "Creature", set: "AER", subTypes: "Elf Druid", colorIdentity: ['G'], colors: ['Green'], rarity: "Uncommon", cost: ['3', 'G'] })) aether_revolt.addCard(new Card({ mtgaID: 64403, setNumber: 125, name: "silkweaver_elite", prettyName: "Silkweaver Elite", cardType: "Creature", set: "AER", subTypes: "Elf Archer", colorIdentity: ['G'], colors: ['Green'], rarity: "Common", cost: ['2', 'G'] })) aether_revolt.addCard(new Card({ mtgaID: 64405, setNumber: 116, name: "monstrous_onslaught", prettyName: "Monstrous Onslaught", cardType: "Sorcery", set: "AER", subTypes: "", colorIdentity: ['G'], colors: ['Green'], rarity: "Uncommon", cost: ['3', 'G', 'G'] })) aether_revolt.addCard(new Card({ mtgaID: 64413, setNumber: 112, name: "lifecraft_awakening", prettyName: "Lifecraft Awakening", cardType: "Instant", set: "AER", subTypes: "", colorIdentity: ['G'], colors: ['Green'], rarity: "Uncommon", cost: ['X', 'G'] })) aether_revolt.addCard(new Card({ mtgaID: 64415, setNumber: 109, name: "heroic_intervention", prettyName: "Heroic Intervention", cardType: "Instant", set: "AER", subTypes: "", colorIdentity: ['G'], colors: ['Green'], rarity: "Rare", cost: ['1', 'G'] })) aether_revolt.addCard(new Card({ mtgaID: 64417, setNumber: 122, name: "rishkar_peema_renegade", prettyName: "Rishkar, Peema Renegade", cardType: "Legendary Creature", set: "AER", subTypes: "Elf Druid", colorIdentity: ['G'], colors: ['Green'], rarity: "Rare", cost: ['2', 'G'] })) aether_revolt.addCard(new Card({ mtgaID: 64421, setNumber: 108, name: "greenwheel_liberator", prettyName: "Greenwheel Liberator", cardType: "Creature", set: "AER", subTypes: "Elf Warrior", colorIdentity: ['G'], colors: ['Green'], rarity: "Rare", cost: ['1', 'G'] })) aether_revolt.addCard(new Card({ mtgaID: 64427, setNumber: 105, name: "aid_from_the_cowl", prettyName: "Aid from the Cowl", cardType: "Enchantment", set: "AER", subTypes: "", colorIdentity: ['G'], colors: ['Green'], rarity: "Rare", cost: ['3', 'G', 'G'] })) aether_revolt.addCard(new Card({ mtgaID: 64431, setNumber: 139, name: "weldfast_engineer", prettyName: "Weldfast Engineer", cardType: "Creature", set: "AER", subTypes: "Human Artificer", colorIdentity: ['B', 'R'], colors: ['Red', 'Black'], rarity: "Uncommon", cost: ['1', 'B', 'R'] })) aether_revolt.addCard(new Card({ mtgaID: 64435, setNumber: 133, name: "renegade_rallier", prettyName: "Renegade Rallier", cardType: "Creature", set: "AER", subTypes: "Human Warrior", colorIdentity: ['W', 'G'], colors: ['White', 'Green'], rarity: "Uncommon", cost: ['1', 'G', 'W'] })) aether_revolt.addCard(new Card({ mtgaID: 64437, setNumber: 132, name: "outland_boar", prettyName: "Outland Boar", cardType: "Creature", set: "AER", subTypes: "Boar", colorIdentity: ['R', 'G'], colors: ['Red', 'Green'], rarity: "Uncommon", cost: ['2', 'R', 'G'] })) aether_revolt.addCard(new Card({ mtgaID: 64443, setNumber: 129, name: "hidden_stockpile", prettyName: "Hidden Stockpile", cardType: "Enchantment", set: "AER", subTypes: "", colorIdentity: ['W', 'B'], colors: ['White', 'Black'], rarity: "Uncommon", cost: ['W', 'B'] })) aether_revolt.addCard(new Card({ mtgaID: 64445, setNumber: 136, name: "spire_patrol", prettyName: "Spire Patrol", cardType: "Creature", set: "AER", subTypes: "Human Soldier", colorIdentity: ['W', 'U'], colors: ['White', 'Blue'], rarity: "Uncommon", cost: ['2', 'W', 'U'] })) aether_revolt.addCard(new Card({ mtgaID: 64449, setNumber: 131, name: "oath_of_ajani", prettyName: "Oath of Ajani", cardType: "Legendary Enchantment", set: "AER", subTypes: "", colorIdentity: ['W', 'G'], colors: ['White', 'Green'], rarity: "Rare", cost: ['G', 'W'] })) aether_revolt.addCard(new Card({ mtgaID: 64455, setNumber: 127, name: "ajani_unyielding", prettyName: "Ajani Unyielding", cardType: "Legendary Planeswalker", set: "AER", subTypes: "Ajani", colorIdentity: ['W', 'G'], colors: ['White', 'Green'], rarity: "Mythic Rare", cost: ['4', 'G', 'W'] })) aether_revolt.addCard(new Card({ mtgaID: 64459, setNumber: 173, name: "renegade_map", prettyName: "Renegade Map", cardType: "Artifact", set: "AER", subTypes: "", colorIdentity: [], colors: ['Colorless'], rarity: "Common", cost: ['1'] })) aether_revolt.addCard(new Card({ mtgaID: 64461, setNumber: 155, name: "implement_of_combustion", prettyName: "Implement of Combustion", cardType: "Artifact", set: "AER", subTypes: "", colorIdentity: ['R'], colors: ['Red'], rarity: "Common", cost: ['1'] })) aether_revolt.addCard(new Card({ mtgaID: 64463, setNumber: 178, name: "universal_solvent", prettyName: "Universal Solvent", cardType: "Artifact", set: "AER", subTypes: "", colorIdentity: [], colors: ['Colorless'], rarity: "Common", cost: ['1'] })) aether_revolt.addCard(new Card({ mtgaID: 64467, setNumber: 141, name: "aegis_automaton", prettyName: "Aegis Automaton", cardType: "Artifact Creature", set: "AER", subTypes: "Construct", colorIdentity: ['W'], colors: ['White'], rarity: "Common", cost: ['2'] })) aether_revolt.addCard(new Card({ mtgaID: 64469, setNumber: 157, name: "implement_of_ferocity", prettyName: "Implement of Ferocity", cardType: "Artifact", set: "AER", subTypes: "", colorIdentity: ['G'], colors: ['Green'], rarity: "Common", cost: ['1'] })) aether_revolt.addCard(new Card({ mtgaID: 64473, setNumber: 165, name: "mobile_garrison", prettyName: "Mobile Garrison", cardType: "Artifact", set: "AER", subTypes: "Vehicle", colorIdentity: [], colors: ['Colorless'], rarity: "Common", cost: ['3'] })) aether_revolt.addCard(new Card({ mtgaID: 64475, setNumber: 159, name: "implement_of_malice", prettyName: "Implement of Malice", cardType: "Artifact", set: "AER", subTypes: "", colorIdentity: ['B'], colors: ['Black'], rarity: "Common", cost: ['2'] })) aether_revolt.addCard(new Card({ mtgaID: 64477, setNumber: 166, name: "night_market_guard", prettyName: "Night Market Guard", cardType: "Artifact Creature", set: "AER", subTypes: "Construct", colorIdentity: [], colors: ['Colorless'], rarity: "Common", cost: ['3'] })) aether_revolt.addCard(new Card({ mtgaID: 64479, setNumber: 156, name: "implement_of_examination", prettyName: "Implement of Examination", cardType: "Artifact", set: "AER", subTypes: "", colorIdentity: ['U'], colors: ['Blue'], rarity: "Common", cost: ['3'] })) aether_revolt.addCard(new Card({ mtgaID: 64481, setNumber: 143, name: "augmenting_automaton", prettyName: "Augmenting Automaton", cardType: "Artifact Creature", set: "AER", subTypes: "Construct", colorIdentity: ['B'], colors: ['Black'], rarity: "Common", cost: ['1'] })) aether_revolt.addCard(new Card({ mtgaID: 64483, setNumber: 182, name: "watchful_automaton", prettyName: "Watchful Automaton", cardType: "Artifact Creature", set: "AER", subTypes: "Construct", colorIdentity: ['U'], colors: ['Blue'], rarity: "Common", cost: ['3'] })) aether_revolt.addCard(new Card({ mtgaID: 64485, setNumber: 161, name: "irontread_crusher", prettyName: "Irontread Crusher", cardType: "Artifact", set: "AER", subTypes: "Vehicle", colorIdentity: [], colors: ['Colorless'], rarity: "Common", cost: ['4'] })) aether_revolt.addCard(new Card({ mtgaID: 64487, setNumber: 180, name: "verdant_automaton", prettyName: "Verdant Automaton", cardType: "Artifact Creature", set: "AER", subTypes: "Construct", colorIdentity: ['G'], colors: ['Green'], rarity: "Common", cost: ['2'] })) aether_revolt.addCard(new Card({ mtgaID: 64491, setNumber: 174, name: "reservoir_walker", prettyName: "Reservoir Walker", cardType: "Artifact Creature", set: "AER", subTypes: "Construct", colorIdentity: [], colors: ['Colorless'], rarity: "Common", cost: ['5'] })) aether_revolt.addCard(new Card({ mtgaID: 64495, setNumber: 151, name: "foundry_assembler", prettyName: "Foundry Assembler", cardType: "Artifact Creature", set: "AER", subTypes: "Assembly-Worker", colorIdentity: [], colors: ['Colorless'], rarity: "Common", cost: ['5'] })) aether_revolt.addCard(new Card({ mtgaID: 64497, setNumber: 167, name: "ornithopter", prettyName: "Ornithopter", cardType: "Artifact Creature", set: "AER", subTypes: "Thopter", colorIdentity: [], colors: ['Colorless'], rarity: "Uncommon", cost: ['0'] })) aether_revolt.addCard(new Card({ mtgaID: 64501, setNumber: 146, name: "consulate_dreadnought", prettyName: "Consulate Dreadnought", cardType: "Artifact", set: "AER", subTypes: "Vehicle", colorIdentity: [], colors: ['Colorless'], rarity: "Uncommon", cost: ['1'] })) aether_revolt.addCard(new Card({ mtgaID: 64503, setNumber: 168, name: "pacification_array", prettyName: "Pacification Array", cardType: "Artifact", set: "AER", subTypes: "", colorIdentity: [], colors: ['Colorless'], rarity: "Uncommon", cost: ['1'] })) aether_revolt.addCard(new Card({ mtgaID: 64505, setNumber: 179, name: "untethered_express", prettyName: "Untethered Express", cardType: "Artifact", set: "AER", subTypes: "Vehicle", colorIdentity: [], colors: ['Colorless'], rarity: "Uncommon", cost: ['4'] })) aether_revolt.addCard(new Card({ mtgaID: 64507, setNumber: 147, name: "consulate_turret", prettyName: "Consulate Turret", cardType: "Artifact", set: "AER", subTypes: "", colorIdentity: [], colors: ['Colorless'], rarity: "Common", cost: ['3'] })) aether_revolt.addCard(new Card({ mtgaID: 64509, setNumber: 145, name: "cogwork_assembler", prettyName: "Cogwork Assembler", cardType: "Artifact Creature", set: "AER", subTypes: "Assembly-Worker", colorIdentity: [], colors: ['Colorless'], rarity: "Uncommon", cost: ['3'] })) aether_revolt.addCard(new Card({ mtgaID: 64513, setNumber: 177, name: "treasure_keeper", prettyName: "Treasure Keeper", cardType: "Artifact Creature", set: "AER", subTypes: "Construct", colorIdentity: [], colors: ['Colorless'], rarity: "Uncommon", cost: ['4'] })) aether_revolt.addCard(new Card({ mtgaID: 64515, setNumber: 144, name: "barricade_breaker", prettyName: "Barricade Breaker", cardType: "Artifact Creature", set: "AER", subTypes: "Juggernaut", colorIdentity: [], colors: ['Colorless'], rarity: "Uncommon", cost: ['7'] })) aether_revolt.addCard(new Card({ mtgaID: 64521, setNumber: 175, name: "scrap_trawler", prettyName: "Scrap Trawler", cardType: "Artifact Creature", set: "AER", subTypes: "Construct", colorIdentity: [], colors: ['Colorless'], rarity: "Rare", cost: ['3'] })) aether_revolt.addCard(new Card({ mtgaID: 64523, setNumber: 149, name: "daredevil_dragster", prettyName: "Daredevil Dragster", cardType: "Artifact", set: "AER", subTypes: "Vehicle", colorIdentity: [], colors: ['Colorless'], rarity: "Uncommon", cost: ['3'] })) aether_revolt.addCard(new Card({ mtgaID: 64527, setNumber: 170, name: "peacewalker_colossus", prettyName: "Peacewalker Colossus", cardType: "Artifact", set: "AER", subTypes: "Vehicle", colorIdentity: ['W'], colors: ['White'], rarity: "Rare", cost: ['3'] })) aether_revolt.addCard(new Card({ mtgaID: 64531, setNumber: 184, name: "spire_of_industry", prettyName: "Spire of Industry", cardType: "Land", set: "AER", subTypes: "", colorIdentity: [], colors: ['Colorless'], rarity: "Rare", cost: [] })) aether_revolt.addCard(new Card({ mtgaID: 64533, setNumber: 169, name: "paradox_engine", prettyName: "Paradox Engine", cardType: "Legendary Artifact", set: "AER", subTypes: "", colorIdentity: [], colors: ['Colorless'], rarity: "Mythic Rare", cost: ['5'] })) aether_revolt.addCard(new Card({ mtgaID: 64535, setNumber: 153, name: "heart_of_kiran", prettyName: "Heart of Kiran", cardType: "Legendary Artifact", set: "AER", subTypes: "Vehicle", colorIdentity: [], colors: ['Colorless'], rarity: "Mythic Rare", cost: ['2'] })) aether_revolt.addCard(new Card({ mtgaID: 64539, setNumber: 171, name: "planar_bridge", prettyName: "Planar Bridge", cardType: "Legendary Artifact", set: "AER", subTypes: "", colorIdentity: [], colors: ['Colorless'], rarity: "Mythic Rare", cost: ['6'] })) aether_revolt.addCard(new Card({ mtgaID: 64541, setNumber: 3, name: "aether_inspector", prettyName: "Aether Inspector", cardType: "Creature", set: "AER", subTypes: "Dwarf Artificer", colorIdentity: ['W'], colors: ['White'], rarity: "Common", cost: ['3', 'W'] })) aether_revolt.addCard(new Card({ mtgaID: 64543, setNumber: 4, name: "aethergeode_miner", prettyName: "Aethergeode Miner", cardType: "Creature", set: "AER", subTypes: "Dwarf Scout", colorIdentity: ['W'], colors: ['White'], rarity: "Rare", cost: ['1', 'W'] })) aether_revolt.addCard(new Card({ mtgaID: 64545, setNumber: 6, name: "alley_evasion", prettyName: "Alley Evasion", cardType: "Instant", set: "AER", subTypes: "", colorIdentity: ['W'], colors: ['White'], rarity: "Common", cost: ['W'] })) aether_revolt.addCard(new Card({ mtgaID: 64547, setNumber: 7, name: "audacious_infiltrator", prettyName: "Audacious Infiltrator", cardType: "Creature", set: "AER", subTypes: "Dwarf Rogue", colorIdentity: ['W'], colors: ['White'], rarity: "Common", cost: ['1', 'W'] })) aether_revolt.addCard(new Card({ mtgaID: 64549, setNumber: 11, name: "consulate_crackdown", prettyName: "Consulate Crackdown", cardType: "Enchantment", set: "AER", subTypes: "", colorIdentity: ['W'], colors: ['White'], rarity: "Rare", cost: ['3', 'W', 'W'] })) aether_revolt.addCard(new Card({ mtgaID: 64551, setNumber: 18, name: "exquisite_archangel", prettyName: "Exquisite Archangel", cardType: "Creature", set: "AER", subTypes: "Angel", colorIdentity: ['W'], colors: ['White'], rarity: "Mythic Rare", cost: ['5', 'W', 'W'] })) aether_revolt.addCard(new Card({ mtgaID: 64553, setNumber: 24, name: "srams_expertise", prettyName: "Sram's Expertise", cardType: "Sorcery", set: "AER", subTypes: "", colorIdentity: ['W'], colors: ['White'], rarity: "Rare", cost: ['2', 'W', 'W'] })) aether_revolt.addCard(new Card({ mtgaID: 64555, setNumber: 26, name: "aether_swooper", prettyName: "Aether Swooper", cardType: "Creature", set: "AER", subTypes: "Vedalken Artificer", colorIdentity: ['U'], colors: ['Blue'], rarity: "Common", cost: ['1', 'U'] })) aether_revolt.addCard(new Card({ mtgaID: 64557, setNumber: 29, name: "barals_expertise", prettyName: "Baral's Expertise", cardType: "Sorcery", set: "AER", subTypes: "", colorIdentity: ['U'], colors: ['Blue'], rarity: "Rare", cost: ['3', 'U', 'U'] })) aether_revolt.addCard(new Card({ mtgaID: 64559, setNumber: 30, name: "bastion_inventor", prettyName: "Bastion Inventor", cardType: "Creature", set: "AER", subTypes: "Vedalken Artificer", colorIdentity: ['U'], colors: ['Blue'], rarity: "Common", cost: ['5', 'U'] })) aether_revolt.addCard(new Card({ mtgaID: 64561, setNumber: 33, name: "efficient_construction", prettyName: "Efficient Construction", cardType: "Enchantment", set: "AER", subTypes: "", colorIdentity: ['U'], colors: ['Blue'], rarity: "Uncommon", cost: ['3', 'U'] })) aether_revolt.addCard(new Card({ mtgaID: 64563, setNumber: 36, name: "illusionists_stratagem", prettyName: "Illusionist's Stratagem", cardType: "Instant", set: "AER", subTypes: "", colorIdentity: ['U'], colors: ['Blue'], rarity: "Uncommon", cost: ['3', 'U'] })) aether_revolt.addCard(new Card({ mtgaID: 64565, setNumber: 43, name: "salvage_scuttler", prettyName: "Salvage Scuttler", cardType: "Creature", set: "AER", subTypes: "Crab", colorIdentity: ['U'], colors: ['Blue'], rarity: "Uncommon", cost: ['4', 'U'] })) aether_revolt.addCard(new Card({ mtgaID: 64567, setNumber: 44, name: "shielded_aether_thief", prettyName: "Shielded Aether Thief", cardType: "Creature", set: "AER", subTypes: "Vedalken Rogue", colorIdentity: ['U'], colors: ['Blue'], rarity: "Uncommon", cost: ['1', 'U'] })) aether_revolt.addCard(new Card({ mtgaID: 64569, setNumber: 47, name: "take_into_custody", prettyName: "Take into Custody", cardType: "Instant", set: "AER", subTypes: "", colorIdentity: ['U'], colors: ['Blue'], rarity: "Common", cost: ['U'] })) aether_revolt.addCard(new Card({ mtgaID: 64571, setNumber: 48, name: "trophy_mage", prettyName: "Trophy Mage", cardType: "Creature", set: "AER", subTypes: "Human Wizard", colorIdentity: ['U'], colors: ['Blue'], rarity: "Uncommon", cost: ['2', 'U'] })) aether_revolt.addCard(new Card({ mtgaID: 64573, setNumber: 50, name: "windkin_raiders", prettyName: "Wind-Kin Raiders", cardType: "Creature", set: "AER", subTypes: "Human Artificer", colorIdentity: ['U'], colors: ['Blue'], rarity: "Uncommon", cost: ['4', 'U', 'U'] })) aether_revolt.addCard(new Card({ mtgaID: 64575, setNumber: 51, name: "aether_poisoner", prettyName: "Aether Poisoner", cardType: "Creature", set: "AER", subTypes: "Human Artificer", colorIdentity: ['B'], colors: ['Black'], rarity: "Common", cost: ['1', 'B'] })) aether_revolt.addCard(new Card({ mtgaID: 64577, setNumber: 54, name: "cruel_finality", prettyName: "Cruel Finality", cardType: "Instant", set: "AER", subTypes: "", colorIdentity: ['B'], colors: ['Black'], rarity: "Common", cost: ['2', 'B'] })) aether_revolt.addCard(new Card({ mtgaID: 64579, setNumber: 55, name: "daring_demolition", prettyName: "Daring Demolition", cardType: "Sorcery", set: "AER", subTypes: "", colorIdentity: ['B'], colors: ['Black'], rarity: "Common", cost: ['2', 'B', 'B'] })) aether_revolt.addCard(new Card({ mtgaID: 64581, setNumber: 61, name: "gifted_aetherborn", prettyName: "Gifted Aetherborn", cardType: "Creature", set: "AER", subTypes: "Aetherborn Vampire", colorIdentity: ['B'], colors: ['Black'], rarity: "Uncommon", cost: ['B', 'B'] })) aether_revolt.addCard(new Card({ mtgaID: 64583, setNumber: 63, name: "gontis_machinations", prettyName: "Gonti's Machinations", cardType: "Enchantment", set: "AER", subTypes: "", colorIdentity: ['B'], colors: ['Black'], rarity: "Uncommon", cost: ['B'] })) aether_revolt.addCard(new Card({ mtgaID: 64585, setNumber: 64, name: "herald_of_anguish", prettyName: "Herald of Anguish", cardType: "Creature", set: "AER", subTypes: "Demon", colorIdentity: ['B'], colors: ['Black'], rarity: "Mythic Rare", cost: ['5', 'B', 'B'] })) aether_revolt.addCard(new Card({ mtgaID: 64587, setNumber: 69, name: "renegades_getaway", prettyName: "Renegade's Getaway", cardType: "Instant", set: "AER", subTypes: "", colorIdentity: ['B'], colors: ['Black'], rarity: "Common", cost: ['2', 'B'] })) aether_revolt.addCard(new Card({ mtgaID: 64589, setNumber: 71, name: "secret_salvage", prettyName: "Secret Salvage", cardType: "Sorcery", set: "AER", subTypes: "", colorIdentity: ['B'], colors: ['Black'], rarity: "Rare", cost: ['3', 'B', 'B'] })) aether_revolt.addCard(new Card({ mtgaID: 64591, setNumber: 72, name: "sly_requisitioner", prettyName: "Sly Requisitioner", cardType: "Creature", set: "AER", subTypes: "Human Artificer", colorIdentity: ['B'], colors: ['Black'], rarity: "Uncommon", cost: ['4', 'B'] })) aether_revolt.addCard(new Card({ mtgaID: 64593, setNumber: 75, name: "yahennis_expertise", prettyName: "Yahenni's Expertise", cardType: "Sorcery", set: "AER", subTypes: "", colorIdentity: ['B'], colors: ['Black'], rarity: "Rare", cost: ['2', 'B', 'B'] })) aether_revolt.addCard(new Card({ mtgaID: 64595, setNumber: 76, name: "aether_chaser", prettyName: "Aether Chaser", cardType: "Creature", set: "AER", subTypes: "Human Artificer", colorIdentity: ['R'], colors: ['Red'], rarity: "Common", cost: ['1', 'R'] })) aether_revolt.addCard(new Card({ mtgaID: 64597, setNumber: 77, name: "chandras_revolution", prettyName: "Chandra's Revolution", cardType: "Sorcery", set: "AER", subTypes: "", colorIdentity: ['R'], colors: ['Red'], rarity: "Common", cost: ['3', 'R'] })) aether_revolt.addCard(new Card({ mtgaID: 64601, setNumber: 79, name: "embraal_gearsmasher", prettyName: "Embraal Gear-Smasher", cardType: "Creature", set: "AER", subTypes: "Human Warrior", colorIdentity: ['R'], colors: ['Red'], rarity: "Common", cost: ['2', 'R'] })) aether_revolt.addCard(new Card({ mtgaID: 64603, setNumber: 82, name: "frontline_rebel", prettyName: "Frontline Rebel", cardType: "Creature", set: "AER", subTypes: "Human Warrior", colorIdentity: ['R'], colors: ['Red'], rarity: "Common", cost: ['2', 'R'] })) aether_revolt.addCard(new Card({ mtgaID: 64605, setNumber: 85, name: "indomitable_creativity", prettyName: "Indomitable Creativity", cardType: "Sorcery", set: "AER", subTypes: "", colorIdentity: ['R'], colors: ['Red'], rarity: "Mythic Rare", cost: ['X', 'R', 'R', 'R'] })) aether_revolt.addCard(new Card({ mtgaID: 64607, setNumber: 87, name: "kari_zev_skyship_raider", prettyName: "Kari Zev, Skyship Raider", cardType: "Legendary Creature", set: "AER", subTypes: "Human Pirate", colorIdentity: ['R'], colors: ['Red'], rarity: "Rare", cost: ['1', 'R'] })) aether_revolt.addCard(new Card({ mtgaID: 64609, setNumber: 88, name: "kari_zevs_expertise", prettyName: "Kari Zev's Expertise", cardType: "Sorcery", set: "AER", subTypes: "", colorIdentity: ['R'], colors: ['Red'], rarity: "Rare", cost: ['1', 'R', 'R'] })) aether_revolt.addCard(new Card({ mtgaID: 64611, setNumber: 91, name: "pias_revolution", prettyName: "Pia's Revolution", cardType: "Enchantment", set: "AER", subTypes: "", colorIdentity: ['R'], colors: ['Red'], rarity: "Rare", cost: ['2', 'R'] })) aether_revolt.addCard(new Card({ mtgaID: 64613, setNumber: 93, name: "quicksmith_rebel", prettyName: "Quicksmith Rebel", cardType: "Creature", set: "AER", subTypes: "Human Artificer", colorIdentity: ['R'], colors: ['Red'], rarity: "Rare", cost: ['3', 'R'] })) aether_revolt.addCard(new Card({ mtgaID: 64615, setNumber: 95, name: "reckless_racer", prettyName: "Reckless Racer", cardType: "Creature", set: "AER", subTypes: "Human Pilot", colorIdentity: ['R'], colors: ['Red'], rarity: "Uncommon", cost: ['2', 'R'] })) aether_revolt.addCard(new Card({ mtgaID: 64617, setNumber: 97, name: "scrapper_champion", prettyName: "Scrapper Champion", cardType: "Creature", set: "AER", subTypes: "Human Artificer", colorIdentity: ['R'], colors: ['Red'], rarity: "Uncommon", cost: ['3', 'R'] })) aether_revolt.addCard(new Card({ mtgaID: 64619, setNumber: 102, name: "aether_herder", prettyName: "Aether Herder", cardType: "Creature", set: "AER", subTypes: "Elf Artificer Druid", colorIdentity: ['G'], colors: ['Green'], rarity: "Common", cost: ['3', 'G'] })) aether_revolt.addCard(new Card({ mtgaID: 64621, setNumber: 103, name: "aetherstream_leopard", prettyName: "Aetherstream Leopard", cardType: "Creature", set: "AER", subTypes: "Cat", colorIdentity: ['G'], colors: ['Green'], rarity: "Common", cost: ['2', 'G'] })) aether_revolt.addCard(new Card({ mtgaID: 64623, setNumber: 107, name: "greenbelt_rampager", prettyName: "Greenbelt Rampager", cardType: "Creature", set: "AER", subTypes: "Elephant", colorIdentity: ['G'], colors: ['Green'], rarity: "Rare", cost: ['G'] })) aether_revolt.addCard(new Card({ mtgaID: 64625, setNumber: 110, name: "hidden_herbalists", prettyName: "Hidden Herbalists", cardType: "Creature", set: "AER", subTypes: "Human Druid", colorIdentity: ['G'], colors: ['Green'], rarity: "Uncommon", cost: ['1', 'G'] })) aether_revolt.addCard(new Card({ mtgaID: 64627, setNumber: 114, name: "lifecrafters_gift", prettyName: "Lifecrafter's Gift", cardType: "Instant", set: "AER", subTypes: "", colorIdentity: ['G'], colors: ['Green'], rarity: "Uncommon", cost: ['3', 'G'] })) aether_revolt.addCard(new Card({ mtgaID: 64629, setNumber: 117, name: "narnam_renegade", prettyName: "Narnam Renegade", cardType: "Creature", set: "AER", subTypes: "Elf Warrior", colorIdentity: ['G'], colors: ['Green'], rarity: "Uncommon", cost: ['G'] })) aether_revolt.addCard(new Card({ mtgaID: 64631, setNumber: 120, name: "prey_upon", prettyName: "Prey Upon", cardType: "Sorcery", set: "AER", subTypes: "", colorIdentity: ['G'], colors: ['Green'], rarity: "Common", cost: ['G'] })) aether_revolt.addCard(new Card({ mtgaID: 64633, setNumber: 121, name: "ridgescale_tusker", prettyName: "Ridgescale Tusker", cardType: "Creature", set: "AER", subTypes: "Beast", colorIdentity: ['G'], colors: ['Green'], rarity: "Uncommon", cost: ['3', 'G', 'G'] })) aether_revolt.addCard(new Card({ mtgaID: 64635, setNumber: 123, name: "rishkars_expertise", prettyName: "Rishkar's Expertise", cardType: "Sorcery", set: "AER", subTypes: "", colorIdentity: ['G'], colors: ['Green'], rarity: "Rare", cost: ['4', 'G', 'G'] })) aether_revolt.addCard(new Card({ mtgaID: 64637, setNumber: 124, name: "scrounging_bandar", prettyName: "Scrounging Bandar", cardType: "Creature", set: "AER", subTypes: "Cat Monkey", colorIdentity: ['G'], colors: ['Green'], rarity: "Common", cost: ['1', 'G'] })) aether_revolt.addCard(new Card({ mtgaID: 64639, setNumber: 128, name: "dark_intimations", prettyName: "Dark Intimations", cardType: "Sorcery", set: "AER", subTypes: "", colorIdentity: ['U', 'B', 'R'], colors: ['Red', 'Black', 'Blue'], rarity: "Rare", cost: ['2', 'U', 'B', 'R'] })) aether_revolt.addCard(new Card({ mtgaID: 64641, setNumber: 130, name: "maverick_thopterist", prettyName: "Maverick Thopterist", cardType: "Creature", set: "AER", subTypes: "Human Artificer", colorIdentity: ['U', 'R'], colors: ['Red', 'Blue'], rarity: "Uncommon", cost: ['3', 'U', 'R'] })) aether_revolt.addCard(new Card({ mtgaID: 64643, setNumber: 134, name: "renegade_wheelsmith", prettyName: "Renegade Wheelsmith", cardType: "Creature", set: "AER", subTypes: "Dwarf Pilot", colorIdentity: ['W', 'R'], colors: ['Red', 'White'], rarity: "Uncommon", cost: ['1', 'R', 'W'] })) aether_revolt.addCard(new Card({ mtgaID: 64645, setNumber: 135, name: "rogue_refiner", prettyName: "Rogue Refiner", cardType: "Creature", set: "AER", subTypes: "Human Rogue", colorIdentity: ['U', 'G'], colors: ['Blue', 'Green'], rarity: "Uncommon", cost: ['1', 'G', 'U'] })) aether_revolt.addCard(new Card({ mtgaID: 64647, setNumber: 137, name: "tezzeret_the_schemer", prettyName: "Tezzeret the Schemer", cardType: "Legendary Planeswalker", set: "AER", subTypes: "Tezzeret", colorIdentity: ['U', 'B'], colors: ['Black', 'Blue'], rarity: "Mythic Rare", cost: ['2', 'U', 'B'] })) aether_revolt.addCard(new Card({ mtgaID: 64649, setNumber: 138, name: "tezzerets_touch", prettyName: "Tezzeret's Touch", cardType: "Enchantment", set: "AER", subTypes: "Aura", colorIdentity: ['U', 'B'], colors: ['Black', 'Blue'], rarity: "Uncommon", cost: ['1', 'U', 'B'] })) aether_revolt.addCard(new Card({ mtgaID: 64651, setNumber: 140, name: "winding_constrictor", prettyName: "Winding Constrictor", cardType: "Creature", set: "AER", subTypes: "Snake", colorIdentity: ['B', 'G'], colors: ['Black', 'Green'], rarity: "Uncommon", cost: ['B', 'G'] })) aether_revolt.addCard(new Card({ mtgaID: 64655, setNumber: 148, name: "crackdown_construct", prettyName: "Crackdown Construct", cardType: "Artifact Creature", set: "AER", subTypes: "Construct", colorIdentity: [], colors: ['Colorless'], rarity: "Uncommon", cost: ['4'] })) aether_revolt.addCard(new Card({ mtgaID: 64657, setNumber: 150, name: "filigree_crawler", prettyName: "Filigree Crawler", cardType: "Artifact Creature", set: "AER", subTypes: "Insect", colorIdentity: [], colors: ['Colorless'], rarity: "Common", cost: ['4'] })) aether_revolt.addCard(new Card({ mtgaID: 64659, setNumber: 152, name: "gontis_aether_heart", prettyName: "Gonti's Aether Heart", cardType: "Legendary Artifact", set: "AER", subTypes: "", colorIdentity: [], colors: ['Colorless'], rarity: "Mythic Rare", cost: ['6'] })) aether_revolt.addCard(new Card({ mtgaID: 64661, setNumber: 154, name: "hope_of_ghirapur", prettyName: "Hope of Ghirapur", cardType: "Legendary Artifact Creature", set: "AER", subTypes: "Thopter", colorIdentity: [], colors: ['Colorless'], rarity: "Rare", cost: ['1'] })) aether_revolt.addCard(new Card({ mtgaID: 64663, setNumber: 160, name: "inspiring_statuary", prettyName: "Inspiring Statuary", cardType: "Artifact", set: "AER", subTypes: "", colorIdentity: [], colors: ['Colorless'], rarity: "Rare", cost: ['3'] })) aether_revolt.addCard(new Card({ mtgaID: 64665, setNumber: 162, name: "lifecrafters_bestiary", prettyName: "Lifecrafter's Bestiary", cardType: "Artifact", set: "AER", subTypes: "", colorIdentity: ['G'], colors: ['Green'], rarity: "Rare", cost: ['3'] })) aether_revolt.addCard(new Card({ mtgaID: 64667, setNumber: 163, name: "merchants_dockhand", prettyName: "Merchant's Dockhand", cardType: "Artifact Creature", set: "AER", subTypes: "Construct", colorIdentity: ['U'], colors: ['Blue'], rarity: "Rare", cost: ['1'] })) aether_revolt.addCard(new Card({ mtgaID: 64669, setNumber: 164, name: "metallic_mimic", prettyName: "Metallic Mimic", cardType: "Artifact Creature", set: "AER", subTypes: "Shapeshifter", colorIdentity: [], colors: ['Colorless'], rarity: "Rare", cost: ['2'] })) aether_revolt.addCard(new Card({ mtgaID: 64671, setNumber: 172, name: "prizefighter_construct", prettyName: "Prizefighter Construct", cardType: "Artifact Creature", set: "AER", subTypes: "Construct", colorIdentity: [], colors: ['Colorless'], rarity: "Common", cost: ['5'] })) aether_revolt.addCard(new Card({ mtgaID: 64673, setNumber: 176, name: "servo_schematic", prettyName: "Servo Schematic", cardType: "Artifact", set: "AER", subTypes: "", colorIdentity: [], colors: ['Colorless'], rarity: "Uncommon", cost: ['2'] })) aether_revolt.addCard(new Card({ mtgaID: 64675, setNumber: 181, name: "walking_ballista", prettyName: "Walking Ballista", cardType: "Artifact Creature", set: "AER", subTypes: "Construct", colorIdentity: [], colors: ['Colorless'], rarity: "Rare", cost: ['X', 'X'] })) aether_revolt.addCard(new Card({ mtgaID: 64677, setNumber: 183, name: "welder_automaton", prettyName: "Welder Automaton", cardType: "Artifact Creature", set: "AER", subTypes: "Construct", colorIdentity: ['R'], colors: ['Red'], rarity: "Common", cost: ['2'] })) aether_revolt.addCard(new Card({ mtgaID: 64679, setNumber: 31, name: "disallow", prettyName: "Disallow", cardType: "Instant", set: "AER", subTypes: "", colorIdentity: ['U'], colors: ['Blue'], rarity: "Rare", cost: ['1', 'U', 'U'] })) aether_revolt.addCard(new Card({ mtgaID: 64681, setNumber: 45, name: "shipwreck_moray", prettyName: "Shipwreck Moray", cardType: "Creature", set: "AER", subTypes: "Fish", colorIdentity: ['U'], colors: ['Blue'], rarity: "Common", cost: ['3', 'U'] })) aether_revolt.addCard(new Card({ mtgaID: 64683, setNumber: 70, name: "resourceful_return", prettyName: "Resourceful Return", cardType: "Sorcery", set: "AER", subTypes: "", colorIdentity: ['B'], colors: ['Black'], rarity: "Common", cost: ['1', 'B'] })) aether_revolt.addCard(new Card({ mtgaID: 64685, setNumber: 94, name: "ravenous_intruder", prettyName: "Ravenous Intruder", cardType: "Creature", set: "AER", subTypes: "Gremlin", colorIdentity: ['R'], colors: ['Red'], rarity: "Uncommon", cost: ['1', 'R'] })) aether_revolt.addCard(new Card({ mtgaID: 64687, setNumber: 104, name: "aetherwind_basker", prettyName: "Aetherwind Basker", cardType: "Creature", set: "AER", subTypes: "Lizard", colorIdentity: ['G'], colors: ['Green'], rarity: "Mythic Rare", cost: ['4', 'G', 'G', 'G'] })) aether_revolt.addCard(new Card({ mtgaID: 64689, setNumber: 142, name: "aethersphere_harvester", prettyName: "Aethersphere Harvester", cardType: "Artifact", set: "AER", subTypes: "Vehicle", colorIdentity: [], colors: ['Colorless'], rarity: "Rare", cost: ['3'] })) aether_revolt.addCard(new Card({ mtgaID: 64691, setNumber: 158, name: "implement_of_improvement", prettyName: "Implement of Improvement", cardType: "Artifact", set: "AER", subTypes: "", colorIdentity: ['W'], colors: ['White'], rarity: "Common", cost: ['1'] })) aether_revolt.addCard(new Card({ mtgaID: 65917, setNumber: 185, name: "ajani_valiant_protector", prettyName: "Ajani, Valiant Protector", cardType: "Legendary Planeswalker", set: "AER", subTypes: "Ajani", colorIdentity: ['W', 'G'], colors: ['White', 'Green'], rarity: "Mythic Rare", cost: ['4', 'G', 'W'] })) aether_revolt.addCard(new Card({ mtgaID: 65919, setNumber: 186, name: "inspiring_roar", prettyName: "Inspiring Roar", cardType: "Sorcery", set: "AER", subTypes: "", colorIdentity: ['W'], colors: ['White'], rarity: "Common", cost: ['3', 'W'] })) aether_revolt.addCard(new Card({ mtgaID: 65921, setNumber: 187, name: "ajanis_comrade", prettyName: "Ajani's Comrade", cardType: "Creature", set: "AER", subTypes: "Elf Soldier", colorIdentity: ['G'], colors: ['Green'], rarity: "Uncommon", cost: ['1', 'G'] })) aether_revolt.addCard(new Card({ mtgaID: 65923, setNumber: 188, name: "ajanis_aid", prettyName: "Ajani's Aid", cardType: "Enchantment", set: "AER", subTypes: "", colorIdentity: ['W', 'G'], colors: ['White', 'Green'], rarity: "Rare", cost: ['2', 'G', 'W'] })) aether_revolt.addCard(new Card({ mtgaID: 65925, setNumber: 189, name: "tranquil_expanse", prettyName: "Tranquil Expanse", cardType: "Land", set: "AER", subTypes: "", colorIdentity: ['G', 'W'], colors: ['White', 'Green'], rarity: "Common", cost: [] })) aether_revolt.addCard(new Card({ mtgaID: 65927, setNumber: 190, name: "tezzeret_master_of_metal", prettyName: "Tezzeret, Master of Metal", cardType: "Legendary Planeswalker", set: "AER", subTypes: "Tezzeret", colorIdentity: ['U', 'B'],