From 43034378fba468ce65eb25129b2d4856d51d8f1f Mon Sep 17 00:00:00 2001 From: Stefano Pigozzi Date: Fri, 24 Mar 2023 12:44:04 +0100 Subject: [PATCH] Revert "Remove development card data" This reverts commit ef93f04140a1c36f191bdef1bd3f8d8093950bbd. --- .gitignore | 1 - data/core-en_us/COPYRIGHT | 1 + data/core-en_us/README.md | 40 + data/core-en_us/en_us/data/globals-en_us.json | 743 + data/core-en_us/metadata.json | 5 + data/set1-en_us/COPYRIGHT | 1 + data/set1-en_us/README.md | 40 + data/set1-en_us/en_us/data/set1-en_us.json | 17725 ++++++++++++++++ data/set1-en_us/metadata.json | 5 + data/set2-en_us/COPYRIGHT | 1 + data/set2-en_us/README.md | 40 + data/set2-en_us/en_us/data/set2-en_us.json | 7417 +++++++ data/set2-en_us/metadata.json | 5 + data/set3-en_us/COPYRIGHT | 1 + data/set3-en_us/README.md | 40 + data/set3-en_us/en_us/data/set3-en_us.json | 11899 +++++++++++ data/set3-en_us/metadata.json | 5 + data/set4-en_us/COPYRIGHT | 1 + data/set4-en_us/README.md | 40 + data/set4-en_us/en_us/data/set4-en_us.json | 14914 +++++++++++++ data/set4-en_us/metadata.json | 5 + data/set5-en_us/COPYRIGHT | 1 + data/set5-en_us/README.md | 40 + data/set5-en_us/en_us/data/set5-en_us.json | 15596 ++++++++++++++ data/set5-en_us/metadata.json | 5 + data/set6-en_us/COPYRIGHT | 1 + data/set6-en_us/README.md | 40 + data/set6-en_us/en_us/data/set6-en_us.json | 7934 +++++++ data/set6-en_us/metadata.json | 5 + data/set6cde-en_us/COPYRIGHT | 1 + data/set6cde-en_us/README.md | 40 + .../en_us/data/set6cde-en_us.json | 12056 +++++++++++ data/set6cde-en_us/metadata.json | 5 + 33 files changed, 88652 insertions(+), 1 deletion(-) create mode 100644 data/core-en_us/COPYRIGHT create mode 100644 data/core-en_us/README.md create mode 100644 data/core-en_us/en_us/data/globals-en_us.json create mode 100644 data/core-en_us/metadata.json create mode 100644 data/set1-en_us/COPYRIGHT create mode 100644 data/set1-en_us/README.md create mode 100644 data/set1-en_us/en_us/data/set1-en_us.json create mode 100644 data/set1-en_us/metadata.json create mode 100644 data/set2-en_us/COPYRIGHT create mode 100644 data/set2-en_us/README.md create mode 100644 data/set2-en_us/en_us/data/set2-en_us.json create mode 100644 data/set2-en_us/metadata.json create mode 100644 data/set3-en_us/COPYRIGHT create mode 100644 data/set3-en_us/README.md create mode 100644 data/set3-en_us/en_us/data/set3-en_us.json create mode 100644 data/set3-en_us/metadata.json create mode 100644 data/set4-en_us/COPYRIGHT create mode 100644 data/set4-en_us/README.md create mode 100644 data/set4-en_us/en_us/data/set4-en_us.json create mode 100644 data/set4-en_us/metadata.json create mode 100644 data/set5-en_us/COPYRIGHT create mode 100644 data/set5-en_us/README.md create mode 100644 data/set5-en_us/en_us/data/set5-en_us.json create mode 100644 data/set5-en_us/metadata.json create mode 100644 data/set6-en_us/COPYRIGHT create mode 100644 data/set6-en_us/README.md create mode 100644 data/set6-en_us/en_us/data/set6-en_us.json create mode 100644 data/set6-en_us/metadata.json create mode 100644 data/set6cde-en_us/COPYRIGHT create mode 100644 data/set6cde-en_us/README.md create mode 100644 data/set6cde-en_us/en_us/data/set6cde-en_us.json create mode 100644 data/set6cde-en_us/metadata.json diff --git a/.gitignore b/.gitignore index 17f5ee6..676c9ca 100644 --- a/.gitignore +++ b/.gitignore @@ -1,7 +1,6 @@ # Generated by Cargo # will have compiled files and executables /target/ -/data/ # Remove Cargo.lock from gitignore if creating an executable, leave it for libraries # More information here https://doc.rust-lang.org/cargo/guide/cargo-toml-vs-cargo-lock.html diff --git a/data/core-en_us/COPYRIGHT b/data/core-en_us/COPYRIGHT new file mode 100644 index 0000000..095081a --- /dev/null +++ b/data/core-en_us/COPYRIGHT @@ -0,0 +1 @@ +Copyright Riot Games, Inc. 2019 \ No newline at end of file diff --git a/data/core-en_us/README.md b/data/core-en_us/README.md new file mode 100644 index 0000000..378a7b6 --- /dev/null +++ b/data/core-en_us/README.md @@ -0,0 +1,40 @@ +metadata.json +{ + "locales": ["{string}", ...], + "clientHash": "{string}" + "gameplayDataHash": "{string}", + "timestamp": "{YYYYMMDDhhmm}", + "patchlineRef": "{string}" +} + +cards.json +[ + { + "id": "{cardCode}", + "idComponents": + { + "set": "setNumber", + "region": + { + "id": "{shortRegionCode}", + "name": "{regionName}" + } + } + "name": "{name}", + "type": "{type}", + "subType": "{subType}", + "superType": "{superType}", + "description": "{description}", + "keywords": [], + "associatedCards": [{cardCode}, ...] + "health": "{health}", + "attack": "{attack}", + "cost": "{cost}", + "assets": + { + "gameAbsolutePath": "http://{cdn}/{bundleName}/set1/en_us/img/card/game/{cardCode}.png" + } + + }, + {...} +] diff --git a/data/core-en_us/en_us/data/globals-en_us.json b/data/core-en_us/en_us/data/globals-en_us.json new file mode 100644 index 0000000..4fc6eee --- /dev/null +++ b/data/core-en_us/en_us/data/globals-en_us.json @@ -0,0 +1,743 @@ +{ + "vocabTerms": [ + { + "description": "When you summon this, it gets its allegiance bonus if the top card of your deck matches its region.", + "name": "Allegiance", + "nameRef": "Allegiance" + }, + { + "description": "Automatically equips this item from hand or play when summoned, creating it first if needed.", + "name": "Auto-Equip", + "nameRef": "AutoEquip" + }, + { + "description": "Pick the next Moon Weapon for Aphelios.", + "name": "Phase", + "nameRef": "Phase" + }, + { + "description": "Create a random Blade Fragment still needed to restore the blade. Once you’ve played all 3, create the Blade of the Exile.", + "name": "Reforge", + "nameRef": "Reforge" + }, + { + "description": "Immediately draw 1 of each Ascended ally. For the rest of the game, level 2 Ascended allies are level 3.", + "name": "Restore the Sun Disc", + "nameRef": "SunDiscRestore" + }, + { + "description": "Effect when unit strikes with an attack", + "name": "Attack Strike", + "nameRef": "AttackStrike" + }, + { + "description": "For each Spawn:\nSummon a 1|1 Tentacle, or if you already have one, grant your strongest Tentacle +1|+1.", + "name": "Spawn", + "nameRef": "Spawn" + }, + { + "description": "Highest Power, with ties broken by highest Health then highest Cost.", + "name": "Strongest", + "nameRef": "Strongest" + }, + { + "description": "Obliterate X non-champion cards from the bottom of your deck.", + "name": "Toss", + "nameRef": "Toss" + }, + { + "description": "Start a free attack with that many summoned Blades.", + "name": "Blade Dance", + "nameRef": "BladeDance" + }, + { + "description": "You behold something if you have it in play or hand.", + "name": "Behold", + "nameRef": "Behold" + }, + { + "description": "This is how much Mana you need to spend to play this card.", + "name": "Cost", + "nameRef": "Cost" + }, + { + "description": "Get this effect when the round ends.", + "name": "Round End", + "nameRef": "RoundEnd" + }, + { + "description": "This is how much damage the unit can withstand. If it reaches zero, the unit dies.", + "name": "Health", + "nameRef": "Health" + }, + { + "description": "Choose one of two random options from a depleting pool of equipment and equip it to this ally. If the ally wasn't played from hand, it equips a random equipment instead.", + "name": "Improvise", + "nameRef": "Improvise" + }, + { + "description": "This is how much damage the unit deals when it strikes.", + "name": "Power", + "nameRef": "Power" + }, + { + "description": "A card activates its Flow on Round Start if you played 2+ spells or skills last round.", + "name": "Flow", + "nameRef": "Flow" + }, + { + "description": "Get this effect when this unit attacks.", + "name": "Attack", + "nameRef": "Attack" + }, + { + "description": "A unit is buffed when its Power or Health is increased or it gains a new keyword.", + "name": "Buffed", + "nameRef": "Buffed" + }, + { + "description": "This champion counts as one of your deck's regions. During deckbuilding, you may add the specified cards to your deck regardless of region. Origins may also have an effect that begins at Start of Game.", + "name": "Origin", + "nameRef": "Origin" + }, + { + "description": "Get this effect when a unit attempts to deal damage using its Power, either at the end of battle or with spells. Units with 0 Power can't strike.", + "name": "Strike", + "nameRef": "Strike" + }, + { + "description": "Effect when unit Strikes the enemy Nexus.", + "name": "Nexus Strike", + "nameRef": "NexusStrike" + }, + { + "description": "Activates if allies have struck for 5+ damage at least 4 times this game.", + "name": "Reputation", + "nameRef": "Reputation" + }, + { + "description": "Equipping an Item to a unit grants it the listed bonuses. If the unit leaves play, the Item will return to your hand. You may play each item at most once per round.", + "name": "Equip", + "nameRef": "Equip" + }, + { + "description": "Get this effect when the round starts.", + "name": "Round Start", + "nameRef": "RoundStart" + }, + { + "description": "The opponent in The Path of Champions.", + "name": "Foe", + "nameRef": "Foe" + }, + { + "description": "Grant an ally +1|+1. If the ally is equipped, grant it to their item instead.", + "name": "Forge", + "nameRef": "Forge" + }, + { + "description": "Get this effect when you play this unit from hand.", + "name": "Play", + "nameRef": "Play" + }, + { + "description": "In play, in hand, in deck, in discard, and even if created/summoned later.", + "name": "Everywhere", + "nameRef": "Everywhere" + }, + { + "description": "Makes a Countdown landmark count down that many times", + "name": "Advance", + "nameRef": "Advance" + }, + { + "description": "Round Start: I count down 1. At 0, activate the Countdown effect, then destroy me.", + "name": "Countdown", + "nameRef": "Countdown" + }, + { + "description": "If you don't have one, gain the attack token. You can attack this round.", + "name": "Rally", + "nameRef": "Rally" + }, + { + "description": "When you kill a unit via damage, kill effect, or striking it with an ally. (Self-killing, like from Ephemeral, doesn't count.)", + "name": "Slay", + "nameRef": "Slay" + }, + { + "description": "Remove all keywords, abilities, and ongoing effects. Doesn't affect damage or subtype.", + "name": "Silence", + "nameRef": "Silence" + }, + { + "description": "Create in hand 1 of 3 randomly selected cards.", + "name": "Manifest", + "nameRef": "Manifest" + }, + { + "description": "Pick a card from among 3 in your deck. Shuffle the deck and put that card on top.", + "name": "Predict", + "nameRef": "Predict" + } + ], + "keywords": [ + { + "description": "Inflicts damage beyond what would kill the target(s) to the enemy Nexus.", + "name": "Overwhelm", + "nameRef": "SpellOverwhelm" + }, + { + "description": "Can be played whenever you may act. Happens instantly and allows you to continue to play other cards.", + "name": "Burst", + "nameRef": "Burst" + }, + { + "description": "Round Start: I count down 1. At 0, activate the Countdown effect, then destroy me.", + "name": "Countdown", + "nameRef": "Countdown" + }, + { + "description": "Get this effect when you play this unit from hand.", + "name": "Play", + "nameRef": "PlaySkillMark" + }, + { + "description": "Landmarks take up a space on the board. They can't attack, block, or take damage.", + "name": "Landmark", + "nameRef": "LandmarkVisualOnly" + }, + { + "description": "A Captured card is removed from the game. It returns when the Capturing unit leaves play.", + "name": "Capture", + "nameRef": "Capture" + }, + { + "description": "Get this effect when this unit attacks.", + "name": "Attack", + "nameRef": "AttackSkillMark" + }, + { + "description": " ", + "name": "Shurima", + "nameRef": "Shurima" + }, + { + "description": "Attach me to an ally to give it my stats and keywords while I'm attached. When that ally leaves play, Recall me.", + "name": "Attach", + "nameRef": "Attach" + }, + { + "description": " ", + "name": "Noxus", + "nameRef": "Noxus" + }, + { + "description": "Fleeting cards discard from hand when the round ends.", + "name": "Fleeting", + "nameRef": "Fleeting" + }, + { + "description": "Missing Translation", + "name": "Missing Translation", + "nameRef": "ClobberNoEmptySlotRequirement" + }, + { + "description": "Draw a non-champion card from the bottom of the enemy deck.", + "name": "Nab", + "nameRef": "Nab" + }, + { + "description": "Can be played outside combat or when no other spells or skills are pending. Happens instantly and allows you to continue to play other cards.", + "name": "Focus", + "nameRef": "Focus" + }, + { + "description": "You're Enlightened when you have 10 max mana.", + "name": "Enlightened", + "nameRef": "Enlightened" + }, + { + "description": "Pick a Celestial card from among 3 to create in hand.", + "name": "Invoke", + "nameRef": "Invoke" + }, + { + "description": "A card activates its Flow on Round Start if you played 2+ spells or skills last round.", + "name": "Flow", + "nameRef": "Flow" + }, + { + "description": "Attaches to another card in a deck. When that card is drawn, activate the effect.", + "name": "Boon", + "nameRef": "Boon" + }, + { + "description": "Attaches to another card in a deck. When that card is drawn, activate the effect.", + "name": "Trap", + "nameRef": "Autoplay" + }, + { + "description": "Heal your Nexus for the amount of damage dealt", + "name": "Drain", + "nameRef": "Drain" + }, + { + "description": "These abilities take effect when the unit dies.", + "name": "Last Breath", + "nameRef": "LastBreath" + }, + { + "description": " ", + "name": "Demacia", + "nameRef": "Demacia" + }, + { + "description": "A champion levels up once this condition is met, even in hand or deck.", + "name": "Level Up", + "nameRef": "LevelUp" + }, + { + "description": "", + "name": "Bandle City", + "nameRef": "BandleCity" + }, + { + "description": "Can be played whenever you may act. Happens after your opponent has a chance to react.", + "name": "Fast", + "nameRef": "Fast" + }, + { + "description": " ", + "name": "Bilgewater", + "nameRef": "Bilgewater" + }, + { + "description": "", + "name": "Runeterra", + "nameRef": "Runeterra" + }, + { + "description": "Return a unit to hand and remove all effects applied to it.", + "name": "Recall", + "nameRef": "Recall" + }, + { + "description": "Lowest Power, with ties broken by lowest Health then lowest Cost", + "name": "Weakest", + "nameRef": "Weakest" + }, + { + "description": "Attacking with a support unit will buff the unit to its right.", + "name": "Support", + "nameRef": "Support" + }, + { + "description": "Can be played outside of combat when no spells or skills are pending. Happens after your opponent has a chance to react.", + "name": "Slow", + "nameRef": "Slow" + }, + { + "description": "Completely removed from the game. Doesn't cause Last Breath and can't be revived.", + "name": "Obliterate", + "nameRef": "Obliterate" + }, + { + "description": "These abilities trigger when you resolve a spell.", + "name": "Imbue", + "nameRef": "Imbue" + }, + { + "description": " ", + "name": "Targon", + "nameRef": "MtTargon" + }, + { + "description": " ", + "name": "Shadow Isles", + "nameRef": "ShadowIsles" + }, + { + "description": "Missing Translation", + "name": "Missing Translation", + "nameRef": "AuraVisualFakeKeyword" + }, + { + "description": "Equip to a unit to grant the listed bonuses. If the unit leaves play, the equipment will return to your hand. You may play each equipment at most once per round.", + "name": "Equipment", + "nameRef": "Equipment" + }, + { + "description": " ", + "name": "Ionia", + "nameRef": "Ionia" + }, + { + "description": "Bonus if this is NOT the first card you play in a round.", + "name": "Nightfall", + "nameRef": "Nightfall" + }, + { + "description": " ", + "name": "Piltover & Zaun", + "nameRef": "PiltoverZaun" + }, + { + "description": " ", + "name": "Freljord", + "nameRef": "Freljord" + }, + { + "description": "When I'm summoned, refill 1 spell mana.", + "name": "Attune", + "nameRef": "Attune" + }, + { + "description": "Bonus if this is the FIRST card you play in a round.", + "name": "Daybreak", + "nameRef": "Daybreak" + }, + { + "description": "Can block Elusive units", + "name": "Blocks Elusive", + "nameRef": "BlocksElusive" + }, + { + "description": "Missing Translation", + "name": "Missing Translation", + "nameRef": "SilenceIndividualKeyword" + }, + { + "description": "A unit's spell-like effect that allows enemy reactions.", + "name": "Skill", + "nameRef": "Skill" + }, + { + "description": "A card triggers its plunder ability when played if you damaged the enemy Nexus this round.", + "name": "Plunder", + "nameRef": "Plunder" + }, + { + "description": "While attacking, it strikes both before AND at the same time as its blocker.", + "name": "Double Attack", + "nameRef": "DoubleStrike" + }, + { + "description": "The enemy can challenge this unit, forcing it to block.", + "name": "Vulnerable", + "nameRef": "Vulnerable" + }, + { + "description": "Can only be blocked by an Elusive unit.", + "name": "Elusive", + "nameRef": "Elusive" + }, + { + "description": "Remove a unit from combat. It can't attack or block for the rest of the round.", + "name": "Stun", + "nameRef": "Stun" + }, + { + "description": "Each round, the first time an allied card targets me, grant me +1|+1.", + "name": "Fated", + "nameRef": "Fated" + }, + { + "description": "When I kill a unit, grant me +1|+1.", + "name": "Fury", + "nameRef": "Fury" + }, + { + "description": "Negates the next damage the unit would take. Lasts one round.", + "name": "Barrier", + "nameRef": "Barrier" + }, + { + "description": "Can't attack or block.", + "name": "Immobile", + "nameRef": "Immobile" + }, + { + "description": "After I die, for the rest of the game when allies attack, hallow your first attacker giving it +1|+0 that round", + "name": "Hallowed", + "nameRef": "Hallowed" + }, + { + "description": "I have +2|+2 once you've had Units with 6+ other unique positive keywords in play this game.", + "name": "Evolve", + "nameRef": "Evolve" + }, + { + "description": "Set a unit's Power to 0 this round. It can be changed after.", + "name": "Frostbite", + "nameRef": "Frostbite" + }, + { + "description": "Excess damage I deal to my blocker is dealt to the enemy Nexus.", + "name": "Overwhelm", + "nameRef": "Overwhelm" + }, + { + "description": "While attacking, strikes before its blocker.", + "name": "Quick Attack", + "nameRef": "QuickStrike" + }, + { + "description": "Takes 1 less damage from all sources.", + "name": "Tough", + "nameRef": "Tough" + }, + { + "description": "Heals fully at the end of each round.", + "name": "Regeneration", + "nameRef": "Regeneration" + }, + { + "description": "Removes all text and keywords from a unit.", + "name": "Silenced", + "nameRef": "Silenced" + }, + { + "description": "Negates the next enemy spell or skill that would affect me.", + "name": "SpellShield", + "nameRef": "SpellShield" + }, + { + "description": "Damage this unit deals heals its Nexus that amount.", + "name": "Lifesteal", + "nameRef": "Lifesteal" + }, + { + "description": "When you play a created card, grant me +1|+0.", + "name": "Augment", + "nameRef": "Augment" + }, + { + "description": "When this strikes while attacking, it deals 1 to the enemy Nexus. This keyword can stack.", + "name": "Impact", + "nameRef": "Impact" + }, + { + "description": "The first time only Scout units attack each round, ready your attack.", + "name": "Scout", + "nameRef": "Scout" + }, + { + "description": "This unit dies when it strikes or when the round ends.", + "name": "Ephemeral", + "nameRef": "Ephemeral" + }, + { + "description": "When you attack while I'm on top of your deck, I Lurk, granting Lurker allies everywhere +1|+0. Max once per round.", + "name": "Lurk", + "nameRef": "Lurker" + }, + { + "description": "I strike with my Health instead of my Power.", + "name": "Formidable", + "nameRef": "Formidable" + }, + { + "description": "Can choose which enemy unit blocks.", + "name": "Challenger", + "nameRef": "Challenger" + }, + { + "description": "Can only be blocked by enemies with 3 or more Power.", + "name": "Fearsome", + "nameRef": "Fearsome" + }, + { + "description": " ", + "name": "Can't Block", + "nameRef": "CantBlock" + }, + { + "description": "", + "name": "Deep", + "nameRef": "Deep" + } + ], + "regions": [ + { + "abbreviation": "NX", + "iconAbsolutePath": "http://dd.b.pvp.net/3_17_0/core/en_us/img/regions/icon-noxus.png", + "name": "Noxus", + "nameRef": "Noxus" + }, + { + "abbreviation": "DE", + "iconAbsolutePath": "http://dd.b.pvp.net/3_17_0/core/en_us/img/regions/icon-demacia.png", + "name": "Demacia", + "nameRef": "Demacia" + }, + { + "abbreviation": "Jhin", + "iconAbsolutePath": "http://dd.b.pvp.net/3_17_0/core/en_us/img/regions/icon-jhin.png", + "name": "Jhin", + "nameRef": "Jhin" + }, + { + "abbreviation": "Varus", + "iconAbsolutePath": "http://dd.b.pvp.net/3_17_0/core/en_us/img/regions/icon-varus.png", + "name": "Varus", + "nameRef": "Varus" + }, + { + "abbreviation": "Jax", + "iconAbsolutePath": "http://dd.b.pvp.net/3_17_0/core/en_us/img/regions/icon-jax.png", + "name": "Jax", + "nameRef": "Jax" + }, + { + "abbreviation": "Kayn", + "iconAbsolutePath": "http://dd.b.pvp.net/3_17_0/core/en_us/img/regions/icon-kayn.png", + "name": "Kayn", + "nameRef": "Kayn" + }, + { + "abbreviation": "Evelynn", + "iconAbsolutePath": "http://dd.b.pvp.net/3_17_0/core/en_us/img/regions/icon-evelynn.png", + "name": "Evelynn", + "nameRef": "Evelynn" + }, + { + "abbreviation": "Bard", + "iconAbsolutePath": "http://dd.b.pvp.net/3_17_0/core/en_us/img/regions/icon-bard.png", + "name": "Bard", + "nameRef": "Bard" + }, + { + "abbreviation": "RU", + "iconAbsolutePath": "http://dd.b.pvp.net/3_17_0/core/en_us/img/regions/icon-runeterra.png", + "name": "Runeterra", + "nameRef": "Runeterra" + }, + { + "abbreviation": "FR", + "iconAbsolutePath": "http://dd.b.pvp.net/3_17_0/core/en_us/img/regions/icon-freljord.png", + "name": "Freljord", + "nameRef": "Freljord" + }, + { + "abbreviation": "SI", + "iconAbsolutePath": "http://dd.b.pvp.net/3_17_0/core/en_us/img/regions/icon-shadowisles.png", + "name": "Shadow Isles", + "nameRef": "ShadowIsles" + }, + { + "abbreviation": "MT", + "iconAbsolutePath": "http://dd.b.pvp.net/3_17_0/core/en_us/img/regions/icon-targon.png", + "name": "Targon", + "nameRef": "Targon" + }, + { + "abbreviation": "IO", + "iconAbsolutePath": "http://dd.b.pvp.net/3_17_0/core/en_us/img/regions/icon-ionia.png", + "name": "Ionia", + "nameRef": "Ionia" + }, + { + "abbreviation": "SH", + "iconAbsolutePath": "http://dd.b.pvp.net/3_17_0/core/en_us/img/regions/icon-shurima.png", + "name": "Shurima", + "nameRef": "Shurima" + }, + { + "abbreviation": "BW", + "iconAbsolutePath": "http://dd.b.pvp.net/3_17_0/core/en_us/img/regions/icon-bilgewater.png", + "name": "Bilgewater", + "nameRef": "Bilgewater" + }, + { + "abbreviation": "PZ", + "iconAbsolutePath": "http://dd.b.pvp.net/3_17_0/core/en_us/img/regions/icon-piltoverzaun.png", + "name": "Piltover & Zaun", + "nameRef": "PiltoverZaun" + }, + { + "abbreviation": "BC", + "iconAbsolutePath": "http://dd.b.pvp.net/3_17_0/core/en_us/img/regions/icon-bandlecity.png", + "name": "Bandle City", + "nameRef": "BandleCity" + } + ], + "spellSpeeds": [ + { + "name": "Slow", + "nameRef": "Slow" + }, + { + "name": "Burst", + "nameRef": "Burst" + }, + { + "name": "Fast", + "nameRef": "Fast" + } + ], + "rarities": [ + { + "name": "COMMON", + "nameRef": "Common" + }, + { + "name": "RARE", + "nameRef": "Rare" + }, + { + "name": "EPIC", + "nameRef": "Epic" + }, + { + "name": "Champion", + "nameRef": "Champion" + }, + { + "name": "None", + "nameRef": "None" + } + ], + "sets": [ + { + "iconAbsolutePath": "http://dd.b.pvp.net/3_17_0/core/en_us/img/sets/set3_crispmip.png", + "name": "Call of the Mountain", + "nameRef": "Set3" + }, + { + "iconAbsolutePath": "http://dd.b.pvp.net/3_17_0/core/en_us/img/sets/set5_crispmip.png", + "name": "Beyond the Bandlewood", + "nameRef": "Set5" + }, + { + "iconAbsolutePath": "http://dd.b.pvp.net/3_17_0/core/en_us/img/sets/set1_crispmip.png", + "name": "Foundations", + "nameRef": "Set1" + }, + { + "iconAbsolutePath": "http://dd.b.pvp.net/3_17_0/core/en_us/img/sets/set2_crispmip.png", + "name": "Rising Tides", + "nameRef": "Set2" + }, + { + "iconAbsolutePath": "http://dd.b.pvp.net/3_17_0/core/en_us/img/sets/set6ab_crispmip.png", + "name": "Worldwalker", + "nameRef": "Set6" + }, + { + "iconAbsolutePath": "http://dd.b.pvp.net/3_17_0/core/en_us/img/sets/set4_crispmip.png", + "name": "Empires of the Ascended", + "nameRef": "Set4" + }, + { + "iconAbsolutePath": "http://dd.b.pvp.net/3_17_0/core/en_us/img/sets/setevent_crispmip.png", + "name": "Events", + "nameRef": "SetEvent" + }, + { + "iconAbsolutePath": "http://dd.b.pvp.net/3_17_0/core/en_us/img/sets/set6cde_crispmip.png", + "name": "The Darkin Saga", + "nameRef": "Set6cde" + } + ] +} \ No newline at end of file diff --git a/data/core-en_us/metadata.json b/data/core-en_us/metadata.json new file mode 100644 index 0000000..73ddb2d --- /dev/null +++ b/data/core-en_us/metadata.json @@ -0,0 +1,5 @@ +{ + "locales": [ + "en_us" + ] +} \ No newline at end of file diff --git a/data/set1-en_us/COPYRIGHT b/data/set1-en_us/COPYRIGHT new file mode 100644 index 0000000..095081a --- /dev/null +++ b/data/set1-en_us/COPYRIGHT @@ -0,0 +1 @@ +Copyright Riot Games, Inc. 2019 \ No newline at end of file diff --git a/data/set1-en_us/README.md b/data/set1-en_us/README.md new file mode 100644 index 0000000..378a7b6 --- /dev/null +++ b/data/set1-en_us/README.md @@ -0,0 +1,40 @@ +metadata.json +{ + "locales": ["{string}", ...], + "clientHash": "{string}" + "gameplayDataHash": "{string}", + "timestamp": "{YYYYMMDDhhmm}", + "patchlineRef": "{string}" +} + +cards.json +[ + { + "id": "{cardCode}", + "idComponents": + { + "set": "setNumber", + "region": + { + "id": "{shortRegionCode}", + "name": "{regionName}" + } + } + "name": "{name}", + "type": "{type}", + "subType": "{subType}", + "superType": "{superType}", + "description": "{description}", + "keywords": [], + "associatedCards": [{cardCode}, ...] + "health": "{health}", + "attack": "{attack}", + "cost": "{cost}", + "assets": + { + "gameAbsolutePath": "http://{cdn}/{bundleName}/set1/en_us/img/card/game/{cardCode}.png" + } + + }, + {...} +] diff --git a/data/set1-en_us/en_us/data/set1-en_us.json b/data/set1-en_us/en_us/data/set1-en_us.json new file mode 100644 index 0000000..e264ed7 --- /dev/null +++ b/data/set1-en_us/en_us/data/set1-en_us.json @@ -0,0 +1,17725 @@ +[ + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set1/en_us/img/cards/01IO012.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set1/en_us/img/cards/01IO012-full.png" + } + ], + "regions": [ + "Ionia" + ], + "regionRefs": [ + "Ionia" + ], + "attack": 0, + "cost": 2, + "health": 0, + "description": "Give an ally +2|+0 or +0|+3 this round.", + "descriptionRaw": "Give an ally +2|+0 or +0|+3 this round.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"Never fear change. It will question you, test your limits. It is our greatest teacher.\" - Karma", + "artistName": "SIXMOREVODKA", + "name": "Twin Disciplines", + "cardCode": "01IO012", + "keywords": [ + "Burst" + ], + "keywordRefs": [ + "Burst" + ], + "spellSpeed": "Burst", + "spellSpeedRef": "Burst", + "rarity": "COMMON", + "rarityRef": "Common", + "subtypes": [], + "supertype": "", + "type": "Spell", + "collectible": true, + "set": "Set1" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set1/en_us/img/cards/01IO012T2.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set1/en_us/img/cards/01IO012T2-full.png" + } + ], + "regions": [ + "Ionia" + ], + "regionRefs": [ + "Ionia" + ], + "attack": 0, + "cost": 2, + "health": 0, + "description": "Give an ally +0|+3 this round.", + "descriptionRaw": "Give an ally +0|+3 this round.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "", + "artistName": "SIXMOREVODKA", + "name": "Discipline of Fortitude", + "cardCode": "01IO012T2", + "keywords": [ + "Burst" + ], + "keywordRefs": [ + "Burst" + ], + "spellSpeed": "Burst", + "spellSpeedRef": "Burst", + "rarity": "None", + "rarityRef": "None", + "subtypes": [], + "supertype": "", + "type": "Spell", + "collectible": false, + "set": "Set1" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set1/en_us/img/cards/01IO012T1.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set1/en_us/img/cards/01IO012T1-full.png" + } + ], + "regions": [ + "Ionia" + ], + "regionRefs": [ + "Ionia" + ], + "attack": 0, + "cost": 2, + "health": 0, + "description": "Give an ally +2|+0 this round.", + "descriptionRaw": "Give an ally +2|+0 this round.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "", + "artistName": "SIXMOREVODKA", + "name": "Discipline of Force", + "cardCode": "01IO012T1", + "keywords": [ + "Burst" + ], + "keywordRefs": [ + "Burst" + ], + "spellSpeed": "Burst", + "spellSpeedRef": "Burst", + "rarity": "None", + "rarityRef": "None", + "subtypes": [], + "supertype": "", + "type": "Spell", + "collectible": false, + "set": "Set1" + }, + { + "associatedCards": [], + "associatedCardRefs": [ + "01IO015T1", + "01IO015T2" + ], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set1/en_us/img/cards/01IO015.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set1/en_us/img/cards/01IO015-full.png" + } + ], + "regions": [ + "Ionia" + ], + "regionRefs": [ + "Ionia" + ], + "attack": 4, + "cost": 4, + "health": 4, + "description": "When you Stun or Recall an enemy, I deal 2 to it.", + "descriptionRaw": "When you Stun or Recall an enemy, I deal 2 to it.", + "levelupDescription": "You Stun or Recall 5+ units.", + "levelupDescriptionRaw": "You Stun or Recall 5+ units.", + "flavorText": "\"Death is like the wind...\"", + "artistName": "SIXMOREVODKA", + "name": "Yasuo", + "cardCode": "01IO015", + "keywords": [ + "Quick Attack" + ], + "keywordRefs": [ + "QuickStrike" + ], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "Champion", + "rarityRef": "Champion", + "subtypes": [], + "supertype": "Champion", + "type": "Unit", + "collectible": true, + "set": "Set1" + }, + { + "associatedCards": [], + "associatedCardRefs": [ + "01IO015", + "01IO015T2" + ], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set1/en_us/img/cards/01IO015T1.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set1/en_us/img/cards/01IO015T1-full.png" + } + ], + "regions": [ + "Ionia" + ], + "regionRefs": [ + "Ionia" + ], + "attack": 5, + "cost": 4, + "health": 5, + "description": "When you Stun or Recall an enemy, I strike it.", + "descriptionRaw": "When you Stun or Recall an enemy, I strike it.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"...always by my side.\"", + "artistName": "SIXMOREVODKA", + "name": "Yasuo", + "cardCode": "01IO015T1", + "keywords": [ + "Quick Attack" + ], + "keywordRefs": [ + "QuickStrike" + ], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "None", + "rarityRef": "None", + "subtypes": [], + "supertype": "Champion", + "type": "Unit", + "collectible": false, + "set": "Set1" + }, + { + "associatedCards": [], + "associatedCardRefs": [ + "01IO015T1", + "01IO015" + ], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set1/en_us/img/cards/01IO015T2.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set1/en_us/img/cards/01IO015T2-full.png" + } + ], + "regions": [ + "Ionia" + ], + "regionRefs": [ + "Ionia" + ], + "attack": 0, + "cost": 2, + "health": 0, + "description": "Stun an attacking enemy.\r\nCreate a Yasuo in your deck.", + "descriptionRaw": "Stun an attacking enemy.\r\nCreate a Yasuo in your deck.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"Hasagi!\" - Yasuo", + "artistName": "Max Grecke", + "name": "Yasuo's Steel Tempest", + "cardCode": "01IO015T2", + "keywords": [ + "Fast" + ], + "keywordRefs": [ + "Fast" + ], + "spellSpeed": "Fast", + "spellSpeedRef": "Fast", + "rarity": "None", + "rarityRef": "None", + "subtypes": [], + "supertype": "Champion", + "type": "Spell", + "collectible": false, + "set": "Set1" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set1/en_us/img/cards/01IO020.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set1/en_us/img/cards/01IO020-full.png" + } + ], + "regions": [ + "Ionia" + ], + "regionRefs": [ + "Ionia" + ], + "attack": 2, + "cost": 2, + "health": 3, + "description": "When I'm summoned, give other allies +1|+0 this round.", + "descriptionRaw": "When I'm summoned, give other allies +1|+0 this round.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"On this day, yours will become the face of discipline, training, humility, and balance. Today, you become Kinkou.\"", + "artistName": "SIXMOREVODKA", + "name": "Keeper of Masks", + "cardCode": "01IO020", + "keywords": [], + "keywordRefs": [], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "COMMON", + "rarityRef": "Common", + "subtypes": [], + "supertype": "", + "type": "Unit", + "collectible": true, + "set": "Set1" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set1/en_us/img/cards/01IO045.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set1/en_us/img/cards/01IO045-full.png" + } + ], + "regions": [ + "Ionia" + ], + "regionRefs": [ + "Ionia" + ], + "attack": 2, + "cost": 2, + "health": 2, + "description": "Support: Give my supported ally Lifesteal this round.", + "descriptionRaw": "Support: Give my supported ally Lifesteal this round.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"During winter's reign, we heard the tread of\nFootsteps 'cross the snowy floor. \nIn its wake, new vine and leaf emerged to rearrange\nThe forest floor and herald season's change.\"\n- Shon-Xan poem", + "artistName": "SIXMOREVODKA", + "name": "Herald of Spring", + "cardCode": "01IO045", + "keywords": [ + "Support" + ], + "keywordRefs": [ + "Support" + ], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "COMMON", + "rarityRef": "Common", + "subtypes": [], + "supertype": "", + "type": "Unit", + "collectible": true, + "set": "Set1" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set1/en_us/img/cards/01IO008.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set1/en_us/img/cards/01IO008-full.png" + } + ], + "regions": [ + "Ionia" + ], + "regionRefs": [ + "Ionia" + ], + "attack": 1, + "cost": 2, + "health": 3, + "description": "When you Stun or Recall a unit, grant me +2|+0.", + "descriptionRaw": "When you Stun or Recall a unit, grant me +2|+0.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"Oh, so you think I'm 'cute'? 'Fuzzy'?? Let's see how 'adorable' you find THIS!\"", + "artistName": "SIXMOREVODKA", + "name": "Fae Bladetwirler", + "cardCode": "01IO008", + "keywords": [ + "Quick Attack" + ], + "keywordRefs": [ + "QuickStrike" + ], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "RARE", + "rarityRef": "Rare", + "subtypes": [ + "YORDLE" + ], + "supertype": "", + "type": "Unit", + "collectible": true, + "set": "Set1" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set1/en_us/img/cards/01IO040.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set1/en_us/img/cards/01IO040-full.png" + } + ], + "regions": [ + "Ionia" + ], + "regionRefs": [ + "Ionia" + ], + "attack": 2, + "cost": 4, + "health": 2, + "description": "", + "descriptionRaw": "", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"Once, this place held our schools, our temples, our homes. Now, we are left to skulk about its shadow-infested ruins. Zed's Order has defiled the legacy of this sacred place--I will be sure they regret it.\"", + "artistName": "SIXMOREVODKA", + "name": "Kinkou Lifeblade", + "cardCode": "01IO040", + "keywords": [ + "Lifesteal", + "Elusive" + ], + "keywordRefs": [ + "Lifesteal", + "Elusive" + ], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "COMMON", + "rarityRef": "Common", + "subtypes": [], + "supertype": "", + "type": "Unit", + "collectible": true, + "set": "Set1" + }, + { + "associatedCards": [], + "associatedCardRefs": [ + "01IO041T2", + "01IO041T1" + ], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set1/en_us/img/cards/01IO041.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set1/en_us/img/cards/01IO041-full.png" + } + ], + "regions": [ + "Ionia" + ], + "regionRefs": [ + "Ionia" + ], + "attack": 4, + "cost": 5, + "health": 3, + "description": "Round End: Create in hand a random spell from your regions.", + "descriptionRaw": "Round End: Create in hand a random spell from your regions.", + "levelupDescription": "You're Enlightened.", + "levelupDescriptionRaw": "You're Enlightened.", + "flavorText": "\"Through reflection, we can focus the mind, and find a path around any obstacle.\"", + "artistName": "SIXMOREVODKA", + "name": "Karma", + "cardCode": "01IO041", + "keywords": [], + "keywordRefs": [], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "Champion", + "rarityRef": "Champion", + "subtypes": [], + "supertype": "Champion", + "type": "Unit", + "collectible": true, + "set": "Set1" + }, + { + "associatedCards": [], + "associatedCardRefs": [ + "01IO041", + "01IO041T2" + ], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set1/en_us/img/cards/01IO041T1.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set1/en_us/img/cards/01IO041T1-full.png" + } + ], + "regions": [ + "Ionia" + ], + "regionRefs": [ + "Ionia" + ], + "attack": 5, + "cost": 5, + "health": 4, + "description": "Round End: Create in hand a random spell from your regions.\r\nWhen you play a spell, copy it with the same targets.", + "descriptionRaw": "Round End: Create in hand a random spell from your regions.\r\nWhen you play a spell, copy it with the same targets.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"We'll bring peace to Ionia, whatever the cost.\"", + "artistName": "SIXMOREVODKA", + "name": "Karma", + "cardCode": "01IO041T1", + "keywords": [ + "Imbue" + ], + "keywordRefs": [ + "Imbue" + ], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "None", + "rarityRef": "None", + "subtypes": [], + "supertype": "Champion", + "type": "Unit", + "collectible": false, + "set": "Set1" + }, + { + "associatedCards": [], + "associatedCardRefs": [ + "01IO041", + "01IO041T1" + ], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set1/en_us/img/cards/01IO041T2.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set1/en_us/img/cards/01IO041T2-full.png" + } + ], + "regions": [ + "Ionia" + ], + "regionRefs": [ + "Ionia" + ], + "attack": 0, + "cost": 2, + "health": 0, + "description": "Create in hand another random spell from your regions.\r\nEnlightened: Create 2 instead.\r\nCreate a Karma in your deck.", + "descriptionRaw": "Create in hand another random spell from your regions.\r\nEnlightened: Create 2 instead.\r\nCreate a Karma in your deck.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "“When your hope wavers, know that you are never alone. The past is always by our side. It has known myriad tomorrows and all the hope that they bring.” - Karma", + "artistName": "Kudos Productions", + "name": "Karma's Insight of Ages", + "cardCode": "01IO041T2", + "keywords": [ + "Burst" + ], + "keywordRefs": [ + "Burst" + ], + "spellSpeed": "Burst", + "spellSpeedRef": "Burst", + "rarity": "None", + "rarityRef": "None", + "subtypes": [], + "supertype": "Champion", + "type": "Spell", + "collectible": false, + "set": "Set1" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set1/en_us/img/cards/01IO011.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set1/en_us/img/cards/01IO011-full.png" + } + ], + "regions": [ + "Ionia" + ], + "regionRefs": [ + "Ionia" + ], + "attack": 0, + "cost": 1, + "health": 0, + "description": "Recall an ally.", + "descriptionRaw": "Recall an ally.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "The wise combatant knows not only tenacity, but restraint. A successful retreat guarantees a chance to fight a better fight.", + "artistName": "Kudos Productions", + "name": "Recall", + "cardCode": "01IO011", + "keywords": [ + "Fast" + ], + "keywordRefs": [ + "Fast" + ], + "spellSpeed": "Fast", + "spellSpeedRef": "Fast", + "rarity": "COMMON", + "rarityRef": "Common", + "subtypes": [], + "supertype": "", + "type": "Spell", + "collectible": true, + "set": "Set1" + }, + { + "associatedCards": [], + "associatedCardRefs": [ + "01IO009T3", + "01IO009T2", + "01IO009T1" + ], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set1/en_us/img/cards/01IO009.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set1/en_us/img/cards/01IO009-full.png" + } + ], + "regions": [ + "Ionia" + ], + "regionRefs": [ + "Ionia" + ], + "attack": 3, + "cost": 3, + "health": 2, + "description": "Attack: Summon an attacking Living Shadow with my stats.", + "descriptionRaw": "Attack: Summon an attacking Living Shadow with my stats.", + "levelupDescription": "I've seen myself or my shadows strike the enemy Nexus twice.", + "levelupDescriptionRaw": "I've seen myself or my shadows strike the enemy Nexus twice.", + "flavorText": "\"Balance is a fool's master. The shadows have shown me true power.\"", + "artistName": "SIXMOREVODKA", + "name": "Zed", + "cardCode": "01IO009", + "keywords": [ + "Quick Attack" + ], + "keywordRefs": [ + "QuickStrike" + ], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "Champion", + "rarityRef": "Champion", + "subtypes": [], + "supertype": "Champion", + "type": "Unit", + "collectible": true, + "set": "Set1" + }, + { + "associatedCards": [], + "associatedCardRefs": [ + "01IO009", + "01IO009T3", + "01IO009T1" + ], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set1/en_us/img/cards/01IO009T2.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set1/en_us/img/cards/01IO009T2-full.png" + } + ], + "regions": [ + "Ionia" + ], + "regionRefs": [ + "Ionia" + ], + "attack": 4, + "cost": 3, + "health": 3, + "description": "Attack: Summon an attacking Living Shadow with my stats and positive keywords.", + "descriptionRaw": "Attack: Summon an attacking Living Shadow with my stats and positive keywords.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"Few men think to look back at their shadow. It is their last mistake.\"", + "artistName": "SIXMOREVODKA", + "name": "Zed", + "cardCode": "01IO009T2", + "keywords": [ + "Quick Attack" + ], + "keywordRefs": [ + "QuickStrike" + ], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "None", + "rarityRef": "None", + "subtypes": [], + "supertype": "Champion", + "type": "Unit", + "collectible": false, + "set": "Set1" + }, + { + "associatedCards": [], + "associatedCardRefs": [ + "01IO009T1", + "01IO009", + "01IO009T2" + ], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set1/en_us/img/cards/01IO009T3.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set1/en_us/img/cards/01IO009T3-full.png" + } + ], + "regions": [ + "Ionia" + ], + "regionRefs": [ + "Ionia" + ], + "attack": 0, + "cost": 3, + "health": 0, + "description": "Recall an ally to summon a Living Shadow in its place.\r\nCreate a Zed in your deck.", + "descriptionRaw": "Recall an ally to summon a Living Shadow in its place.\r\nCreate a Zed in your deck.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "Do you face the enemy that you believe you see? Or is it a trick of the shadows?", + "artistName": "Max Grecke", + "name": "Zed's Shadowshift", + "cardCode": "01IO009T3", + "keywords": [ + "Fast" + ], + "keywordRefs": [ + "Fast" + ], + "spellSpeed": "Fast", + "spellSpeedRef": "Fast", + "rarity": "None", + "rarityRef": "None", + "subtypes": [], + "supertype": "Champion", + "type": "Spell", + "collectible": false, + "set": "Set1" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set1/en_us/img/cards/01IO009T1.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set1/en_us/img/cards/01IO009T1-full.png" + } + ], + "regions": [ + "Ionia" + ], + "regionRefs": [ + "Ionia" + ], + "attack": 3, + "cost": 3, + "health": 2, + "description": "", + "descriptionRaw": "", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "A blade of shadow is as sharp as one of steel.", + "artistName": "SIXMOREVODKA", + "name": "Living Shadow", + "cardCode": "01IO009T1", + "keywords": [ + "Ephemeral" + ], + "keywordRefs": [ + "Ephemeral" + ], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "None", + "rarityRef": "None", + "subtypes": [], + "supertype": "", + "type": "Unit", + "collectible": false, + "set": "Set1" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set1/en_us/img/cards/01IO014.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set1/en_us/img/cards/01IO014-full.png" + } + ], + "regions": [ + "Ionia" + ], + "regionRefs": [ + "Ionia" + ], + "attack": 3, + "cost": 3, + "health": 1, + "description": "When I'm summoned, grant all allies in hand +1|+1.", + "descriptionRaw": "When I'm summoned, grant all allies in hand +1|+1.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "Ionian knowledge is outlined in the written word, but it is the tales and teachings of Ionia's venerated elders that give ancient text new life.", + "artistName": "SIXMOREVODKA", + "name": "Greenglade Elder", + "cardCode": "01IO014", + "keywords": [], + "keywordRefs": [], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "COMMON", + "rarityRef": "Common", + "subtypes": [], + "supertype": "", + "type": "Unit", + "collectible": true, + "set": "Set1" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set1/en_us/img/cards/01IO005.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set1/en_us/img/cards/01IO005-full.png" + } + ], + "regions": [ + "Ionia" + ], + "regionRefs": [ + "Ionia" + ], + "attack": 1, + "cost": 1, + "health": 1, + "description": "", + "descriptionRaw": "", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"This might sound crazy, but the last thing I remember was a... fuzzy sensation...?\" - Navori Brigand", + "artistName": "SIXMOREVODKA", + "name": "Nimble Poro", + "cardCode": "01IO005", + "keywords": [ + "Quick Attack" + ], + "keywordRefs": [ + "QuickStrike" + ], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "COMMON", + "rarityRef": "Common", + "subtypes": [ + "PORO" + ], + "supertype": "", + "type": "Unit", + "collectible": true, + "set": "Set1" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set1/en_us/img/cards/01IO044.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set1/en_us/img/cards/01IO044-full.png" + } + ], + "regions": [ + "Ionia" + ], + "regionRefs": [ + "Ionia" + ], + "attack": 2, + "cost": 2, + "health": 2, + "description": "To play me, Recall an ally.", + "descriptionRaw": "To play me, Recall an ally.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"C'mon, we gotta get out of here! My name? I'll explain on the way, I promise....\"", + "artistName": "SIXMOREVODKA", + "name": "Navori Conspirator", + "cardCode": "01IO044", + "keywords": [ + "Elusive" + ], + "keywordRefs": [ + "Elusive" + ], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "COMMON", + "rarityRef": "Common", + "subtypes": [], + "supertype": "", + "type": "Unit", + "collectible": true, + "set": "Set1" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set1/en_us/img/cards/01IO023.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set1/en_us/img/cards/01IO023-full.png" + } + ], + "regions": [ + "Ionia" + ], + "regionRefs": [ + "Ionia" + ], + "attack": 4, + "cost": 5, + "health": 4, + "description": "Play: Grant an ally in hand +3|+3.", + "descriptionRaw": "Play: Grant an ally in hand +3|+3.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"In times of conflict, villagers sought the ancient guardian of Autumn Valley. Those who swayed her heart were granted blessings that could turn the tide of battle.\"\n- Saga of the First Lands", + "artistName": "SIXMOREVODKA", + "name": "Jeweled Protector", + "cardCode": "01IO023", + "keywords": [], + "keywordRefs": [], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "RARE", + "rarityRef": "Rare", + "subtypes": [], + "supertype": "", + "type": "Unit", + "collectible": true, + "set": "Set1" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set1/en_us/img/cards/01IO029.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set1/en_us/img/cards/01IO029-full.png" + } + ], + "regions": [ + "Ionia" + ], + "regionRefs": [ + "Ionia" + ], + "attack": 0, + "cost": 2, + "health": 0, + "description": "Grant all allies in hand +1|+0.", + "descriptionRaw": "Grant all allies in hand +1|+0.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"Not just seeds, younglings. The legacy of the land itself, promises for our prosperous future.\" - Karma", + "artistName": "Wild Blue Studios", + "name": "Sown Seeds", + "cardCode": "01IO029", + "keywords": [ + "Burst" + ], + "keywordRefs": [ + "Burst" + ], + "spellSpeed": "Burst", + "spellSpeedRef": "Burst", + "rarity": "RARE", + "rarityRef": "Rare", + "subtypes": [], + "supertype": "", + "type": "Spell", + "collectible": true, + "set": "Set1" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set1/en_us/img/cards/01IO003.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set1/en_us/img/cards/01IO003-full.png" + } + ], + "regions": [ + "Ionia" + ], + "regionRefs": [ + "Ionia" + ], + "attack": 0, + "cost": 3, + "health": 0, + "description": "Remove Ephemeral from an ally to grant it to an enemy.", + "descriptionRaw": "Remove Ephemeral from an ally to grant it to an enemy.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"I am the blade in the darkness.\" - Zed\n\n", + "artistName": "Kudos Productions", + "name": "Death Mark", + "cardCode": "01IO003", + "keywords": [ + "Fast" + ], + "keywordRefs": [ + "Fast" + ], + "spellSpeed": "Fast", + "spellSpeedRef": "Fast", + "rarity": "RARE", + "rarityRef": "Rare", + "subtypes": [], + "supertype": "", + "type": "Spell", + "collectible": true, + "set": "Set1" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set1/en_us/img/cards/01IO047.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set1/en_us/img/cards/01IO047-full.png" + } + ], + "regions": [ + "Ionia" + ], + "regionRefs": [ + "Ionia" + ], + "attack": 0, + "cost": 6, + "health": 0, + "description": "Grant ALL battling followers Ephemeral.", + "descriptionRaw": "Grant ALL battling followers Ephemeral.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "When the flows of magic are diverted from their balanced state, they surge from the spirit world into the mortal realm--often with startling results.", + "artistName": "Kudos Productions", + "name": "Shadow Flare", + "cardCode": "01IO047", + "keywords": [ + "Fast" + ], + "keywordRefs": [ + "Fast" + ], + "spellSpeed": "Fast", + "spellSpeedRef": "Fast", + "rarity": "EPIC", + "rarityRef": "Epic", + "subtypes": [], + "supertype": "", + "type": "Spell", + "collectible": true, + "set": "Set1" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set1/en_us/img/cards/01IO026.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set1/en_us/img/cards/01IO026-full.png" + } + ], + "regions": [ + "Ionia" + ], + "regionRefs": [ + "Ionia" + ], + "attack": 2, + "cost": 1, + "health": 1, + "description": "Play: Grant an ally in hand +1|+0.", + "descriptionRaw": "Play: Grant an ally in hand +1|+0.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "“Took years to cultivate this deadly physique! Tireless days of spotting birds, describing clouds, and lifting tray after tray of sweet buns! Who else has such dedication?”", + "artistName": "SIXMOREVODKA", + "name": "Inspiring Mentor", + "cardCode": "01IO026", + "keywords": [], + "keywordRefs": [], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "COMMON", + "rarityRef": "Common", + "subtypes": [], + "supertype": "", + "type": "Unit", + "collectible": true, + "set": "Set1" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set1/en_us/img/cards/01IO024.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set1/en_us/img/cards/01IO024-full.png" + } + ], + "regions": [ + "Ionia" + ], + "regionRefs": [ + "Ionia" + ], + "attack": 0, + "cost": 6, + "health": 0, + "description": "Summon 2 exact copies of an ally. They're Ephemeral.", + "descriptionRaw": "Summon 2 exact copies of an ally. They're Ephemeral.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"Shen is one man caught between the perils of two worlds, he will fail them both. I devote myself to Ionia alone.\" - Zed", + "artistName": "Kudos Productions", + "name": "Dawn and Dusk", + "cardCode": "01IO024", + "keywords": [ + "Slow" + ], + "keywordRefs": [ + "Slow" + ], + "spellSpeed": "Slow", + "spellSpeedRef": "Slow", + "rarity": "RARE", + "rarityRef": "Rare", + "subtypes": [], + "supertype": "", + "type": "Spell", + "collectible": true, + "set": "Set1" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set1/en_us/img/cards/01IO028.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set1/en_us/img/cards/01IO028-full.png" + } + ], + "regions": [ + "Ionia" + ], + "regionRefs": [ + "Ionia" + ], + "attack": 2, + "cost": 3, + "health": 2, + "description": "Play: Grant me +3|+0 or +0|+3.", + "descriptionRaw": "Play: Grant me +3|+0 or +0|+3.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "One of the oldest inhabitants of the Greenglade, it has withstood the test of time through constant adaptation.", + "artistName": "SIXMOREVODKA", + "name": "Scaled Snapper", + "cardCode": "01IO028", + "keywords": [], + "keywordRefs": [], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "COMMON", + "rarityRef": "Common", + "subtypes": [], + "supertype": "", + "type": "Unit", + "collectible": true, + "set": "Set1" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set1/en_us/img/cards/01IO057.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set1/en_us/img/cards/01IO057-full.png" + } + ], + "regions": [ + "Ionia" + ], + "regionRefs": [ + "Ionia" + ], + "attack": 2, + "cost": 3, + "health": 1, + "description": "When I'm summoned, draw 1.", + "descriptionRaw": "When I'm summoned, draw 1.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "Gracefully she glides\nNoiseless steps in the shadows\nClaws the only trace.", + "artistName": "JiHun Lee", + "name": "Shadow Assassin", + "cardCode": "01IO057", + "keywords": [ + "Elusive" + ], + "keywordRefs": [ + "Elusive" + ], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "COMMON", + "rarityRef": "Common", + "subtypes": [], + "supertype": "", + "type": "Unit", + "collectible": true, + "set": "Set1" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set1/en_us/img/cards/01IO028T2.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set1/en_us/img/cards/01IO028T2-full.png" + } + ], + "regions": [ + "Ionia" + ], + "regionRefs": [ + "Ionia" + ], + "attack": 5, + "cost": 3, + "health": 2, + "description": "", + "descriptionRaw": "", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "One of the oldest inhabitants of the Greenglade, it has withstood the test of time through constant adaptation.", + "artistName": "SIXMOREVODKA", + "name": "Scaled Snapper", + "cardCode": "01IO028T2", + "keywords": [], + "keywordRefs": [], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "None", + "rarityRef": "None", + "subtypes": [], + "supertype": "", + "type": "Unit", + "collectible": false, + "set": "Set1" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set1/en_us/img/cards/01IO028T1.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set1/en_us/img/cards/01IO028T1-full.png" + } + ], + "regions": [ + "Ionia" + ], + "regionRefs": [ + "Ionia" + ], + "attack": 2, + "cost": 3, + "health": 5, + "description": "", + "descriptionRaw": "", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "One of the oldest inhabitants of the Greenglade, it has withstood the test of time through constant adaptation.", + "artistName": "SIXMOREVODKA", + "name": "Scaled Snapper", + "cardCode": "01IO028T1", + "keywords": [], + "keywordRefs": [], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "None", + "rarityRef": "None", + "subtypes": [], + "supertype": "", + "type": "Unit", + "collectible": false, + "set": "Set1" + }, + { + "associatedCards": [], + "associatedCardRefs": [ + "01IO032T2", + "01IO032T1" + ], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set1/en_us/img/cards/01IO032.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set1/en_us/img/cards/01IO032-full.png" + } + ], + "regions": [ + "Ionia" + ], + "regionRefs": [ + "Ionia" + ], + "attack": 3, + "cost": 4, + "health": 5, + "description": "Support: Give my supported ally Barrier this round.", + "descriptionRaw": "Support: Give my supported ally Barrier this round.", + "levelupDescription": "I've seen allies gain Barrier 5+ times.", + "levelupDescriptionRaw": "I've seen allies gain Barrier 5+ times.", + "flavorText": "\"Like hands clasped, the mortal and spirit realms intertwine...\" ", + "artistName": "SIXMOREVODKA", + "name": "Shen", + "cardCode": "01IO032", + "keywords": [ + "Barrier", + "Support" + ], + "keywordRefs": [ + "Barrier", + "Support" + ], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "Champion", + "rarityRef": "Champion", + "subtypes": [], + "supertype": "Champion", + "type": "Unit", + "collectible": true, + "set": "Set1" + }, + { + "associatedCards": [], + "associatedCardRefs": [ + "01IO032", + "01IO032T2" + ], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set1/en_us/img/cards/01IO032T1.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set1/en_us/img/cards/01IO032T1-full.png" + } + ], + "regions": [ + "Ionia" + ], + "regionRefs": [ + "Ionia" + ], + "attack": 4, + "cost": 4, + "health": 6, + "description": "Support: Give my supported ally Barrier this round.\r\nWhen an ally gets Barrier, give it +3|+0 this round.", + "descriptionRaw": "Support: Give my supported ally Barrier this round.\r\nWhen an ally gets Barrier, give it +3|+0 this round.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"...Their actions exist in harmony, and under my watch, neither shall overtake the other.\"", + "artistName": "SIXMOREVODKA", + "name": "Shen", + "cardCode": "01IO032T1", + "keywords": [ + "Barrier", + "Support" + ], + "keywordRefs": [ + "Barrier", + "Support" + ], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "None", + "rarityRef": "None", + "subtypes": [], + "supertype": "Champion", + "type": "Unit", + "collectible": false, + "set": "Set1" + }, + { + "associatedCards": [], + "associatedCardRefs": [ + "01IO032T1", + "01IO032" + ], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set1/en_us/img/cards/01IO032T2.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set1/en_us/img/cards/01IO032T2-full.png" + } + ], + "regions": [ + "Ionia" + ], + "regionRefs": [ + "Ionia" + ], + "attack": 0, + "cost": 6, + "health": 0, + "description": "Swap 2 allies. Give them Barrier this round.\r\nCreate a Shen in your deck.", + "descriptionRaw": "Swap 2 allies. Give them Barrier this round.\r\nCreate a Shen in your deck.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"With balanced steps, I go.\" - Shen\n", + "artistName": "SIXMOREVODKA", + "name": "Shen's Stand United", + "cardCode": "01IO032T2", + "keywords": [ + "Burst" + ], + "keywordRefs": [ + "Burst" + ], + "spellSpeed": "Burst", + "spellSpeedRef": "Burst", + "rarity": "None", + "rarityRef": "None", + "subtypes": [], + "supertype": "Champion", + "type": "Spell", + "collectible": false, + "set": "Set1" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set1/en_us/img/cards/01IO013.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set1/en_us/img/cards/01IO013-full.png" + } + ], + "regions": [ + "Ionia" + ], + "regionRefs": [ + "Ionia" + ], + "attack": 4, + "cost": 1, + "health": 3, + "description": "", + "descriptionRaw": "", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"What would you sacrifice for power? Your path begins with an oath, and ends only when it has taken all you have to give.\" - Zed", + "artistName": "SIXMOREVODKA", + "name": "Shadow Fiend", + "cardCode": "01IO013", + "keywords": [ + "Ephemeral" + ], + "keywordRefs": [ + "Ephemeral" + ], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "COMMON", + "rarityRef": "Common", + "subtypes": [], + "supertype": "", + "type": "Unit", + "collectible": true, + "set": "Set1" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set1/en_us/img/cards/01IO018.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set1/en_us/img/cards/01IO018-full.png" + } + ], + "regions": [ + "Ionia" + ], + "regionRefs": [ + "Ionia" + ], + "attack": 0, + "cost": 1, + "health": 0, + "description": "Give an ally +1|+0 and Quick Attack this round.", + "descriptionRaw": "Give an ally +1|+0 and Quick Attack this round.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "Combat is merely a race to take the life of another before they take yours.", + "artistName": "Kudos Productions", + "name": "Rush", + "cardCode": "01IO018", + "keywords": [ + "Burst" + ], + "keywordRefs": [ + "Burst" + ], + "spellSpeed": "Burst", + "spellSpeedRef": "Burst", + "rarity": "COMMON", + "rarityRef": "Common", + "subtypes": [], + "supertype": "", + "type": "Spell", + "collectible": true, + "set": "Set1" + }, + { + "associatedCards": [], + "associatedCardRefs": [ + "01IO056T1" + ], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set1/en_us/img/cards/01IO056.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set1/en_us/img/cards/01IO056-full.png" + } + ], + "regions": [ + "Ionia" + ], + "regionRefs": [ + "Ionia" + ], + "attack": 6, + "cost": 7, + "health": 6, + "description": "Play: Stun 2 enemies.", + "descriptionRaw": "Play: Stun 2 enemies.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"When I was a child, I asked my brother: 'Does the wind flee, or does it follow?' He followed me then for guidance. I follow him now for justice.\"\n", + "artistName": "Aron Elekes", + "name": "Yone, Windchaser", + "cardCode": "01IO056", + "keywords": [], + "keywordRefs": [], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "RARE", + "rarityRef": "Rare", + "subtypes": [], + "supertype": "", + "type": "Unit", + "collectible": true, + "set": "Set1" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set1/en_us/img/cards/01IO056T1.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set1/en_us/img/cards/01IO056T1-full.png" + } + ], + "regions": [ + "Ionia" + ], + "regionRefs": [ + "Ionia" + ], + "attack": 0, + "cost": 0, + "health": 0, + "description": "Stun 2 enemies.", + "descriptionRaw": "Stun 2 enemies.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"Stand aside. I have come for the Unforgiven.\" - Yone, Windchaser", + "artistName": "Kudos Productions", + "name": "Staggering Strikes", + "cardCode": "01IO056T1", + "keywords": [ + "Skill" + ], + "keywordRefs": [ + "Skill" + ], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "None", + "rarityRef": "None", + "subtypes": [], + "supertype": "", + "type": "Ability", + "collectible": false, + "set": "Set1" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set1/en_us/img/cards/01IO016.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set1/en_us/img/cards/01IO016-full.png" + } + ], + "regions": [ + "Ionia" + ], + "regionRefs": [ + "Ionia" + ], + "attack": 4, + "cost": 6, + "health": 4, + "description": "Play: Create an exact copy of a card in hand other than Zephyr Sage.", + "descriptionRaw": "Play: Create an exact copy of a card in hand other than Zephyr Sage.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"As the warrior wept for his loss, the elder consoled him: 'Seek the sage of the skies. Only he can return that which is lost to this world, but still held in memory.'\"\n- Saga of the First Lands", + "artistName": "SIXMOREVODKA", + "name": "Zephyr Sage", + "cardCode": "01IO016", + "keywords": [], + "keywordRefs": [], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "RARE", + "rarityRef": "Rare", + "subtypes": [], + "supertype": "", + "type": "Unit", + "collectible": true, + "set": "Set1" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set1/en_us/img/cards/01IO036.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set1/en_us/img/cards/01IO036-full.png" + } + ], + "regions": [ + "Ionia" + ], + "regionRefs": [ + "Ionia" + ], + "attack": 2, + "cost": 2, + "health": 2, + "description": "Strike: Reduce the cost of the most expensive unit in your hand by 1.", + "descriptionRaw": "Strike: Reduce the cost of the most expensive unit in your hand by 1.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"Patrol, we've one... no... TWO massive furry creatures coming our way! Call for ba--Oh. Hold on. Scope's wrong way 'round again...\"", + "artistName": "SIXMOREVODKA", + "name": "Greenglade Lookout", + "cardCode": "01IO036", + "keywords": [], + "keywordRefs": [], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "COMMON", + "rarityRef": "Common", + "subtypes": [ + "YORDLE" + ], + "supertype": "", + "type": "Unit", + "collectible": true, + "set": "Set1" + }, + { + "associatedCards": [], + "associatedCardRefs": [ + "01IO033T1" + ], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set1/en_us/img/cards/01IO033.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set1/en_us/img/cards/01IO033-full.png" + } + ], + "regions": [ + "Ionia" + ], + "regionRefs": [ + "Ionia" + ], + "attack": 7, + "cost": 9, + "health": 6, + "description": "Play: Recall 3 enemies.", + "descriptionRaw": "Play: Recall 3 enemies.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"There we were, tearing across the meadow and suddenly, this KID just leaps out from nowhere and BAM, BAM, BAM--knocks the wind right outta us!\" - Navori Brigand", + "artistName": "SIXMOREVODKA", + "name": "Minah Swiftfoot", + "cardCode": "01IO033", + "keywords": [ + "Quick Attack" + ], + "keywordRefs": [ + "QuickStrike" + ], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "EPIC", + "rarityRef": "Epic", + "subtypes": [], + "supertype": "", + "type": "Unit", + "collectible": true, + "set": "Set1" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set1/en_us/img/cards/01IO001.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set1/en_us/img/cards/01IO001-full.png" + } + ], + "regions": [ + "Ionia" + ], + "regionRefs": [ + "Ionia" + ], + "attack": 0, + "cost": 7, + "health": 0, + "description": "Heal an ally or your Nexus 7. Draw 1.", + "descriptionRaw": "Heal an ally or your Nexus 7. Draw 1.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"Only when the mind is elevated can the body be made whole.\" - Karma", + "artistName": "Kudos Productions", + "name": "Ritual of Renewal", + "cardCode": "01IO001", + "keywords": [ + "Slow" + ], + "keywordRefs": [ + "Slow" + ], + "spellSpeed": "Slow", + "spellSpeedRef": "Slow", + "rarity": "RARE", + "rarityRef": "Rare", + "subtypes": [], + "supertype": "", + "type": "Spell", + "collectible": true, + "set": "Set1" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set1/en_us/img/cards/01IO010.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set1/en_us/img/cards/01IO010-full.png" + } + ], + "regions": [ + "Ionia" + ], + "regionRefs": [ + "Ionia" + ], + "attack": 0, + "cost": 6, + "health": 0, + "description": "Swap 2 allies. Give them Barrier this round.", + "descriptionRaw": "Swap 2 allies. Give them Barrier this round.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"With balanced steps, I go.\" - Shen\n", + "artistName": "SIXMOREVODKA", + "name": "Stand United", + "cardCode": "01IO010", + "keywords": [ + "Burst" + ], + "keywordRefs": [ + "Burst" + ], + "spellSpeed": "Burst", + "spellSpeedRef": "Burst", + "rarity": "RARE", + "rarityRef": "Rare", + "subtypes": [], + "supertype": "", + "type": "Spell", + "collectible": true, + "set": "Set1" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set1/en_us/img/cards/01IO022.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set1/en_us/img/cards/01IO022-full.png" + } + ], + "regions": [ + "Ionia" + ], + "regionRefs": [ + "Ionia" + ], + "attack": 0, + "cost": 1, + "health": 0, + "description": "Give an ally Elusive this round.", + "descriptionRaw": "Give an ally Elusive this round.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"Stay hidden, and do not return until your task is finished.\" - Zed", + "artistName": "Kudos Productions", + "name": "Ghost", + "cardCode": "01IO022", + "keywords": [ + "Burst" + ], + "keywordRefs": [ + "Burst" + ], + "spellSpeed": "Burst", + "spellSpeedRef": "Burst", + "rarity": "COMMON", + "rarityRef": "Common", + "subtypes": [], + "supertype": "", + "type": "Spell", + "collectible": true, + "set": "Set1" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set1/en_us/img/cards/01IO021.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set1/en_us/img/cards/01IO021-full.png" + } + ], + "regions": [ + "Ionia" + ], + "regionRefs": [ + "Ionia" + ], + "attack": 4, + "cost": 7, + "health": 3, + "description": "When I'm summoned, give other allies +2|+2 this round.", + "descriptionRaw": "When I'm summoned, give other allies +2|+2 this round.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"Spring blooms first on Ionia's cliffsides, where the beating of newly formed wings bathes the land in the season's gentle breezes.\"\n- Saga of the First Lands", + "artistName": "SIXMOREVODKA", + "name": "Windfarer Hatchling", + "cardCode": "01IO021", + "keywords": [ + "Elusive" + ], + "keywordRefs": [ + "Elusive" + ], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "EPIC", + "rarityRef": "Epic", + "subtypes": [], + "supertype": "", + "type": "Unit", + "collectible": true, + "set": "Set1" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set1/en_us/img/cards/01IO054.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set1/en_us/img/cards/01IO054-full.png" + } + ], + "regions": [ + "Ionia" + ], + "regionRefs": [ + "Ionia" + ], + "attack": 0, + "cost": 2, + "health": 0, + "description": "Create in hand another random spell from your regions.\r\nEnlightened: Create 2 instead.", + "descriptionRaw": "Create in hand another random spell from your regions.\r\nEnlightened: Create 2 instead.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "“When your hope wavers, know that you are never alone. The past is always by our side. It has known myriad tomorrows and all the hope that they bring.” - Karma", + "artistName": "Kudos Productions", + "name": "Insight of Ages", + "cardCode": "01IO054", + "keywords": [ + "Burst" + ], + "keywordRefs": [ + "Burst" + ], + "spellSpeed": "Burst", + "spellSpeedRef": "Burst", + "rarity": "RARE", + "rarityRef": "Rare", + "subtypes": [], + "supertype": "", + "type": "Spell", + "collectible": true, + "set": "Set1" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set1/en_us/img/cards/01IO027.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set1/en_us/img/cards/01IO027-full.png" + } + ], + "regions": [ + "Ionia" + ], + "regionRefs": [ + "Ionia" + ], + "attack": 3, + "cost": 2, + "health": 1, + "description": "Nexus Strike: Create a copy of me in hand.", + "descriptionRaw": "Nexus Strike: Create a copy of me in hand.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"Flesh is untrustworthy. Fragile. Delicate as the borders between light and shadow.\"", + "artistName": "SIXMOREVODKA", + "name": "Silent Shadowseer", + "cardCode": "01IO027", + "keywords": [ + "Elusive", + "Ephemeral" + ], + "keywordRefs": [ + "Elusive", + "Ephemeral" + ], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "EPIC", + "rarityRef": "Epic", + "subtypes": [], + "supertype": "", + "type": "Unit", + "collectible": true, + "set": "Set1" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set1/en_us/img/cards/01IO031.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set1/en_us/img/cards/01IO031-full.png" + } + ], + "regions": [ + "Ionia" + ], + "regionRefs": [ + "Ionia" + ], + "attack": 3, + "cost": 6, + "health": 5, + "description": "Your Burst and Focus spells cost 1 less.", + "descriptionRaw": "Your Burst and Focus spells cost 1 less.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "Its songs could be heard from the villages--long, low waves of sound rippling from sky to hillside, each as formless and strange as the afternoon clouds.", + "artistName": "SIXMOREVODKA", + "name": "Cloud Drinker", + "cardCode": "01IO031", + "keywords": [ + "Missing Translation" + ], + "keywordRefs": [ + "AuraVisualFakeKeyword" + ], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "RARE", + "rarityRef": "Rare", + "subtypes": [], + "supertype": "", + "type": "Unit", + "collectible": true, + "set": "Set1" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set1/en_us/img/cards/01IO002.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set1/en_us/img/cards/01IO002-full.png" + } + ], + "regions": [ + "Ionia" + ], + "regionRefs": [ + "Ionia" + ], + "attack": 0, + "cost": 4, + "health": 0, + "description": "Recall a unit.", + "descriptionRaw": "Recall a unit.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "When invaders first set foot on Ionian soil, they found that conquering the land's inhabitants alone would not be enough.", + "artistName": "Max Grecke", + "name": "Will of Ionia", + "cardCode": "01IO002", + "keywords": [ + "Fast" + ], + "keywordRefs": [ + "Fast" + ], + "spellSpeed": "Fast", + "spellSpeedRef": "Fast", + "rarity": "COMMON", + "rarityRef": "Common", + "subtypes": [], + "supertype": "", + "type": "Spell", + "collectible": true, + "set": "Set1" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set1/en_us/img/cards/01IO033T1.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set1/en_us/img/cards/01IO033T1-full.png" + } + ], + "regions": [ + "Ionia" + ], + "regionRefs": [ + "Ionia" + ], + "attack": 0, + "cost": 0, + "health": 0, + "description": "Recall 3 enemies.", + "descriptionRaw": "Recall 3 enemies.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"We go FLYING and next thing I know I'm flat on my back!\" - Navori Brigand", + "artistName": "Kudos Productions", + "name": "Skyward Strikes", + "cardCode": "01IO033T1", + "keywords": [ + "Skill" + ], + "keywordRefs": [ + "Skill" + ], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "None", + "rarityRef": "None", + "subtypes": [], + "supertype": "", + "type": "Ability", + "collectible": false, + "set": "Set1" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set1/en_us/img/cards/01IO017.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set1/en_us/img/cards/01IO017-full.png" + } + ], + "regions": [ + "Ionia" + ], + "regionRefs": [ + "Ionia" + ], + "attack": 2, + "cost": 1, + "health": 1, + "description": "When I'm summoned, give me Elusive this round.", + "descriptionRaw": "When I'm summoned, give me Elusive this round.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"I'll get the drop on him, no problem. Get me outta there and I'll split the loot with you, make it more than worth your while!\"", + "artistName": "SIXMOREVODKA", + "name": "Navori Bladescout", + "cardCode": "01IO017", + "keywords": [], + "keywordRefs": [], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "COMMON", + "rarityRef": "Common", + "subtypes": [ + "YORDLE" + ], + "supertype": "", + "type": "Unit", + "collectible": true, + "set": "Set1" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set1/en_us/img/cards/01IO042.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set1/en_us/img/cards/01IO042-full.png" + } + ], + "regions": [ + "Ionia" + ], + "regionRefs": [ + "Ionia" + ], + "attack": 1, + "cost": 1, + "health": 1, + "description": "When you summon an ally, give me +1|+1 this round.", + "descriptionRaw": "When you summon an ally, give me +1|+1 this round.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"What's the point of fighting if there's no one to see your moves?\"", + "artistName": "SIXMOREVODKA", + "name": "Sparring Student", + "cardCode": "01IO042", + "keywords": [], + "keywordRefs": [], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "COMMON", + "rarityRef": "Common", + "subtypes": [], + "supertype": "", + "type": "Unit", + "collectible": true, + "set": "Set1" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set1/en_us/img/cards/01IO006.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set1/en_us/img/cards/01IO006-full.png" + } + ], + "regions": [ + "Ionia" + ], + "regionRefs": [ + "Ionia" + ], + "attack": 2, + "cost": 2, + "health": 1, + "description": "When you summon an ally, give me +1|+0 this round.", + "descriptionRaw": "When you summon an ally, give me +1|+0 this round.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"Hey, watch those branches! Left, LEFT!\" \n\"When I'm on YOUR shoulders, Fuzzball, we can go wherever you want. 'Til then, I got this!\"", + "artistName": "SIXMOREVODKA", + "name": "Greenglade Duo", + "cardCode": "01IO006", + "keywords": [ + "Elusive" + ], + "keywordRefs": [ + "Elusive" + ], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "RARE", + "rarityRef": "Rare", + "subtypes": [], + "supertype": "", + "type": "Unit", + "collectible": true, + "set": "Set1" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set1/en_us/img/cards/01IO050.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set1/en_us/img/cards/01IO050-full.png" + } + ], + "regions": [ + "Ionia" + ], + "regionRefs": [ + "Ionia" + ], + "attack": 3, + "cost": 4, + "health": 3, + "description": "Allegiance: Summon a 1 cost ally from your deck.", + "descriptionRaw": "Allegiance: Summon a 1 cost ally from your deck.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "Wherever she goes, she ensures that others can follow.", + "artistName": "SIXMOREVODKA", + "name": "Kinkou Wayfinder", + "cardCode": "01IO050", + "keywords": [], + "keywordRefs": [], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "RARE", + "rarityRef": "Rare", + "subtypes": [], + "supertype": "", + "type": "Unit", + "collectible": true, + "set": "Set1" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set1/en_us/img/cards/01IO048.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set1/en_us/img/cards/01IO048-full.png" + } + ], + "regions": [ + "Ionia" + ], + "regionRefs": [ + "Ionia" + ], + "attack": 4, + "cost": 5, + "health": 3, + "description": "", + "descriptionRaw": "", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"Your order has thrust us from our lands. You've proved your power, Master Zed. Now let me prove that I too am worthy of your teachings.\"", + "artistName": "SIXMOREVODKA", + "name": "Yusari", + "cardCode": "01IO048", + "keywords": [ + "Challenger", + "Elusive" + ], + "keywordRefs": [ + "Challenger", + "Elusive" + ], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "RARE", + "rarityRef": "Rare", + "subtypes": [], + "supertype": "", + "type": "Unit", + "collectible": true, + "set": "Set1" + }, + { + "associatedCards": [], + "associatedCardRefs": [ + "01IO013" + ], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set1/en_us/img/cards/01IO007.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set1/en_us/img/cards/01IO007-full.png" + } + ], + "regions": [ + "Ionia" + ], + "regionRefs": [ + "Ionia" + ], + "attack": 4, + "cost": 4, + "health": 3, + "description": "Strike: Create a Shadow Fiend in hand.", + "descriptionRaw": "Strike: Create a Shadow Fiend in hand.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "“Run. Fight. Cower. It matters not, the shadows have come for you.”", + "artistName": "SIXMOREVODKA", + "name": "Ren Shadowblade", + "cardCode": "01IO007", + "keywords": [ + "Quick Attack" + ], + "keywordRefs": [ + "QuickStrike" + ], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "EPIC", + "rarityRef": "Epic", + "subtypes": [], + "supertype": "", + "type": "Unit", + "collectible": true, + "set": "Set1" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set1/en_us/img/cards/01IO053.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set1/en_us/img/cards/01IO053-full.png" + } + ], + "regions": [ + "Ionia" + ], + "regionRefs": [ + "Ionia" + ], + "attack": 2, + "cost": 3, + "health": 2, + "description": "Enlightened: I have +4|+4.", + "descriptionRaw": "Enlightened: I have +4|+4.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"War is fostered by our basest instincts. But instinct has no power over our highest virtues: trust, patience, and contemplation.\"", + "artistName": "SIXMOREVODKA", + "name": "Emerald Awakener", + "cardCode": "01IO053", + "keywords": [ + "Lifesteal" + ], + "keywordRefs": [ + "Lifesteal" + ], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "COMMON", + "rarityRef": "Common", + "subtypes": [], + "supertype": "", + "type": "Unit", + "collectible": true, + "set": "Set1" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set1/en_us/img/cards/01IO004.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set1/en_us/img/cards/01IO004-full.png" + } + ], + "regions": [ + "Ionia" + ], + "regionRefs": [ + "Ionia" + ], + "attack": 0, + "cost": 1, + "health": 0, + "description": "Heal an ally or your Nexus 3.", + "descriptionRaw": "Heal an ally or your Nexus 3.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "Every generation, region, and family has its own home remedy--though some are undeniably more effective than others.", + "artistName": "Kudos Productions", + "name": "Health Potion", + "cardCode": "01IO004", + "keywords": [ + "Burst" + ], + "keywordRefs": [ + "Burst" + ], + "spellSpeed": "Burst", + "spellSpeedRef": "Burst", + "rarity": "COMMON", + "rarityRef": "Common", + "subtypes": [], + "supertype": "", + "type": "Spell", + "collectible": true, + "set": "Set1" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set1/en_us/img/cards/01IO049.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set1/en_us/img/cards/01IO049-full.png" + } + ], + "regions": [ + "Ionia" + ], + "regionRefs": [ + "Ionia" + ], + "attack": 0, + "cost": 4, + "health": 0, + "description": "Stop a Fast spell, Slow spell, or Skill.", + "descriptionRaw": "Stop a Fast spell, Slow spell, or Skill.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "No.", + "artistName": "Kudos Productions", + "name": "Deny", + "cardCode": "01IO049", + "keywords": [ + "Fast" + ], + "keywordRefs": [ + "Fast" + ], + "spellSpeed": "Fast", + "spellSpeedRef": "Fast", + "rarity": "RARE", + "rarityRef": "Rare", + "subtypes": [], + "supertype": "", + "type": "Spell", + "collectible": true, + "set": "Set1" + }, + { + "associatedCards": [], + "associatedCardRefs": [ + "01IO052T1" + ], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set1/en_us/img/cards/01IO052.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set1/en_us/img/cards/01IO052-full.png" + } + ], + "regions": [ + "Ionia" + ], + "regionRefs": [ + "Ionia" + ], + "attack": 1, + "cost": 2, + "health": 2, + "description": "When I'm summoned, summon a Navori Brigand with my stats.", + "descriptionRaw": "When I'm summoned, summon a Navori Brigand with my stats.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "“I was a traveling musician, known in every village 'ere to the Placidium--until the Noxians came. Now I'm scraping by on stolen coin. Mother was right, should've been a healer... ”", + "artistName": "SIXMOREVODKA", + "name": "Navori Highwayman", + "cardCode": "01IO052", + "keywords": [], + "keywordRefs": [], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "COMMON", + "rarityRef": "Common", + "subtypes": [], + "supertype": "", + "type": "Unit", + "collectible": true, + "set": "Set1" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set1/en_us/img/cards/01IO052T1.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set1/en_us/img/cards/01IO052T1-full.png" + } + ], + "regions": [ + "Ionia" + ], + "regionRefs": [ + "Ionia" + ], + "attack": 1, + "cost": 2, + "health": 2, + "description": "", + "descriptionRaw": "", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "A bandit on the road means more in the brush.", + "artistName": "SIXMOREVODKA", + "name": "Navori Brigand", + "cardCode": "01IO052T1", + "keywords": [], + "keywordRefs": [], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "None", + "rarityRef": "None", + "subtypes": [], + "supertype": "", + "type": "Unit", + "collectible": false, + "set": "Set1" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set1/en_us/img/cards/01IO030.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set1/en_us/img/cards/01IO030-full.png" + } + ], + "regions": [ + "Ionia" + ], + "regionRefs": [ + "Ionia" + ], + "attack": 6, + "cost": 7, + "health": 5, + "description": "", + "descriptionRaw": "", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"The sky itself heaved as coils of clouds and powerful winds flattened our brigade. We tried to follow it, but who can chase the wind?\" - Legion General", + "artistName": "SIXMOREVODKA", + "name": "The Empyrean", + "cardCode": "01IO030", + "keywords": [ + "Elusive" + ], + "keywordRefs": [ + "Elusive" + ], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "EPIC", + "rarityRef": "Epic", + "subtypes": [ + "DRAGON" + ], + "supertype": "", + "type": "Unit", + "collectible": true, + "set": "Set1" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set1/en_us/img/cards/01IO019.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set1/en_us/img/cards/01IO019-full.png" + } + ], + "regions": [ + "Ionia" + ], + "regionRefs": [ + "Ionia" + ], + "attack": 1, + "cost": 1, + "health": 2, + "description": "When an ally gets Barrier, grant me +2|+0.", + "descriptionRaw": "When an ally gets Barrier, grant me +2|+0.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"The glade protects its own. And you--you are not from here...\"", + "artistName": "SIXMOREVODKA", + "name": "Greenglade Caretaker", + "cardCode": "01IO019", + "keywords": [], + "keywordRefs": [], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "COMMON", + "rarityRef": "Common", + "subtypes": [], + "supertype": "", + "type": "Unit", + "collectible": true, + "set": "Set1" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set1/en_us/img/cards/01IO046.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set1/en_us/img/cards/01IO046-full.png" + } + ], + "regions": [ + "Ionia" + ], + "regionRefs": [ + "Ionia" + ], + "attack": 0, + "cost": 2, + "health": 0, + "description": "Stun an attacking enemy.", + "descriptionRaw": "Stun an attacking enemy.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"Hasagi!\" - Yasuo", + "artistName": "Max Grecke", + "name": "Steel Tempest", + "cardCode": "01IO046", + "keywords": [ + "Fast" + ], + "keywordRefs": [ + "Fast" + ], + "spellSpeed": "Fast", + "spellSpeedRef": "Fast", + "rarity": "RARE", + "rarityRef": "Rare", + "subtypes": [], + "supertype": "", + "type": "Spell", + "collectible": true, + "set": "Set1" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set1/en_us/img/cards/01IO037.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set1/en_us/img/cards/01IO037-full.png" + } + ], + "regions": [ + "Ionia" + ], + "regionRefs": [ + "Ionia" + ], + "attack": 0, + "cost": 4, + "health": 0, + "description": "Give an ally Barrier and Lifesteal this round.", + "descriptionRaw": "Give an ally Barrier and Lifesteal this round.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"This blade was once my father's. May it bring you the strength that I once lacked.\" - Shen", + "artistName": "Kudos Productions", + "name": "Spirit's Refuge", + "cardCode": "01IO037", + "keywords": [ + "Burst" + ], + "keywordRefs": [ + "Burst" + ], + "spellSpeed": "Burst", + "spellSpeedRef": "Burst", + "rarity": "COMMON", + "rarityRef": "Common", + "subtypes": [], + "supertype": "", + "type": "Spell", + "collectible": true, + "set": "Set1" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set1/en_us/img/cards/01IO043.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set1/en_us/img/cards/01IO043-full.png" + } + ], + "regions": [ + "Ionia" + ], + "regionRefs": [ + "Ionia" + ], + "attack": 2, + "cost": 3, + "health": 2, + "description": "Strike: Draw a spell.", + "descriptionRaw": "Strike: Draw a spell.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"We are proud children of the First Lands, and the streams of her magic flow through our vastayan blood as they do through our realm.\"", + "artistName": "SIXMOREVODKA", + "name": "Rivershaper", + "cardCode": "01IO043", + "keywords": [], + "keywordRefs": [], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "RARE", + "rarityRef": "Rare", + "subtypes": [], + "supertype": "", + "type": "Unit", + "collectible": true, + "set": "Set1" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set1/en_us/img/cards/01IO038.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set1/en_us/img/cards/01IO038-full.png" + } + ], + "regions": [ + "Ionia" + ], + "regionRefs": [ + "Ionia" + ], + "attack": 3, + "cost": 3, + "health": 3, + "description": "When I'm summoned, Recall all other allies.", + "descriptionRaw": "When I'm summoned, Recall all other allies.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"Reflex and instinct are the only company I desire.\"", + "artistName": "SIXMOREVODKA", + "name": "Solitary Monk", + "cardCode": "01IO038", + "keywords": [ + "Elusive" + ], + "keywordRefs": [ + "Elusive" + ], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "RARE", + "rarityRef": "Rare", + "subtypes": [], + "supertype": "", + "type": "Unit", + "collectible": true, + "set": "Set1" + }, + { + "associatedCards": [], + "associatedCardRefs": [ + "01IO009T1" + ], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set1/en_us/img/cards/01IO039.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set1/en_us/img/cards/01IO039-full.png" + } + ], + "regions": [ + "Ionia" + ], + "regionRefs": [ + "Ionia" + ], + "attack": 0, + "cost": 3, + "health": 0, + "description": "Recall an ally to summon a Living Shadow in its place.", + "descriptionRaw": "Recall an ally to summon a Living Shadow in its place.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "Do you face the enemy that you believe you see? Or is it a trick of the shadows?", + "artistName": "Max Grecke", + "name": "Shadowshift", + "cardCode": "01IO039", + "keywords": [ + "Fast" + ], + "keywordRefs": [ + "Fast" + ], + "spellSpeed": "Fast", + "spellSpeedRef": "Fast", + "rarity": "COMMON", + "rarityRef": "Common", + "subtypes": [], + "supertype": "", + "type": "Spell", + "collectible": true, + "set": "Set1" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set1/en_us/img/cards/01IO055.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set1/en_us/img/cards/01IO055-full.png" + } + ], + "regions": [ + "Ionia" + ], + "regionRefs": [ + "Ionia" + ], + "attack": 0, + "cost": 2, + "health": 0, + "description": "Grant Barrier to an ally in hand. \r\nDraw 1.", + "descriptionRaw": "Grant Barrier to an ally in hand. \r\nDraw 1.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"Those who keep the balance shall know the protection of the Kinkou.\" - Shen\n", + "artistName": "Kudos Productions", + "name": "Ki Guardian", + "cardCode": "01IO055", + "keywords": [ + "Burst" + ], + "keywordRefs": [ + "Burst" + ], + "spellSpeed": "Burst", + "spellSpeedRef": "Burst", + "rarity": "COMMON", + "rarityRef": "Common", + "subtypes": [], + "supertype": "", + "type": "Spell", + "collectible": true, + "set": "Set1" + }, + { + "associatedCards": [], + "associatedCardRefs": [ + "01NX020T1", + "01NX020T3", + "01NX020T2" + ], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set1/en_us/img/cards/01NX020.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set1/en_us/img/cards/01NX020-full.png" + } + ], + "regions": [ + "Noxus" + ], + "regionRefs": [ + "Noxus" + ], + "attack": 3, + "cost": 3, + "health": 2, + "description": "When I'm summoned or Strike: Create a Spinning Axe in hand.", + "descriptionRaw": "When I'm summoned or Strike: Create a Spinning Axe in hand.", + "levelupDescription": "I've struck with 2+ total Spinning Axes.", + "levelupDescriptionRaw": "I've struck with 2+ total Spinning Axes.", + "flavorText": "\"You want an autograph? Get in line, pal.\"", + "artistName": "SIXMOREVODKA", + "name": "Draven", + "cardCode": "01NX020", + "keywords": [ + "Quick Attack" + ], + "keywordRefs": [ + "QuickStrike" + ], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "Champion", + "rarityRef": "Champion", + "subtypes": [], + "supertype": "Champion", + "type": "Unit", + "collectible": true, + "set": "Set1" + }, + { + "associatedCards": [], + "associatedCardRefs": [ + "01NX020T2", + "01NX020", + "01NX020T1" + ], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set1/en_us/img/cards/01NX020T3.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set1/en_us/img/cards/01NX020T3-full.png" + } + ], + "regions": [ + "Noxus" + ], + "regionRefs": [ + "Noxus" + ], + "attack": 4, + "cost": 3, + "health": 3, + "description": "When I'm summoned or Strike: Create 2 Spinning Axes in hand.", + "descriptionRaw": "When I'm summoned or Strike: Create 2 Spinning Axes in hand.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"WHAT'S MY NAME?\"", + "artistName": "SIXMOREVODKA", + "name": "Draven", + "cardCode": "01NX020T3", + "keywords": [ + "Quick Attack", + "Overwhelm" + ], + "keywordRefs": [ + "QuickStrike", + "Overwhelm" + ], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "None", + "rarityRef": "None", + "subtypes": [], + "supertype": "Champion", + "type": "Unit", + "collectible": false, + "set": "Set1" + }, + { + "associatedCards": [], + "associatedCardRefs": [ + "01NX020T3", + "01NX020" + ], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set1/en_us/img/cards/01NX020T2.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set1/en_us/img/cards/01NX020T2-full.png" + } + ], + "regions": [ + "Noxus" + ], + "regionRefs": [ + "Noxus" + ], + "attack": 0, + "cost": 3, + "health": 0, + "description": "A battling ally strikes a battling enemy.\r\nCreate a Draven in your deck.", + "descriptionRaw": "A battling ally strikes a battling enemy.\r\nCreate a Draven in your deck.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"I have the best job.\" - Draven", + "artistName": "Rafael Zanchetin", + "name": "Draven's Whirling Death", + "cardCode": "01NX020T2", + "keywords": [ + "Fast" + ], + "keywordRefs": [ + "Fast" + ], + "spellSpeed": "Fast", + "spellSpeedRef": "Fast", + "rarity": "None", + "rarityRef": "None", + "subtypes": [], + "supertype": "Champion", + "type": "Spell", + "collectible": false, + "set": "Set1" + }, + { + "associatedCards": [], + "associatedCardRefs": [ + "01NX020" + ], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set1/en_us/img/cards/01NX020T1.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set1/en_us/img/cards/01NX020T1-full.png" + } + ], + "regions": [ + "Noxus" + ], + "regionRefs": [ + "Noxus" + ], + "attack": 0, + "cost": 0, + "health": 0, + "description": "To play, discard 1.\r\nGive an ally +1|+0 this round.", + "descriptionRaw": "To play, discard 1.\r\nGive an ally +1|+0 this round.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"Yeah, his brother'd win one-on-one, but you see those axes spiraling... it's art, it is. Art.\" - Arena regular", + "artistName": "SIXMOREVODKA", + "name": "Spinning Axe", + "cardCode": "01NX020T1", + "keywords": [ + "Burst" + ], + "keywordRefs": [ + "Burst" + ], + "spellSpeed": "Burst", + "spellSpeedRef": "Burst", + "rarity": "None", + "rarityRef": "None", + "subtypes": [], + "supertype": "", + "type": "Spell", + "collectible": false, + "set": "Set1" + }, + { + "associatedCards": [], + "associatedCardRefs": [ + "01NX006T3", + "01NX006T2", + "01NX006T1" + ], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set1/en_us/img/cards/01NX006.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set1/en_us/img/cards/01NX006-full.png" + } + ], + "regions": [ + "Noxus" + ], + "regionRefs": [ + "Noxus" + ], + "attack": 5, + "cost": 5, + "health": 5, + "description": "Attack: For each attacking ally on my right, deal 1 to it and 1 to the enemy Nexus.", + "descriptionRaw": "Attack: For each attacking ally on my right, deal 1 to it and 1 to the enemy Nexus.", + "levelupDescription": "You've had 5+ allies survive damage.", + "levelupDescriptionRaw": "You've had 5+ allies survive damage.", + "flavorText": "Vicious. Cold. Cruel. Intriguing. Perceptive. Charming.\nIrresistible...", + "artistName": "SIXMOREVODKA", + "name": "Vladimir", + "cardCode": "01NX006", + "keywords": [ + "Fearsome" + ], + "keywordRefs": [ + "Fearsome" + ], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "Champion", + "rarityRef": "Champion", + "subtypes": [], + "supertype": "Champion", + "type": "Unit", + "collectible": true, + "set": "Set1" + }, + { + "associatedCards": [], + "associatedCardRefs": [ + "01NX006" + ], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set1/en_us/img/cards/01NX006T4.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set1/en_us/img/cards/01NX006T4-full.png" + } + ], + "regions": [ + "Noxus" + ], + "regionRefs": [ + "Noxus" + ], + "attack": 0, + "cost": 0, + "health": 0, + "description": "For each attacking ally on Vladimir's right, deal 1 to it and drain 1 from the enemy Nexus.", + "descriptionRaw": "For each attacking ally on Vladimir's right, deal 1 to it and drain 1 from the enemy Nexus.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"Delicious.\" - Vladimir", + "artistName": "Max Grecke", + "name": "Crimson Pact", + "cardCode": "01NX006T4", + "keywords": [ + "Skill" + ], + "keywordRefs": [ + "Skill" + ], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "None", + "rarityRef": "None", + "subtypes": [], + "supertype": "", + "type": "Ability", + "collectible": false, + "set": "Set1" + }, + { + "associatedCards": [], + "associatedCardRefs": [ + "01NX006" + ], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set1/en_us/img/cards/01NX006T2.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set1/en_us/img/cards/01NX006T2-full.png" + } + ], + "regions": [ + "Noxus" + ], + "regionRefs": [ + "Noxus" + ], + "attack": 0, + "cost": 0, + "health": 0, + "description": "For each attacking ally on Vladimir's right, deal 1 to it and 1 to the enemy Nexus.", + "descriptionRaw": "For each attacking ally on Vladimir's right, deal 1 to it and 1 to the enemy Nexus.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"Delicious.\" - Vladimir", + "artistName": "Max Grecke", + "name": "Crimson Pact", + "cardCode": "01NX006T2", + "keywords": [ + "Skill" + ], + "keywordRefs": [ + "Skill" + ], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "None", + "rarityRef": "None", + "subtypes": [], + "supertype": "", + "type": "Ability", + "collectible": false, + "set": "Set1" + }, + { + "associatedCards": [], + "associatedCardRefs": [ + "01NX006T3", + "01NX006T4", + "01NX006" + ], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set1/en_us/img/cards/01NX006T1.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set1/en_us/img/cards/01NX006T1-full.png" + } + ], + "regions": [ + "Noxus" + ], + "regionRefs": [ + "Noxus" + ], + "attack": 6, + "cost": 5, + "health": 6, + "description": "Attack: For each attacking ally on my right, deal 1 to it and drain 1 from the enemy Nexus.", + "descriptionRaw": "Attack: For each attacking ally on my right, deal 1 to it and drain 1 from the enemy Nexus.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"Do you find my little fête banal, darling? Then let me give you a real show.\"", + "artistName": "SIXMOREVODKA", + "name": "Vladimir", + "cardCode": "01NX006T1", + "keywords": [ + "Fearsome", + "Regeneration" + ], + "keywordRefs": [ + "Fearsome", + "Regeneration" + ], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "None", + "rarityRef": "None", + "subtypes": [], + "supertype": "Champion", + "type": "Unit", + "collectible": false, + "set": "Set1" + }, + { + "associatedCards": [], + "associatedCardRefs": [ + "01NX006T1", + "01NX006" + ], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set1/en_us/img/cards/01NX006T3.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set1/en_us/img/cards/01NX006T3-full.png" + } + ], + "regions": [ + "Noxus" + ], + "regionRefs": [ + "Noxus" + ], + "attack": 0, + "cost": 2, + "health": 0, + "description": "Deal 1 to an ally and give another ally +2|+2 this round.\r\nCreate a Vladimir in your deck.", + "descriptionRaw": "Deal 1 to an ally and give another ally +2|+2 this round.\r\nCreate a Vladimir in your deck.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"It's give and take, my dear. You give, and I take.\" - Vladimir", + "artistName": "SIXMOREVODKA", + "name": "Vladimir's Transfusion", + "cardCode": "01NX006T3", + "keywords": [ + "Burst" + ], + "keywordRefs": [ + "Burst" + ], + "spellSpeed": "Burst", + "spellSpeedRef": "Burst", + "rarity": "None", + "rarityRef": "None", + "subtypes": [], + "supertype": "Champion", + "type": "Spell", + "collectible": false, + "set": "Set1" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set1/en_us/img/cards/01NX004.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set1/en_us/img/cards/01NX004-full.png" + } + ], + "regions": [ + "Noxus" + ], + "regionRefs": [ + "Noxus" + ], + "attack": 0, + "cost": 3, + "health": 0, + "description": "Kill a unit with 3 or less Power.", + "descriptionRaw": "Kill a unit with 3 or less Power.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "Everyone dies. The weak just die faster.", + "artistName": "Rafael Zanchetin", + "name": "Culling Strike", + "cardCode": "01NX004", + "keywords": [ + "Fast" + ], + "keywordRefs": [ + "Fast" + ], + "spellSpeed": "Fast", + "spellSpeedRef": "Fast", + "rarity": "RARE", + "rarityRef": "Rare", + "subtypes": [], + "supertype": "", + "type": "Spell", + "collectible": true, + "set": "Set1" + }, + { + "associatedCards": [], + "associatedCardRefs": [ + "04NX018", + "01NX005", + "01NX030", + "01NX048", + "01NX032" + ], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set1/en_us/img/cards/01NX048.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set1/en_us/img/cards/01NX048-full.png" + } + ], + "regions": [ + "Noxus" + ], + "regionRefs": [ + "Noxus" + ], + "attack": 3, + "cost": 3, + "health": 3, + "description": "When I survive damage, create a random Crimson unit in your hand.", + "descriptionRaw": "When I survive damage, create a random Crimson unit in your hand.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"Beloved companions!\" \"Were you? Well I received an invitation.\" \"--Reveler's Ball! Yes!\" \"Then we must! I shall present my family.\" \"Starters before dessert, my dear. And you, Kye? Will you attend?\"", + "artistName": "SIXMOREVODKA", + "name": "Crimson Curator", + "cardCode": "01NX048", + "keywords": [], + "keywordRefs": [], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "COMMON", + "rarityRef": "Common", + "subtypes": [], + "supertype": "", + "type": "Unit", + "collectible": true, + "set": "Set1" + }, + { + "associatedCards": [], + "associatedCardRefs": [ + "01NX038T2", + "01NX038T1" + ], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set1/en_us/img/cards/01NX038.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set1/en_us/img/cards/01NX038-full.png" + } + ], + "regions": [ + "Noxus" + ], + "regionRefs": [ + "Noxus" + ], + "attack": 6, + "cost": 6, + "health": 6, + "description": "", + "descriptionRaw": "", + "levelupDescription": "I see the enemy Nexus has half of its starting Health or less.
", + "levelupDescriptionRaw": "I see the enemy Nexus has half of its starting Health or less.", + "flavorText": "\"An iron will and a titan's strength. There is no finer general to lead the Trifarian Legion.\" - Swain\n", + "artistName": "SIXMOREVODKA", + "name": "Darius", + "cardCode": "01NX038", + "keywords": [ + "Overwhelm" + ], + "keywordRefs": [ + "Overwhelm" + ], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "Champion", + "rarityRef": "Champion", + "subtypes": [], + "supertype": "Champion", + "type": "Unit", + "collectible": true, + "set": "Set1" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set1/en_us/img/cards/01NX023.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set1/en_us/img/cards/01NX023-full.png" + } + ], + "regions": [ + "Noxus" + ], + "regionRefs": [ + "Noxus" + ], + "attack": 5, + "cost": 5, + "health": 3, + "description": "When I'm summoned, grant other Spider allies +2|+0.", + "descriptionRaw": "When I'm summoned, grant other Spider allies +2|+0.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "A single glance and you're hers. A single bite and you're theirs.", + "artistName": "SIXMOREVODKA", + "name": "Arachnoid Host", + "cardCode": "01NX023", + "keywords": [], + "keywordRefs": [], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "RARE", + "rarityRef": "Rare", + "subtypes": [ + "SPIDER" + ], + "supertype": "", + "type": "Unit", + "collectible": true, + "set": "Set1" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set1/en_us/img/cards/01NX013.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set1/en_us/img/cards/01NX013-full.png" + } + ], + "regions": [ + "Noxus" + ], + "regionRefs": [ + "Noxus" + ], + "attack": 0, + "cost": 5, + "health": 0, + "description": "Stun an enemy. Give all allies +2|+0 this round.", + "descriptionRaw": "Stun an enemy. Give all allies +2|+0 this round.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"Any fool can throw overwhelming force at the enemy. It takes vision to conceal that force until the decisive moment.\" - Swain", + "artistName": "Original Force", + "name": "Decisive Maneuver", + "cardCode": "01NX013", + "keywords": [ + "Fast" + ], + "keywordRefs": [ + "Fast" + ], + "spellSpeed": "Fast", + "spellSpeedRef": "Fast", + "rarity": "RARE", + "rarityRef": "Rare", + "subtypes": [], + "supertype": "", + "type": "Spell", + "collectible": true, + "set": "Set1" + }, + { + "associatedCards": [], + "associatedCardRefs": [ + "01NX046T1" + ], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set1/en_us/img/cards/01NX046.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set1/en_us/img/cards/01NX046-full.png" + } + ], + "regions": [ + "Noxus" + ], + "regionRefs": [ + "Noxus" + ], + "attack": 3, + "cost": 3, + "health": 2, + "description": "Play: Stun an enemy.", + "descriptionRaw": "Play: Stun an enemy.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"Oh, how she captivates me! Her endless legs, voice of paralyzing sweetness, and eyes red as the rose. To think, she chose to dine with me tonight!\" - Hapless Aristocrat", + "artistName": "SIXMOREVODKA", + "name": "Arachnoid Sentry", + "cardCode": "01NX046", + "keywords": [], + "keywordRefs": [], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "COMMON", + "rarityRef": "Common", + "subtypes": [ + "SPIDER" + ], + "supertype": "", + "type": "Unit", + "collectible": true, + "set": "Set1" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set1/en_us/img/cards/01NX046T1.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set1/en_us/img/cards/01NX046T1-full.png" + } + ], + "regions": [ + "Noxus" + ], + "regionRefs": [ + "Noxus" + ], + "attack": 0, + "cost": 0, + "health": 0, + "description": "Stun an enemy.", + "descriptionRaw": "Stun an enemy.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "It was not the kiss he had in mind.", + "artistName": "Kudos Productions", + "name": "Paralyzing Bite", + "cardCode": "01NX046T1", + "keywords": [ + "Skill" + ], + "keywordRefs": [ + "Skill" + ], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "None", + "rarityRef": "None", + "subtypes": [], + "supertype": "", + "type": "Ability", + "collectible": false, + "set": "Set1" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set1/en_us/img/cards/01NX047.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set1/en_us/img/cards/01NX047-full.png" + } + ], + "regions": [ + "Noxus" + ], + "regionRefs": [ + "Noxus" + ], + "attack": 0, + "cost": 2, + "health": 0, + "description": "Deal 1 to an ally to give another ally +2|+2 this round.", + "descriptionRaw": "Deal 1 to an ally to give another ally +2|+2 this round.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"It's give and take, my dear. You give, and I take.\" - Vladimir", + "artistName": "SIXMOREVODKA", + "name": "Transfusion", + "cardCode": "01NX047", + "keywords": [ + "Burst" + ], + "keywordRefs": [ + "Burst" + ], + "spellSpeed": "Burst", + "spellSpeedRef": "Burst", + "rarity": "COMMON", + "rarityRef": "Common", + "subtypes": [], + "supertype": "", + "type": "Spell", + "collectible": true, + "set": "Set1" + }, + { + "associatedCards": [], + "associatedCardRefs": [ + "01NX040T1" + ], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set1/en_us/img/cards/01NX040.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set1/en_us/img/cards/01NX040-full.png" + } + ], + "regions": [ + "Noxus" + ], + "regionRefs": [ + "Noxus" + ], + "attack": 2, + "cost": 1, + "health": 1, + "description": "Attack: Deal 1 to the enemy Nexus.", + "descriptionRaw": "Attack: Deal 1 to the enemy Nexus.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"Our Shieldbreakers can split a man in two. But the Legion has other talents at its disposal when it requires a more... discreet touch.\" - Swain", + "artistName": "SIXMOREVODKA", + "name": "Legion Saboteur", + "cardCode": "01NX040", + "keywords": [], + "keywordRefs": [], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "COMMON", + "rarityRef": "Common", + "subtypes": [], + "supertype": "", + "type": "Unit", + "collectible": true, + "set": "Set1" + }, + { + "associatedCards": [], + "associatedCardRefs": [ + "01NX038T1", + "01NX038" + ], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set1/en_us/img/cards/01NX038T2.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set1/en_us/img/cards/01NX038T2-full.png" + } + ], + "regions": [ + "Noxus" + ], + "regionRefs": [ + "Noxus" + ], + "attack": 10, + "cost": 6, + "health": 7, + "description": "", + "descriptionRaw": "", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"Stand in our way and I'll cut you down myself!\"", + "artistName": "SIXMOREVODKA", + "name": "Darius", + "cardCode": "01NX038T2", + "keywords": [ + "Overwhelm" + ], + "keywordRefs": [ + "Overwhelm" + ], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "None", + "rarityRef": "None", + "subtypes": [], + "supertype": "Champion", + "type": "Unit", + "collectible": false, + "set": "Set1" + }, + { + "associatedCards": [], + "associatedCardRefs": [ + "01NX038T2", + "01NX038" + ], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set1/en_us/img/cards/01NX038T1.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set1/en_us/img/cards/01NX038T1-full.png" + } + ], + "regions": [ + "Noxus" + ], + "regionRefs": [ + "Noxus" + ], + "attack": 0, + "cost": 5, + "health": 0, + "description": "Deal 4 to the enemy Nexus.\r\nCreate a Darius in your deck.", + "descriptionRaw": "Deal 4 to the enemy Nexus.\r\nCreate a Darius in your deck.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"Sometimes, it takes tactical genius to break a fortress. Sometimes, you just have to hit it harder.\" - Darius", + "artistName": "Max Grecke", + "name": "Darius' Decimate", + "cardCode": "01NX038T1", + "keywords": [ + "Slow" + ], + "keywordRefs": [ + "Slow" + ], + "spellSpeed": "Slow", + "spellSpeedRef": "Slow", + "rarity": "None", + "rarityRef": "None", + "subtypes": [], + "supertype": "Champion", + "type": "Spell", + "collectible": false, + "set": "Set1" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set1/en_us/img/cards/01NX025.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set1/en_us/img/cards/01NX025-full.png" + } + ], + "regions": [ + "Noxus" + ], + "regionRefs": [ + "Noxus" + ], + "attack": 0, + "cost": 2, + "health": 0, + "description": "Grant 2 allies +2|+0.", + "descriptionRaw": "Grant 2 allies +2|+0.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"Bonds forged in war are just as strong as those of kinship. Indeed, blood is shared in both.\" - Legion Veteran", + "artistName": "Wild Blue Studios", + "name": "Brothers' Bond", + "cardCode": "01NX025", + "keywords": [ + "Burst" + ], + "keywordRefs": [ + "Burst" + ], + "spellSpeed": "Burst", + "spellSpeedRef": "Burst", + "rarity": "COMMON", + "rarityRef": "Common", + "subtypes": [], + "supertype": "", + "type": "Spell", + "collectible": true, + "set": "Set1" + }, + { + "associatedCards": [], + "associatedCardRefs": [ + "01SI002" + ], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set1/en_us/img/cards/01NX055.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set1/en_us/img/cards/01NX055-full.png" + } + ], + "regions": [ + "Noxus" + ], + "regionRefs": [ + "Noxus" + ], + "attack": 2, + "cost": 2, + "health": 2, + "description": "When I'm summoned, summon a Spiderling.", + "descriptionRaw": "When I'm summoned, summon a Spiderling.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"My spiders love company. Shame that company never feels the same.\" - Elise", + "artistName": "Alex Heath", + "name": "House Spider", + "cardCode": "01NX055", + "keywords": [], + "keywordRefs": [], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "COMMON", + "rarityRef": "Common", + "subtypes": [ + "SPIDER" + ], + "supertype": "", + "type": "Unit", + "collectible": true, + "set": "Set1" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set1/en_us/img/cards/01NX030.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set1/en_us/img/cards/01NX030-full.png" + } + ], + "regions": [ + "Noxus" + ], + "regionRefs": [ + "Noxus" + ], + "attack": 2, + "cost": 2, + "health": 3, + "description": "When I survive damage, deal 1 to the enemy Nexus.", + "descriptionRaw": "When I survive damage, deal 1 to the enemy Nexus.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"Edvin! There you are, handsome. I was just thinking of you!\" \"Each of us can go, now…\" \"Escort me. I'll make it fun.\" \"Or nothing at all?\"", + "artistName": "SIXMOREVODKA", + "name": "Crimson Disciple", + "cardCode": "01NX030", + "keywords": [], + "keywordRefs": [], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "RARE", + "rarityRef": "Rare", + "subtypes": [], + "supertype": "", + "type": "Unit", + "collectible": true, + "set": "Set1" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set1/en_us/img/cards/01NX007.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set1/en_us/img/cards/01NX007-full.png" + } + ], + "regions": [ + "Noxus" + ], + "regionRefs": [ + "Noxus" + ], + "attack": 2, + "cost": 2, + "health": 2, + "description": "Attack: Give other attacking allies +1|+0 this round.", + "descriptionRaw": "Attack: Give other attacking allies +1|+0 this round.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "He roared with glee. For a moment, the heart of the arena pulsed in time with his and the excitement of the assembled masses was clutched in his triumphant hand.", + "artistName": "SIXMOREVODKA", + "name": "Arena Battlecaster", + "cardCode": "01NX007", + "keywords": [], + "keywordRefs": [], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "RARE", + "rarityRef": "Rare", + "subtypes": [], + "supertype": "", + "type": "Unit", + "collectible": true, + "set": "Set1" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set1/en_us/img/cards/01NX021.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set1/en_us/img/cards/01NX021-full.png" + } + ], + "regions": [ + "Noxus" + ], + "regionRefs": [ + "Noxus" + ], + "attack": 3, + "cost": 3, + "health": 2, + "description": "Attack: Grant allied Legion Marauders everywhere +1|+1.", + "descriptionRaw": "Attack: Grant allied Legion Marauders everywhere +1|+1.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "The Trifarian Legion is trailed by opportunistic brigands who prey on the weak and injured in its wake.", + "artistName": "SIXMOREVODKA", + "name": "Legion Marauder", + "cardCode": "01NX021", + "keywords": [], + "keywordRefs": [], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "COMMON", + "rarityRef": "Common", + "subtypes": [], + "supertype": "", + "type": "Unit", + "collectible": true, + "set": "Set1" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set1/en_us/img/cards/01NX009.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set1/en_us/img/cards/01NX009-full.png" + } + ], + "regions": [ + "Noxus" + ], + "regionRefs": [ + "Noxus" + ], + "attack": 2, + "cost": 4, + "health": 1, + "description": "When I'm summoned, grant me +1|+1 for each other ally you have.", + "descriptionRaw": "When I'm summoned, grant me +1|+1 for each other ally you have.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "Some reckoners are adored for their charisma. Others, for their swift technique. Vessid possesses neither, but no one turns a rival to splatter with more efficiency.", + "artistName": "SIXMOREVODKA", + "name": "Crowd Favorite", + "cardCode": "01NX009", + "keywords": [ + "Overwhelm" + ], + "keywordRefs": [ + "Overwhelm" + ], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "RARE", + "rarityRef": "Rare", + "subtypes": [], + "supertype": "", + "type": "Unit", + "collectible": true, + "set": "Set1" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set1/en_us/img/cards/01NX011.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set1/en_us/img/cards/01NX011-full.png" + } + ], + "regions": [ + "Noxus" + ], + "regionRefs": [ + "Noxus" + ], + "attack": 0, + "cost": 3, + "health": 0, + "description": "A battling ally strikes a battling enemy.", + "descriptionRaw": "A battling ally strikes a battling enemy.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"I have the best job.\" - Draven", + "artistName": "Rafael Zanchetin", + "name": "Whirling Death", + "cardCode": "01NX011", + "keywords": [ + "Fast" + ], + "keywordRefs": [ + "Fast" + ], + "spellSpeed": "Fast", + "spellSpeedRef": "Fast", + "rarity": "COMMON", + "rarityRef": "Common", + "subtypes": [], + "supertype": "", + "type": "Spell", + "collectible": true, + "set": "Set1" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set1/en_us/img/cards/01NX053.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set1/en_us/img/cards/01NX053-full.png" + } + ], + "regions": [ + "Noxus" + ], + "regionRefs": [ + "Noxus" + ], + "attack": 0, + "cost": 6, + "health": 0, + "description": "If you have a 5+ Power ally, kill ALL units with 4 or less Power.", + "descriptionRaw": "If you have a 5+ Power ally, kill ALL units with 4 or less Power.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"WHO'S READY TO REEEEEECKONNNNNN?!\" - Arena Battlecaster", + "artistName": "Kudos Productions", + "name": "Reckoning", + "cardCode": "01NX053", + "keywords": [ + "Slow" + ], + "keywordRefs": [ + "Slow" + ], + "spellSpeed": "Slow", + "spellSpeedRef": "Slow", + "rarity": "EPIC", + "rarityRef": "Epic", + "subtypes": [], + "supertype": "", + "type": "Spell", + "collectible": true, + "set": "Set1" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set1/en_us/img/cards/01NX040T1.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set1/en_us/img/cards/01NX040T1-full.png" + } + ], + "regions": [ + "Noxus" + ], + "regionRefs": [ + "Noxus" + ], + "attack": 0, + "cost": 0, + "health": 0, + "description": "Deal 1 to the enemy Nexus.", + "descriptionRaw": "Deal 1 to the enemy Nexus.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"Boom.\" - Legion Saboteur", + "artistName": "Kudos Productions", + "name": "Sabotage", + "cardCode": "01NX040T1", + "keywords": [ + "Skill" + ], + "keywordRefs": [ + "Skill" + ], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "None", + "rarityRef": "None", + "subtypes": [], + "supertype": "", + "type": "Ability", + "collectible": false, + "set": "Set1" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set1/en_us/img/cards/01NX054.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set1/en_us/img/cards/01NX054-full.png" + } + ], + "regions": [ + "Noxus" + ], + "regionRefs": [ + "Noxus" + ], + "attack": 0, + "cost": 5, + "health": 0, + "description": "Stun all enemies with 4 or less Power.", + "descriptionRaw": "Stun all enemies with 4 or less Power.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "“He’s taking a deep breath - we might get a - yes, there we have it, folks! That’s Thunder’s famous war cry! We’re all shaking in our boots out here, Thuuuunder!” - Arena Battlecaster", + "artistName": "Kudos Productions", + "name": "Intimidating Roar", + "cardCode": "01NX054", + "keywords": [ + "Slow" + ], + "keywordRefs": [ + "Slow" + ], + "spellSpeed": "Slow", + "spellSpeedRef": "Slow", + "rarity": "RARE", + "rarityRef": "Rare", + "subtypes": [], + "supertype": "", + "type": "Spell", + "collectible": true, + "set": "Set1" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set1/en_us/img/cards/01NX029.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set1/en_us/img/cards/01NX029-full.png" + } + ], + "regions": [ + "Noxus" + ], + "regionRefs": [ + "Noxus" + ], + "attack": 4, + "cost": 4, + "health": 5, + "description": "When another ally survives damage, grant it +1|+0.", + "descriptionRaw": "When another ally survives damage, grant it +1|+0.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "He returned from the war on the brink of death, restored only by his husband's touch and the apothecary's balms. Noxus spared no expense to ensure his expert counsel, long after his fighting years.", + "artistName": "SIXMOREVODKA", + "name": "Legion Veteran", + "cardCode": "01NX029", + "keywords": [], + "keywordRefs": [], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "EPIC", + "rarityRef": "Epic", + "subtypes": [], + "supertype": "", + "type": "Unit", + "collectible": true, + "set": "Set1" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set1/en_us/img/cards/01NX014.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set1/en_us/img/cards/01NX014-full.png" + } + ], + "regions": [ + "Noxus" + ], + "regionRefs": [ + "Noxus" + ], + "attack": 3, + "cost": 4, + "health": 3, + "description": "I deal double damage to the Nexus.", + "descriptionRaw": "I deal double damage to the Nexus.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"He said what?! That man has bricks for brains. Can't fault those shoulders, though...\"", + "artistName": "SIXMOREVODKA", + "name": "Shiraza the Blade", + "cardCode": "01NX014", + "keywords": [], + "keywordRefs": [], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "EPIC", + "rarityRef": "Epic", + "subtypes": [], + "supertype": "", + "type": "Unit", + "collectible": true, + "set": "Set1" + }, + { + "associatedCards": [], + "associatedCardRefs": [ + "01NX043", + "01NX042T2", + "01NX042T1" + ], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set1/en_us/img/cards/01NX042.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set1/en_us/img/cards/01NX042-full.png" + } + ], + "regions": [ + "Noxus" + ], + "regionRefs": [ + "Noxus" + ], + "attack": 3, + "cost": 3, + "health": 2, + "description": "When I'm summoned, create a Fleeting Blade's Edge in hand.", + "descriptionRaw": "When I'm summoned, create a Fleeting Blade's Edge in hand.", + "levelupDescription": "I've struck once. When I level up, Recall me.", + "levelupDescriptionRaw": "I've struck once. When I level up, Recall me.", + "flavorText": "\"Nothing like a little Demacian target practice to sharpen the senses...\"", + "artistName": "SIXMOREVODKA", + "name": "Katarina", + "cardCode": "01NX042", + "keywords": [ + "Quick Attack" + ], + "keywordRefs": [ + "QuickStrike" + ], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "Champion", + "rarityRef": "Champion", + "subtypes": [], + "supertype": "Champion", + "type": "Unit", + "collectible": true, + "set": "Set1" + }, + { + "associatedCards": [], + "associatedCardRefs": [ + "01NX042", + "01NX042T1", + "01NX043" + ], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set1/en_us/img/cards/01NX042T2.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set1/en_us/img/cards/01NX042T2-full.png" + } + ], + "regions": [ + "Noxus" + ], + "regionRefs": [ + "Noxus" + ], + "attack": 4, + "cost": 4, + "health": 3, + "description": "When I'm summoned, Rally and create a Fleeting Blade's Edge in hand. It costs 0.\r\nStrike: Recall me.", + "descriptionRaw": "When I'm summoned, Rally and create a Fleeting Blade's Edge in hand. It costs 0.\r\nStrike: Recall me.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"No sir! Just a flash of red. Next thing I know, I look up and it... it was like a slaughterhouse in there.\" - Demacian border guard", + "artistName": "SIXMOREVODKA", + "name": "Katarina", + "cardCode": "01NX042T2", + "keywords": [ + "Quick Attack" + ], + "keywordRefs": [ + "QuickStrike" + ], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "None", + "rarityRef": "None", + "subtypes": [], + "supertype": "Champion", + "type": "Unit", + "collectible": false, + "set": "Set1" + }, + { + "associatedCards": [], + "associatedCardRefs": [ + "01NX042", + "01NX042T2" + ], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set1/en_us/img/cards/01NX042T1.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set1/en_us/img/cards/01NX042T1-full.png" + } + ], + "regions": [ + "Noxus" + ], + "regionRefs": [ + "Noxus" + ], + "attack": 0, + "cost": 2, + "health": 0, + "description": "Deal 1 to ALL battling units.\r\nCreate a Katarina in your deck.", + "descriptionRaw": "Deal 1 to ALL battling units.\r\nCreate a Katarina in your deck.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"Dance with me!\" - Katarina", + "artistName": "Rafael Zanchetin", + "name": "Katarina's Death Lotus", + "cardCode": "01NX042T1", + "keywords": [ + "Fast" + ], + "keywordRefs": [ + "Fast" + ], + "spellSpeed": "Fast", + "spellSpeedRef": "Fast", + "rarity": "None", + "rarityRef": "None", + "subtypes": [], + "supertype": "Champion", + "type": "Spell", + "collectible": false, + "set": "Set1" + }, + { + "associatedCards": [], + "associatedCardRefs": [ + "01NX002" + ], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set1/en_us/img/cards/01NX051.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set1/en_us/img/cards/01NX051-full.png" + } + ], + "regions": [ + "Noxus" + ], + "regionRefs": [ + "Noxus" + ], + "attack": 8, + "cost": 8, + "health": 8, + "description": "When I'm summoned, create 2 Decimates in hand.", + "descriptionRaw": "When I'm summoned, create 2 Decimates in hand.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "Deep in Zaun's Sump, young Benn Farron was labeled a menace. Unstable. Unacceptable. In the ranks of Noxus he was embraced. Awarded. Unstoppable.", + "artistName": "SIXMOREVODKA", + "name": "Captain Farron", + "cardCode": "01NX051", + "keywords": [ + "Overwhelm" + ], + "keywordRefs": [ + "Overwhelm" + ], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "EPIC", + "rarityRef": "Epic", + "subtypes": [], + "supertype": "", + "type": "Unit", + "collectible": true, + "set": "Set1" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set1/en_us/img/cards/01NX012.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set1/en_us/img/cards/01NX012-full.png" + } + ], + "regions": [ + "Noxus" + ], + "regionRefs": [ + "Noxus" + ], + "attack": 3, + "cost": 1, + "health": 2, + "description": "", + "descriptionRaw": "", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "In Noxus, where soldiers are revered for their audacity on the battlefield, rearguard duty is nothing short of a punishment.", + "artistName": "SIXMOREVODKA", + "name": "Legion Rearguard", + "cardCode": "01NX012", + "keywords": [ + "Can't Block" + ], + "keywordRefs": [ + "CantBlock" + ], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "COMMON", + "rarityRef": "Common", + "subtypes": [], + "supertype": "", + "type": "Unit", + "collectible": true, + "set": "Set1" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set1/en_us/img/cards/01NX043.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set1/en_us/img/cards/01NX043-full.png" + } + ], + "regions": [ + "Noxus" + ], + "regionRefs": [ + "Noxus" + ], + "attack": 0, + "cost": 1, + "health": 0, + "description": "Deal 1 to anything.", + "descriptionRaw": "Deal 1 to anything.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"In the right hands, a blade can cut through anything... and I do mean anything.\" - Katarina", + "artistName": "SIXMOREVODKA", + "name": "Blade's Edge", + "cardCode": "01NX043", + "keywords": [ + "Fast" + ], + "keywordRefs": [ + "Fast" + ], + "spellSpeed": "Fast", + "spellSpeedRef": "Fast", + "rarity": "COMMON", + "rarityRef": "Common", + "subtypes": [], + "supertype": "", + "type": "Spell", + "collectible": true, + "set": "Set1" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set1/en_us/img/cards/01NX037.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set1/en_us/img/cards/01NX037-full.png" + } + ], + "regions": [ + "Noxus" + ], + "regionRefs": [ + "Noxus" + ], + "attack": 3, + "cost": 2, + "health": 2, + "description": "Last Breath: Deal 1 to the enemy Nexus.", + "descriptionRaw": "Last Breath: Deal 1 to the enemy Nexus.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "Every Noxian is taught that a life spent in service to the empire is well spent, but few spend their lives as spectacularly as the Legion's grenadiers.", + "artistName": "SIXMOREVODKA", + "name": "Legion Grenadier", + "cardCode": "01NX037", + "keywords": [ + "Last Breath" + ], + "keywordRefs": [ + "LastBreath" + ], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "COMMON", + "rarityRef": "Common", + "subtypes": [], + "supertype": "", + "type": "Unit", + "collectible": true, + "set": "Set1" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set1/en_us/img/cards/01NX010.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set1/en_us/img/cards/01NX010-full.png" + } + ], + "regions": [ + "Noxus" + ], + "regionRefs": [ + "Noxus" + ], + "attack": 4, + "cost": 5, + "health": 4, + "description": "When I'm summoned, grant me +1|+1 for each unit you've Stunned or Recalled this game. ", + "descriptionRaw": "When I'm summoned, grant me +1|+1 for each unit you've Stunned or Recalled this game. ", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "All Noxians know the three Principles of Strength, but if a soldier is to rise through the ranks, they must learn to master them.", + "artistName": "SIXMOREVODKA", + "name": "Legion General", + "cardCode": "01NX010", + "keywords": [ + "Fearsome" + ], + "keywordRefs": [ + "Fearsome" + ], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "COMMON", + "rarityRef": "Common", + "subtypes": [], + "supertype": "", + "type": "Unit", + "collectible": true, + "set": "Set1" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set1/en_us/img/cards/01NX017.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set1/en_us/img/cards/01NX017-full.png" + } + ], + "regions": [ + "Noxus" + ], + "regionRefs": [ + "Noxus" + ], + "attack": 3, + "cost": 2, + "health": 2, + "description": "Support: Give my supported ally Quick Attack this round.", + "descriptionRaw": "Support: Give my supported ally Quick Attack this round.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "The Legion spread the empire's reach with every beat of her drum. Nothing could stop them. Nothing did.", + "artistName": "SIXMOREVODKA", + "name": "Legion Drummer", + "cardCode": "01NX017", + "keywords": [ + "Support" + ], + "keywordRefs": [ + "Support" + ], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "COMMON", + "rarityRef": "Common", + "subtypes": [], + "supertype": "", + "type": "Unit", + "collectible": true, + "set": "Set1" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set1/en_us/img/cards/01NX003.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set1/en_us/img/cards/01NX003-full.png" + } + ], + "regions": [ + "Noxus" + ], + "regionRefs": [ + "Noxus" + ], + "attack": 2, + "cost": 2, + "health": 2, + "description": "Round Start: Discard your lowest cost card to draw 1.", + "descriptionRaw": "Round Start: Discard your lowest cost card to draw 1.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"...you bet on Shiraza as SOLE SURVIVOR, and that Ionian kid--sure he's missing an arm--but he ain't dead. Makes him a survivor, see? 'Course, you could always double down...\"", + "artistName": "SIXMOREVODKA", + "name": "Arena Bookie", + "cardCode": "01NX003", + "keywords": [], + "keywordRefs": [], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "RARE", + "rarityRef": "Rare", + "subtypes": [ + "YORDLE" + ], + "supertype": "", + "type": "Unit", + "collectible": true, + "set": "Set1" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set1/en_us/img/cards/01NX039.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set1/en_us/img/cards/01NX039-full.png" + } + ], + "regions": [ + "Noxus" + ], + "regionRefs": [ + "Noxus" + ], + "attack": 0, + "cost": 3, + "health": 0, + "description": "When played or discarded, grant all allies +1|+0.", + "descriptionRaw": "When played or discarded, grant all allies +1|+0.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"Those who cannot see the future have no place in it.\" - Jericho Swain", + "artistName": "Kudos Productions", + "name": "Vision", + "cardCode": "01NX039", + "keywords": [ + "Burst" + ], + "keywordRefs": [ + "Burst" + ], + "spellSpeed": "Burst", + "spellSpeedRef": "Burst", + "rarity": "RARE", + "rarityRef": "Rare", + "subtypes": [], + "supertype": "", + "type": "Spell", + "collectible": true, + "set": "Set1" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set1/en_us/img/cards/01NX041.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set1/en_us/img/cards/01NX041-full.png" + } + ], + "regions": [ + "Noxus" + ], + "regionRefs": [ + "Noxus" + ], + "attack": 6, + "cost": 5, + "health": 5, + "description": "", + "descriptionRaw": "", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"I don't have the patience for a siege. Send the Shieldbreakers.\" - Darius", + "artistName": "SIXMOREVODKA", + "name": "Trifarian Shieldbreaker", + "cardCode": "01NX041", + "keywords": [ + "Fearsome" + ], + "keywordRefs": [ + "Fearsome" + ], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "COMMON", + "rarityRef": "Common", + "subtypes": [], + "supertype": "", + "type": "Unit", + "collectible": true, + "set": "Set1" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set1/en_us/img/cards/01NX036.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set1/en_us/img/cards/01NX036-full.png" + } + ], + "regions": [ + "Noxus" + ], + "regionRefs": [ + "Noxus" + ], + "attack": 6, + "cost": 6, + "health": 6, + "description": "Round Start: Stun the weakest enemy.", + "descriptionRaw": "Round Start: Stun the weakest enemy.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"I don't care who wronged you or what they did. You need me to make it right in the pit, you pay up front. There's no discount for sad stories.\"", + "artistName": "SIXMOREVODKA", + "name": "Minotaur Reckoner", + "cardCode": "01NX036", + "keywords": [], + "keywordRefs": [], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "RARE", + "rarityRef": "Rare", + "subtypes": [], + "supertype": "", + "type": "Unit", + "collectible": true, + "set": "Set1" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set1/en_us/img/cards/01NX044.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set1/en_us/img/cards/01NX044-full.png" + } + ], + "regions": [ + "Noxus" + ], + "regionRefs": [ + "Noxus" + ], + "attack": 0, + "cost": 6, + "health": 12, + "description": "Attack: Grant me +4|+0.", + "descriptionRaw": "Attack: Grant me +4|+0.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"Sir, they're refusing to open their gates. They've demanded to speak with Darius, but he's two days' ride away. Should we send riders?\"\n\"Oh, that won't be necessary.\"", + "artistName": "SIXMOREVODKA", + "name": "Battering Ram", + "cardCode": "01NX044", + "keywords": [ + "Overwhelm" + ], + "keywordRefs": [ + "Overwhelm" + ], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "EPIC", + "rarityRef": "Epic", + "subtypes": [], + "supertype": "", + "type": "Unit", + "collectible": true, + "set": "Set1" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set1/en_us/img/cards/01NX005.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set1/en_us/img/cards/01NX005-full.png" + } + ], + "regions": [ + "Noxus" + ], + "regionRefs": [ + "Noxus" + ], + "attack": 2, + "cost": 2, + "health": 2, + "description": "Play: Deal 1 to an ally and grant it +2|+0.", + "descriptionRaw": "Play: Deal 1 to an ally and grant it +2|+0.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"Ah, you too? To the Reveler's B--\" \"How am I to tolerate mine?\" \"Respectfully, my dear, my father would disown me. ...perhaps we should wear matching dresses.\"", + "artistName": "SIXMOREVODKA", + "name": "Crimson Aristocrat", + "cardCode": "01NX005", + "keywords": [], + "keywordRefs": [], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "COMMON", + "rarityRef": "Common", + "subtypes": [], + "supertype": "", + "type": "Unit", + "collectible": true, + "set": "Set1" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set1/en_us/img/cards/01NX016.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set1/en_us/img/cards/01NX016-full.png" + } + ], + "regions": [ + "Noxus" + ], + "regionRefs": [ + "Noxus" + ], + "attack": 3, + "cost": 2, + "health": 2, + "description": "When I'm summoned, grant me +2|+0 if you have another Noxus ally.", + "descriptionRaw": "When I'm summoned, grant me +2|+0 if you have another Noxus ally.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"You'll earn the title when your axe is blunt with battle and your boots're sopped with blood.\" - Legion Veteran", + "artistName": "SIXMOREVODKA", + "name": "Trifarian Hopeful", + "cardCode": "01NX016", + "keywords": [], + "keywordRefs": [], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "COMMON", + "rarityRef": "Common", + "subtypes": [], + "supertype": "", + "type": "Unit", + "collectible": true, + "set": "Set1" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set1/en_us/img/cards/01NX019.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set1/en_us/img/cards/01NX019-full.png" + } + ], + "regions": [ + "Noxus" + ], + "regionRefs": [ + "Noxus" + ], + "attack": 0, + "cost": 3, + "health": 0, + "description": "Give an ally +3|+0 and Overwhelm this round.", + "descriptionRaw": "Give an ally +3|+0 and Overwhelm this round.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"When I say subtlety is overrated, that doesn't mean it isn't good. It's just overrated.\" - Darius", + "artistName": "Kudos Productions", + "name": "Might", + "cardCode": "01NX019", + "keywords": [ + "Burst" + ], + "keywordRefs": [ + "Burst" + ], + "spellSpeed": "Burst", + "spellSpeedRef": "Burst", + "rarity": "COMMON", + "rarityRef": "Common", + "subtypes": [], + "supertype": "", + "type": "Spell", + "collectible": true, + "set": "Set1" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set1/en_us/img/cards/01NX015.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set1/en_us/img/cards/01NX015-full.png" + } + ], + "regions": [ + "Noxus" + ], + "regionRefs": [ + "Noxus" + ], + "attack": 2, + "cost": 1, + "health": 1, + "description": "", + "descriptionRaw": "", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "She loves them all. She just loves this one more.", + "artistName": "SIXMOREVODKA", + "name": "Precious Pet", + "cardCode": "01NX015", + "keywords": [ + "Fearsome" + ], + "keywordRefs": [ + "Fearsome" + ], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "COMMON", + "rarityRef": "Common", + "subtypes": [ + "SPIDER" + ], + "supertype": "", + "type": "Unit", + "collectible": true, + "set": "Set1" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set1/en_us/img/cards/01NX050.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set1/en_us/img/cards/01NX050-full.png" + } + ], + "regions": [ + "Noxus" + ], + "regionRefs": [ + "Noxus" + ], + "attack": 0, + "cost": 2, + "health": 0, + "description": "Deal 1 to ALL battling units.", + "descriptionRaw": "Deal 1 to ALL battling units.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"Dance with me!\" - Katarina", + "artistName": "Rafael Zanchetin", + "name": "Death Lotus", + "cardCode": "01NX050", + "keywords": [ + "Fast" + ], + "keywordRefs": [ + "Fast" + ], + "spellSpeed": "Fast", + "spellSpeedRef": "Fast", + "rarity": "RARE", + "rarityRef": "Rare", + "subtypes": [], + "supertype": "", + "type": "Spell", + "collectible": true, + "set": "Set1" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set1/en_us/img/cards/01NX056.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set1/en_us/img/cards/01NX056-full.png" + } + ], + "regions": [ + "Noxus" + ], + "regionRefs": [ + "Noxus" + ], + "attack": 0, + "cost": 5, + "health": 0, + "description": "Deal 2 to an enemy, then Rally.", + "descriptionRaw": "Deal 2 to an enemy, then Rally.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "By the time you've seen the blade, it's far too late.", + "artistName": "Kudos Productions", + "name": "Shunpo", + "cardCode": "01NX056", + "keywords": [ + "Slow" + ], + "keywordRefs": [ + "Slow" + ], + "spellSpeed": "Slow", + "spellSpeedRef": "Slow", + "rarity": "COMMON", + "rarityRef": "Common", + "subtypes": [], + "supertype": "", + "type": "Spell", + "collectible": true, + "set": "Set1" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set1/en_us/img/cards/01NX033.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set1/en_us/img/cards/01NX033-full.png" + } + ], + "regions": [ + "Noxus" + ], + "regionRefs": [ + "Noxus" + ], + "attack": 4, + "cost": 4, + "health": 3, + "description": "When I'm summoned, draw 1 for each 5+ Power ally you have.", + "descriptionRaw": "When I'm summoned, draw 1 for each 5+ Power ally you have.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"It takes a ruthlessly discerning eye to select those worthy enough to become part of the Trifarian Legion, but she can sort the wolves from the sheep a mile away.\" - Legion General", + "artistName": "SIXMOREVODKA", + "name": "Trifarian Assessor", + "cardCode": "01NX033", + "keywords": [], + "keywordRefs": [], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "RARE", + "rarityRef": "Rare", + "subtypes": [], + "supertype": "", + "type": "Unit", + "collectible": true, + "set": "Set1" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set1/en_us/img/cards/01NX052.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set1/en_us/img/cards/01NX052-full.png" + } + ], + "regions": [ + "Noxus" + ], + "regionRefs": [ + "Noxus" + ], + "attack": 0, + "cost": 2, + "health": 0, + "description": "Deal 1 to an allied follower. If it survives, create a copy of it in hand.", + "descriptionRaw": "Deal 1 to an allied follower. If it survives, create a copy of it in hand.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "Nothing is messier than a hemomancer's first lesson.", + "artistName": "Kudos Productions", + "name": "Blood for Blood", + "cardCode": "01NX052", + "keywords": [ + "Burst" + ], + "keywordRefs": [ + "Burst" + ], + "spellSpeed": "Burst", + "spellSpeedRef": "Burst", + "rarity": "COMMON", + "rarityRef": "Common", + "subtypes": [], + "supertype": "", + "type": "Spell", + "collectible": true, + "set": "Set1" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set1/en_us/img/cards/01NX045.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set1/en_us/img/cards/01NX045-full.png" + } + ], + "regions": [ + "Noxus" + ], + "regionRefs": [ + "Noxus" + ], + "attack": 7, + "cost": 7, + "health": 4, + "description": "", + "descriptionRaw": "", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"Next up, CLAWS! Last time was a BLOODY takedown versus the Psycho Five... now the Psycho Three. Allllright! Takin' bets on today's victim! Four to one!\" - Karl, Arena Bookie", + "artistName": "SIXMOREVODKA", + "name": "Savage Reckoner", + "cardCode": "01NX045", + "keywords": [ + "Overwhelm", + "Challenger" + ], + "keywordRefs": [ + "Overwhelm", + "Challenger" + ], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "RARE", + "rarityRef": "Rare", + "subtypes": [], + "supertype": "", + "type": "Unit", + "collectible": true, + "set": "Set1" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set1/en_us/img/cards/01NX031.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set1/en_us/img/cards/01NX031-full.png" + } + ], + "regions": [ + "Noxus" + ], + "regionRefs": [ + "Noxus" + ], + "attack": 5, + "cost": 2, + "health": 1, + "description": "", + "descriptionRaw": "", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "Earning a place in the Trifarian Legion is good enough for most, but not all.", + "artistName": "SIXMOREVODKA", + "name": "Trifarian Gloryseeker", + "cardCode": "01NX031", + "keywords": [ + "Challenger", + "Can't Block" + ], + "keywordRefs": [ + "Challenger", + "CantBlock" + ], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "RARE", + "rarityRef": "Rare", + "subtypes": [], + "supertype": "", + "type": "Unit", + "collectible": true, + "set": "Set1" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set1/en_us/img/cards/01NX002.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set1/en_us/img/cards/01NX002-full.png" + } + ], + "regions": [ + "Noxus" + ], + "regionRefs": [ + "Noxus" + ], + "attack": 0, + "cost": 5, + "health": 0, + "description": "Deal 4 to the enemy Nexus.", + "descriptionRaw": "Deal 4 to the enemy Nexus.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"Sometimes, it takes tactical genius to break a fortress. Sometimes, you just have to hit it harder.\" - Darius", + "artistName": "Max Grecke", + "name": "Decimate", + "cardCode": "01NX002", + "keywords": [ + "Slow" + ], + "keywordRefs": [ + "Slow" + ], + "spellSpeed": "Slow", + "spellSpeedRef": "Slow", + "rarity": "RARE", + "rarityRef": "Rare", + "subtypes": [], + "supertype": "", + "type": "Spell", + "collectible": true, + "set": "Set1" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set1/en_us/img/cards/01NX008.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set1/en_us/img/cards/01NX008-full.png" + } + ], + "regions": [ + "Noxus" + ], + "regionRefs": [ + "Noxus" + ], + "attack": 4, + "cost": 4, + "health": 3, + "description": "Allegiance: Grant me +1|+1 and Overwhelm.", + "descriptionRaw": "Allegiance: Grant me +1|+1 and Overwhelm.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "This particular unit does use horses, just not for riding. The beasts find them delicious.", + "artistName": "SIXMOREVODKA", + "name": "Basilisk Rider", + "cardCode": "01NX008", + "keywords": [], + "keywordRefs": [], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "RARE", + "rarityRef": "Rare", + "subtypes": [], + "supertype": "", + "type": "Unit", + "collectible": true, + "set": "Set1" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set1/en_us/img/cards/01NX034.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set1/en_us/img/cards/01NX034-full.png" + } + ], + "regions": [ + "Noxus" + ], + "regionRefs": [ + "Noxus" + ], + "attack": 1, + "cost": 1, + "health": 1, + "description": "", + "descriptionRaw": "", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"Noxus has no room for... for weakn--Will someone get this DAMNED THING OFF ME?!\" - Darius", + "artistName": "SIXMOREVODKA", + "name": "Affectionate Poro", + "cardCode": "01NX034", + "keywords": [ + "Challenger" + ], + "keywordRefs": [ + "Challenger" + ], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "COMMON", + "rarityRef": "Common", + "subtypes": [ + "PORO" + ], + "supertype": "", + "type": "Unit", + "collectible": true, + "set": "Set1" + }, + { + "associatedCards": [], + "associatedCardRefs": [ + "01NX020" + ], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set1/en_us/img/cards/01NX035.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set1/en_us/img/cards/01NX035-full.png" + } + ], + "regions": [ + "Noxus" + ], + "regionRefs": [ + "Noxus" + ], + "attack": 2, + "cost": 1, + "health": 1, + "description": "When I'm summoned, move Draven to the top of your deck if you don't have him in hand or in play.", + "descriptionRaw": "When I'm summoned, move Draven to the top of your deck if you don't have him in hand or in play.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"You want an autograph? Get... Get in line, pal!\"", + "artistName": "SIXMOREVODKA", + "name": "Draven's Biggest Fan", + "cardCode": "01NX035", + "keywords": [], + "keywordRefs": [], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "COMMON", + "rarityRef": "Common", + "subtypes": [], + "supertype": "", + "type": "Unit", + "collectible": true, + "set": "Set1" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set1/en_us/img/cards/01NX026.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set1/en_us/img/cards/01NX026-full.png" + } + ], + "regions": [ + "Noxus" + ], + "regionRefs": [ + "Noxus" + ], + "attack": 5, + "cost": 3, + "health": 4, + "description": "", + "descriptionRaw": "", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"Recklessness is a fault. Tempered by the Legion, it becomes a tool.\" - Swain", + "artistName": "SIXMOREVODKA", + "name": "Reckless Trifarian", + "cardCode": "01NX026", + "keywords": [ + "Can't Block" + ], + "keywordRefs": [ + "CantBlock" + ], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "COMMON", + "rarityRef": "Common", + "subtypes": [], + "supertype": "", + "type": "Unit", + "collectible": true, + "set": "Set1" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set1/en_us/img/cards/01NX027.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set1/en_us/img/cards/01NX027-full.png" + } + ], + "regions": [ + "Noxus" + ], + "regionRefs": [ + "Noxus" + ], + "attack": 0, + "cost": 1, + "health": 0, + "description": "Give an ally +3|+0 this round.", + "descriptionRaw": "Give an ally +3|+0 this round.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"When the open hand is declined, there's always the fist.\"\n- Noxian axiom", + "artistName": "Kudos Productions", + "name": "Elixir of Wrath", + "cardCode": "01NX027", + "keywords": [ + "Burst" + ], + "keywordRefs": [ + "Burst" + ], + "spellSpeed": "Burst", + "spellSpeedRef": "Burst", + "rarity": "COMMON", + "rarityRef": "Common", + "subtypes": [], + "supertype": "", + "type": "Spell", + "collectible": true, + "set": "Set1" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set1/en_us/img/cards/01NX022.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set1/en_us/img/cards/01NX022-full.png" + } + ], + "regions": [ + "Noxus" + ], + "regionRefs": [ + "Noxus" + ], + "attack": 0, + "cost": 3, + "health": 0, + "description": "Kill a damaged unit to create a Fleeting Noxian Guillotine in hand.", + "descriptionRaw": "Kill a damaged unit to create a Fleeting Noxian Guillotine in hand.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "To Darius, mercy is a deft blow.", + "artistName": "SIXMOREVODKA", + "name": "Noxian Guillotine", + "cardCode": "01NX022", + "keywords": [ + "Fast" + ], + "keywordRefs": [ + "Fast" + ], + "spellSpeed": "Fast", + "spellSpeedRef": "Fast", + "rarity": "RARE", + "rarityRef": "Rare", + "subtypes": [], + "supertype": "", + "type": "Spell", + "collectible": true, + "set": "Set1" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set1/en_us/img/cards/01NX032.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set1/en_us/img/cards/01NX032-full.png" + } + ], + "regions": [ + "Noxus" + ], + "regionRefs": [ + "Noxus" + ], + "attack": 5, + "cost": 4, + "health": 5, + "description": "When I'm summoned, deal 1 to all other allies.", + "descriptionRaw": "When I'm summoned, deal 1 to all other allies.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"Even if I said 'no', you'd drag me along. So... sure.\"", + "artistName": "SIXMOREVODKA", + "name": "Crimson Awakener", + "cardCode": "01NX032", + "keywords": [], + "keywordRefs": [], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "RARE", + "rarityRef": "Rare", + "subtypes": [], + "supertype": "", + "type": "Unit", + "collectible": true, + "set": "Set1" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set1/en_us/img/cards/01NX024.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set1/en_us/img/cards/01NX024-full.png" + } + ], + "regions": [ + "Noxus" + ], + "regionRefs": [ + "Noxus" + ], + "attack": 5, + "cost": 5, + "health": 4, + "description": "Support: Give my supported ally +3|+0 and Overwhelm this round.", + "descriptionRaw": "Support: Give my supported ally +3|+0 and Overwhelm this round.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"Shiraza is a great girlfriend--I mean friend--and we are in no way dating. But if we were, I would like her to know that I wish her a happy anniversary. Thank you, no more questions.\"", + "artistName": "SIXMOREVODKA", + "name": "Kato The Arm", + "cardCode": "01NX024", + "keywords": [ + "Support" + ], + "keywordRefs": [ + "Support" + ], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "EPIC", + "rarityRef": "Epic", + "subtypes": [], + "supertype": "", + "type": "Unit", + "collectible": true, + "set": "Set1" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set1/en_us/img/cards/01NX049.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set1/en_us/img/cards/01NX049-full.png" + } + ], + "regions": [ + "Noxus" + ], + "regionRefs": [ + "Noxus" + ], + "attack": 0, + "cost": 1, + "health": 0, + "description": "Stun an enemy.", + "descriptionRaw": "Stun an enemy.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"Allow your enemies enough rope to hang themselves and you'll save yourself the effort.\" - LeBlanc", + "artistName": "Kudos Productions", + "name": "Guile", + "cardCode": "01NX049", + "keywords": [ + "Slow" + ], + "keywordRefs": [ + "Slow" + ], + "spellSpeed": "Slow", + "spellSpeedRef": "Slow", + "rarity": "COMMON", + "rarityRef": "Common", + "subtypes": [], + "supertype": "", + "type": "Spell", + "collectible": true, + "set": "Set1" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set1/en_us/img/cards/01DE031.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set1/en_us/img/cards/01DE031-full.png" + } + ], + "regions": [ + "Demacia" + ], + "regionRefs": [ + "Demacia" + ], + "attack": 1, + "cost": 3, + "health": 4, + "description": "Round End: Grant other allies +1|+1 if an ally died this round.", + "descriptionRaw": "Round End: Grant other allies +1|+1 if an ally died this round.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"Evil has taken the hour, but it will not win the day. Remember our fallen, and wear their memories like armor!\"", + "artistName": "SIXMOREVODKA", + "name": "Dawnspeakers", + "cardCode": "01DE031", + "keywords": [], + "keywordRefs": [], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "EPIC", + "rarityRef": "Epic", + "subtypes": [], + "supertype": "", + "type": "Unit", + "collectible": true, + "set": "Set1" + }, + { + "associatedCards": [], + "associatedCardRefs": [ + "01DE038", + "01DE022T1", + "01DE022T2", + "05SI009" + ], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set1/en_us/img/cards/01DE022.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set1/en_us/img/cards/01DE022-full.png" + } + ], + "regions": [ + "Demacia" + ], + "regionRefs": [ + "Demacia" + ], + "attack": 3, + "cost": 2, + "health": 2, + "description": "", + "descriptionRaw": "", + "levelupDescription": "I've seen 4+ allies or an allied Senna die.", + "levelupDescriptionRaw": "I've seen 4+ allies or an allied Senna die.", + "flavorText": "\"I'll be alright, Senna, long as I've got you.\"", + "artistName": "SIXMOREVODKA", + "name": "Lucian", + "cardCode": "01DE022", + "keywords": [ + "Quick Attack" + ], + "keywordRefs": [ + "QuickStrike" + ], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "Champion", + "rarityRef": "Champion", + "subtypes": [], + "supertype": "Champion", + "type": "Unit", + "collectible": true, + "set": "Set1" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set1/en_us/img/cards/01DE019.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set1/en_us/img/cards/01DE019-full.png" + } + ], + "regions": [ + "Demacia" + ], + "regionRefs": [ + "Demacia" + ], + "attack": 0, + "cost": 3, + "health": 0, + "description": "Reduce the cost of all allies in hand by 1.", + "descriptionRaw": "Reduce the cost of all allies in hand by 1.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"From the fields to the front in a fortnight. This is what we expect from each and every able body in Demacia.\" - Garen", + "artistName": "Kudos Productions", + "name": "Mobilize", + "cardCode": "01DE019", + "keywords": [ + "Burst" + ], + "keywordRefs": [ + "Burst" + ], + "spellSpeed": "Burst", + "spellSpeedRef": "Burst", + "rarity": "RARE", + "rarityRef": "Rare", + "subtypes": [], + "supertype": "", + "type": "Spell", + "collectible": true, + "set": "Set1" + }, + { + "associatedCards": [], + "associatedCardRefs": [ + "01DE042T2", + "01DE042T1", + "01DE042T3" + ], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set1/en_us/img/cards/01DE042.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set1/en_us/img/cards/01DE042-full.png" + } + ], + "regions": [ + "Demacia" + ], + "regionRefs": [ + "Demacia" + ], + "attack": 3, + "cost": 5, + "health": 5, + "description": "", + "descriptionRaw": "", + "levelupDescription": "I've seen you play 6+ mana of spells. When I level up, create a Final Spark in hand.", + "levelupDescriptionRaw": "I've seen you play 6+ mana of spells. When I level up, create a Final Spark in hand.", + "flavorText": "\"I've always known there's something different about me... a light from within. I'm not sure what it is, but I have to find out!\" ", + "artistName": "SIXMOREVODKA", + "name": "Lux", + "cardCode": "01DE042", + "keywords": [ + "Barrier" + ], + "keywordRefs": [ + "Barrier" + ], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "Champion", + "rarityRef": "Champion", + "subtypes": [], + "supertype": "Champion", + "type": "Unit", + "collectible": true, + "set": "Set1" + }, + { + "associatedCards": [], + "associatedCardRefs": [ + "01DE042", + "01DE042T2" + ], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set1/en_us/img/cards/01DE042T1.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set1/en_us/img/cards/01DE042T1-full.png" + } + ], + "regions": [ + "Demacia" + ], + "regionRefs": [ + "Demacia" + ], + "attack": 0, + "cost": 3, + "health": 0, + "description": "Give an ally Barrier this round.\r\nCreate a Lux in your deck.", + "descriptionRaw": "Give an ally Barrier this round.\r\nCreate a Lux in your deck.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"The world can turn its back on you when you're different. People say your differences make you weak--but they make us strong, compassionate. Even in the darkest times, I'll protect you!\" - Lux", + "artistName": "Kudos Productions", + "name": "Lux's Prismatic Barrier", + "cardCode": "01DE042T1", + "keywords": [ + "Burst" + ], + "keywordRefs": [ + "Burst" + ], + "spellSpeed": "Burst", + "spellSpeedRef": "Burst", + "rarity": "None", + "rarityRef": "None", + "subtypes": [], + "supertype": "Champion", + "type": "Spell", + "collectible": false, + "set": "Set1" + }, + { + "associatedCards": [], + "associatedCardRefs": [ + "01DE042", + "01DE042T1", + "01DE042T3" + ], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set1/en_us/img/cards/01DE042T2.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set1/en_us/img/cards/01DE042T2-full.png" + } + ], + "regions": [ + "Demacia" + ], + "regionRefs": [ + "Demacia" + ], + "attack": 4, + "cost": 5, + "health": 6, + "description": "When you play 6+ mana of spells, create a Final Spark in hand. ", + "descriptionRaw": "When you play 6+ mana of spells, create a Final Spark in hand. ", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"No more holding back!\"", + "artistName": "SIXMOREVODKA", + "name": "Lux", + "cardCode": "01DE042T2", + "keywords": [ + "Barrier" + ], + "keywordRefs": [ + "Barrier" + ], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "None", + "rarityRef": "None", + "subtypes": [], + "supertype": "Champion", + "type": "Unit", + "collectible": false, + "set": "Set1" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set1/en_us/img/cards/01DE042T3.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set1/en_us/img/cards/01DE042T3-full.png" + } + ], + "regions": [ + "Demacia" + ], + "regionRefs": [ + "Demacia" + ], + "attack": 0, + "cost": 0, + "health": 0, + "description": "Deal 4 to an enemy. If there are no enemies, deal 4 to the enemy Nexus instead.", + "descriptionRaw": "Deal 4 to an enemy. If there are no enemies, deal 4 to the enemy Nexus instead.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"I've hidden my light for my whole life. What would happen if they knew... if *I* knew what I could really do?\" - Lux", + "artistName": "Kudos Productions", + "name": "Final Spark", + "cardCode": "01DE042T3", + "keywords": [ + "Overwhelm", + "Fleeting", + "Slow" + ], + "keywordRefs": [ + "SpellOverwhelm", + "Fleeting", + "Slow" + ], + "spellSpeed": "Slow", + "spellSpeedRef": "Slow", + "rarity": "None", + "rarityRef": "None", + "subtypes": [], + "supertype": "", + "type": "Spell", + "collectible": false, + "set": "Set1" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set1/en_us/img/cards/01DE010.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set1/en_us/img/cards/01DE010-full.png" + } + ], + "regions": [ + "Demacia" + ], + "regionRefs": [ + "Demacia" + ], + "attack": 5, + "cost": 5, + "health": 4, + "description": "Last Breath: Create a random Elite in hand.", + "descriptionRaw": "Last Breath: Create a random Elite in hand.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"It takes a bold heart to trust their life to a silverwing, locked in combat far above solid ground. Bold, and highly durable.\" - Garen", + "artistName": "SIXMOREVODKA", + "name": "Swiftwing Lancer", + "cardCode": "01DE010", + "keywords": [ + "Last Breath", + "Challenger" + ], + "keywordRefs": [ + "LastBreath", + "Challenger" + ], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "RARE", + "rarityRef": "Rare", + "subtypes": [ + "ELITE" + ], + "supertype": "", + "type": "Unit", + "collectible": true, + "set": "Set1" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set1/en_us/img/cards/01DE020.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set1/en_us/img/cards/01DE020-full.png" + } + ], + "regions": [ + "Demacia" + ], + "regionRefs": [ + "Demacia" + ], + "attack": 2, + "cost": 2, + "health": 2, + "description": "", + "descriptionRaw": "", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"We didn't know who or what those creatures were. But we knew the faces of our fellow soldiers by our sides, and that was all we needed.\"", + "artistName": "SIXMOREVODKA", + "name": "Vanguard Defender", + "cardCode": "01DE020", + "keywords": [ + "Tough" + ], + "keywordRefs": [ + "Tough" + ], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "COMMON", + "rarityRef": "Common", + "subtypes": [ + "ELITE" + ], + "supertype": "", + "type": "Unit", + "collectible": true, + "set": "Set1" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set1/en_us/img/cards/01DE034.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set1/en_us/img/cards/01DE034-full.png" + } + ], + "regions": [ + "Demacia" + ], + "regionRefs": [ + "Demacia" + ], + "attack": 2, + "cost": 2, + "health": 2, + "description": "When you summon an Elite, grant it +1|+1.", + "descriptionRaw": "When you summon an Elite, grant it +1|+1.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "Wars are won in the forge.", + "artistName": "SIXMOREVODKA", + "name": "Battlesmith", + "cardCode": "01DE034", + "keywords": [], + "keywordRefs": [], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "RARE", + "rarityRef": "Rare", + "subtypes": [], + "supertype": "", + "type": "Unit", + "collectible": true, + "set": "Set1" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set1/en_us/img/cards/01DE002.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set1/en_us/img/cards/01DE002-full.png" + } + ], + "regions": [ + "Demacia" + ], + "regionRefs": [ + "Demacia" + ], + "attack": 8, + "cost": 8, + "health": 8, + "description": "When I'm summoned, Rally.", + "descriptionRaw": "When I'm summoned, Rally.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "“Our House has bled for this realm. You’ll not throw away this family’s honor for a few tricks of light.”", + "artistName": "SIXMOREVODKA", + "name": "Tianna Crownguard", + "cardCode": "01DE002", + "keywords": [ + "Tough" + ], + "keywordRefs": [ + "Tough" + ], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "EPIC", + "rarityRef": "Epic", + "subtypes": [], + "supertype": "", + "type": "Unit", + "collectible": true, + "set": "Set1" + }, + { + "associatedCards": [], + "associatedCardRefs": [ + "01DE012T1", + "01DE012T2" + ], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set1/en_us/img/cards/01DE012.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set1/en_us/img/cards/01DE012-full.png" + } + ], + "regions": [ + "Demacia" + ], + "regionRefs": [ + "Demacia" + ], + "attack": 5, + "cost": 5, + "health": 5, + "description": "When I'm summoned, give other allies +1|+1 this round.", + "descriptionRaw": "When I'm summoned, give other allies +1|+1 this round.", + "levelupDescription": "I've struck twice.", + "levelupDescriptionRaw": "I've struck twice.", + "flavorText": "Training and resilience are the way of a soldier. Even in the face of great peril, we will not falter.", + "artistName": "SIXMOREVODKA", + "name": "Garen", + "cardCode": "01DE012", + "keywords": [ + "Regeneration" + ], + "keywordRefs": [ + "Regeneration" + ], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "Champion", + "rarityRef": "Champion", + "subtypes": [ + "ELITE" + ], + "supertype": "Champion", + "type": "Unit", + "collectible": true, + "set": "Set1" + }, + { + "associatedCards": [], + "associatedCardRefs": [ + "01DE012", + "01DE012T2" + ], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set1/en_us/img/cards/01DE012T1.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set1/en_us/img/cards/01DE012T1-full.png" + } + ], + "regions": [ + "Demacia" + ], + "regionRefs": [ + "Demacia" + ], + "attack": 6, + "cost": 5, + "health": 6, + "description": "When I'm summoned, give other allies +1|+1 this round.\r\nRound Start: Rally.", + "descriptionRaw": "When I'm summoned, give other allies +1|+1 this round.\r\nRound Start: Rally.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"You think me rigid. Single-minded. Predictable. I am rigid, for nothing can sway me. I am single-minded, for I believe in Demacia. And I am predictable, for I will surely defeat you.”", + "artistName": "SIXMOREVODKA", + "name": "Garen", + "cardCode": "01DE012T1", + "keywords": [ + "Regeneration" + ], + "keywordRefs": [ + "Regeneration" + ], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "None", + "rarityRef": "None", + "subtypes": [ + "ELITE" + ], + "supertype": "Champion", + "type": "Unit", + "collectible": false, + "set": "Set1" + }, + { + "associatedCards": [], + "associatedCardRefs": [ + "01DE012", + "01DE012T1" + ], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set1/en_us/img/cards/01DE012T2.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set1/en_us/img/cards/01DE012T2-full.png" + } + ], + "regions": [ + "Demacia" + ], + "regionRefs": [ + "Demacia" + ], + "attack": 0, + "cost": 8, + "health": 0, + "description": "A battling ally strikes all battling enemies.\r\nCreate a Garen in your deck.", + "descriptionRaw": "A battling ally strikes all battling enemies.\r\nCreate a Garen in your deck.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "Justice always comes full circle.", + "artistName": "Kudos Productions", + "name": "Garen's Judgment", + "cardCode": "01DE012T2", + "keywords": [ + "Fast" + ], + "keywordRefs": [ + "Fast" + ], + "spellSpeed": "Fast", + "spellSpeedRef": "Fast", + "rarity": "None", + "rarityRef": "None", + "subtypes": [], + "supertype": "Champion", + "type": "Spell", + "collectible": false, + "set": "Set1" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set1/en_us/img/cards/01DE017.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set1/en_us/img/cards/01DE017-full.png" + } + ], + "regions": [ + "Demacia" + ], + "regionRefs": [ + "Demacia" + ], + "attack": 0, + "cost": 4, + "health": 0, + "description": "If you have exactly 1 ally, grant it +3|+3.", + "descriptionRaw": "If you have exactly 1 ally, grant it +3|+3.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "When others fail, it falls upon the shoulders of a true hero to find a path to victory.", + "artistName": "Kudos Productions", + "name": "Stand Alone", + "cardCode": "01DE017", + "keywords": [ + "Burst" + ], + "keywordRefs": [ + "Burst" + ], + "spellSpeed": "Burst", + "spellSpeedRef": "Burst", + "rarity": "RARE", + "rarityRef": "Rare", + "subtypes": [], + "supertype": "", + "type": "Spell", + "collectible": true, + "set": "Set1" + }, + { + "associatedCards": [], + "associatedCardRefs": [ + "01DE045T1", + "01DE045T2" + ], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set1/en_us/img/cards/01DE045.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set1/en_us/img/cards/01DE045-full.png" + } + ], + "regions": [ + "Demacia" + ], + "regionRefs": [ + "Demacia" + ], + "attack": 3, + "cost": 3, + "health": 2, + "description": "", + "descriptionRaw": "", + "levelupDescription": "I've killed 2 enemies.", + "levelupDescriptionRaw": "I've killed 2 enemies.", + "flavorText": "\"From arena to tournament, training ground to battleground, I long for a worthy opponent. I will not rest until I know I am the greatest.\"", + "artistName": "SIXMOREVODKA", + "name": "Fiora", + "cardCode": "01DE045", + "keywords": [ + "Challenger" + ], + "keywordRefs": [ + "Challenger" + ], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "Champion", + "rarityRef": "Champion", + "subtypes": [], + "supertype": "Champion", + "type": "Unit", + "collectible": true, + "set": "Set1" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set1/en_us/img/cards/01DE052.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set1/en_us/img/cards/01DE052-full.png" + } + ], + "regions": [ + "Demacia" + ], + "regionRefs": [ + "Demacia" + ], + "attack": 9, + "cost": 9, + "health": 9, + "description": "When I'm summoned or Attack: Give all allies Barrier this round.", + "descriptionRaw": "When I'm summoned or Attack: Give all allies Barrier this round.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"This formation is the basis of our tactics. It requires the faith of each soldier in their shield, and in the shields of their companions. So long as they stand, so too shall our realm.\" - Garen\n", + "artistName": "SIXMOREVODKA", + "name": "Brightsteel Formation", + "cardCode": "01DE052", + "keywords": [], + "keywordRefs": [], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "EPIC", + "rarityRef": "Epic", + "subtypes": [], + "supertype": "", + "type": "Unit", + "collectible": true, + "set": "Set1" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set1/en_us/img/cards/01DE021.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set1/en_us/img/cards/01DE021-full.png" + } + ], + "regions": [ + "Demacia" + ], + "regionRefs": [ + "Demacia" + ], + "attack": 0, + "cost": 4, + "health": 0, + "description": "Grant an ally +1|+1.\r\nRally.", + "descriptionRaw": "Grant an ally +1|+1.\r\nRally.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": " \"Everyone's gotta face their fears. Lucky you, here I am.\" - Lucian\n", + "artistName": "Max Grecke", + "name": "Relentless Pursuit", + "cardCode": "01DE021", + "keywords": [ + "Slow" + ], + "keywordRefs": [ + "Slow" + ], + "spellSpeed": "Slow", + "spellSpeedRef": "Slow", + "rarity": "COMMON", + "rarityRef": "Common", + "subtypes": [], + "supertype": "", + "type": "Spell", + "collectible": true, + "set": "Set1" + }, + { + "associatedCards": [], + "associatedCardRefs": [ + "01DE022T1", + "01DE022" + ], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set1/en_us/img/cards/01DE022T2.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set1/en_us/img/cards/01DE022T2-full.png" + } + ], + "regions": [ + "Demacia" + ], + "regionRefs": [ + "Demacia" + ], + "attack": 0, + "cost": 4, + "health": 0, + "description": "Grant an ally +1|+1.\r\nRally.\r\nCreate a Lucian in your deck.", + "descriptionRaw": "Grant an ally +1|+1.\r\nRally.\r\nCreate a Lucian in your deck.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": " \"Everyone's gotta face their fears. Lucky you, here I am.\" - Lucian", + "artistName": "Max Grecke", + "name": "Lucian's Relentless Pursuit", + "cardCode": "01DE022T2", + "keywords": [ + "Slow" + ], + "keywordRefs": [ + "Slow" + ], + "spellSpeed": "Slow", + "spellSpeedRef": "Slow", + "rarity": "None", + "rarityRef": "None", + "subtypes": [], + "supertype": "Champion", + "type": "Spell", + "collectible": false, + "set": "Set1" + }, + { + "associatedCards": [], + "associatedCardRefs": [ + "01DE022", + "01DE022T2" + ], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set1/en_us/img/cards/01DE022T1.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set1/en_us/img/cards/01DE022T1-full.png" + } + ], + "regions": [ + "Demacia" + ], + "regionRefs": [ + "Demacia" + ], + "attack": 4, + "cost": 2, + "health": 3, + "description": "Each round, the first time an ally dies, Rally.", + "descriptionRaw": "Each round, the first time an ally dies, Rally.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"World's full of monsters. If you're lucky, they're the ones you can see. The worst are the ones that stay under your skin.\"", + "artistName": "SIXMOREVODKA", + "name": "Lucian", + "cardCode": "01DE022T1", + "keywords": [ + "Double Attack" + ], + "keywordRefs": [ + "DoubleStrike" + ], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "None", + "rarityRef": "None", + "subtypes": [], + "supertype": "Champion", + "type": "Unit", + "collectible": false, + "set": "Set1" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set1/en_us/img/cards/01DE025.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set1/en_us/img/cards/01DE025-full.png" + } + ], + "regions": [ + "Demacia" + ], + "regionRefs": [ + "Demacia" + ], + "attack": 0, + "cost": 5, + "health": 0, + "description": "An ally Captures a unit.", + "descriptionRaw": "An ally Captures a unit.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"Submit to us. We are the law and you are its subject. There is nothing more.\" - Mageseeker Persuader", + "artistName": "Rafael Zanchetin", + "name": "Detain", + "cardCode": "01DE025", + "keywords": [ + "Fast" + ], + "keywordRefs": [ + "Fast" + ], + "spellSpeed": "Fast", + "spellSpeedRef": "Fast", + "rarity": "COMMON", + "rarityRef": "Common", + "subtypes": [], + "supertype": "", + "type": "Spell", + "collectible": true, + "set": "Set1" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set1/en_us/img/cards/01DE007.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set1/en_us/img/cards/01DE007-full.png" + } + ], + "regions": [ + "Demacia" + ], + "regionRefs": [ + "Demacia" + ], + "attack": 0, + "cost": 8, + "health": 0, + "description": "A battling ally strikes all battling enemies.", + "descriptionRaw": "A battling ally strikes all battling enemies.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "Justice always comes full circle.", + "artistName": "Kudos Productions", + "name": "Judgment", + "cardCode": "01DE007", + "keywords": [ + "Fast" + ], + "keywordRefs": [ + "Fast" + ], + "spellSpeed": "Fast", + "spellSpeedRef": "Fast", + "rarity": "EPIC", + "rarityRef": "Epic", + "subtypes": [], + "supertype": "", + "type": "Spell", + "collectible": true, + "set": "Set1" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set1/en_us/img/cards/01DE055.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set1/en_us/img/cards/01DE055-full.png" + } + ], + "regions": [ + "Demacia" + ], + "regionRefs": [ + "Demacia" + ], + "attack": 4, + "cost": 3, + "health": 2, + "description": "Play: Give an ally Challenger this round.", + "descriptionRaw": "Play: Give an ally Challenger this round.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"He seemed a preening fop with an expensive blade--turns out he really knew how to swing that sword! I'd demand a rematch, but I missed his name with that ridiculous accent.\" - Demacian ensign", + "artistName": "JiHun Lee", + "name": "Laurent Duelist", + "cardCode": "01DE055", + "keywords": [], + "keywordRefs": [], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "COMMON", + "rarityRef": "Common", + "subtypes": [], + "supertype": "", + "type": "Unit", + "collectible": true, + "set": "Set1" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set1/en_us/img/cards/01DE048.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set1/en_us/img/cards/01DE048-full.png" + } + ], + "regions": [ + "Demacia" + ], + "regionRefs": [ + "Demacia" + ], + "attack": 4, + "cost": 4, + "health": 4, + "description": "Grant me +2|+2 once you've played a 6+ cost spell this game.", + "descriptionRaw": "Grant me +2|+2 once you've played a 6+ cost spell this game.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"Long ago, the wild magicks of the Rune Wars brought all Runeterra to its knees. Thus, our order was created to protect our kingdom by ridding it of magic, whether abroad or within.\" - Mageseeker's Handbook", + "artistName": "SIXMOREVODKA", + "name": "Mageseeker Inciter", + "cardCode": "01DE048", + "keywords": [], + "keywordRefs": [], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "RARE", + "rarityRef": "Rare", + "subtypes": [], + "supertype": "", + "type": "Unit", + "collectible": true, + "set": "Set1" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set1/en_us/img/cards/01DE001.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set1/en_us/img/cards/01DE001-full.png" + } + ], + "regions": [ + "Demacia" + ], + "regionRefs": [ + "Demacia" + ], + "attack": 3, + "cost": 4, + "health": 3, + "description": "Allegiance: Grant other allies +1|+1.", + "descriptionRaw": "Allegiance: Grant other allies +1|+1.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"You must understand the weight of our banner. It flies for our king, our houses, our citizens. It is our unwavering belief in Demacia itself. Hold it high. Show them our pride.\" - Tianna Crownguard ", + "artistName": "SIXMOREVODKA", + "name": "Vanguard Bannerman", + "cardCode": "01DE001", + "keywords": [], + "keywordRefs": [], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "RARE", + "rarityRef": "Rare", + "subtypes": [ + "ELITE" + ], + "supertype": "", + "type": "Unit", + "collectible": true, + "set": "Set1" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set1/en_us/img/cards/01DE043.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set1/en_us/img/cards/01DE043-full.png" + } + ], + "regions": [ + "Demacia" + ], + "regionRefs": [ + "Demacia" + ], + "attack": 2, + "cost": 2, + "health": 2, + "description": "Support: Give my supported ally +1|+1 this round.", + "descriptionRaw": "Support: Give my supported ally +1|+1 this round.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "No one in the Demacian army should be trifled with.", + "artistName": "SIXMOREVODKA", + "name": "War Chefs", + "cardCode": "01DE043", + "keywords": [ + "Support" + ], + "keywordRefs": [ + "Support" + ], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "COMMON", + "rarityRef": "Common", + "subtypes": [], + "supertype": "", + "type": "Unit", + "collectible": true, + "set": "Set1" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set1/en_us/img/cards/01DE049.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set1/en_us/img/cards/01DE049-full.png" + } + ], + "regions": [ + "Demacia" + ], + "regionRefs": [ + "Demacia" + ], + "attack": 1, + "cost": 1, + "health": 1, + "description": "", + "descriptionRaw": "", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"New recruit has the kind of endurance and courage shown by our finest soldiers. Will he make it to the Vanguard someday? He's... smaller than the rest, but we'll see.\" - Vanguard Sergeant", + "artistName": "SIXMOREVODKA", + "name": "Plucky Poro", + "cardCode": "01DE049", + "keywords": [ + "Tough" + ], + "keywordRefs": [ + "Tough" + ], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "COMMON", + "rarityRef": "Common", + "subtypes": [ + "PORO" + ], + "supertype": "", + "type": "Unit", + "collectible": true, + "set": "Set1" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set1/en_us/img/cards/01DE053.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set1/en_us/img/cards/01DE053-full.png" + } + ], + "regions": [ + "Demacia" + ], + "regionRefs": [ + "Demacia" + ], + "attack": 3, + "cost": 4, + "health": 2, + "description": "Strike: Create in hand another random Challenger follower from your regions.", + "descriptionRaw": "Strike: Create in hand another random Challenger follower from your regions.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"...Good grief.\" - Fiora", + "artistName": "SIXMOREVODKA", + "name": "Laurent Chevalier", + "cardCode": "01DE053", + "keywords": [ + "Challenger" + ], + "keywordRefs": [ + "Challenger" + ], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "EPIC", + "rarityRef": "Epic", + "subtypes": [], + "supertype": "", + "type": "Unit", + "collectible": true, + "set": "Set1" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set1/en_us/img/cards/01DE033.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set1/en_us/img/cards/01DE033-full.png" + } + ], + "regions": [ + "Demacia" + ], + "regionRefs": [ + "Demacia" + ], + "attack": 0, + "cost": 6, + "health": 0, + "description": "Costs 1 less for each ally that died this round. Summon a random 5 cost follower from Demacia.", + "descriptionRaw": "Costs 1 less for each ally that died this round. Summon a random 5 cost follower from Demacia.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"Today we rise to right the injustices that felled those before us. The sacrifices of our comrades were not in vain.\" - Radiant Guardian", + "artistName": "Original Force", + "name": "Remembrance", + "cardCode": "01DE033", + "keywords": [ + "Slow" + ], + "keywordRefs": [ + "Slow" + ], + "spellSpeed": "Slow", + "spellSpeedRef": "Slow", + "rarity": "RARE", + "rarityRef": "Rare", + "subtypes": [], + "supertype": "", + "type": "Spell", + "collectible": true, + "set": "Set1" + }, + { + "associatedCards": [], + "associatedCardRefs": [ + "01DE045T2", + "01DE045" + ], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set1/en_us/img/cards/01DE045T1.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set1/en_us/img/cards/01DE045T1-full.png" + } + ], + "regions": [ + "Demacia" + ], + "regionRefs": [ + "Demacia" + ], + "attack": 4, + "cost": 3, + "health": 3, + "description": "When I've killed 4 enemies and survived, you win the game. ", + "descriptionRaw": "When I've killed 4 enemies and survived, you win the game. ", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"... and now I know.\"", + "artistName": "SIXMOREVODKA", + "name": "Fiora", + "cardCode": "01DE045T1", + "keywords": [ + "Challenger" + ], + "keywordRefs": [ + "Challenger" + ], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "None", + "rarityRef": "None", + "subtypes": [], + "supertype": "Champion", + "type": "Unit", + "collectible": false, + "set": "Set1" + }, + { + "associatedCards": [], + "associatedCardRefs": [ + "01DE045", + "01DE045T1" + ], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set1/en_us/img/cards/01DE045T2.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set1/en_us/img/cards/01DE045T2-full.png" + } + ], + "regions": [ + "Demacia" + ], + "regionRefs": [ + "Demacia" + ], + "attack": 0, + "cost": 4, + "health": 0, + "description": "Give an ally +3|+0 and Barrier this round.\r\nCreate a Fiora in your deck.", + "descriptionRaw": "Give an ally +3|+0 and Barrier this round.\r\nCreate a Fiora in your deck.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"How appropriate--you fight like a poro!\" - Fiora", + "artistName": "Kudos Productions", + "name": "Fiora's Riposte", + "cardCode": "01DE045T2", + "keywords": [ + "Burst" + ], + "keywordRefs": [ + "Burst" + ], + "spellSpeed": "Burst", + "spellSpeedRef": "Burst", + "rarity": "None", + "rarityRef": "None", + "subtypes": [], + "supertype": "Champion", + "type": "Spell", + "collectible": false, + "set": "Set1" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set1/en_us/img/cards/01DE044.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set1/en_us/img/cards/01DE044-full.png" + } + ], + "regions": [ + "Demacia" + ], + "regionRefs": [ + "Demacia" + ], + "attack": 0, + "cost": 6, + "health": 0, + "description": "Fully heal an ally, then double its Power and Health.", + "descriptionRaw": "Fully heal an ally, then double its Power and Health.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "In Demacia, to be as good as two of the enemy isn't just a boast.", + "artistName": "Rafael Zanchetin", + "name": "Redoubled Valor", + "cardCode": "01DE044", + "keywords": [ + "Slow" + ], + "keywordRefs": [ + "Slow" + ], + "spellSpeed": "Slow", + "spellSpeedRef": "Slow", + "rarity": "RARE", + "rarityRef": "Rare", + "subtypes": [], + "supertype": "", + "type": "Spell", + "collectible": true, + "set": "Set1" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set1/en_us/img/cards/01DE024.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set1/en_us/img/cards/01DE024-full.png" + } + ], + "regions": [ + "Demacia" + ], + "regionRefs": [ + "Demacia" + ], + "attack": 1, + "cost": 1, + "health": 1, + "description": "Last Breath: Create in hand a random 6+ cost spell from a region other than Demacia.", + "descriptionRaw": "Last Breath: Create in hand a random 6+ cost spell from a region other than Demacia.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"Arcane items have undeniable intrigue. But these objects of power are best left to the capable hands of our experts, and away from the well-meaning ignorance of our citizens.\"\n- Mageseeker's Handbook", + "artistName": "SIXMOREVODKA", + "name": "Mageseeker Conservator", + "cardCode": "01DE024", + "keywords": [ + "Last Breath" + ], + "keywordRefs": [ + "LastBreath" + ], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "COMMON", + "rarityRef": "Common", + "subtypes": [], + "supertype": "", + "type": "Unit", + "collectible": true, + "set": "Set1" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set1/en_us/img/cards/01DE004.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set1/en_us/img/cards/01DE004-full.png" + } + ], + "regions": [ + "Demacia" + ], + "regionRefs": [ + "Demacia" + ], + "attack": 2, + "cost": 4, + "health": 1, + "description": "When I'm summoned, summon an exact copy of me.", + "descriptionRaw": "When I'm summoned, summon an exact copy of me.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "They fell from the clouds like silvery bolts of lightning, swift and sure as they dove toward their targets. Then, as suddenly as they appeared, they were gone. ", + "artistName": "SIXMOREVODKA", + "name": "Silverwing Vanguard", + "cardCode": "01DE004", + "keywords": [ + "Challenger" + ], + "keywordRefs": [ + "Challenger" + ], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "COMMON", + "rarityRef": "Common", + "subtypes": [ + "ELITE" + ], + "supertype": "", + "type": "Unit", + "collectible": true, + "set": "Set1" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set1/en_us/img/cards/01DE011.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set1/en_us/img/cards/01DE011-full.png" + } + ], + "regions": [ + "Demacia" + ], + "regionRefs": [ + "Demacia" + ], + "attack": 2, + "cost": 3, + "health": 4, + "description": "", + "descriptionRaw": "", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"He did WHAT? I entrusted him with Pierre de Guillard's priceless dual-balanced sabre! He said it was only to be used for training!\" - Laurent Bladekeeper", + "artistName": "SIXMOREVODKA", + "name": "Laurent Protege", + "cardCode": "01DE011", + "keywords": [ + "Challenger" + ], + "keywordRefs": [ + "Challenger" + ], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "COMMON", + "rarityRef": "Common", + "subtypes": [], + "supertype": "", + "type": "Unit", + "collectible": true, + "set": "Set1" + }, + { + "associatedCards": [], + "associatedCardRefs": [ + "01DE016" + ], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set1/en_us/img/cards/01DE047.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set1/en_us/img/cards/01DE047-full.png" + } + ], + "regions": [ + "Demacia" + ], + "regionRefs": [ + "Demacia" + ], + "attack": 0, + "cost": 3, + "health": 0, + "description": "Summon a Dauntless Vanguard.", + "descriptionRaw": "Summon a Dauntless Vanguard.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "Vestments of the Dauntless Vanguard are handed down from one soldier to the next, so that new recruits may feel the weight and pride of their responsibilities.", + "artistName": "Kudos Productions", + "name": "Succession", + "cardCode": "01DE047", + "keywords": [ + "Slow" + ], + "keywordRefs": [ + "Slow" + ], + "spellSpeed": "Slow", + "spellSpeedRef": "Slow", + "rarity": "COMMON", + "rarityRef": "Common", + "subtypes": [], + "supertype": "", + "type": "Spell", + "collectible": true, + "set": "Set1" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set1/en_us/img/cards/01DE046.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set1/en_us/img/cards/01DE046-full.png" + } + ], + "regions": [ + "Demacia" + ], + "regionRefs": [ + "Demacia" + ], + "attack": 1, + "cost": 2, + "health": 4, + "description": "", + "descriptionRaw": "", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "Just because it's quiet doesn't mean it's safe.", + "artistName": "SIXMOREVODKA", + "name": "Vanguard Lookout", + "cardCode": "01DE046", + "keywords": [], + "keywordRefs": [], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "COMMON", + "rarityRef": "Common", + "subtypes": [ + "ELITE" + ], + "supertype": "", + "type": "Unit", + "collectible": true, + "set": "Set1" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set1/en_us/img/cards/01DE050.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set1/en_us/img/cards/01DE050-full.png" + } + ], + "regions": [ + "Demacia" + ], + "regionRefs": [ + "Demacia" + ], + "attack": 0, + "cost": 2, + "health": 0, + "description": "Silence a follower.", + "descriptionRaw": "Silence a follower.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"Your petricite Graymark is your primary safeguard against magic, a symbol of our responsibilities, and a reminder to others of our authority. Honor it above all else.\"\n- The Mageseekers' Handbook", + "artistName": "Kudos Productions", + "name": "Purify", + "cardCode": "01DE050", + "keywords": [ + "Burst" + ], + "keywordRefs": [ + "Burst" + ], + "spellSpeed": "Burst", + "spellSpeedRef": "Burst", + "rarity": "COMMON", + "rarityRef": "Common", + "subtypes": [], + "supertype": "", + "type": "Spell", + "collectible": true, + "set": "Set1" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set1/en_us/img/cards/01DE016.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set1/en_us/img/cards/01DE016-full.png" + } + ], + "regions": [ + "Demacia" + ], + "regionRefs": [ + "Demacia" + ], + "attack": 3, + "cost": 3, + "health": 3, + "description": "", + "descriptionRaw": "", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "The Dauntless Vanguard are Demacia's most elite warriors, each a legend in their village or shire. But all of them seek to have their names known throughout the realm.", + "artistName": "SIXMOREVODKA", + "name": "Dauntless Vanguard", + "cardCode": "01DE016", + "keywords": [], + "keywordRefs": [], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "None", + "rarityRef": "None", + "subtypes": [ + "ELITE" + ], + "supertype": "", + "type": "Unit", + "collectible": false, + "set": "Set1" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set1/en_us/img/cards/01DE040.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set1/en_us/img/cards/01DE040-full.png" + } + ], + "regions": [ + "Demacia" + ], + "regionRefs": [ + "Demacia" + ], + "attack": 3, + "cost": 2, + "health": 2, + "description": "Grant me +1|+1 and Challenger once you've played a 6+ cost spell this game.", + "descriptionRaw": "Grant me +1|+1 and Challenger once you've played a 6+ cost spell this game.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"Citizens of Demacia, it is my honor to keep you safe. But we must demand your unwavering support, for even within our high walls, mages still walk among us!\"\n", + "artistName": "SIXMOREVODKA", + "name": "Mageseeker Persuader", + "cardCode": "01DE040", + "keywords": [], + "keywordRefs": [], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "RARE", + "rarityRef": "Rare", + "subtypes": [], + "supertype": "", + "type": "Unit", + "collectible": true, + "set": "Set1" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set1/en_us/img/cards/01DE036.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set1/en_us/img/cards/01DE036-full.png" + } + ], + "regions": [ + "Demacia" + ], + "regionRefs": [ + "Demacia" + ], + "attack": 3, + "cost": 3, + "health": 3, + "description": "When you summon an Elite, reduce my cost by 1.", + "descriptionRaw": "When you summon an Elite, reduce my cost by 1.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"Everyone I met, every journey I took taught me something new. But the more I learned and the stronger I became, the more I realized I had much further to go...\" - Cithria, Vanguard Squire\n", + "artistName": "SIXMOREVODKA", + "name": "Vanguard Squire", + "cardCode": "01DE036", + "keywords": [], + "keywordRefs": [], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "COMMON", + "rarityRef": "Common", + "subtypes": [ + "ELITE" + ], + "supertype": "", + "type": "Unit", + "collectible": true, + "set": "Set1" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set1/en_us/img/cards/01DE037.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set1/en_us/img/cards/01DE037-full.png" + } + ], + "regions": [ + "Demacia" + ], + "regionRefs": [ + "Demacia" + ], + "attack": 0, + "cost": 4, + "health": 0, + "description": "Give an ally +3|+0 and Barrier this round.", + "descriptionRaw": "Give an ally +3|+0 and Barrier this round.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"How appropriate--you fight like a poro!\" - Fiora", + "artistName": "Kudos Productions", + "name": "Riposte", + "cardCode": "01DE037", + "keywords": [ + "Burst" + ], + "keywordRefs": [ + "Burst" + ], + "spellSpeed": "Burst", + "spellSpeedRef": "Burst", + "rarity": "RARE", + "rarityRef": "Rare", + "subtypes": [], + "supertype": "", + "type": "Spell", + "collectible": true, + "set": "Set1" + }, + { + "associatedCards": [], + "associatedCardRefs": [ + "01DE016" + ], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set1/en_us/img/cards/01DE014.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set1/en_us/img/cards/01DE014-full.png" + } + ], + "regions": [ + "Demacia" + ], + "regionRefs": [ + "Demacia" + ], + "attack": 0, + "cost": 8, + "health": 0, + "description": "Summon 2 Dauntless Vanguards, then grant Elite allies +1|+1.", + "descriptionRaw": "Summon 2 Dauntless Vanguards, then grant Elite allies +1|+1.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"Our rivals know that to strike at any of us is to strike at all of us.\"\n- The Vanguard's Code\n", + "artistName": "Kudos Productions", + "name": "Reinforcements", + "cardCode": "01DE014", + "keywords": [ + "Slow" + ], + "keywordRefs": [ + "Slow" + ], + "spellSpeed": "Slow", + "spellSpeedRef": "Slow", + "rarity": "RARE", + "rarityRef": "Rare", + "subtypes": [], + "supertype": "", + "type": "Spell", + "collectible": true, + "set": "Set1" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set1/en_us/img/cards/01DE015.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set1/en_us/img/cards/01DE015-full.png" + } + ], + "regions": [ + "Demacia" + ], + "regionRefs": [ + "Demacia" + ], + "attack": 4, + "cost": 5, + "health": 5, + "description": "When I'm summoned, grant me Lifesteal and Tough if an ally died this round.", + "descriptionRaw": "When I'm summoned, grant me Lifesteal and Tough if an ally died this round.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"Waves of cold undead hands pulled down her companions. Only she remained, a gleaming beacon of justice whose blade seemed to sing the names of the fallen with every swing.\" - Demacian ensign", + "artistName": "SIXMOREVODKA", + "name": "Radiant Guardian", + "cardCode": "01DE015", + "keywords": [], + "keywordRefs": [], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "RARE", + "rarityRef": "Rare", + "subtypes": [], + "supertype": "", + "type": "Unit", + "collectible": true, + "set": "Set1" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set1/en_us/img/cards/01DE003.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set1/en_us/img/cards/01DE003-full.png" + } + ], + "regions": [ + "Demacia" + ], + "regionRefs": [ + "Demacia" + ], + "attack": 3, + "cost": 4, + "health": 3, + "description": "Play: Grant an ally +2|+2.", + "descriptionRaw": "Play: Grant an ally +2|+2.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"Yes, they are beautiful. But like any fine instrument, they only reveal their true beauty in the hands of a master.\" ", + "artistName": "SIXMOREVODKA", + "name": "Laurent Bladekeeper", + "cardCode": "01DE003", + "keywords": [], + "keywordRefs": [], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "RARE", + "rarityRef": "Rare", + "subtypes": [], + "supertype": "", + "type": "Unit", + "collectible": true, + "set": "Set1" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set1/en_us/img/cards/01DE026.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set1/en_us/img/cards/01DE026-full.png" + } + ], + "regions": [ + "Demacia" + ], + "regionRefs": [ + "Demacia" + ], + "attack": 0, + "cost": 2, + "health": 0, + "description": "An ally and an enemy strike each other.", + "descriptionRaw": "An ally and an enemy strike each other.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"Save your words; we speak with blades.\" - Fiora", + "artistName": "Kudos Productions", + "name": "Single Combat", + "cardCode": "01DE026", + "keywords": [ + "Fast" + ], + "keywordRefs": [ + "Fast" + ], + "spellSpeed": "Fast", + "spellSpeedRef": "Fast", + "rarity": "COMMON", + "rarityRef": "Common", + "subtypes": [], + "supertype": "", + "type": "Spell", + "collectible": true, + "set": "Set1" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set1/en_us/img/cards/01DE032.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set1/en_us/img/cards/01DE032-full.png" + } + ], + "regions": [ + "Demacia" + ], + "regionRefs": [ + "Demacia" + ], + "attack": 0, + "cost": 3, + "health": 0, + "description": "Give an ally Barrier this round.", + "descriptionRaw": "Give an ally Barrier this round.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"The world can turn its back on you when you're different. People say your differences make you weak--but they make us strong, compassionate. Even in the darkest times, I'll protect you!\" - Lux", + "artistName": "Kudos Productions", + "name": "Prismatic Barrier", + "cardCode": "01DE032", + "keywords": [ + "Burst" + ], + "keywordRefs": [ + "Burst" + ], + "spellSpeed": "Burst", + "spellSpeedRef": "Burst", + "rarity": "COMMON", + "rarityRef": "Common", + "subtypes": [], + "supertype": "", + "type": "Spell", + "collectible": true, + "set": "Set1" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set1/en_us/img/cards/01DE027.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set1/en_us/img/cards/01DE027-full.png" + } + ], + "regions": [ + "Demacia" + ], + "regionRefs": [ + "Demacia" + ], + "attack": 0, + "cost": 3, + "health": 0, + "description": "Give all allies Challenger this round.", + "descriptionRaw": "Give all allies Challenger this round.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"There's not a Demacian alive who would refuse a Laurent's lesson in swordsmanship. Or survived one, for that matter.\" - Fiora", + "artistName": "Kudos Productions", + "name": "En Garde", + "cardCode": "01DE027", + "keywords": [ + "Burst" + ], + "keywordRefs": [ + "Burst" + ], + "spellSpeed": "Burst", + "spellSpeedRef": "Burst", + "rarity": "RARE", + "rarityRef": "Rare", + "subtypes": [], + "supertype": "", + "type": "Spell", + "collectible": true, + "set": "Set1" + }, + { + "associatedCards": [], + "associatedCardRefs": [ + "01DE035" + ], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set1/en_us/img/cards/01DE006.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set1/en_us/img/cards/01DE006-full.png" + } + ], + "regions": [ + "Demacia" + ], + "regionRefs": [ + "Demacia" + ], + "attack": 3, + "cost": 3, + "health": 3, + "description": "When I'm summoned, create a For Demacia! in hand.", + "descriptionRaw": "When I'm summoned, create a For Demacia! in hand.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"He leads our drills from morning to night, and he's the first to head into the fray. Hard as steel, steady as stone--couldn't choose a finer leader.\" - Demacian ensign", + "artistName": "SIXMOREVODKA", + "name": "Vanguard Sergeant", + "cardCode": "01DE006", + "keywords": [], + "keywordRefs": [], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "RARE", + "rarityRef": "Rare", + "subtypes": [ + "ELITE" + ], + "supertype": "", + "type": "Unit", + "collectible": true, + "set": "Set1" + }, + { + "associatedCards": [], + "associatedCardRefs": [ + "01DE022" + ], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set1/en_us/img/cards/01DE038.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set1/en_us/img/cards/01DE038-full.png" + } + ], + "regions": [ + "Demacia" + ], + "regionRefs": [ + "Demacia" + ], + "attack": 4, + "cost": 3, + "health": 2, + "description": "The first time an allied Lucian dies, grant me +1|+1 and Double Attack.", + "descriptionRaw": "The first time an allied Lucian dies, grant me +1|+1 and Double Attack.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"Our Sentinels are the first line of defense between the tide of restless undead and the realms of man. We hit first, hit hard, and NEVER back down when the lives of our companions are on the line.\"", + "artistName": "SIXMOREVODKA", + "name": "Senna, Sentinel of Light", + "cardCode": "01DE038", + "keywords": [ + "Quick Attack" + ], + "keywordRefs": [ + "QuickStrike" + ], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "RARE", + "rarityRef": "Rare", + "subtypes": [], + "supertype": "", + "type": "Unit", + "collectible": true, + "set": "Set1" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set1/en_us/img/cards/01DE041.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set1/en_us/img/cards/01DE041-full.png" + } + ], + "regions": [ + "Demacia" + ], + "regionRefs": [ + "Demacia" + ], + "attack": 0, + "cost": 6, + "health": 0, + "description": "Give 2 allies +3|+3 this round.", + "descriptionRaw": "Give 2 allies +3|+3 this round.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"Cover me, I'm going in!\"\n\"Funny, I was about to say the same to you.\"\n- Lorn and Dax of the Eastern Battalion", + "artistName": "Kudos Productions", + "name": "Back to Back", + "cardCode": "01DE041", + "keywords": [ + "Burst" + ], + "keywordRefs": [ + "Burst" + ], + "spellSpeed": "Burst", + "spellSpeedRef": "Burst", + "rarity": "RARE", + "rarityRef": "Rare", + "subtypes": [], + "supertype": "", + "type": "Spell", + "collectible": true, + "set": "Set1" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set1/en_us/img/cards/01DE035.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set1/en_us/img/cards/01DE035-full.png" + } + ], + "regions": [ + "Demacia" + ], + "regionRefs": [ + "Demacia" + ], + "attack": 0, + "cost": 6, + "health": 0, + "description": "Give all allies +3|+3 this round.", + "descriptionRaw": "Give all allies +3|+3 this round.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "“It is our homes, our families, our comrades in arms. It is our pride, our honor, our strength. And so, today, as we fight for its defense and its very existence, let us shout its name: DEMACIA!\" - Vanguard Sergeant", + "artistName": "Original Force", + "name": "For Demacia!", + "cardCode": "01DE035", + "keywords": [ + "Slow" + ], + "keywordRefs": [ + "Slow" + ], + "spellSpeed": "Slow", + "spellSpeedRef": "Slow", + "rarity": "RARE", + "rarityRef": "Rare", + "subtypes": [], + "supertype": "", + "type": "Spell", + "collectible": true, + "set": "Set1" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set1/en_us/img/cards/01DE018.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set1/en_us/img/cards/01DE018-full.png" + } + ], + "regions": [ + "Demacia" + ], + "regionRefs": [ + "Demacia" + ], + "attack": 0, + "cost": 1, + "health": 0, + "description": "Give an ally +1|+1 this round.", + "descriptionRaw": "Give an ally +1|+1 this round.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"Undead fight like they've got no tomorrow. We'll make sure they won’t get one.\" - Lucian\n\n", + "artistName": "Kudos Productions", + "name": "Radiant Strike", + "cardCode": "01DE018", + "keywords": [ + "Burst" + ], + "keywordRefs": [ + "Burst" + ], + "spellSpeed": "Burst", + "spellSpeedRef": "Burst", + "rarity": "COMMON", + "rarityRef": "Common", + "subtypes": [], + "supertype": "", + "type": "Spell", + "collectible": true, + "set": "Set1" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set1/en_us/img/cards/01DE009.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set1/en_us/img/cards/01DE009-full.png" + } + ], + "regions": [ + "Demacia" + ], + "regionRefs": [ + "Demacia" + ], + "attack": 2, + "cost": 2, + "health": 1, + "description": "Play: Give an ally Barrier this round.", + "descriptionRaw": "Play: Give an ally Barrier this round.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"We are a prosperous nation because each warrior's fate is a coin we will never be content to spend.\" - King Jarvan III", + "artistName": "SIXMOREVODKA", + "name": "Brightsteel Protector", + "cardCode": "01DE009", + "keywords": [], + "keywordRefs": [], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "COMMON", + "rarityRef": "Common", + "subtypes": [], + "supertype": "", + "type": "Unit", + "collectible": true, + "set": "Set1" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set1/en_us/img/cards/01DE039.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set1/en_us/img/cards/01DE039-full.png" + } + ], + "regions": [ + "Demacia" + ], + "regionRefs": [ + "Demacia" + ], + "attack": 2, + "cost": 1, + "health": 2, + "description": "", + "descriptionRaw": "", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"Each night before bed, my mother would tell me stories of Demacia's greatest heroes as she sharpened her sword. My dreams were full of adventures, and today I'll begin a story all my own.\"", + "artistName": "SIXMOREVODKA", + "name": "Cithria of Cloudfield", + "cardCode": "01DE039", + "keywords": [], + "keywordRefs": [], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "COMMON", + "rarityRef": "Common", + "subtypes": [ + "ELITE" + ], + "supertype": "", + "type": "Unit", + "collectible": true, + "set": "Set1" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set1/en_us/img/cards/01DE056.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set1/en_us/img/cards/01DE056-full.png" + } + ], + "regions": [ + "Demacia" + ], + "regionRefs": [ + "Demacia" + ], + "attack": 3, + "cost": 4, + "health": 3, + "description": "Attack: Grant me +2|+2.", + "descriptionRaw": "Attack: Grant me +2|+2.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "The battle cry sounds, and my feet are already turning over the soil. I need nothing but my lady's order to know my destiny and enact her will.", + "artistName": "SIXMOREVODKA", + "name": "Vanguard Firstblade", + "cardCode": "01DE056", + "keywords": [], + "keywordRefs": [], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "COMMON", + "rarityRef": "Common", + "subtypes": [ + "ELITE" + ], + "supertype": "", + "type": "Unit", + "collectible": true, + "set": "Set1" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set1/en_us/img/cards/01DE029.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set1/en_us/img/cards/01DE029-full.png" + } + ], + "regions": [ + "Demacia" + ], + "regionRefs": [ + "Demacia" + ], + "attack": 2, + "cost": 1, + "health": 1, + "description": "When you summon another ally, grant me Challenger.", + "descriptionRaw": "When you summon another ally, grant me Challenger.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "These relatives of the silverwing raptors have the predatory instincts of their cousins alongside a dogged unfamiliarity with their own comparatively diminutive size.", + "artistName": "SIXMOREVODKA", + "name": "Fleetfeather Tracker", + "cardCode": "01DE029", + "keywords": [], + "keywordRefs": [], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "COMMON", + "rarityRef": "Common", + "subtypes": [], + "supertype": "", + "type": "Unit", + "collectible": true, + "set": "Set1" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set1/en_us/img/cards/01DE028.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set1/en_us/img/cards/01DE028-full.png" + } + ], + "regions": [ + "Demacia" + ], + "regionRefs": [ + "Demacia" + ], + "attack": 5, + "cost": 5, + "health": 5, + "description": "", + "descriptionRaw": "", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "The Vanguard needed no drums, no music to keep time in their advance. Only the steady, even beat of hooves against soil.", + "artistName": "SIXMOREVODKA", + "name": "Vanguard Cavalry", + "cardCode": "01DE028", + "keywords": [ + "Tough" + ], + "keywordRefs": [ + "Tough" + ], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "COMMON", + "rarityRef": "Common", + "subtypes": [ + "ELITE" + ], + "supertype": "", + "type": "Unit", + "collectible": true, + "set": "Set1" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set1/en_us/img/cards/01DE013.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set1/en_us/img/cards/01DE013-full.png" + } + ], + "regions": [ + "Demacia" + ], + "regionRefs": [ + "Demacia" + ], + "attack": 0, + "cost": 1, + "health": 0, + "description": "Grant an ally Tough.", + "descriptionRaw": "Grant an ally Tough.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "Demacian steel is known throughout the world for its superior strength. Its forging requires smiths of equal strength and repute.", + "artistName": "Kudos Productions", + "name": "Chain Vest", + "cardCode": "01DE013", + "keywords": [ + "Burst" + ], + "keywordRefs": [ + "Burst" + ], + "spellSpeed": "Burst", + "spellSpeedRef": "Burst", + "rarity": "COMMON", + "rarityRef": "Common", + "subtypes": [], + "supertype": "", + "type": "Spell", + "collectible": true, + "set": "Set1" + }, + { + "associatedCards": [], + "associatedCardRefs": [ + "01DE025" + ], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set1/en_us/img/cards/01DE023.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set1/en_us/img/cards/01DE023-full.png" + } + ], + "regions": [ + "Demacia" + ], + "regionRefs": [ + "Demacia" + ], + "attack": 3, + "cost": 3, + "health": 3, + "description": "Create a Detain in hand once you've played a 6+ cost spell this game.", + "descriptionRaw": "Create a Detain in hand once you've played a 6+ cost spell this game.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"Forgive the intrusion, but we will require your full cooperation. We have been notified of some... 'unusual happenings'...\"", + "artistName": "SIXMOREVODKA", + "name": "Mageseeker Investigator", + "cardCode": "01DE023", + "keywords": [], + "keywordRefs": [], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "COMMON", + "rarityRef": "Common", + "subtypes": [], + "supertype": "", + "type": "Unit", + "collectible": true, + "set": "Set1" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set1/en_us/img/cards/01DE051.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set1/en_us/img/cards/01DE051-full.png" + } + ], + "regions": [ + "Demacia" + ], + "regionRefs": [ + "Demacia" + ], + "attack": 6, + "cost": 6, + "health": 6, + "description": "Attack: Give other attacking allies +1|+1 and Fearsome this round.", + "descriptionRaw": "Attack: Give other attacking allies +1|+1 and Fearsome this round.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"Legends, tales--they were never just fiction to me. They were adventure calling my name. I left Cloudfield to discover my own adventure, only to find I would have many. And they’re just beginning.”\n", + "artistName": "SIXMOREVODKA", + "name": "Cithria the Bold", + "cardCode": "01DE051", + "keywords": [], + "keywordRefs": [], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "EPIC", + "rarityRef": "Epic", + "subtypes": [ + "ELITE" + ], + "supertype": "", + "type": "Unit", + "collectible": true, + "set": "Set1" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set1/en_us/img/cards/01DE054.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set1/en_us/img/cards/01DE054-full.png" + } + ], + "regions": [ + "Demacia" + ], + "regionRefs": [ + "Demacia" + ], + "attack": 3, + "cost": 3, + "health": 3, + "description": "When I'm summoned, draw a unit if an ally died this round.", + "descriptionRaw": "When I'm summoned, draw a unit if an ally died this round.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"Our fallen shall be remembered in every battle cry, in every swing of our swords, and every crash of our shields! Today, we shall be victorious!\"", + "artistName": "SIXMOREVODKA", + "name": "Vanguard Redeemer", + "cardCode": "01DE054", + "keywords": [], + "keywordRefs": [], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "COMMON", + "rarityRef": "Common", + "subtypes": [ + "ELITE" + ], + "supertype": "", + "type": "Unit", + "collectible": true, + "set": "Set1" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set1/en_us/img/cards/01DE030.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set1/en_us/img/cards/01DE030-full.png" + } + ], + "regions": [ + "Demacia" + ], + "regionRefs": [ + "Demacia" + ], + "attack": 2, + "cost": 4, + "health": 3, + "description": "", + "descriptionRaw": "", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "Arrows rained down from the fortress walls in droves, but none could touch that fleck of silver darting through the sky. ", + "artistName": "SIXMOREVODKA", + "name": "Silverwing Diver", + "cardCode": "01DE030", + "keywords": [ + "Elusive", + "Tough" + ], + "keywordRefs": [ + "Elusive", + "Tough" + ], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "COMMON", + "rarityRef": "Common", + "subtypes": [], + "supertype": "", + "type": "Unit", + "collectible": true, + "set": "Set1" + }, + { + "associatedCards": [], + "associatedCardRefs": [ + "01PZ040T2", + "01PZ040T1", + "01PZ040T3" + ], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set1/en_us/img/cards/01PZ040.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set1/en_us/img/cards/01PZ040-full.png" + } + ], + "regions": [ + "Piltover & Zaun" + ], + "regionRefs": [ + "PiltoverZaun" + ], + "attack": 4, + "cost": 4, + "health": 3, + "description": "", + "descriptionRaw": "", + "levelupDescription": "I see your hand is empty.", + "levelupDescriptionRaw": "I see your hand is empty.", + "flavorText": "\"What'samatter, Fishbones?\"\n\"I'm worried about you, Jinx! Every time you get bored, you...\"\n\"...want to blow something up! Great idea, Fishbones!\"", + "artistName": "SIXMOREVODKA", + "name": "Jinx", + "cardCode": "01PZ040", + "keywords": [ + "Quick Attack" + ], + "keywordRefs": [ + "QuickStrike" + ], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "Champion", + "rarityRef": "Champion", + "subtypes": [], + "supertype": "Champion", + "type": "Unit", + "collectible": true, + "set": "Set1" + }, + { + "associatedCards": [], + "associatedCardRefs": [ + "01PZ040T1", + "01PZ040" + ], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set1/en_us/img/cards/01PZ040T3.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set1/en_us/img/cards/01PZ040T3-full.png" + } + ], + "regions": [ + "Piltover & Zaun" + ], + "regionRefs": [ + "PiltoverZaun" + ], + "attack": 0, + "cost": 3, + "health": 0, + "description": "To play, discard 1. Deal 3 to anything.\r\nCreate a Jinx in your deck.", + "descriptionRaw": "To play, discard 1. Deal 3 to anything.\r\nCreate a Jinx in your deck.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"FIRE IN THE CABOODLE!\" - Jinx", + "artistName": "Original Force", + "name": "Jinx's Get Excited!", + "cardCode": "01PZ040T3", + "keywords": [ + "Fast" + ], + "keywordRefs": [ + "Fast" + ], + "spellSpeed": "Fast", + "spellSpeedRef": "Fast", + "rarity": "None", + "rarityRef": "None", + "subtypes": [], + "supertype": "Champion", + "type": "Spell", + "collectible": false, + "set": "Set1" + }, + { + "associatedCards": [], + "associatedCardRefs": [ + "01PZ040T1" + ], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set1/en_us/img/cards/01PZ040T2.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set1/en_us/img/cards/01PZ040T2-full.png" + } + ], + "regions": [ + "Piltover & Zaun" + ], + "regionRefs": [ + "PiltoverZaun" + ], + "attack": 0, + "cost": 1, + "health": 0, + "description": "Deal 4 to the enemy nexus and 1 to all enemies.", + "descriptionRaw": "Deal 4 to the enemy nexus and 1 to all enemies.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"See ya!\" - Jinx", + "artistName": "Ben Skutt", + "name": "Super Mega Death Rocket!", + "cardCode": "01PZ040T2", + "keywords": [ + "Slow", + "Fleeting" + ], + "keywordRefs": [ + "Slow", + "Fleeting" + ], + "spellSpeed": "Slow", + "spellSpeedRef": "Slow", + "rarity": "None", + "rarityRef": "None", + "subtypes": [], + "supertype": "", + "type": "Spell", + "collectible": false, + "set": "Set1" + }, + { + "associatedCards": [], + "associatedCardRefs": [ + "01PZ040T3", + "01PZ040", + "01PZ040T2" + ], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set1/en_us/img/cards/01PZ040T1.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set1/en_us/img/cards/01PZ040T1-full.png" + } + ], + "regions": [ + "Piltover & Zaun" + ], + "regionRefs": [ + "PiltoverZaun" + ], + "attack": 5, + "cost": 4, + "health": 4, + "description": "Round Start: Draw 1.\r\nEach round, the first time you empty your hand, create a Super Mega Death Rocket! in hand.", + "descriptionRaw": "Round Start: Draw 1.\r\nEach round, the first time you empty your hand, create a Super Mega Death Rocket! in hand.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"It's all just fun and games until something gets blown up - then it's a PARTY!\"", + "artistName": "SIXMOREVODKA", + "name": "Jinx", + "cardCode": "01PZ040T1", + "keywords": [ + "Quick Attack" + ], + "keywordRefs": [ + "QuickStrike" + ], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "None", + "rarityRef": "None", + "subtypes": [], + "supertype": "Champion", + "type": "Unit", + "collectible": false, + "set": "Set1" + }, + { + "associatedCards": [], + "associatedCardRefs": [ + "01PZ022", + "01PZ008T2", + "01PZ008T1" + ], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set1/en_us/img/cards/01PZ008.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set1/en_us/img/cards/01PZ008-full.png" + } + ], + "regions": [ + "Piltover & Zaun", + "Bandle City" + ], + "regionRefs": [ + "PiltoverZaun", + "BandleCity" + ], + "attack": 1, + "cost": 1, + "health": 1, + "description": "Nexus Strike: Plant 5 Poison Puffcaps on random cards in the enemy deck.", + "descriptionRaw": "Nexus Strike: Plant 5 Poison Puffcaps on random cards in the enemy deck.", + "levelupDescription": "You've planted 15+ Poison Puffcaps.", + "levelupDescriptionRaw": "You've planted 15+ Poison Puffcaps.", + "flavorText": "\"Bandle Scout Rule 154: Never fear the unknown! Rule 276: Denizens of the woodlands are our friends! Rule 354: If it's fuzzy, it might be safe to pet but certainly isn't safe to eat! Rule 417...\"", + "artistName": "SIXMOREVODKA", + "name": "Teemo", + "cardCode": "01PZ008", + "keywords": [ + "Elusive" + ], + "keywordRefs": [ + "Elusive" + ], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "Champion", + "rarityRef": "Champion", + "subtypes": [ + "YORDLE" + ], + "supertype": "Champion", + "type": "Unit", + "collectible": true, + "set": "Set1" + }, + { + "associatedCards": [], + "associatedCardRefs": [ + "01PZ008", + "01PZ022", + "01PZ008T1" + ], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set1/en_us/img/cards/01PZ008T2.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set1/en_us/img/cards/01PZ008T2-full.png" + } + ], + "regions": [ + "Piltover & Zaun", + "Bandle City" + ], + "regionRefs": [ + "PiltoverZaun", + "BandleCity" + ], + "attack": 2, + "cost": 1, + "health": 2, + "description": "Nexus Strike: Double the Poison Puffcaps in the enemy deck.", + "descriptionRaw": "Nexus Strike: Double the Poison Puffcaps in the enemy deck.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"... make sure you're out of the blast zone!\"", + "artistName": "SIXMOREVODKA", + "name": "Teemo", + "cardCode": "01PZ008T2", + "keywords": [ + "Elusive" + ], + "keywordRefs": [ + "Elusive" + ], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "None", + "rarityRef": "None", + "subtypes": [ + "YORDLE" + ], + "supertype": "Champion", + "type": "Unit", + "collectible": false, + "set": "Set1" + }, + { + "associatedCards": [], + "associatedCardRefs": [ + "01PZ008", + "01PZ008T2", + "01PZ022" + ], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set1/en_us/img/cards/01PZ008T1.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set1/en_us/img/cards/01PZ008T1-full.png" + } + ], + "regions": [ + "Piltover & Zaun" + ], + "regionRefs": [ + "PiltoverZaun" + ], + "attack": 0, + "cost": 1, + "health": 0, + "description": "Plant 5 Poison Puffcaps on random cards in the enemy deck.\r\nCreate a Teemo in your deck.", + "descriptionRaw": "Plant 5 Poison Puffcaps on random cards in the enemy deck.\r\nCreate a Teemo in your deck.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "First, the soft thump as the puffcap pops. Next, searing, debilitating pain. Finally, the distant sound of giggles...", + "artistName": "Kudos Productions", + "name": "Teemo's Mushroom Cloud", + "cardCode": "01PZ008T1", + "keywords": [ + "Burst" + ], + "keywordRefs": [ + "Burst" + ], + "spellSpeed": "Burst", + "spellSpeedRef": "Burst", + "rarity": "None", + "rarityRef": "None", + "subtypes": [], + "supertype": "Champion", + "type": "Spell", + "collectible": false, + "set": "Set1" + }, + { + "associatedCards": [], + "associatedCardRefs": [ + "01PZ056T10", + "01PZ056T3", + "01PZ056T1", + "01PZ056T4", + "01PZ056T7", + "01PZ056T8", + "01PZ056T9", + "01PZ056T2", + "01PZ056T6", + "01PZ056T5", + "01PZ015" + ], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set1/en_us/img/cards/01PZ056.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set1/en_us/img/cards/01PZ056-full.png" + } + ], + "regions": [ + "Piltover & Zaun", + "Bandle City" + ], + "regionRefs": [ + "PiltoverZaun", + "BandleCity" + ], + "attack": 2, + "cost": 5, + "health": 4, + "description": "When you play a spell, create a Fleeting Turret in hand with equal cost. It costs 0.", + "descriptionRaw": "When you play a spell, create a Fleeting Turret in hand with equal cost. It costs 0.", + "levelupDescription": "I've seen you summon 12+ Power of Tech allies.", + "levelupDescriptionRaw": "I've seen you summon 12+ Power of Tech allies.", + "flavorText": "\"Mad scientist? Pft! I'm clearly a very-stable-if-slightly-disorganized-and-eclectic scientist, thank you very much!\"", + "artistName": "SIXMOREVODKA", + "name": "Heimerdinger", + "cardCode": "01PZ056", + "keywords": [ + "Imbue" + ], + "keywordRefs": [ + "Imbue" + ], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "Champion", + "rarityRef": "Champion", + "subtypes": [ + "YORDLE" + ], + "supertype": "Champion", + "type": "Unit", + "collectible": true, + "set": "Set1" + }, + { + "associatedCards": [], + "associatedCardRefs": [ + "01PZ013T1" + ], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set1/en_us/img/cards/01PZ013.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set1/en_us/img/cards/01PZ013-full.png" + } + ], + "regions": [ + "Piltover & Zaun" + ], + "regionRefs": [ + "PiltoverZaun" + ], + "attack": 3, + "cost": 6, + "health": 3, + "description": "Play: Discard your hand. Draw 3. Deal 3 to an enemy.", + "descriptionRaw": "Play: Discard your hand. Draw 3. Deal 3 to an enemy.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "His dreams cost him his hands, yet he persisted. Nothing would stand in his way.", + "artistName": "SIXMOREVODKA", + "name": "Augmented Experimenter", + "cardCode": "01PZ013", + "keywords": [], + "keywordRefs": [], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "EPIC", + "rarityRef": "Epic", + "subtypes": [], + "supertype": "", + "type": "Unit", + "collectible": true, + "set": "Set1" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set1/en_us/img/cards/01PZ007.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set1/en_us/img/cards/01PZ007-full.png" + } + ], + "regions": [ + "Piltover & Zaun" + ], + "regionRefs": [ + "PiltoverZaun" + ], + "attack": 2, + "cost": 3, + "health": 4, + "description": "Support: Create 4 copies of the supported ally in your deck.", + "descriptionRaw": "Support: Create 4 copies of the supported ally in your deck.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "The boom of the cannons drew crowds toward the plaza, eager to see the show. It would take them weeks to wash the last of the confetti from their hair.", + "artistName": "SIXMOREVODKA", + "name": "Parade Electrorig", + "cardCode": "01PZ007", + "keywords": [ + "Support" + ], + "keywordRefs": [ + "Support" + ], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "COMMON", + "rarityRef": "Common", + "subtypes": [], + "supertype": "", + "type": "Unit", + "collectible": true, + "set": "Set1" + }, + { + "associatedCards": [], + "associatedCardRefs": [ + "01PZ056T3", + "01PZ056T1", + "01PZ056T4", + "01PZ056T7", + "01PZ056T8", + "01PZ056T9", + "01PZ056T2", + "01PZ056T6", + "01PZ056T5", + "01PZ015", + "01PZ056" + ], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set1/en_us/img/cards/01PZ056T10.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set1/en_us/img/cards/01PZ056T10-full.png" + } + ], + "regions": [ + "Piltover & Zaun", + "Bandle City" + ], + "regionRefs": [ + "PiltoverZaun", + "BandleCity" + ], + "attack": 3, + "cost": 5, + "health": 5, + "description": "When you play a spell, create a Fleeting Turret in hand with equal cost. Grant it +1|+1 and it costs 0.", + "descriptionRaw": "When you play a spell, create a Fleeting Turret in hand with equal cost. Grant it +1|+1 and it costs 0.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"PROGRESSSSS!\"", + "artistName": "SIXMOREVODKA", + "name": "Heimerdinger", + "cardCode": "01PZ056T10", + "keywords": [ + "Imbue" + ], + "keywordRefs": [ + "Imbue" + ], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "None", + "rarityRef": "None", + "subtypes": [ + "YORDLE" + ], + "supertype": "Champion", + "type": "Unit", + "collectible": false, + "set": "Set1" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set1/en_us/img/cards/01PZ056T7.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set1/en_us/img/cards/01PZ056T7-full.png" + } + ], + "regions": [ + "Piltover & Zaun" + ], + "regionRefs": [ + "PiltoverZaun" + ], + "attack": 2, + "cost": 2, + "health": 1, + "description": "", + "descriptionRaw": "", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"Safety precautions for the laboratory! Recent postings have mentioned young Jayce's workshop was raided by thieves. Ha--local intruders, beware!\"\n- Heimerdinger's Lab Notes, Vol. 2", + "artistName": "SIXMOREVODKA", + "name": "Mk2: Evolution Turret", + "cardCode": "01PZ056T7", + "keywords": [ + "Tough" + ], + "keywordRefs": [ + "Tough" + ], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "None", + "rarityRef": "None", + "subtypes": [ + "TECH" + ], + "supertype": "", + "type": "Unit", + "collectible": false, + "set": "Set1" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set1/en_us/img/cards/01PZ056T9.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set1/en_us/img/cards/01PZ056T9-full.png" + } + ], + "regions": [ + "Piltover & Zaun" + ], + "regionRefs": [ + "PiltoverZaun" + ], + "attack": 4, + "cost": 4, + "health": 1, + "description": "", + "descriptionRaw": "", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"PROGRESS CONTINUES! I have finally found a way to combine the raw power of hexenergy with my ball tosser! I present, the STORMLOBBER! Now to sleep.\"\n- Heimerdinger's Lab Notes, Vol. 4", + "artistName": "SIXMOREVODKA", + "name": "Mk4: Stormlobber", + "cardCode": "01PZ056T9", + "keywords": [ + "Overwhelm" + ], + "keywordRefs": [ + "Overwhelm" + ], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "None", + "rarityRef": "None", + "subtypes": [ + "TECH" + ], + "supertype": "", + "type": "Unit", + "collectible": false, + "set": "Set1" + }, + { + "associatedCards": [], + "associatedCardRefs": [ + "01PZ056", + "01PZ056T10" + ], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set1/en_us/img/cards/01PZ056T3.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set1/en_us/img/cards/01PZ056T3-full.png" + } + ], + "regions": [ + "Piltover & Zaun" + ], + "regionRefs": [ + "PiltoverZaun" + ], + "attack": 0, + "cost": 8, + "health": 0, + "description": "Draw 3, then reduce those cards' costs by 1.\r\nCreate a Heimerdinger in your deck.", + "descriptionRaw": "Draw 3, then reduce those cards' costs by 1.\r\nCreate a Heimerdinger in your deck.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "PROGRESS DAY!\nCelebrate at the PLAZA OF THE SUN GATES!\nSee HEXTECH WONDERS!\nGasp at the DARING PORO!\nHear the MAN OF TOMORROW speak on the STATE OF TODAY!\nFREE entry! \nPiltovan children welcome!", + "artistName": "Kudos Productions", + "name": "Heimerdinger's Progress Day!", + "cardCode": "01PZ056T3", + "keywords": [ + "Burst" + ], + "keywordRefs": [ + "Burst" + ], + "spellSpeed": "Burst", + "spellSpeedRef": "Burst", + "rarity": "None", + "rarityRef": "None", + "subtypes": [], + "supertype": "Champion", + "type": "Spell", + "collectible": false, + "set": "Set1" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set1/en_us/img/cards/01PZ056T8.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set1/en_us/img/cards/01PZ056T8-full.png" + } + ], + "regions": [ + "Piltover & Zaun" + ], + "regionRefs": [ + "PiltoverZaun" + ], + "attack": 3, + "cost": 3, + "health": 1, + "description": "", + "descriptionRaw": "", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"Ah, the sweet smell of science! I have successfully upgraded my turrets! I must say... this model's appearance sends hypothermic waves through my vertebrae! Brr!\"\n- Heimerdinger's Lab Notes, Vol. 3", + "artistName": "SIXMOREVODKA", + "name": "Mk3: Apex Turret", + "cardCode": "01PZ056T8", + "keywords": [ + "Fearsome" + ], + "keywordRefs": [ + "Fearsome" + ], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "None", + "rarityRef": "None", + "subtypes": [ + "TECH" + ], + "supertype": "", + "type": "Unit", + "collectible": false, + "set": "Set1" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set1/en_us/img/cards/01PZ056T2.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set1/en_us/img/cards/01PZ056T2-full.png" + } + ], + "regions": [ + "Piltover & Zaun" + ], + "regionRefs": [ + "PiltoverZaun" + ], + "attack": 5, + "cost": 5, + "health": 1, + "description": "", + "descriptionRaw": "", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"After a few production issues--propulsion and guidance, predominantly--I am ready to unveil my PROPELLED COMBUSTIBLES! ...must work on a better name.\"\n- Heimerdinger's Lab Notes, Vol. 5", + "artistName": "SIXMOREVODKA", + "name": "Mk5: Rocket Blaster", + "cardCode": "01PZ056T2", + "keywords": [ + "Quick Attack" + ], + "keywordRefs": [ + "QuickStrike" + ], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "None", + "rarityRef": "None", + "subtypes": [ + "TECH" + ], + "supertype": "", + "type": "Unit", + "collectible": false, + "set": "Set1" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set1/en_us/img/cards/01PZ056T5.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set1/en_us/img/cards/01PZ056T5-full.png" + } + ], + "regions": [ + "Piltover & Zaun" + ], + "regionRefs": [ + "PiltoverZaun" + ], + "attack": 7, + "cost": 7, + "health": 1, + "description": "", + "descriptionRaw": "", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"I dreamt of a great mechanical beast, obeying my every command! I MUST realize this vision. First, stability tests, then ordnance and armor evaluation...\"\n- Heimerdinger's Lab Notes, Vol. 7", + "artistName": "SIXMOREVODKA", + "name": "Mk7: Armored Stomper", + "cardCode": "01PZ056T5", + "keywords": [ + "Barrier" + ], + "keywordRefs": [ + "Barrier" + ], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "None", + "rarityRef": "None", + "subtypes": [ + "TECH" + ], + "supertype": "", + "type": "Unit", + "collectible": false, + "set": "Set1" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set1/en_us/img/cards/01PZ056T1.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set1/en_us/img/cards/01PZ056T1-full.png" + } + ], + "regions": [ + "Piltover & Zaun" + ], + "regionRefs": [ + "PiltoverZaun" + ], + "attack": 0, + "cost": 0, + "health": 1, + "description": "", + "descriptionRaw": "", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"TODAY I EMBARK UPON A NEW SCIENTIFIC ADVENTURE: AUTOMATONS! As the saying goes, it takes a great mind to create great things! Who said that, you ask? Why, ME!\"\n- Heimerdinger's Lab Notes, Preface", + "artistName": "SIXMOREVODKA", + "name": "Mk0: Windup Shredder", + "cardCode": "01PZ056T1", + "keywords": [ + "Challenger" + ], + "keywordRefs": [ + "Challenger" + ], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "None", + "rarityRef": "None", + "subtypes": [ + "TECH" + ], + "supertype": "", + "type": "Unit", + "collectible": false, + "set": "Set1" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set1/en_us/img/cards/01PZ056T4.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set1/en_us/img/cards/01PZ056T4-full.png" + } + ], + "regions": [ + "Piltover & Zaun" + ], + "regionRefs": [ + "PiltoverZaun" + ], + "attack": 1, + "cost": 1, + "health": 1, + "description": "", + "descriptionRaw": "", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"It occurred to me earlier that--with only two hands--I can only maximally operate two wrenches! My solution: MORE HANDS. Oho! I jest. A WRENCHBOT!\"\n- Heimerdinger's Lab Notes, Vol. 1", + "artistName": "SIXMOREVODKA", + "name": "Mk1: Wrenchbot", + "cardCode": "01PZ056T4", + "keywords": [], + "keywordRefs": [], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "None", + "rarityRef": "None", + "subtypes": [ + "TECH" + ], + "supertype": "", + "type": "Unit", + "collectible": false, + "set": "Set1" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set1/en_us/img/cards/01PZ056T6.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set1/en_us/img/cards/01PZ056T6-full.png" + } + ], + "regions": [ + "Piltover & Zaun" + ], + "regionRefs": [ + "PiltoverZaun" + ], + "attack": 6, + "cost": 6, + "health": 1, + "description": "", + "descriptionRaw": "", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"I seem to have misplaced my latest work. And my mezzanine. I'm concerned about my bot, but the shrieking from the ceramics research laboratory gives me hope!\"\n- Heimerdinger's Lab Notes, Vol. 6", + "artistName": "SIXMOREVODKA", + "name": "Mk6: Floor-B-Gone", + "cardCode": "01PZ056T6", + "keywords": [ + "Elusive" + ], + "keywordRefs": [ + "Elusive" + ], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "None", + "rarityRef": "None", + "subtypes": [ + "TECH" + ], + "supertype": "", + "type": "Unit", + "collectible": false, + "set": "Set1" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set1/en_us/img/cards/01PZ018.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set1/en_us/img/cards/01PZ018-full.png" + } + ], + "regions": [ + "Piltover & Zaun" + ], + "regionRefs": [ + "PiltoverZaun" + ], + "attack": 3, + "cost": 2, + "health": 1, + "description": "", + "descriptionRaw": "", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "How does she aim? That's an excellent question.", + "artistName": "SIXMOREVODKA", + "name": "Academy Prodigy", + "cardCode": "01PZ018", + "keywords": [ + "Quick Attack" + ], + "keywordRefs": [ + "QuickStrike" + ], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "COMMON", + "rarityRef": "Common", + "subtypes": [], + "supertype": "", + "type": "Unit", + "collectible": true, + "set": "Set1" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set1/en_us/img/cards/01PZ019.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set1/en_us/img/cards/01PZ019-full.png" + } + ], + "regions": [ + "Piltover & Zaun" + ], + "regionRefs": [ + "PiltoverZaun" + ], + "attack": 2, + "cost": 2, + "health": 1, + "description": "When I'm summoned, refill 2 spell mana.", + "descriptionRaw": "When I'm summoned, refill 2 spell mana.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "Not everyone is cut out to further progress in Piltover immediately. Some need a little guidance--those who look at invention through the wrong lens, for instance.", + "artistName": "SIXMOREVODKA", + "name": "Eager Apprentice", + "cardCode": "01PZ019", + "keywords": [], + "keywordRefs": [], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "COMMON", + "rarityRef": "Common", + "subtypes": [], + "supertype": "", + "type": "Unit", + "collectible": true, + "set": "Set1" + }, + { + "associatedCards": [], + "associatedCardRefs": [ + "01PZ022" + ], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set1/en_us/img/cards/01PZ025.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set1/en_us/img/cards/01PZ025-full.png" + } + ], + "regions": [ + "Piltover & Zaun" + ], + "regionRefs": [ + "PiltoverZaun" + ], + "attack": 3, + "cost": 3, + "health": 3, + "description": "When you play a spell, plant 3 Poison Puffcaps on random cards in the enemy deck.", + "descriptionRaw": "When you play a spell, plant 3 Poison Puffcaps on random cards in the enemy deck.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"These any good?\"\n\"Of course! They're all top notch! Spoke to them myself!\"\n\"Okay hand em--wait what?\"\n\"Mmhmm! Getting married, this one!\"\n\"How many have you had...?\"\n\"--to a barnacle!\"", + "artistName": "SIXMOREVODKA", + "name": "Puffcap Peddler", + "cardCode": "01PZ025", + "keywords": [ + "Imbue" + ], + "keywordRefs": [ + "Imbue" + ], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "COMMON", + "rarityRef": "Common", + "subtypes": [], + "supertype": "", + "type": "Unit", + "collectible": true, + "set": "Set1" + }, + { + "associatedCards": [], + "associatedCardRefs": [ + "01PZ048T1" + ], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set1/en_us/img/cards/01PZ048.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set1/en_us/img/cards/01PZ048-full.png" + } + ], + "regions": [ + "Piltover & Zaun" + ], + "regionRefs": [ + "PiltoverZaun" + ], + "attack": 8, + "cost": 9, + "health": 8, + "description": "Play: Obliterate the top 5 cards of your deck to deal 1 to all enemies and the enemy Nexus for each spell obliterated.", + "descriptionRaw": "Play: Obliterate the top 5 cards of your deck to deal 1 to all enemies and the enemy Nexus for each spell obliterated.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"The narrow-minded Piltovans know only gears and metal, and cannot appreciate the delicate art in every stem, every petal, every cell of my cultivair. I will craft them an undeservedly graceful doom.\"", + "artistName": "SIXMOREVODKA", + "name": "Corina Veraza", + "cardCode": "01PZ048", + "keywords": [], + "keywordRefs": [], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "EPIC", + "rarityRef": "Epic", + "subtypes": [], + "supertype": "", + "type": "Unit", + "collectible": true, + "set": "Set1" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set1/en_us/img/cards/01PZ048T1.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set1/en_us/img/cards/01PZ048T1-full.png" + } + ], + "regions": [ + "Piltover & Zaun" + ], + "regionRefs": [ + "PiltoverZaun" + ], + "attack": 0, + "cost": 0, + "health": 0, + "description": "Obliterate the top 5 cards of your deck to deal 1 to all enemies and the enemy Nexus for each spell obliterated.", + "descriptionRaw": "Obliterate the top 5 cards of your deck to deal 1 to all enemies and the enemy Nexus for each spell obliterated.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"I told them that every achievement had its cost. I didn't tell them who would pay it.\" - Corina Veraza", + "artistName": "Kudos Productions", + "name": "Magnum Opus", + "cardCode": "01PZ048T1", + "keywords": [ + "Skill" + ], + "keywordRefs": [ + "Skill" + ], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "None", + "rarityRef": "None", + "subtypes": [], + "supertype": "", + "type": "Ability", + "collectible": false, + "set": "Set1" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set1/en_us/img/cards/01PZ032.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set1/en_us/img/cards/01PZ032-full.png" + } + ], + "regions": [ + "Piltover & Zaun" + ], + "regionRefs": [ + "PiltoverZaun" + ], + "attack": 1, + "cost": 1, + "health": 1, + "description": "", + "descriptionRaw": "", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "Everyone tries to chase it down. Poor little thing just wants to play in puddles!", + "artistName": "SIXMOREVODKA", + "name": "Scrap Scuttler", + "cardCode": "01PZ032", + "keywords": [], + "keywordRefs": [], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "None", + "rarityRef": "None", + "subtypes": [], + "supertype": "", + "type": "Unit", + "collectible": false, + "set": "Set1" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set1/en_us/img/cards/01PZ015.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set1/en_us/img/cards/01PZ015-full.png" + } + ], + "regions": [ + "Piltover & Zaun" + ], + "regionRefs": [ + "PiltoverZaun" + ], + "attack": 8, + "cost": 8, + "health": 8, + "description": "", + "descriptionRaw": "", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"IT'S FINALLY COMPLETE! SIX-HUNDRED AND FIFTY-TWO FEET OF ROTARY-TEMPERED, HEX-PLATED, QUADRANIUM-CELL-POWERED STOMPING!!! My finest work, if I daresaysomyself.\"\n- Heimerdinger's Lab Notes, Vol. 8", + "artistName": "SIXMOREVODKA", + "name": "T-Hex", + "cardCode": "01PZ015", + "keywords": [], + "keywordRefs": [], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "None", + "rarityRef": "None", + "subtypes": [ + "TECH" + ], + "supertype": "", + "type": "Unit", + "collectible": false, + "set": "Set1" + }, + { + "associatedCards": [], + "associatedCardRefs": [ + "01PZ008" + ], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set1/en_us/img/cards/01PZ022.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set1/en_us/img/cards/01PZ022-full.png" + } + ], + "regions": [ + "Piltover & Zaun" + ], + "regionRefs": [ + "PiltoverZaun" + ], + "attack": 0, + "cost": 0, + "health": 0, + "description": "Deal 1 to your Nexus.", + "descriptionRaw": "Deal 1 to your Nexus.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"Pop goes the puffcap, pop goes the puffcap,\nOw ow ow, ow ow ow!\nPop goes the puffcap, pop goes the puffcap,\nDown we go, down we go!\"\n- Zaunite nursery rhyme", + "artistName": "SIXMOREVODKA", + "name": "Poison Puffcap", + "cardCode": "01PZ022", + "keywords": [ + "Trap" + ], + "keywordRefs": [ + "Autoplay" + ], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "None", + "rarityRef": "None", + "subtypes": [], + "supertype": "", + "type": "Trap", + "collectible": false, + "set": "Set1" + }, + { + "associatedCards": [], + "associatedCardRefs": [ + "01PZ032" + ], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set1/en_us/img/cards/01PZ028.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set1/en_us/img/cards/01PZ028-full.png" + } + ], + "regions": [ + "Piltover & Zaun" + ], + "regionRefs": [ + "PiltoverZaun" + ], + "attack": 0, + "cost": 1, + "health": 0, + "description": "When played or discarded, summon a Scrap Scuttler.", + "descriptionRaw": "When played or discarded, summon a Scrap Scuttler.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "With a handful of scrap and mere moments left, the young inventor recalled an unusual source of inspiration: a creature she once saw scuttling along the rivers of a distant jungle.", + "artistName": "Kudos Productions", + "name": "Jury-Rig", + "cardCode": "01PZ028", + "keywords": [ + "Burst" + ], + "keywordRefs": [ + "Burst" + ], + "spellSpeed": "Burst", + "spellSpeedRef": "Burst", + "rarity": "COMMON", + "rarityRef": "Common", + "subtypes": [], + "supertype": "", + "type": "Spell", + "collectible": true, + "set": "Set1" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set1/en_us/img/cards/01PZ050.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set1/en_us/img/cards/01PZ050-full.png" + } + ], + "regions": [ + "Piltover & Zaun" + ], + "regionRefs": [ + "PiltoverZaun" + ], + "attack": 0, + "cost": 3, + "health": 0, + "description": "Give an ally +4|+0 and Quick Attack this round.", + "descriptionRaw": "Give an ally +4|+0 and Quick Attack this round.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"It kinda tickles when it starts to glow. That's normal... right?\" - Ezreal", + "artistName": "Original Force", + "name": "Rising Spell Force", + "cardCode": "01PZ050", + "keywords": [ + "Burst" + ], + "keywordRefs": [ + "Burst" + ], + "spellSpeed": "Burst", + "spellSpeedRef": "Burst", + "rarity": "COMMON", + "rarityRef": "Common", + "subtypes": [], + "supertype": "", + "type": "Spell", + "collectible": true, + "set": "Set1" + }, + { + "associatedCards": [], + "associatedCardRefs": [ + "01PZ054T1" + ], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set1/en_us/img/cards/01PZ054.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set1/en_us/img/cards/01PZ054-full.png" + } + ], + "regions": [ + "Piltover & Zaun" + ], + "regionRefs": [ + "PiltoverZaun" + ], + "attack": 1, + "cost": 2, + "health": 3, + "description": "Attack: Deal 2 to the enemy Nexus.", + "descriptionRaw": "Attack: Deal 2 to the enemy Nexus.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"You sure about this?\"\n\"Nope.\"\n\"You were supposed to say 'yes'.\"\n\"You weren't supposed to ask.\"", + "artistName": "SIXMOREVODKA", + "name": "Boomcrew Rookie", + "cardCode": "01PZ054", + "keywords": [], + "keywordRefs": [], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "COMMON", + "rarityRef": "Common", + "subtypes": [], + "supertype": "", + "type": "Unit", + "collectible": true, + "set": "Set1" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set1/en_us/img/cards/01PZ054T1.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set1/en_us/img/cards/01PZ054T1-full.png" + } + ], + "regions": [ + "Piltover & Zaun" + ], + "regionRefs": [ + "PiltoverZaun" + ], + "attack": 0, + "cost": 0, + "health": 0, + "description": "Deal 2 to the enemy Nexus.", + "descriptionRaw": "Deal 2 to the enemy Nexus.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"Time to go!\" - Boomcrew Rookie", + "artistName": "Kudos Productions", + "name": "Undermine", + "cardCode": "01PZ054T1", + "keywords": [ + "Skill" + ], + "keywordRefs": [ + "Skill" + ], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "None", + "rarityRef": "None", + "subtypes": [], + "supertype": "", + "type": "Ability", + "collectible": false, + "set": "Set1" + }, + { + "associatedCards": [], + "associatedCardRefs": [ + "01PZ030T1" + ], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set1/en_us/img/cards/01PZ030.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set1/en_us/img/cards/01PZ030-full.png" + } + ], + "regions": [ + "Piltover & Zaun" + ], + "regionRefs": [ + "PiltoverZaun" + ], + "attack": 1, + "cost": 4, + "health": 3, + "description": "Play: Pick a follower. Transform me into an exact copy of it.", + "descriptionRaw": "Play: Pick a follower. Transform me into an exact copy of it.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"Hello, fellow Chem-Barons!\"", + "artistName": "SIXMOREVODKA", + "name": "Shady Character", + "cardCode": "01PZ030", + "keywords": [], + "keywordRefs": [], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "RARE", + "rarityRef": "Rare", + "subtypes": [ + "YORDLE" + ], + "supertype": "", + "type": "Unit", + "collectible": true, + "set": "Set1" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set1/en_us/img/cards/01PZ030T1.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set1/en_us/img/cards/01PZ030T1-full.png" + } + ], + "regions": [ + "Piltover & Zaun" + ], + "regionRefs": [ + "PiltoverZaun" + ], + "attack": 0, + "cost": 0, + "health": 0, + "description": "Pick a follower. Transform me into an exact copy of it.", + "descriptionRaw": "Pick a follower. Transform me into an exact copy of it.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "Definitely not a pair of yordles in a suit.", + "artistName": "Kudos Productions", + "name": "Impersonate", + "cardCode": "01PZ030T1", + "keywords": [ + "Skill" + ], + "keywordRefs": [ + "Skill" + ], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "None", + "rarityRef": "None", + "subtypes": [], + "supertype": "", + "type": "Ability", + "collectible": false, + "set": "Set1" + }, + { + "associatedCards": [], + "associatedCardRefs": [ + "01PZ047" + ], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set1/en_us/img/cards/01PZ017.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set1/en_us/img/cards/01PZ017-full.png" + } + ], + "regions": [ + "Piltover & Zaun" + ], + "regionRefs": [ + "PiltoverZaun" + ], + "attack": 3, + "cost": 3, + "health": 2, + "description": "When I'm summoned, summon 2 Caustic Casks.", + "descriptionRaw": "When I'm summoned, summon 2 Caustic Casks.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"Ziel sent ya? I told him, what's his is his. Can't refund somethin' I ain't ever seen before, can I? But, as it happens, I just received a batch of new casks I could be persuaded to part with...\"", + "artistName": "SIXMOREVODKA", + "name": "Used Cask Salesman", + "cardCode": "01PZ017", + "keywords": [], + "keywordRefs": [], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "COMMON", + "rarityRef": "Common", + "subtypes": [], + "supertype": "", + "type": "Unit", + "collectible": true, + "set": "Set1" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set1/en_us/img/cards/01PZ038.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set1/en_us/img/cards/01PZ038-full.png" + } + ], + "regions": [ + "Piltover & Zaun" + ], + "regionRefs": [ + "PiltoverZaun" + ], + "attack": 4, + "cost": 3, + "health": 3, + "description": "Play: Discard a card to draw 1.", + "descriptionRaw": "Play: Discard a card to draw 1.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "In the Sump, waste is never wasted.", + "artistName": "SIXMOREVODKA", + "name": "Sump Dredger", + "cardCode": "01PZ038", + "keywords": [], + "keywordRefs": [], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "COMMON", + "rarityRef": "Common", + "subtypes": [], + "supertype": "", + "type": "Unit", + "collectible": true, + "set": "Set1" + }, + { + "associatedCards": [], + "associatedCardRefs": [ + "01PZ036T2", + "01PZ036T1", + "01PZ052" + ], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set1/en_us/img/cards/01PZ036.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set1/en_us/img/cards/01PZ036-full.png" + } + ], + "regions": [ + "Piltover & Zaun" + ], + "regionRefs": [ + "PiltoverZaun" + ], + "attack": 1, + "cost": 3, + "health": 3, + "description": "Nexus Strike: Create a Fleeting Mystic Shot in hand.", + "descriptionRaw": "Nexus Strike: Create a Fleeting Mystic Shot in hand.", + "levelupDescription": "You've targeted enemies 8+ times.", + "levelupDescriptionRaw": "You've targeted enemies 8+ times.", + "flavorText": "\"Goggles? Check. Scarf? Check. Awesome gauntlet-with-magical-properties-that-I-totally understand? Check, check, aaaand check!\"", + "artistName": "SIXMOREVODKA", + "name": "Ezreal", + "cardCode": "01PZ036", + "keywords": [ + "Elusive" + ], + "keywordRefs": [ + "Elusive" + ], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "Champion", + "rarityRef": "Champion", + "subtypes": [], + "supertype": "Champion", + "type": "Unit", + "collectible": true, + "set": "Set1" + }, + { + "associatedCards": [], + "associatedCardRefs": [ + "01PZ052", + "01PZ036", + "01PZ036T2" + ], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set1/en_us/img/cards/01PZ036T1.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set1/en_us/img/cards/01PZ036T1-full.png" + } + ], + "regions": [ + "Piltover & Zaun" + ], + "regionRefs": [ + "PiltoverZaun" + ], + "attack": 2, + "cost": 3, + "health": 4, + "description": "Nexus Strike: Create a Fleeting Mystic Shot in hand.\r\nWhen you play a spell, deal 1 to the enemy Nexus. If it targeted an enemy, deal 2 to the enemy Nexus instead.", + "descriptionRaw": "Nexus Strike: Create a Fleeting Mystic Shot in hand.\r\nWhen you play a spell, deal 1 to the enemy Nexus. If it targeted an enemy, deal 2 to the enemy Nexus instead.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"Impossible is my favorite kind of possible!\"", + "artistName": "SIXMOREVODKA", + "name": "Ezreal", + "cardCode": "01PZ036T1", + "keywords": [ + "Elusive", + "Imbue" + ], + "keywordRefs": [ + "Elusive", + "Imbue" + ], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "None", + "rarityRef": "None", + "subtypes": [], + "supertype": "Champion", + "type": "Unit", + "collectible": false, + "set": "Set1" + }, + { + "associatedCards": [], + "associatedCardRefs": [ + "01PZ036", + "01PZ036T1" + ], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set1/en_us/img/cards/01PZ036T2.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set1/en_us/img/cards/01PZ036T2-full.png" + } + ], + "regions": [ + "Piltover & Zaun" + ], + "regionRefs": [ + "PiltoverZaun" + ], + "attack": 0, + "cost": 2, + "health": 0, + "description": "Deal 2 to anything.\r\nCreate an Ezreal in your deck.", + "descriptionRaw": "Deal 2 to anything.\r\nCreate an Ezreal in your deck.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"I. Never. Miss. But I have been known to fire a warning shot or two...\" - Ezreal", + "artistName": "Max Grecke", + "name": "Ezreal's Mystic Shot", + "cardCode": "01PZ036T2", + "keywords": [ + "Fast" + ], + "keywordRefs": [ + "Fast" + ], + "spellSpeed": "Fast", + "spellSpeedRef": "Fast", + "rarity": "None", + "rarityRef": "None", + "subtypes": [], + "supertype": "Champion", + "type": "Spell", + "collectible": false, + "set": "Set1" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set1/en_us/img/cards/01PZ035.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set1/en_us/img/cards/01PZ035-full.png" + } + ], + "regions": [ + "Piltover & Zaun" + ], + "regionRefs": [ + "PiltoverZaun" + ], + "attack": 5, + "cost": 6, + "health": 5, + "description": "When I'm targeted, draw 1.", + "descriptionRaw": "When I'm targeted, draw 1.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "Heir apparent to Piltover's prestigious Clan Medarda, Jae preferred hunting ancient artifacts over managing the family business... much to his father's chagrin.", + "artistName": "SIXMOREVODKA", + "name": "Jae Medarda", + "cardCode": "01PZ035", + "keywords": [], + "keywordRefs": [], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "EPIC", + "rarityRef": "Epic", + "subtypes": [], + "supertype": "", + "type": "Unit", + "collectible": true, + "set": "Set1" + }, + { + "associatedCards": [], + "associatedCardRefs": [ + "01PZ022" + ], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set1/en_us/img/cards/01PZ010.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set1/en_us/img/cards/01PZ010-full.png" + } + ], + "regions": [ + "Piltover & Zaun" + ], + "regionRefs": [ + "PiltoverZaun" + ], + "attack": 0, + "cost": 1, + "health": 0, + "description": "Plant 5 Poison Puffcaps on random cards in the enemy deck.", + "descriptionRaw": "Plant 5 Poison Puffcaps on random cards in the enemy deck.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "First is the soft thump as the puffcap pops. Next, searing, debilitating pain. Finally, the distant sound of giggles...", + "artistName": "Kudos Productions", + "name": "Mushroom Cloud", + "cardCode": "01PZ010", + "keywords": [ + "Burst" + ], + "keywordRefs": [ + "Burst" + ], + "spellSpeed": "Burst", + "spellSpeedRef": "Burst", + "rarity": "COMMON", + "rarityRef": "Common", + "subtypes": [], + "supertype": "", + "type": "Spell", + "collectible": true, + "set": "Set1" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set1/en_us/img/cards/01PZ045.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set1/en_us/img/cards/01PZ045-full.png" + } + ], + "regions": [ + "Piltover & Zaun" + ], + "regionRefs": [ + "PiltoverZaun" + ], + "attack": 2, + "cost": 1, + "health": 1, + "description": "Play: Discard a card to draw 1.", + "descriptionRaw": "Play: Discard a card to draw 1.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"You'd think the sumprats would look after their own.\"\n\"Too busy basking in their self-pity, brother.\"\n\"Shame. Ah... have you seen my purse?\"", + "artistName": "SIXMOREVODKA", + "name": "Zaunite Urchin", + "cardCode": "01PZ045", + "keywords": [], + "keywordRefs": [], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "COMMON", + "rarityRef": "Common", + "subtypes": [], + "supertype": "", + "type": "Unit", + "collectible": true, + "set": "Set1" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set1/en_us/img/cards/01PZ013T1.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set1/en_us/img/cards/01PZ013T1-full.png" + } + ], + "regions": [ + "Piltover & Zaun" + ], + "regionRefs": [ + "PiltoverZaun" + ], + "attack": 0, + "cost": 0, + "health": 0, + "description": "Discard your hand. Draw 3. Deal 3 to an enemy.", + "descriptionRaw": "Discard your hand. Draw 3. Deal 3 to an enemy.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "Progress, whatever the price.", + "artistName": "Rafael Zanchetin", + "name": "Reckless Research", + "cardCode": "01PZ013T1", + "keywords": [ + "Skill" + ], + "keywordRefs": [ + "Skill" + ], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "None", + "rarityRef": "None", + "subtypes": [], + "supertype": "", + "type": "Ability", + "collectible": false, + "set": "Set1" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set1/en_us/img/cards/01PZ002.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set1/en_us/img/cards/01PZ002-full.png" + } + ], + "regions": [ + "Piltover & Zaun" + ], + "regionRefs": [ + "PiltoverZaun" + ], + "attack": 3, + "cost": 4, + "health": 3, + "description": "When I'm summoned, create in hand a random card for each Back Alley Barkeep you've summoned this game. ", + "descriptionRaw": "When I'm summoned, create in hand a random card for each Back Alley Barkeep you've summoned this game. ", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"Yeah mate, it's got a slight kick the same way the Sump's got a slight smell. Bucket's by the songspinner.\"", + "artistName": "SIXMOREVODKA", + "name": "Back Alley Barkeep", + "cardCode": "01PZ002", + "keywords": [], + "keywordRefs": [], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "COMMON", + "rarityRef": "Common", + "subtypes": [], + "supertype": "", + "type": "Unit", + "collectible": true, + "set": "Set1" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set1/en_us/img/cards/01PZ004.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set1/en_us/img/cards/01PZ004-full.png" + } + ], + "regions": [ + "Piltover & Zaun" + ], + "regionRefs": [ + "PiltoverZaun" + ], + "attack": 0, + "cost": 7, + "health": 0, + "description": "Deal 3 to an enemy or the enemy Nexus, 2 to another, and 1 to another.", + "descriptionRaw": "Deal 3 to an enemy or the enemy Nexus, 2 to another, and 1 to another.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"When you've got talent, there's no such thing as a lucky shot.\" - Ezreal", + "artistName": "Max Grecke", + "name": "Trueshot Barrage", + "cardCode": "01PZ004", + "keywords": [ + "Slow" + ], + "keywordRefs": [ + "Slow" + ], + "spellSpeed": "Slow", + "spellSpeedRef": "Slow", + "rarity": "EPIC", + "rarityRef": "Epic", + "subtypes": [], + "supertype": "", + "type": "Spell", + "collectible": true, + "set": "Set1" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set1/en_us/img/cards/01PZ020.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set1/en_us/img/cards/01PZ020-full.png" + } + ], + "regions": [ + "Piltover & Zaun" + ], + "regionRefs": [ + "PiltoverZaun" + ], + "attack": 1, + "cost": 1, + "health": 1, + "description": "", + "descriptionRaw": "", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "Her first launch was pure accident: she slipped inside a Progress Day cannon while preening herself. Now she's the toast of Piltover, arcing across the sky to the adoring gasps of the crowds below.", + "artistName": "SIXMOREVODKA", + "name": "Daring Poro", + "cardCode": "01PZ020", + "keywords": [ + "Elusive" + ], + "keywordRefs": [ + "Elusive" + ], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "COMMON", + "rarityRef": "Common", + "subtypes": [ + "PORO" + ], + "supertype": "", + "type": "Unit", + "collectible": true, + "set": "Set1" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set1/en_us/img/cards/01PZ046.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set1/en_us/img/cards/01PZ046-full.png" + } + ], + "regions": [ + "Piltover & Zaun" + ], + "regionRefs": [ + "PiltoverZaun" + ], + "attack": 0, + "cost": 1, + "health": 0, + "description": "Pick a card in hand. Create 4 exact copies of it in your deck.", + "descriptionRaw": "Pick a card in hand. Create 4 exact copies of it in your deck.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "Imitation is the sincerest form of thievery.", + "artistName": "Kudos Productions", + "name": "Counterfeit Copies", + "cardCode": "01PZ046", + "keywords": [ + "Burst" + ], + "keywordRefs": [ + "Burst" + ], + "spellSpeed": "Burst", + "spellSpeedRef": "Burst", + "rarity": "RARE", + "rarityRef": "Rare", + "subtypes": [], + "supertype": "", + "type": "Spell", + "collectible": true, + "set": "Set1" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set1/en_us/img/cards/01PZ052.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set1/en_us/img/cards/01PZ052-full.png" + } + ], + "regions": [ + "Piltover & Zaun" + ], + "regionRefs": [ + "PiltoverZaun" + ], + "attack": 0, + "cost": 2, + "health": 0, + "description": "Deal 2 to anything.", + "descriptionRaw": "Deal 2 to anything.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"I. Never. Miss. But I have been known to fire a warning shot or two...\" - Ezreal", + "artistName": "Max Grecke", + "name": "Mystic Shot", + "cardCode": "01PZ052", + "keywords": [ + "Fast" + ], + "keywordRefs": [ + "Fast" + ], + "spellSpeed": "Fast", + "spellSpeedRef": "Fast", + "rarity": "COMMON", + "rarityRef": "Common", + "subtypes": [], + "supertype": "", + "type": "Spell", + "collectible": true, + "set": "Set1" + }, + { + "associatedCards": [], + "associatedCardRefs": [ + "01PZ033T1" + ], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set1/en_us/img/cards/01PZ033.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set1/en_us/img/cards/01PZ033-full.png" + } + ], + "regions": [ + "Piltover & Zaun" + ], + "regionRefs": [ + "PiltoverZaun" + ], + "attack": 0, + "cost": 5, + "health": 0, + "description": "If you've played 20 cards with different names this game, summon Catastrophe. ", + "descriptionRaw": "If you've played 20 cards with different names this game, summon Catastrophe. ", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"In the end, all of us who worked toward von Yipp's vision were deceived. We knew not what we wrought--what terrible power we would unleash.\" - Piltovan Project engineer", + "artistName": "Kudos Productions", + "name": "Purrsuit of Perfection", + "cardCode": "01PZ033", + "keywords": [ + "Slow" + ], + "keywordRefs": [ + "Slow" + ], + "spellSpeed": "Slow", + "spellSpeedRef": "Slow", + "rarity": "EPIC", + "rarityRef": "Epic", + "subtypes": [], + "supertype": "", + "type": "Spell", + "collectible": true, + "set": "Set1" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set1/en_us/img/cards/01PZ033T1.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set1/en_us/img/cards/01PZ033T1-full.png" + } + ], + "regions": [ + "Piltover & Zaun" + ], + "regionRefs": [ + "PiltoverZaun" + ], + "attack": 30, + "cost": 1, + "health": 30, + "description": "", + "descriptionRaw": "", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "Your end is MEOW.", + "artistName": "SIXMOREVODKA", + "name": "Catastrophe", + "cardCode": "01PZ033T1", + "keywords": [ + "Overwhelm" + ], + "keywordRefs": [ + "Overwhelm" + ], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "None", + "rarityRef": "None", + "subtypes": [], + "supertype": "", + "type": "Unit", + "collectible": false, + "set": "Set1" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set1/en_us/img/cards/01PZ005.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set1/en_us/img/cards/01PZ005-full.png" + } + ], + "regions": [ + "Piltover & Zaun" + ], + "regionRefs": [ + "PiltoverZaun" + ], + "attack": 0, + "cost": 6, + "health": 0, + "description": "Transform a follower into an exact copy of another follower.", + "descriptionRaw": "Transform a follower into an exact copy of another follower.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"YOU KEPT SAYING YOU WANTED TO LOSE WEIGHT.\"\n\"SO YOU TURNED ME INTO A YORDLE?!\"\n\"YOU LOST WEIGHT!\"\n\"...I'M ALSO A YORDLE!\"", + "artistName": "Kudos Productions", + "name": "Hextech Transmogulator", + "cardCode": "01PZ005", + "keywords": [ + "Fast" + ], + "keywordRefs": [ + "Fast" + ], + "spellSpeed": "Fast", + "spellSpeedRef": "Fast", + "rarity": "RARE", + "rarityRef": "Rare", + "subtypes": [], + "supertype": "", + "type": "Spell", + "collectible": true, + "set": "Set1" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set1/en_us/img/cards/01PZ021.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set1/en_us/img/cards/01PZ021-full.png" + } + ], + "regions": [ + "Piltover & Zaun" + ], + "regionRefs": [ + "PiltoverZaun" + ], + "attack": 5, + "cost": 5, + "health": 4, + "description": "Nexus Strike: Summon an exact copy of me.", + "descriptionRaw": "Nexus Strike: Summon an exact copy of me.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"Mr. Berz, we found you asleep INSIDE the vault, covered in golden cogs and clutching the safe's broken door.\"\n\"Weren't me. Jus' some fella wot look like me.\"\n\"You're still holding the door.\"\n\"Prove it.\"", + "artistName": "SIXMOREVODKA", + "name": "Midenstokke Henchmen", + "cardCode": "01PZ021", + "keywords": [], + "keywordRefs": [], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "RARE", + "rarityRef": "Rare", + "subtypes": [], + "supertype": "", + "type": "Unit", + "collectible": true, + "set": "Set1" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set1/en_us/img/cards/01PZ031.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set1/en_us/img/cards/01PZ031-full.png" + } + ], + "regions": [ + "Piltover & Zaun" + ], + "regionRefs": [ + "PiltoverZaun" + ], + "attack": 0, + "cost": 4, + "health": 0, + "description": "Deal 1 to an enemy or the enemy Nexus, and 1 to another.\r\nDraw 1.", + "descriptionRaw": "Deal 1 to an enemy or the enemy Nexus, and 1 to another.\r\nDraw 1.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"And that's how we discovered arc discharge! Of course, my predecessor had hypothesized such an event, but underestimated the arc's reach. Poor fellow...\" - Heimerdinger", + "artistName": "Kudos Productions", + "name": "Statikk Shock", + "cardCode": "01PZ031", + "keywords": [ + "Fast" + ], + "keywordRefs": [ + "Fast" + ], + "spellSpeed": "Fast", + "spellSpeedRef": "Fast", + "rarity": "RARE", + "rarityRef": "Rare", + "subtypes": [], + "supertype": "", + "type": "Spell", + "collectible": true, + "set": "Set1" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set1/en_us/img/cards/01PZ059.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set1/en_us/img/cards/01PZ059-full.png" + } + ], + "regions": [ + "Piltover & Zaun" + ], + "regionRefs": [ + "PiltoverZaun" + ], + "attack": 2, + "cost": 3, + "health": 5, + "description": "", + "descriptionRaw": "", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "KILL. CRUSH. DESTROY. REPEAT.", + "artistName": "Dao Le", + "name": "Golden Crushbot", + "cardCode": "01PZ059", + "keywords": [], + "keywordRefs": [], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "COMMON", + "rarityRef": "Common", + "subtypes": [ + "TECH" + ], + "supertype": "", + "type": "Unit", + "collectible": true, + "set": "Set1" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set1/en_us/img/cards/01PZ001.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set1/en_us/img/cards/01PZ001-full.png" + } + ], + "regions": [ + "Piltover & Zaun" + ], + "regionRefs": [ + "PiltoverZaun" + ], + "attack": 0, + "cost": 2, + "health": 0, + "description": "To play, discard up to 2 cards. Draw 1 for each card you discarded.", + "descriptionRaw": "To play, discard up to 2 cards. Draw 1 for each card you discarded.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"Oooooh, boy--FIVE ENFORCERS AND A GOLEM? Waitaminute! I have just the thing! Soooooomewhere...\" - Jinx", + "artistName": "Max Grecke", + "name": "Rummage", + "cardCode": "01PZ001", + "keywords": [ + "Burst" + ], + "keywordRefs": [ + "Burst" + ], + "spellSpeed": "Burst", + "spellSpeedRef": "Burst", + "rarity": "COMMON", + "rarityRef": "Common", + "subtypes": [], + "supertype": "", + "type": "Spell", + "collectible": true, + "set": "Set1" + }, + { + "associatedCards": [], + "associatedCardRefs": [ + "01PZ032" + ], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set1/en_us/img/cards/01PZ057.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set1/en_us/img/cards/01PZ057-full.png" + } + ], + "regions": [ + "Piltover & Zaun" + ], + "regionRefs": [ + "PiltoverZaun" + ], + "attack": 0, + "cost": 2, + "health": 0, + "description": "Summon 2 Scrap Scuttlers.", + "descriptionRaw": "Summon 2 Scrap Scuttlers.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "Two gentle creatures, once separated by an impassable lane of land, were finally brought together in the tepid waters of the Sump.", + "artistName": "Kudos Productions", + "name": "Scrapdash Assembly", + "cardCode": "01PZ057", + "keywords": [ + "Slow" + ], + "keywordRefs": [ + "Slow" + ], + "spellSpeed": "Slow", + "spellSpeedRef": "Slow", + "rarity": "COMMON", + "rarityRef": "Common", + "subtypes": [], + "supertype": "", + "type": "Spell", + "collectible": true, + "set": "Set1" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set1/en_us/img/cards/01PZ027.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set1/en_us/img/cards/01PZ027-full.png" + } + ], + "regions": [ + "Piltover & Zaun" + ], + "regionRefs": [ + "PiltoverZaun" + ], + "attack": 0, + "cost": 0, + "health": 0, + "description": "To play, spend all your mana.\r\nDeal that much to a unit.", + "descriptionRaw": "To play, spend all your mana.\r\nDeal that much to a unit.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"We've exhausted both our time and funds, and though the beam works, we haven't been able to regulate its energy consumption.\" - Zaunite experimenter", + "artistName": "Max Grecke", + "name": "Thermogenic Beam", + "cardCode": "01PZ027", + "keywords": [ + "Slow" + ], + "keywordRefs": [ + "Slow" + ], + "spellSpeed": "Slow", + "spellSpeedRef": "Slow", + "rarity": "RARE", + "rarityRef": "Rare", + "subtypes": [], + "supertype": "", + "type": "Spell", + "collectible": true, + "set": "Set1" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set1/en_us/img/cards/01PZ055.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set1/en_us/img/cards/01PZ055-full.png" + } + ], + "regions": [ + "Piltover & Zaun" + ], + "regionRefs": [ + "PiltoverZaun" + ], + "attack": 1, + "cost": 1, + "health": 2, + "description": "When you draw a card, give me +1|+0 this round.", + "descriptionRaw": "When you draw a card, give me +1|+0 this round.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "Imagination is the spark of great invention. Yet, it is research that makes the spark a conflagration.", + "artistName": "SIXMOREVODKA", + "name": "Astute Academic", + "cardCode": "01PZ055", + "keywords": [], + "keywordRefs": [], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "COMMON", + "rarityRef": "Common", + "subtypes": [], + "supertype": "", + "type": "Unit", + "collectible": true, + "set": "Set1" + }, + { + "associatedCards": [], + "associatedCardRefs": [ + "01PZ014T1" + ], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set1/en_us/img/cards/01PZ014.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set1/en_us/img/cards/01PZ014-full.png" + } + ], + "regions": [ + "Piltover & Zaun" + ], + "regionRefs": [ + "PiltoverZaun" + ], + "attack": 0, + "cost": 6, + "health": 0, + "description": "Summon an Illegal Contraption.", + "descriptionRaw": "Summon an Illegal Contraption.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"Their mishaps come in countless flavors: tremors from distant explosions, putrid fumes from the fissures. Soon enough, one of those fools will tear our city down.\" - Piltovan philanthropist", + "artistName": "Kudos Productions", + "name": "Unlicensed Innovation", + "cardCode": "01PZ014", + "keywords": [ + "Slow" + ], + "keywordRefs": [ + "Slow" + ], + "spellSpeed": "Slow", + "spellSpeedRef": "Slow", + "rarity": "COMMON", + "rarityRef": "Common", + "subtypes": [], + "supertype": "", + "type": "Spell", + "collectible": true, + "set": "Set1" + }, + { + "associatedCards": [], + "associatedCardRefs": [ + "01PZ026" + ], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set1/en_us/img/cards/01PZ034.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set1/en_us/img/cards/01PZ034-full.png" + } + ], + "regions": [ + "Piltover & Zaun" + ], + "regionRefs": [ + "PiltoverZaun" + ], + "attack": 4, + "cost": 4, + "health": 3, + "description": "Allegiance: Create a Sumpworks Map in hand. It costs 0 this round.", + "descriptionRaw": "Allegiance: Create a Sumpworks Map in hand. It costs 0 this round.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "The Zaunite kids soon started exploring the old mining tunnels and deeper levels of the Lanes. What a world they discovered. What friends they found.\n", + "artistName": "SIXMOREVODKA", + "name": "Sumpsnipe Scavenger", + "cardCode": "01PZ034", + "keywords": [], + "keywordRefs": [], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "RARE", + "rarityRef": "Rare", + "subtypes": [], + "supertype": "", + "type": "Unit", + "collectible": true, + "set": "Set1" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set1/en_us/img/cards/01PZ014T1.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set1/en_us/img/cards/01PZ014T1-full.png" + } + ], + "regions": [ + "Piltover & Zaun" + ], + "regionRefs": [ + "PiltoverZaun" + ], + "attack": 5, + "cost": 6, + "health": 5, + "description": "", + "descriptionRaw": "", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"Absolutely NOT regulation hardware.\" - Safety Inspections Officer, Piltovan Bureau of Safety Inspections", + "artistName": "SIXMOREVODKA", + "name": "Illegal Contraption", + "cardCode": "01PZ014T1", + "keywords": [], + "keywordRefs": [], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "None", + "rarityRef": "None", + "subtypes": [], + "supertype": "", + "type": "Unit", + "collectible": false, + "set": "Set1" + }, + { + "associatedCards": [], + "associatedCardRefs": [ + "01PZ033T1" + ], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set1/en_us/img/cards/01PZ060.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set1/en_us/img/cards/01PZ060-full.png" + } + ], + "regions": [ + "Piltover & Zaun" + ], + "regionRefs": [ + "PiltoverZaun" + ], + "attack": 0, + "cost": 5, + "health": 0, + "description": "If you've played 15 cards with different names this game, summon Catastrophe. ", + "descriptionRaw": "If you've played 15 cards with different names this game, summon Catastrophe. ", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"In the end, all of us who worked toward von Yipp's vision were deceived. We knew not what we wrought--what terrible power we would unleash.\" - Piltovan project engineer", + "artistName": "Kudos Productions", + "name": "Accelerated Purrsuit", + "cardCode": "01PZ060", + "keywords": [ + "Slow" + ], + "keywordRefs": [ + "Slow" + ], + "spellSpeed": "Slow", + "spellSpeedRef": "Slow", + "rarity": "EPIC", + "rarityRef": "Epic", + "subtypes": [], + "supertype": "", + "type": "Spell", + "collectible": false, + "set": "Set1" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set1/en_us/img/cards/01PZ003.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set1/en_us/img/cards/01PZ003-full.png" + } + ], + "regions": [ + "Piltover & Zaun" + ], + "regionRefs": [ + "PiltoverZaun" + ], + "attack": 1, + "cost": 3, + "health": 1, + "description": "When you play a spell, grant me +1|+1.", + "descriptionRaw": "When you play a spell, grant me +1|+1.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"Any simpleton can build a machine, but it takes extraordinary acumen to infuse a mechanized mind with TRUE progress! Soon enough those damned bureaucrats will come crawling back...\" - Klas Henwick", + "artistName": "SIXMOREVODKA", + "name": "Assembly Bot", + "cardCode": "01PZ003", + "keywords": [ + "Imbue" + ], + "keywordRefs": [ + "Imbue" + ], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "RARE", + "rarityRef": "Rare", + "subtypes": [], + "supertype": "", + "type": "Unit", + "collectible": true, + "set": "Set1" + }, + { + "associatedCards": [], + "associatedCardRefs": [ + "01PZ044T2" + ], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set1/en_us/img/cards/01PZ044.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set1/en_us/img/cards/01PZ044-full.png" + } + ], + "regions": [ + "Piltover & Zaun" + ], + "regionRefs": [ + "PiltoverZaun" + ], + "attack": 5, + "cost": 5, + "health": 2, + "description": "Play: Deal 1 to all enemies.", + "descriptionRaw": "Play: Deal 1 to all enemies.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"...his solo quickly plunges through a harmonic minor scale before arpeggiating--yes that's a word--into the bridge's transposition. You likely can't even comprehend his work.\" - Max Bliff, gatekeeper", + "artistName": "SIXMOREVODKA", + "name": "Chempunk Shredder", + "cardCode": "01PZ044", + "keywords": [], + "keywordRefs": [], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "RARE", + "rarityRef": "Rare", + "subtypes": [], + "supertype": "", + "type": "Unit", + "collectible": true, + "set": "Set1" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set1/en_us/img/cards/01PZ029.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set1/en_us/img/cards/01PZ029-full.png" + } + ], + "regions": [ + "Piltover & Zaun" + ], + "regionRefs": [ + "PiltoverZaun" + ], + "attack": 3, + "cost": 4, + "health": 3, + "description": "Last Breath: Create in hand a random Epic card from your regions.", + "descriptionRaw": "Last Breath: Create in hand a random Epic card from your regions.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"I was an angry man, then, and broke my competitors as I accrued money and fame. I now direct my fortune toward altruism, and hope that my penitent winter will absolve me of my misdeeds.\"", + "artistName": "SIXMOREVODKA", + "name": "Eminent Benefactor", + "cardCode": "01PZ029", + "keywords": [ + "Last Breath" + ], + "keywordRefs": [ + "LastBreath" + ], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "RARE", + "rarityRef": "Rare", + "subtypes": [], + "supertype": "", + "type": "Unit", + "collectible": true, + "set": "Set1" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set1/en_us/img/cards/01PZ051.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set1/en_us/img/cards/01PZ051-full.png" + } + ], + "regions": [ + "Piltover & Zaun" + ], + "regionRefs": [ + "PiltoverZaun" + ], + "attack": 1, + "cost": 4, + "health": 3, + "description": "All of your spells and skills deal 1 extra damage.", + "descriptionRaw": "All of your spells and skills deal 1 extra damage.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"You want extra boom, do ya? Well, you've come to the right place!\"", + "artistName": "SIXMOREVODKA", + "name": "Funsmith", + "cardCode": "01PZ051", + "keywords": [ + "Missing Translation" + ], + "keywordRefs": [ + "AuraVisualFakeKeyword" + ], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "RARE", + "rarityRef": "Rare", + "subtypes": [], + "supertype": "", + "type": "Unit", + "collectible": true, + "set": "Set1" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set1/en_us/img/cards/01PZ044T2.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set1/en_us/img/cards/01PZ044T2-full.png" + } + ], + "regions": [ + "Piltover & Zaun" + ], + "regionRefs": [ + "PiltoverZaun" + ], + "attack": 0, + "cost": 0, + "health": 0, + "description": "Deal 1 to all enemies.", + "descriptionRaw": "Deal 1 to all enemies.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"Let the show begin!\" - Chempunk Shredder", + "artistName": "Max Grecke", + "name": "Face-Melter", + "cardCode": "01PZ044T2", + "keywords": [ + "Skill" + ], + "keywordRefs": [ + "Skill" + ], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "None", + "rarityRef": "None", + "subtypes": [], + "supertype": "", + "type": "Ability", + "collectible": false, + "set": "Set1" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set1/en_us/img/cards/01PZ023.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set1/en_us/img/cards/01PZ023-full.png" + } + ], + "regions": [ + "Piltover & Zaun" + ], + "regionRefs": [ + "PiltoverZaun" + ], + "attack": 2, + "cost": 4, + "health": 3, + "description": "When you summon a 1 cost ally, grant it +2|+2.", + "descriptionRaw": "When you summon a 1 cost ally, grant it +2|+2.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"Today I present to the committee my newest invention, as demonstrated by my esteemed colleague...\"", + "artistName": "SIXMOREVODKA", + "name": "Professor von Yipp", + "cardCode": "01PZ023", + "keywords": [], + "keywordRefs": [], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "RARE", + "rarityRef": "Rare", + "subtypes": [], + "supertype": "", + "type": "Unit", + "collectible": true, + "set": "Set1" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set1/en_us/img/cards/01PZ024.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set1/en_us/img/cards/01PZ024-full.png" + } + ], + "regions": [ + "Piltover & Zaun" + ], + "regionRefs": [ + "PiltoverZaun" + ], + "attack": 4, + "cost": 5, + "health": 4, + "description": "Grant me +4|+0 and Quick Attack once you've played a 6+ cost spell this game.", + "descriptionRaw": "Grant me +4|+0 and Quick Attack once you've played a 6+ cost spell this game.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "Name: Klas Henwick, Age: 51, License Type: Class 2 Conditional, Status: Revoked, Comments: Ignored repeated warnings to reduce output following lab explosion (Case 13X764NM). DO NOT PERMIT ENTRY.", + "artistName": "SIXMOREVODKA", + "name": "Unstable Voltician", + "cardCode": "01PZ024", + "keywords": [], + "keywordRefs": [], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "RARE", + "rarityRef": "Rare", + "subtypes": [], + "supertype": "", + "type": "Unit", + "collectible": true, + "set": "Set1" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set1/en_us/img/cards/01PZ049.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set1/en_us/img/cards/01PZ049-full.png" + } + ], + "regions": [ + "Piltover & Zaun" + ], + "regionRefs": [ + "PiltoverZaun" + ], + "attack": 0, + "cost": 8, + "health": 0, + "description": "Draw 3, then reduce those cards' costs by 1.", + "descriptionRaw": "Draw 3, then reduce those cards' costs by 1.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "PROGRESS DAY!\nCelebrate at the PLAZA OF THE SUN GATES!\nSee HEXTECH WONDERS!\nGasp at the DARING PORO!\nHear the MAN OF TOMORROW speak on the STATE OF TODAY!\nFREE entry! \nPiltovan children welcome!", + "artistName": "Kudos Productions", + "name": "Progress Day!", + "cardCode": "01PZ049", + "keywords": [ + "Burst" + ], + "keywordRefs": [ + "Burst" + ], + "spellSpeed": "Burst", + "spellSpeedRef": "Burst", + "rarity": "EPIC", + "rarityRef": "Epic", + "subtypes": [], + "supertype": "", + "type": "Spell", + "collectible": true, + "set": "Set1" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set1/en_us/img/cards/01PZ006.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set1/en_us/img/cards/01PZ006-full.png" + } + ], + "regions": [ + "Piltover & Zaun" + ], + "regionRefs": [ + "PiltoverZaun" + ], + "attack": 6, + "cost": 10, + "health": 6, + "description": "Reduce my cost by 1 for each spell you've played this game.", + "descriptionRaw": "Reduce my cost by 1 for each spell you've played this game.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "You have twenty seconds to comply.", + "artistName": "SIXMOREVODKA", + "name": "Plaza Guardian", + "cardCode": "01PZ006", + "keywords": [ + "Quick Attack" + ], + "keywordRefs": [ + "QuickStrike" + ], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "RARE", + "rarityRef": "Rare", + "subtypes": [], + "supertype": "", + "type": "Unit", + "collectible": true, + "set": "Set1" + }, + { + "associatedCards": [], + "associatedCardRefs": [ + "01PZ010", + "01PZ022" + ], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set1/en_us/img/cards/01PZ053.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set1/en_us/img/cards/01PZ053-full.png" + } + ], + "regions": [ + "Piltover & Zaun" + ], + "regionRefs": [ + "PiltoverZaun" + ], + "attack": 2, + "cost": 2, + "health": 2, + "description": "When I'm summoned, create a Mushroom Cloud in hand.", + "descriptionRaw": "When I'm summoned, create a Mushroom Cloud in hand.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"Mhm, that's right! Clumps of 'em, sneakin' around! They SEEM crazy, but you just don't see. Not like me! They've big plans! Big plans. Puffcaps. Cheese... sorbet. Where was I?\" - Puffcap Peddler", + "artistName": "SIXMOREVODKA", + "name": "Clump of Whumps", + "cardCode": "01PZ053", + "keywords": [], + "keywordRefs": [], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "COMMON", + "rarityRef": "Common", + "subtypes": [], + "supertype": "", + "type": "Unit", + "collectible": true, + "set": "Set1" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set1/en_us/img/cards/01PZ012.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set1/en_us/img/cards/01PZ012-full.png" + } + ], + "regions": [ + "Piltover & Zaun" + ], + "regionRefs": [ + "PiltoverZaun" + ], + "attack": 0, + "cost": 2, + "health": 2, + "description": "When I'm discarded, summon me.", + "descriptionRaw": "When I'm discarded, summon me.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"GET 'EM, CHOMPIES!\" - Jinx", + "artistName": "SIXMOREVODKA", + "name": "Flame Chompers!", + "cardCode": "01PZ012", + "keywords": [ + "Challenger" + ], + "keywordRefs": [ + "Challenger" + ], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "COMMON", + "rarityRef": "Common", + "subtypes": [], + "supertype": "", + "type": "Unit", + "collectible": true, + "set": "Set1" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set1/en_us/img/cards/01PZ039.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set1/en_us/img/cards/01PZ039-full.png" + } + ], + "regions": [ + "Piltover & Zaun" + ], + "regionRefs": [ + "PiltoverZaun" + ], + "attack": 0, + "cost": 3, + "health": 0, + "description": "To play, discard 1.\r\nDeal 3 to anything.", + "descriptionRaw": "To play, discard 1.\r\nDeal 3 to anything.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"FIRE IN THE CABOODLE!\" - Jinx", + "artistName": "Original Force", + "name": "Get Excited!", + "cardCode": "01PZ039", + "keywords": [ + "Fast" + ], + "keywordRefs": [ + "Fast" + ], + "spellSpeed": "Fast", + "spellSpeedRef": "Fast", + "rarity": "RARE", + "rarityRef": "Rare", + "subtypes": [], + "supertype": "", + "type": "Spell", + "collectible": true, + "set": "Set1" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set1/en_us/img/cards/01PZ016.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set1/en_us/img/cards/01PZ016-full.png" + } + ], + "regions": [ + "Piltover & Zaun" + ], + "regionRefs": [ + "PiltoverZaun" + ], + "attack": 0, + "cost": 3, + "health": 0, + "description": "Create in hand a random 6+ cost spell from your regions.\r\nRefill your spell mana.", + "descriptionRaw": "Create in hand a random 6+ cost spell from your regions.\r\nRefill your spell mana.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "It only takes one epiphany to launch a legacy.", + "artistName": "Kudos Productions", + "name": "Flash of Brilliance", + "cardCode": "01PZ016", + "keywords": [ + "Burst" + ], + "keywordRefs": [ + "Burst" + ], + "spellSpeed": "Burst", + "spellSpeedRef": "Burst", + "rarity": "COMMON", + "rarityRef": "Common", + "subtypes": [], + "supertype": "", + "type": "Spell", + "collectible": true, + "set": "Set1" + }, + { + "associatedCards": [], + "associatedCardRefs": [ + "01PZ022", + "01PZ010" + ], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set1/en_us/img/cards/01PZ058.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set1/en_us/img/cards/01PZ058-full.png" + } + ], + "regions": [ + "Piltover & Zaun" + ], + "regionRefs": [ + "PiltoverZaun" + ], + "attack": 4, + "cost": 4, + "health": 4, + "description": "When I'm summoned, create 2 Mushroom Clouds in hand.", + "descriptionRaw": "When I'm summoned, create 2 Mushroom Clouds in hand.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"Seen a big 'un, mmhmm! She's heavy as a horse and crafty as a krug. Gotta keep yer eye on her, I tells ya. That ol’ tomato’s the queen of the clump for a reason!\" - Puffcap Peddler", + "artistName": "SIXMOREVODKA", + "name": "Chump Whump", + "cardCode": "01PZ058", + "keywords": [], + "keywordRefs": [], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "RARE", + "rarityRef": "Rare", + "subtypes": [ + "YORDLE" + ], + "supertype": "", + "type": "Unit", + "collectible": true, + "set": "Set1" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set1/en_us/img/cards/01PZ009.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set1/en_us/img/cards/01PZ009-full.png" + } + ], + "regions": [ + "Piltover & Zaun" + ], + "regionRefs": [ + "PiltoverZaun" + ], + "attack": 2, + "cost": 3, + "health": 3, + "description": "", + "descriptionRaw": "", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"Personal flying machines? A pipe dream! I just had my apprentice throw the latest prototype out, in fact. Now, where is he?\" - Piltovan engineer", + "artistName": "SIXMOREVODKA", + "name": "Amateur Aeronaut", + "cardCode": "01PZ009", + "keywords": [ + "Elusive" + ], + "keywordRefs": [ + "Elusive" + ], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "COMMON", + "rarityRef": "Common", + "subtypes": [], + "supertype": "", + "type": "Unit", + "collectible": true, + "set": "Set1" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set1/en_us/img/cards/01PZ042.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set1/en_us/img/cards/01PZ042-full.png" + } + ], + "regions": [ + "Piltover & Zaun" + ], + "regionRefs": [ + "PiltoverZaun" + ], + "attack": 1, + "cost": 2, + "health": 3, + "description": "Support: Give my supported ally Elusive this round.", + "descriptionRaw": "Support: Give my supported ally Elusive this round.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "For many Piltovans, the great unknown is explored through science and invention, safe within their City of Progress. But a handful embark for the horizon to discover a much greater unknown: the world.", + "artistName": "SIXMOREVODKA", + "name": "Intrepid Mariner", + "cardCode": "01PZ042", + "keywords": [ + "Support" + ], + "keywordRefs": [ + "Support" + ], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "RARE", + "rarityRef": "Rare", + "subtypes": [], + "supertype": "", + "type": "Unit", + "collectible": true, + "set": "Set1" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set1/en_us/img/cards/01PZ026.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set1/en_us/img/cards/01PZ026-full.png" + } + ], + "regions": [ + "Piltover & Zaun" + ], + "regionRefs": [ + "PiltoverZaun" + ], + "attack": 0, + "cost": 2, + "health": 0, + "description": "Grant an ally Elusive.", + "descriptionRaw": "Grant an ally Elusive.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"Pilties always think they know everything, but their maps only show the places we told 'em about! Nothing like local knowledge. Which you can have... for a price.\" - Ajuna Lem, Sumpsnipe Scavenger", + "artistName": "Kudos Productions", + "name": "Sumpworks Map", + "cardCode": "01PZ026", + "keywords": [ + "Burst" + ], + "keywordRefs": [ + "Burst" + ], + "spellSpeed": "Burst", + "spellSpeedRef": "Burst", + "rarity": "COMMON", + "rarityRef": "Common", + "subtypes": [], + "supertype": "", + "type": "Spell", + "collectible": true, + "set": "Set1" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set1/en_us/img/cards/01PZ043.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set1/en_us/img/cards/01PZ043-full.png" + } + ], + "regions": [ + "Piltover & Zaun" + ], + "regionRefs": [ + "PiltoverZaun" + ], + "attack": 3, + "cost": 2, + "health": 2, + "description": "Nexus Strike: Create in hand an exact copy of a random spell from the enemy's deck.", + "descriptionRaw": "Nexus Strike: Create in hand an exact copy of a random spell from the enemy's deck.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "Those cast below the City of Progress were expected to turn on each other. But instead they bonded, found their feet as one, and created a new home. It wasn't much, but it was theirs. Zaun.", + "artistName": "SIXMOREVODKA", + "name": "Chempunk Pickpocket", + "cardCode": "01PZ043", + "keywords": [], + "keywordRefs": [], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "RARE", + "rarityRef": "Rare", + "subtypes": [], + "supertype": "", + "type": "Unit", + "collectible": true, + "set": "Set1" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set1/en_us/img/cards/01PZ047.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set1/en_us/img/cards/01PZ047-full.png" + } + ], + "regions": [ + "Piltover & Zaun" + ], + "regionRefs": [ + "PiltoverZaun" + ], + "attack": 0, + "cost": 0, + "health": 1, + "description": "Last Breath: Deal 1 to EACH Nexus.", + "descriptionRaw": "Last Breath: Deal 1 to EACH Nexus.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "“I’d tell ya to wear a suit, but it gets muggy as a whump’s armpit down there. Gloves though, eh? An’ if you get that gunk on ya’, pray it don’t touch nothin’ important.” - Ziel, Zaunite foreman", + "artistName": "SIXMOREVODKA", + "name": "Caustic Cask", + "cardCode": "01PZ047", + "keywords": [ + "Last Breath", + "Ephemeral" + ], + "keywordRefs": [ + "LastBreath", + "Ephemeral" + ], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "COMMON", + "rarityRef": "Common", + "subtypes": [], + "supertype": "", + "type": "Unit", + "collectible": true, + "set": "Set1" + }, + { + "associatedCards": [], + "associatedCardRefs": [ + "01FR024T4", + "01FR024T3", + "01FR024T2", + "01FR024T1" + ], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set1/en_us/img/cards/01FR024.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set1/en_us/img/cards/01FR024-full.png" + } + ], + "regions": [ + "Freljord" + ], + "regionRefs": [ + "Freljord" + ], + "attack": 3, + "cost": 6, + "health": 5, + "description": "Attack: Deal 1 to all enemies and the enemy Nexus.\r\nLast Breath: Revive me transformed into Eggnivia.", + "descriptionRaw": "Attack: Deal 1 to all enemies and the enemy Nexus.\r\nLast Breath: Revive me transformed into Eggnivia.", + "levelupDescription": "You're Enlightened.", + "levelupDescriptionRaw": "You're Enlightened.", + "flavorText": "\"I was born from this hard land, and it is mine to safeguard. Time, war, even death itself will not stop my vigil.\"", + "artistName": "SIXMOREVODKA", + "name": "Anivia", + "cardCode": "01FR024", + "keywords": [ + "Last Breath" + ], + "keywordRefs": [ + "LastBreath" + ], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "Champion", + "rarityRef": "Champion", + "subtypes": [], + "supertype": "Champion", + "type": "Unit", + "collectible": true, + "set": "Set1" + }, + { + "associatedCards": [], + "associatedCardRefs": [ + "01FR024", + "01FR024T3" + ], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set1/en_us/img/cards/01FR024T2.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set1/en_us/img/cards/01FR024T2-full.png" + } + ], + "regions": [ + "Freljord" + ], + "regionRefs": [ + "Freljord" + ], + "attack": 0, + "cost": 0, + "health": 0, + "description": "Deal 1 to all enemies and the enemy Nexus.", + "descriptionRaw": "Deal 1 to all enemies and the enemy Nexus.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "The storm that comes before the calm.", + "artistName": "SIXMOREVODKA", + "name": "Glacial Storm", + "cardCode": "01FR024T2", + "keywords": [ + "Skill" + ], + "keywordRefs": [ + "Skill" + ], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "None", + "rarityRef": "None", + "subtypes": [], + "supertype": "", + "type": "Ability", + "collectible": false, + "set": "Set1" + }, + { + "associatedCards": [], + "associatedCardRefs": [ + "01FR024T4", + "01FR024T3", + "01FR024" + ], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set1/en_us/img/cards/01FR024T1.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set1/en_us/img/cards/01FR024T1-full.png" + } + ], + "regions": [ + "Freljord" + ], + "regionRefs": [ + "Freljord" + ], + "attack": 0, + "cost": 6, + "health": 0, + "description": "Frostbite 2 enemies.\r\nCreate an Anivia in your deck.", + "descriptionRaw": "Frostbite 2 enemies.\r\nCreate an Anivia in your deck.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"You'd challenge me on my own lands? You're ill-prepared, little one.\" - Anivia", + "artistName": "Kudos Productions", + "name": "Anivia's Harsh Winds", + "cardCode": "01FR024T1", + "keywords": [ + "Burst" + ], + "keywordRefs": [ + "Burst" + ], + "spellSpeed": "Burst", + "spellSpeedRef": "Burst", + "rarity": "None", + "rarityRef": "None", + "subtypes": [], + "supertype": "Champion", + "type": "Spell", + "collectible": false, + "set": "Set1" + }, + { + "associatedCards": [], + "associatedCardRefs": [ + "01FR024T5", + "01FR024T1", + "01FR024", + "01FR024T4" + ], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set1/en_us/img/cards/01FR024T3.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set1/en_us/img/cards/01FR024T3-full.png" + } + ], + "regions": [ + "Freljord" + ], + "regionRefs": [ + "Freljord" + ], + "attack": 4, + "cost": 6, + "health": 6, + "description": "Attack: Deal 2 to all enemies and the enemy Nexus.\r\nLast Breath: Revive me transformed into Eggnivia.", + "descriptionRaw": "Attack: Deal 2 to all enemies and the enemy Nexus.\r\nLast Breath: Revive me transformed into Eggnivia.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"Cease your march and turn back your armies. The eye of winter has spied your conquest, and its icy claw closes tight about your treasonous hearts.\" ", + "artistName": "SIXMOREVODKA", + "name": "Anivia", + "cardCode": "01FR024T3", + "keywords": [ + "Last Breath" + ], + "keywordRefs": [ + "LastBreath" + ], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "None", + "rarityRef": "None", + "subtypes": [], + "supertype": "Champion", + "type": "Unit", + "collectible": false, + "set": "Set1" + }, + { + "associatedCards": [], + "associatedCardRefs": [ + "01FR024T3", + "01FR024" + ], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set1/en_us/img/cards/01FR024T5.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set1/en_us/img/cards/01FR024T5-full.png" + } + ], + "regions": [ + "Freljord" + ], + "regionRefs": [ + "Freljord" + ], + "attack": 0, + "cost": 0, + "health": 0, + "description": "Deal 2 to all enemies and the enemy Nexus.", + "descriptionRaw": "Deal 2 to all enemies and the enemy Nexus.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "The storm that comes before the calm.", + "artistName": "SIXMOREVODKA", + "name": "Glacial Storm", + "cardCode": "01FR024T5", + "keywords": [ + "Skill" + ], + "keywordRefs": [ + "Skill" + ], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "None", + "rarityRef": "None", + "subtypes": [], + "supertype": "", + "type": "Ability", + "collectible": false, + "set": "Set1" + }, + { + "associatedCards": [], + "associatedCardRefs": [ + "01FR024T3", + "01FR024T1" + ], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set1/en_us/img/cards/01FR024T4.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set1/en_us/img/cards/01FR024T4-full.png" + } + ], + "regions": [ + "Freljord" + ], + "regionRefs": [ + "Freljord" + ], + "attack": 0, + "cost": 1, + "health": 1, + "description": "", + "descriptionRaw": "", + "levelupDescription": "Round Start: If you're Enlightened, transform me back into Anivia and Level Up.", + "levelupDescriptionRaw": "Round Start: If you're Enlightened, transform me back into Anivia and Level Up.", + "flavorText": "In the depths of winter's cold embrace, the Freljord's guardian awaits the hour of her return.", + "artistName": "SIXMOREVODKA", + "name": "Eggnivia", + "cardCode": "01FR024T4", + "keywords": [], + "keywordRefs": [], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "None", + "rarityRef": "None", + "subtypes": [], + "supertype": "Champion", + "type": "Unit", + "collectible": false, + "set": "Set1" + }, + { + "associatedCards": [], + "associatedCardRefs": [ + "01FR039T2", + "01FR039T1" + ], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set1/en_us/img/cards/01FR039.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set1/en_us/img/cards/01FR039-full.png" + } + ], + "regions": [ + "Freljord" + ], + "regionRefs": [ + "Freljord" + ], + "attack": 8, + "cost": 8, + "health": 4, + "description": "", + "descriptionRaw": "", + "levelupDescription": "If I would die, I Level Up instead.", + "levelupDescriptionRaw": "If I would die, I Level Up instead.", + "flavorText": "\"Do not die for your cause. Live for it...\"", + "artistName": "SIXMOREVODKA", + "name": "Tryndamere", + "cardCode": "01FR039", + "keywords": [ + "Overwhelm" + ], + "keywordRefs": [ + "Overwhelm" + ], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "Champion", + "rarityRef": "Champion", + "subtypes": [], + "supertype": "Champion", + "type": "Unit", + "collectible": true, + "set": "Set1" + }, + { + "associatedCards": [], + "associatedCardRefs": [ + "01FR039", + "01FR039T2" + ], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set1/en_us/img/cards/01FR039T1.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set1/en_us/img/cards/01FR039T1-full.png" + } + ], + "regions": [ + "Freljord" + ], + "regionRefs": [ + "Freljord" + ], + "attack": 0, + "cost": 8, + "health": 0, + "description": "Grant an ally +8|+4.\r\nCreate a Tryndamere in your deck.", + "descriptionRaw": "Grant an ally +8|+4.\r\nCreate a Tryndamere in your deck.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "“I've been told I have a... temper.” - Tryndamere", + "artistName": "SIXMOREVODKA", + "name": "Tryndamere's Battle Fury", + "cardCode": "01FR039T1", + "keywords": [ + "Burst" + ], + "keywordRefs": [ + "Burst" + ], + "spellSpeed": "Burst", + "spellSpeedRef": "Burst", + "rarity": "None", + "rarityRef": "None", + "subtypes": [], + "supertype": "Champion", + "type": "Spell", + "collectible": false, + "set": "Set1" + }, + { + "associatedCards": [], + "associatedCardRefs": [ + "01FR039", + "01FR039T1" + ], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set1/en_us/img/cards/01FR039T2.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set1/en_us/img/cards/01FR039T2-full.png" + } + ], + "regions": [ + "Freljord" + ], + "regionRefs": [ + "Freljord" + ], + "attack": 9, + "cost": 8, + "health": 9, + "description": "", + "descriptionRaw": "", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"...And make THEM die for it.\"", + "artistName": "SIXMOREVODKA", + "name": "Tryndamere", + "cardCode": "01FR039T2", + "keywords": [ + "Overwhelm", + "Fearsome", + "Tough" + ], + "keywordRefs": [ + "Overwhelm", + "Fearsome", + "Tough" + ], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "None", + "rarityRef": "None", + "subtypes": [], + "supertype": "Champion", + "type": "Unit", + "collectible": false, + "set": "Set1" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set1/en_us/img/cards/01FR006.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set1/en_us/img/cards/01FR006-full.png" + } + ], + "regions": [ + "Freljord" + ], + "regionRefs": [ + "Freljord" + ], + "attack": 0, + "cost": 6, + "health": 0, + "description": "Grant an ally and all allied copies of it everywhere +2|+2.", + "descriptionRaw": "Grant an ally and all allied copies of it everywhere +2|+2.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"We few are Iceborn, our bloodlines infused with the Freljord's magic. Our ancestors locked away an ancient evil, and now we few stand guard to defend against its return.\" - Gregor the Guardian", + "artistName": "SIXMOREVODKA", + "name": "Iceborn Legacy", + "cardCode": "01FR006", + "keywords": [ + "Focus" + ], + "keywordRefs": [ + "Focus" + ], + "spellSpeed": "Burst", + "spellSpeedRef": "Burst", + "rarity": "COMMON", + "rarityRef": "Common", + "subtypes": [], + "supertype": "", + "type": "Spell", + "collectible": true, + "set": "Set1" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set1/en_us/img/cards/01FR022.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set1/en_us/img/cards/01FR022-full.png" + } + ], + "regions": [ + "Freljord" + ], + "regionRefs": [ + "Freljord" + ], + "attack": 1, + "cost": 1, + "health": 1, + "description": "When I'm summoned, grant the top 2 allies in your deck +1|+1.", + "descriptionRaw": "When I'm summoned, grant the top 2 allies in your deck +1|+1.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"Three times our reavers reached Avarosan gates, and three time they were met with ready bows. What trickery warns them of our attacks?\" - Scarthane Steffen", + "artistName": "SIXMOREVODKA", + "name": "Omen Hawk", + "cardCode": "01FR022", + "keywords": [], + "keywordRefs": [], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "COMMON", + "rarityRef": "Common", + "subtypes": [], + "supertype": "", + "type": "Unit", + "collectible": true, + "set": "Set1" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set1/en_us/img/cards/01FR042.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set1/en_us/img/cards/01FR042-full.png" + } + ], + "regions": [ + "Freljord" + ], + "regionRefs": [ + "Freljord" + ], + "attack": 0, + "cost": 6, + "health": 0, + "description": "Frostbite 2 enemies. ", + "descriptionRaw": "Frostbite 2 enemies. ", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"You'd challenge me on my own lands? You're ill-prepared, little one.\" - Anivia", + "artistName": "Kudos Productions", + "name": "Harsh Winds", + "cardCode": "01FR042", + "keywords": [ + "Burst" + ], + "keywordRefs": [ + "Burst" + ], + "spellSpeed": "Burst", + "spellSpeedRef": "Burst", + "rarity": "RARE", + "rarityRef": "Rare", + "subtypes": [], + "supertype": "", + "type": "Spell", + "collectible": true, + "set": "Set1" + }, + { + "associatedCards": [], + "associatedCardRefs": [ + "01FR053", + "01FR009T2", + "01FR009T1" + ], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set1/en_us/img/cards/01FR009.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set1/en_us/img/cards/01FR009-full.png" + } + ], + "regions": [ + "Freljord" + ], + "regionRefs": [ + "Freljord" + ], + "attack": 0, + "cost": 4, + "health": 6, + "description": "The first time I survive damage, summon a Mighty Poro.", + "descriptionRaw": "The first time I survive damage, summon a Mighty Poro.", + "levelupDescription": "I've survived 10 total damage.", + "levelupDescriptionRaw": "I've survived 10 total damage.", + "flavorText": "“Papa, tell the one about Braum and his door!”\n\"Or when his fall split a mountain in two!\"\n\"Oh! Whattabout when he saved the tavern from the rampaging yeti?!\"", + "artistName": "SIXMOREVODKA", + "name": "Braum", + "cardCode": "01FR009", + "keywords": [ + "Challenger", + "Regeneration" + ], + "keywordRefs": [ + "Challenger", + "Regeneration" + ], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "Champion", + "rarityRef": "Champion", + "subtypes": [], + "supertype": "Champion", + "type": "Unit", + "collectible": true, + "set": "Set1" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set1/en_us/img/cards/01FR018.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set1/en_us/img/cards/01FR018-full.png" + } + ], + "regions": [ + "Freljord" + ], + "regionRefs": [ + "Freljord" + ], + "attack": 3, + "cost": 3, + "health": 2, + "description": "Strike: If I struck a unit with 0 Power, kill it.", + "descriptionRaw": "Strike: If I struck a unit with 0 Power, kill it.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "Predators of the northern reaches have learned that the easiest prey are those already crippled by winter's bite.", + "artistName": "SIXMOREVODKA", + "name": "Rimefang Wolf", + "cardCode": "01FR018", + "keywords": [ + "Challenger" + ], + "keywordRefs": [ + "Challenger" + ], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "RARE", + "rarityRef": "Rare", + "subtypes": [], + "supertype": "", + "type": "Unit", + "collectible": true, + "set": "Set1" + }, + { + "associatedCards": [], + "associatedCardRefs": [ + "01FR036T1" + ], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set1/en_us/img/cards/01FR036.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set1/en_us/img/cards/01FR036-full.png" + } + ], + "regions": [ + "Freljord" + ], + "regionRefs": [ + "Freljord" + ], + "attack": 3, + "cost": 3, + "health": 1, + "description": "Play: Deal 1 to an enemy.", + "descriptionRaw": "Play: Deal 1 to an enemy.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "In the Freljord you can hunt, or you can starve.", + "artistName": "SIXMOREVODKA", + "name": "Avarosan Marksman", + "cardCode": "01FR036", + "keywords": [], + "keywordRefs": [], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "COMMON", + "rarityRef": "Common", + "subtypes": [], + "supertype": "", + "type": "Unit", + "collectible": true, + "set": "Set1" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set1/en_us/img/cards/01FR045.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set1/en_us/img/cards/01FR045-full.png" + } + ], + "regions": [ + "Freljord" + ], + "regionRefs": [ + "Freljord" + ], + "attack": 2, + "cost": 3, + "health": 4, + "description": "When I survive damage, grant me +3|+0.", + "descriptionRaw": "When I survive damage, grant me +3|+0.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"I sealed my oath to the Winter's Claw when Sejuani gave me my first scar. Every scar since has been earned in her service.\"", + "artistName": "SIXMOREVODKA", + "name": "Scarthane Steffen", + "cardCode": "01FR045", + "keywords": [], + "keywordRefs": [], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "COMMON", + "rarityRef": "Common", + "subtypes": [], + "supertype": "", + "type": "Unit", + "collectible": true, + "set": "Set1" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set1/en_us/img/cards/01FR008.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set1/en_us/img/cards/01FR008-full.png" + } + ], + "regions": [ + "Freljord" + ], + "regionRefs": [ + "Freljord" + ], + "attack": 1, + "cost": 1, + "health": 1, + "description": "When I'm summoned, create another random 1 cost Poro in hand.", + "descriptionRaw": "When I'm summoned, create another random 1 cost Poro in hand.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"A lifetime in the Freljord, and still nothin's more chillin' than the sight of this sad little fellow.\" - Poro Herder", + "artistName": "SIXMOREVODKA", + "name": "Lonely Poro", + "cardCode": "01FR008", + "keywords": [], + "keywordRefs": [], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "COMMON", + "rarityRef": "Common", + "subtypes": [ + "PORO" + ], + "supertype": "", + "type": "Unit", + "collectible": true, + "set": "Set1" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set1/en_us/img/cards/01FR008T1.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set1/en_us/img/cards/01FR008T1-full.png" + } + ], + "regions": [ + "Freljord" + ], + "regionRefs": [ + "Freljord" + ], + "attack": 1, + "cost": 1, + "health": 1, + "description": "When I'm summoned, create another random 1 cost Poro in hand.", + "descriptionRaw": "When I'm summoned, create another random 1 cost Poro in hand.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"Oho, there's a good lad! Even the coldest winter melts into spring.\" - Poro Herder", + "artistName": "SIXMOREVODKA", + "name": "Jubilant Poro", + "cardCode": "01FR008T1", + "keywords": [], + "keywordRefs": [], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "None", + "rarityRef": "None", + "subtypes": [ + "PORO" + ], + "supertype": "", + "type": "Unit", + "collectible": false, + "set": "Set1" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set1/en_us/img/cards/01FR055.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set1/en_us/img/cards/01FR055-full.png" + } + ], + "regions": [ + "Freljord" + ], + "regionRefs": [ + "Freljord" + ], + "attack": 0, + "cost": 2, + "health": 0, + "description": "Deal 4 to an enemy if it has 0 Power. Otherwise, Frostbite it.", + "descriptionRaw": "Deal 4 to an enemy if it has 0 Power. Otherwise, Frostbite it.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"When Winter rides across the land, she humbles the strong and fells the weak.\" - Scarthane Steffen", + "artistName": "Kudos Productions", + "name": "Shatter", + "cardCode": "01FR055", + "keywords": [ + "Slow" + ], + "keywordRefs": [ + "Slow" + ], + "spellSpeed": "Slow", + "spellSpeedRef": "Slow", + "rarity": "COMMON", + "rarityRef": "Common", + "subtypes": [], + "supertype": "", + "type": "Spell", + "collectible": true, + "set": "Set1" + }, + { + "associatedCards": [], + "associatedCardRefs": [ + "01FR038T2", + "01FR038T1", + "01FR038T3" + ], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set1/en_us/img/cards/01FR038.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set1/en_us/img/cards/01FR038-full.png" + } + ], + "regions": [ + "Freljord" + ], + "regionRefs": [ + "Freljord" + ], + "attack": 5, + "cost": 4, + "health": 3, + "description": "Attack: Frostbite the strongest enemy.", + "descriptionRaw": "Attack: Frostbite the strongest enemy.", + "levelupDescription": "You've reduced the Power of 4+ enemies to 0. When I level up, create a Crystal Arrow on top of deck.", + "levelupDescriptionRaw": "You've reduced the Power of 4+ enemies to 0. When I level up, create a Crystal Arrow on top of deck.", + "flavorText": "\"When I look out over my home, I see what it is, but also what it could be. Prosperous and plentiful, not only for my people, but for all those who seek peace. The Freljord, united.\"", + "artistName": "SIXMOREVODKA", + "name": "Ashe", + "cardCode": "01FR038", + "keywords": [], + "keywordRefs": [], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "Champion", + "rarityRef": "Champion", + "subtypes": [], + "supertype": "Champion", + "type": "Unit", + "collectible": true, + "set": "Set1" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set1/en_us/img/cards/01FR038T3.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set1/en_us/img/cards/01FR038T3-full.png" + } + ], + "regions": [ + "Freljord" + ], + "regionRefs": [ + "Freljord" + ], + "attack": 0, + "cost": 2, + "health": 0, + "description": "Frostbite an enemy and all other enemies with 3 or less Health. Draw 1.", + "descriptionRaw": "Frostbite an enemy and all other enemies with 3 or less Health. Draw 1.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"All the world on one arrow.\" - Ashe", + "artistName": "SIXMOREVODKA", + "name": "Crystal Arrow", + "cardCode": "01FR038T3", + "keywords": [ + "Slow" + ], + "keywordRefs": [ + "Slow" + ], + "spellSpeed": "Slow", + "spellSpeedRef": "Slow", + "rarity": "None", + "rarityRef": "None", + "subtypes": [], + "supertype": "", + "type": "Spell", + "collectible": false, + "set": "Set1" + }, + { + "associatedCards": [], + "associatedCardRefs": [ + "01FR038T3", + "01FR038T1", + "01FR038" + ], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set1/en_us/img/cards/01FR038T2.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set1/en_us/img/cards/01FR038T2-full.png" + } + ], + "regions": [ + "Freljord" + ], + "regionRefs": [ + "Freljord" + ], + "attack": 6, + "cost": 4, + "health": 4, + "description": "Attack: Frostbite the strongest enemy.\r\nEnemies with 0 Power can't block.", + "descriptionRaw": "Attack: Frostbite the strongest enemy.\r\nEnemies with 0 Power can't block.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"You are not our enemy. Our true foe is the long, lawless winter. We are all people of the Freljord, and this land belongs to all of us!\" ", + "artistName": "SIXMOREVODKA", + "name": "Ashe", + "cardCode": "01FR038T2", + "keywords": [ + "Missing Translation" + ], + "keywordRefs": [ + "AuraVisualFakeKeyword" + ], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "None", + "rarityRef": "None", + "subtypes": [], + "supertype": "Champion", + "type": "Unit", + "collectible": false, + "set": "Set1" + }, + { + "associatedCards": [], + "associatedCardRefs": [ + "01FR038T2", + "01FR038" + ], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set1/en_us/img/cards/01FR038T1.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set1/en_us/img/cards/01FR038T1-full.png" + } + ], + "regions": [ + "Freljord" + ], + "regionRefs": [ + "Freljord" + ], + "attack": 0, + "cost": 3, + "health": 0, + "description": "Frostbite an enemy.\r\nCreate an Ashe in your deck.", + "descriptionRaw": "Frostbite an enemy.\r\nCreate an Ashe in your deck.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "The cold strikes without warning, rendering even the strongest warrior helpless.", + "artistName": "SIXMOREVODKA", + "name": "Ashe's Flash Freeze", + "cardCode": "01FR038T1", + "keywords": [ + "Burst" + ], + "keywordRefs": [ + "Burst" + ], + "spellSpeed": "Burst", + "spellSpeedRef": "Burst", + "rarity": "None", + "rarityRef": "None", + "subtypes": [], + "supertype": "Champion", + "type": "Spell", + "collectible": false, + "set": "Set1" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set1/en_us/img/cards/01FR029.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set1/en_us/img/cards/01FR029-full.png" + } + ], + "regions": [ + "Freljord" + ], + "regionRefs": [ + "Freljord" + ], + "attack": 0, + "cost": 2, + "health": 0, + "description": "Draw a champion.", + "descriptionRaw": "Draw a champion.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"Reavers approach! Sound the call and light the fires, we'll need all the help we can muster!\" - Avarosan Sentry", + "artistName": "SIXMOREVODKA", + "name": "Entreat", + "cardCode": "01FR029", + "keywords": [ + "Burst" + ], + "keywordRefs": [ + "Burst" + ], + "spellSpeed": "Burst", + "spellSpeedRef": "Burst", + "rarity": "RARE", + "rarityRef": "Rare", + "subtypes": [], + "supertype": "", + "type": "Spell", + "collectible": true, + "set": "Set1" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set1/en_us/img/cards/01FR035.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set1/en_us/img/cards/01FR035-full.png" + } + ], + "regions": [ + "Freljord" + ], + "regionRefs": [ + "Freljord" + ], + "attack": 0, + "cost": 1, + "health": 3, + "description": "When I survive damage, grant me +3|+0.", + "descriptionRaw": "When I survive damage, grant me +3|+0.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"Avarosans nurture their young to grow old, soft, and unprepared for the heat of battle. Ours are born in the fires of war itself.\" - Scarmother Vrynna\n", + "artistName": "SIXMOREVODKA", + "name": "Unscarred Reaver", + "cardCode": "01FR035", + "keywords": [], + "keywordRefs": [], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "COMMON", + "rarityRef": "Common", + "subtypes": [], + "supertype": "", + "type": "Unit", + "collectible": true, + "set": "Set1" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set1/en_us/img/cards/01FR028.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set1/en_us/img/cards/01FR028-full.png" + } + ], + "regions": [ + "Freljord" + ], + "regionRefs": [ + "Freljord" + ], + "attack": 5, + "cost": 1, + "health": 5, + "description": "", + "descriptionRaw": "", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "Yetis? I just don't think they exi--AUGHHH!", + "artistName": "SIXMOREVODKA", + "name": "Enraged Yeti", + "cardCode": "01FR028", + "keywords": [], + "keywordRefs": [], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "None", + "rarityRef": "None", + "subtypes": [ + "YETI" + ], + "supertype": "", + "type": "Unit", + "collectible": false, + "set": "Set1" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set1/en_us/img/cards/01FR020.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set1/en_us/img/cards/01FR020-full.png" + } + ], + "regions": [ + "Freljord" + ], + "regionRefs": [ + "Freljord" + ], + "attack": 0, + "cost": 4, + "health": 0, + "description": "Deal 2 to ALL units.", + "descriptionRaw": "Deal 2 to ALL units.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "The soul of every avalanche is a pebble that would not stay put.", + "artistName": "SIXMOREVODKA", + "name": "Avalanche", + "cardCode": "01FR020", + "keywords": [ + "Slow" + ], + "keywordRefs": [ + "Slow" + ], + "spellSpeed": "Slow", + "spellSpeedRef": "Slow", + "rarity": "RARE", + "rarityRef": "Rare", + "subtypes": [], + "supertype": "", + "type": "Spell", + "collectible": true, + "set": "Set1" + }, + { + "associatedCards": [], + "associatedCardRefs": [ + "01FR028" + ], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set1/en_us/img/cards/01FR014.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set1/en_us/img/cards/01FR014-full.png" + } + ], + "regions": [ + "Freljord" + ], + "regionRefs": [ + "Freljord" + ], + "attack": 1, + "cost": 1, + "health": 2, + "description": "Last Breath: Create 2 Enraged Yetis in your deck.", + "descriptionRaw": "Last Breath: Create 2 Enraged Yetis in your deck.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"It was so tiny and peaceful! Hard to believe it would grow up to be... well... a yeti.\" - Avarosan Trapper", + "artistName": "SIXMOREVODKA", + "name": "Yeti Yearling", + "cardCode": "01FR014", + "keywords": [ + "Last Breath" + ], + "keywordRefs": [ + "LastBreath" + ], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "COMMON", + "rarityRef": "Common", + "subtypes": [ + "YETI" + ], + "supertype": "", + "type": "Unit", + "collectible": true, + "set": "Set1" + }, + { + "associatedCards": [], + "associatedCardRefs": [ + "01FR049T1" + ], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set1/en_us/img/cards/01FR049.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set1/en_us/img/cards/01FR049-full.png" + } + ], + "regions": [ + "Freljord" + ], + "regionRefs": [ + "Freljord" + ], + "attack": 3, + "cost": 2, + "health": 2, + "description": "When I'm summoned, the enemy summons a Snow Hare.", + "descriptionRaw": "When I'm summoned, the enemy summons a Snow Hare.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"You cannot make a wolf from a hare.\"\n- Winter's Claw proverb", + "artistName": "SIXMOREVODKA", + "name": "Stalking Wolf", + "cardCode": "01FR049", + "keywords": [ + "Challenger" + ], + "keywordRefs": [ + "Challenger" + ], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "COMMON", + "rarityRef": "Common", + "subtypes": [], + "supertype": "", + "type": "Unit", + "collectible": true, + "set": "Set1" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set1/en_us/img/cards/01FR037.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set1/en_us/img/cards/01FR037-full.png" + } + ], + "regions": [ + "Freljord" + ], + "regionRefs": [ + "Freljord" + ], + "attack": 3, + "cost": 4, + "health": 3, + "description": "Allegiance: Grant the top ally in your deck +3|+3 and Overwhelm.", + "descriptionRaw": "Allegiance: Grant the top ally in your deck +3|+3 and Overwhelm.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "As the rows of reinforcements crested the ridge, the Outriders bowed their heads to the warmother. For with her--their Avarosa in the flesh, their queen Ashe--came the promise of peace.", + "artistName": "SIXMOREVODKA", + "name": "Avarosan Outriders", + "cardCode": "01FR037", + "keywords": [ + "Overwhelm" + ], + "keywordRefs": [ + "Overwhelm" + ], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "RARE", + "rarityRef": "Rare", + "subtypes": [], + "supertype": "", + "type": "Unit", + "collectible": true, + "set": "Set1" + }, + { + "associatedCards": [], + "associatedCardRefs": [ + "01FR009T2", + "01FR009", + "01FR053" + ], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set1/en_us/img/cards/01FR009T1.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set1/en_us/img/cards/01FR009T1-full.png" + } + ], + "regions": [ + "Freljord" + ], + "regionRefs": [ + "Freljord" + ], + "attack": 1, + "cost": 4, + "health": 7, + "description": "When I survive damage, summon a Mighty Poro.", + "descriptionRaw": "When I survive damage, summon a Mighty Poro.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"Listen closely, 'n I'll tell you about Braum and the mightiest of his poros!\" - Ingvar the Elder", + "artistName": "SIXMOREVODKA", + "name": "Braum", + "cardCode": "01FR009T1", + "keywords": [ + "Challenger", + "Regeneration" + ], + "keywordRefs": [ + "Challenger", + "Regeneration" + ], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "None", + "rarityRef": "None", + "subtypes": [], + "supertype": "Champion", + "type": "Unit", + "collectible": false, + "set": "Set1" + }, + { + "associatedCards": [], + "associatedCardRefs": [ + "01FR009", + "01FR009T1" + ], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set1/en_us/img/cards/01FR009T2.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set1/en_us/img/cards/01FR009T2-full.png" + } + ], + "regions": [ + "Freljord" + ], + "regionRefs": [ + "Freljord" + ], + "attack": 0, + "cost": 3, + "health": 0, + "description": "Grant a damaged ally +3|+3.\r\nCreate a Braum in your deck.", + "descriptionRaw": "Grant a damaged ally +3|+3.\r\nCreate a Braum in your deck.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"... Though his wounds were great, Braum threw back his head and laughed. For he knew that dire times are when heroes are made!\"\n- The Tale of Braum", + "artistName": "SIXMOREVODKA", + "name": "Braum's Take Heart", + "cardCode": "01FR009T2", + "keywords": [ + "Burst" + ], + "keywordRefs": [ + "Burst" + ], + "spellSpeed": "Burst", + "spellSpeedRef": "Burst", + "rarity": "None", + "rarityRef": "None", + "subtypes": [], + "supertype": "Champion", + "type": "Spell", + "collectible": false, + "set": "Set1" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set1/en_us/img/cards/01FR026.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set1/en_us/img/cards/01FR026-full.png" + } + ], + "regions": [ + "Freljord" + ], + "regionRefs": [ + "Freljord" + ], + "attack": 7, + "cost": 6, + "health": 6, + "description": "", + "descriptionRaw": "", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "The power of a warhorse, the thoughtless savagery of a cat.", + "artistName": "SIXMOREVODKA", + "name": "Alpha Wildclaw", + "cardCode": "01FR026", + "keywords": [ + "Overwhelm" + ], + "keywordRefs": [ + "Overwhelm" + ], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "COMMON", + "rarityRef": "Common", + "subtypes": [], + "supertype": "", + "type": "Unit", + "collectible": true, + "set": "Set1" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set1/en_us/img/cards/01FR030.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set1/en_us/img/cards/01FR030-full.png" + } + ], + "regions": [ + "Freljord" + ], + "regionRefs": [ + "Freljord" + ], + "attack": 0, + "cost": 1, + "health": 0, + "description": "Frostbite an enemy with 3 or less Health.", + "descriptionRaw": "Frostbite an enemy with 3 or less Health.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"Chilly? Ha! Let us hope that your spirits are sturdier than your summerland steel!\" - Braum", + "artistName": "SIXMOREVODKA", + "name": "Brittle Steel", + "cardCode": "01FR030", + "keywords": [ + "Burst" + ], + "keywordRefs": [ + "Burst" + ], + "spellSpeed": "Burst", + "spellSpeedRef": "Burst", + "rarity": "COMMON", + "rarityRef": "Common", + "subtypes": [], + "supertype": "", + "type": "Spell", + "collectible": true, + "set": "Set1" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set1/en_us/img/cards/01FR013.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set1/en_us/img/cards/01FR013-full.png" + } + ], + "regions": [ + "Freljord" + ], + "regionRefs": [ + "Freljord" + ], + "attack": 3, + "cost": 6, + "health": 8, + "description": "When I survive damage, grant me +3|+0.", + "descriptionRaw": "When I survive damage, grant me +3|+0.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"I would die shivering in the cold before sharing a hearth with Ashe's weaklings. But if they desire warmth, I will give it to them.”", + "artistName": "SIXMOREVODKA", + "name": "Scarmother Vrynna", + "cardCode": "01FR013", + "keywords": [ + "Overwhelm" + ], + "keywordRefs": [ + "Overwhelm" + ], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "EPIC", + "rarityRef": "Epic", + "subtypes": [], + "supertype": "", + "type": "Unit", + "collectible": true, + "set": "Set1" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set1/en_us/img/cards/01FR019.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set1/en_us/img/cards/01FR019-full.png" + } + ], + "regions": [ + "Freljord" + ], + "regionRefs": [ + "Freljord" + ], + "attack": 0, + "cost": 7, + "health": 0, + "description": "Kill all enemies with 0 Power, then Frostbite all enemies.", + "descriptionRaw": "Kill all enemies with 0 Power, then Frostbite all enemies.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "Warmother Winter is the first and last foe faced by any who would invade the Freljord. Her bloodsworn are the merciless wind and the biting frost.", + "artistName": "SIXMOREVODKA", + "name": "Winter's Breath", + "cardCode": "01FR019", + "keywords": [ + "Slow" + ], + "keywordRefs": [ + "Slow" + ], + "spellSpeed": "Slow", + "spellSpeedRef": "Slow", + "rarity": "EPIC", + "rarityRef": "Epic", + "subtypes": [], + "supertype": "", + "type": "Spell", + "collectible": true, + "set": "Set1" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set1/en_us/img/cards/01FR041.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set1/en_us/img/cards/01FR041-full.png" + } + ], + "regions": [ + "Freljord" + ], + "regionRefs": [ + "Freljord" + ], + "attack": 5, + "cost": 5, + "health": 6, + "description": "When I'm summoned, grant all allies in your deck +1|+1.", + "descriptionRaw": "When I'm summoned, grant all allies in your deck +1|+1.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"Many tribes under one banner! Perhaps one day all the Freljord will fight side by side.\"", + "artistName": "SIXMOREVODKA", + "name": "Avarosan Hearthguard ", + "cardCode": "01FR041", + "keywords": [], + "keywordRefs": [], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "EPIC", + "rarityRef": "Epic", + "subtypes": [], + "supertype": "", + "type": "Unit", + "collectible": true, + "set": "Set1" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set1/en_us/img/cards/01FR025.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set1/en_us/img/cards/01FR025-full.png" + } + ], + "regions": [ + "Freljord" + ], + "regionRefs": [ + "Freljord" + ], + "attack": 2, + "cost": 2, + "health": 3, + "description": "When I'm summoned, draw a Poro if you Behold a Poro.", + "descriptionRaw": "When I'm summoned, draw a Poro if you Behold a Poro.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "A herd needs just two things: love, and company. Anything else is just fluff.\n", + "artistName": "SIXMOREVODKA", + "name": "Poro Herder", + "cardCode": "01FR025", + "keywords": [], + "keywordRefs": [], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "RARE", + "rarityRef": "Rare", + "subtypes": [], + "supertype": "", + "type": "Unit", + "collectible": true, + "set": "Set1" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set1/en_us/img/cards/01FR054.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set1/en_us/img/cards/01FR054-full.png" + } + ], + "regions": [ + "Freljord" + ], + "regionRefs": [ + "Freljord" + ], + "attack": 4, + "cost": 5, + "health": 5, + "description": "", + "descriptionRaw": "", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"The weak harvest, but the strong take. The little Avarosans will learn which they are!\"", + "artistName": "SIXMOREVODKA", + "name": "Scarmaiden Reaver", + "cardCode": "01FR054", + "keywords": [ + "Overwhelm", + "Regeneration" + ], + "keywordRefs": [ + "Overwhelm", + "Regeneration" + ], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "RARE", + "rarityRef": "Rare", + "subtypes": [], + "supertype": "", + "type": "Unit", + "collectible": true, + "set": "Set1" + }, + { + "associatedCards": [], + "associatedCardRefs": [ + "01FR021T1" + ], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set1/en_us/img/cards/01FR021.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set1/en_us/img/cards/01FR021-full.png" + } + ], + "regions": [ + "Freljord" + ], + "regionRefs": [ + "Freljord" + ], + "attack": 5, + "cost": 5, + "health": 8, + "description": "Attack: Deal 1 to ALL battling units.", + "descriptionRaw": "Attack: Deal 1 to ALL battling units.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"Tarkaz fought harder and better than most. He took his defeat gracefully, I thought. Well, mostly...\" - Tryndamere", + "artistName": "SIXMOREVODKA", + "name": "Tarkaz the Tribeless", + "cardCode": "01FR021", + "keywords": [], + "keywordRefs": [], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "EPIC", + "rarityRef": "Epic", + "subtypes": [], + "supertype": "", + "type": "Unit", + "collectible": true, + "set": "Set1" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set1/en_us/img/cards/01FR021T1.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set1/en_us/img/cards/01FR021T1-full.png" + } + ], + "regions": [ + "Freljord" + ], + "regionRefs": [ + "Freljord" + ], + "attack": 0, + "cost": 0, + "health": 0, + "description": "Deal 1 to ALL battling units.", + "descriptionRaw": "Deal 1 to ALL battling units.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"... Maybe not that gracefully after all.\" - Tryndamere", + "artistName": "Max Grecke", + "name": "Tarkaz's Fury", + "cardCode": "01FR021T1", + "keywords": [ + "Skill" + ], + "keywordRefs": [ + "Skill" + ], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "None", + "rarityRef": "None", + "subtypes": [], + "supertype": "", + "type": "Ability", + "collectible": false, + "set": "Set1" + }, + { + "associatedCards": [], + "associatedCardRefs": [ + "01FR043T1" + ], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set1/en_us/img/cards/01FR043.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set1/en_us/img/cards/01FR043-full.png" + } + ], + "regions": [ + "Freljord" + ], + "regionRefs": [ + "Freljord" + ], + "attack": 4, + "cost": 6, + "health": 4, + "description": "Play: Combine all of our Poros into a Fluft of Poros, it gains their stats and keywords.", + "descriptionRaw": "Play: Combine all of our Poros into a Fluft of Poros, it gains their stats and keywords.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"One more story, but keep quiet or mother will come!\"\n\"Long ago, raiders attacked Avarosa's village. Her forces were few--all seemed lost. But a poro appeared and offered Avarosa its help...\"", + "artistName": "SIXMOREVODKA", + "name": "Heart of the Fluft", + "cardCode": "01FR043", + "keywords": [], + "keywordRefs": [], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "RARE", + "rarityRef": "Rare", + "subtypes": [ + "PORO" + ], + "supertype": "", + "type": "Unit", + "collectible": true, + "set": "Set1" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set1/en_us/img/cards/01FR049T1.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set1/en_us/img/cards/01FR049T1-full.png" + } + ], + "regions": [ + "Freljord" + ], + "regionRefs": [ + "Freljord" + ], + "attack": 1, + "cost": 1, + "health": 1, + "description": "", + "descriptionRaw": "", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"Wolf or hare, winter makes prey of us all.\"\n- Avarosan proverb", + "artistName": "SIXMOREVODKA", + "name": "Snow Hare", + "cardCode": "01FR049T1", + "keywords": [], + "keywordRefs": [], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "None", + "rarityRef": "None", + "subtypes": [], + "supertype": "", + "type": "Unit", + "collectible": false, + "set": "Set1" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set1/en_us/img/cards/01FR033.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set1/en_us/img/cards/01FR033-full.png" + } + ], + "regions": [ + "Freljord" + ], + "regionRefs": [ + "Freljord" + ], + "attack": 0, + "cost": 3, + "health": 3, + "description": "Round Start: Get an extra mana gem this round.", + "descriptionRaw": "Round Start: Get an extra mana gem this round.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"These ancient cairns are reminders that we are but the latest in a long line of tribes to brave these untamed lands.\" - Ashe", + "artistName": "SIXMOREVODKA", + "name": "Wyrding Stones", + "cardCode": "01FR033", + "keywords": [], + "keywordRefs": [], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "COMMON", + "rarityRef": "Common", + "subtypes": [], + "supertype": "", + "type": "Unit", + "collectible": true, + "set": "Set1" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set1/en_us/img/cards/01FR011.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set1/en_us/img/cards/01FR011-full.png" + } + ], + "regions": [ + "Freljord" + ], + "regionRefs": [ + "Freljord" + ], + "attack": 3, + "cost": 2, + "health": 1, + "description": "Play: Frostbite an enemy.", + "descriptionRaw": "Play: Frostbite an enemy.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "Avarosans take pride in their harsh seasons and icy lands. Their keen-eyed defenders even take it a step further. ", + "artistName": "SIXMOREVODKA", + "name": "Icevale Archer", + "cardCode": "01FR011", + "keywords": [], + "keywordRefs": [], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "COMMON", + "rarityRef": "Common", + "subtypes": [], + "supertype": "", + "type": "Unit", + "collectible": true, + "set": "Set1" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set1/en_us/img/cards/01FR050.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set1/en_us/img/cards/01FR050-full.png" + } + ], + "regions": [ + "Freljord" + ], + "regionRefs": [ + "Freljord" + ], + "attack": 3, + "cost": 3, + "health": 3, + "description": "Play: Heal an ally or your Nexus 3.", + "descriptionRaw": "Play: Heal an ally or your Nexus 3.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"This fine old establishment's the Tipsy Owl! We've got stews and brews a'plenty to chase away the chill. Hurry on inside!\"", + "artistName": "SIXMOREVODKA", + "name": "Kindly Tavernkeeper", + "cardCode": "01FR050", + "keywords": [], + "keywordRefs": [], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "COMMON", + "rarityRef": "Common", + "subtypes": [], + "supertype": "", + "type": "Unit", + "collectible": true, + "set": "Set1" + }, + { + "associatedCards": [], + "associatedCardRefs": [ + "01FR052T1" + ], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set1/en_us/img/cards/01FR052.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set1/en_us/img/cards/01FR052-full.png" + } + ], + "regions": [ + "Freljord" + ], + "regionRefs": [ + "Freljord" + ], + "attack": 10, + "cost": 10, + "health": 10, + "description": "Play: Obliterate ALL units with 4 or less Power in play and in hands.", + "descriptionRaw": "Play: Obliterate ALL units with 4 or less Power in play and in hands.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"I dug myself out from the rubble to find a scar seared into the land around me. Smoldering ash lay where my companions had stood, and in the distance a looming form moved on...\" - Bjerg the Wanderer", + "artistName": "SIXMOREVODKA", + "name": "She Who Wanders", + "cardCode": "01FR052", + "keywords": [ + "Regeneration" + ], + "keywordRefs": [ + "Regeneration" + ], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "EPIC", + "rarityRef": "Epic", + "subtypes": [], + "supertype": "", + "type": "Unit", + "collectible": true, + "set": "Set1" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set1/en_us/img/cards/01FR052T1.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set1/en_us/img/cards/01FR052T1-full.png" + } + ], + "regions": [ + "Freljord" + ], + "regionRefs": [ + "Freljord" + ], + "attack": 0, + "cost": 0, + "health": 0, + "description": "Obliterate ALL units with 4 or less Power in play and in hands.", + "descriptionRaw": "Obliterate ALL units with 4 or less Power in play and in hands.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "“Unearthly light flooded the valley as a piercing wail rattled the rocks from the cliffs, my sinews from their bones, the very thoughts from my mind! Then... silence.” - Bjerg the Wanderer", + "artistName": "Max Grecke", + "name": "Balesight", + "cardCode": "01FR052T1", + "keywords": [ + "Skill" + ], + "keywordRefs": [ + "Skill" + ], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "None", + "rarityRef": "None", + "subtypes": [], + "supertype": "", + "type": "Ability", + "collectible": false, + "set": "Set1" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set1/en_us/img/cards/01FR016.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set1/en_us/img/cards/01FR016-full.png" + } + ], + "regions": [ + "Freljord" + ], + "regionRefs": [ + "Freljord" + ], + "attack": 0, + "cost": 3, + "health": 0, + "description": "Grant Poro allies everywhere +1|+1.", + "descriptionRaw": "Grant Poro allies everywhere +1|+1.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"They gobble 'em up, then look at you, tongues out, happy as sheared 'nuks in the thaw askin' for more! You try sayin' no.\" - Avarosan treatmaker", + "artistName": "SIXMOREVODKA", + "name": "Poro Snax", + "cardCode": "01FR016", + "keywords": [ + "Burst" + ], + "keywordRefs": [ + "Burst" + ], + "spellSpeed": "Burst", + "spellSpeedRef": "Burst", + "rarity": "COMMON", + "rarityRef": "Common", + "subtypes": [], + "supertype": "", + "type": "Spell", + "collectible": true, + "set": "Set1" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set1/en_us/img/cards/01FR005.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set1/en_us/img/cards/01FR005-full.png" + } + ], + "regions": [ + "Freljord" + ], + "regionRefs": [ + "Freljord" + ], + "attack": 0, + "cost": 8, + "health": 0, + "description": "Grant an ally +8|+4.", + "descriptionRaw": "Grant an ally +8|+4.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "“I've been told I have a... temper.” - Tryndamere", + "artistName": "SIXMOREVODKA", + "name": "Battle Fury", + "cardCode": "01FR005", + "keywords": [ + "Burst" + ], + "keywordRefs": [ + "Burst" + ], + "spellSpeed": "Burst", + "spellSpeedRef": "Burst", + "rarity": "RARE", + "rarityRef": "Rare", + "subtypes": [], + "supertype": "", + "type": "Spell", + "collectible": true, + "set": "Set1" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set1/en_us/img/cards/01FR023.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set1/en_us/img/cards/01FR023-full.png" + } + ], + "regions": [ + "Freljord" + ], + "regionRefs": [ + "Freljord" + ], + "attack": 0, + "cost": 12, + "health": 0, + "description": "Summon the top ally from your deck now and EACH Round Start.", + "descriptionRaw": "Summon the top ally from your deck now and EACH Round Start.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "There will come a day when an unmistakable call will resound through the Freljord. On that day, all will rise to answer it, for it announces that our ancient enemies have emerged once again.", + "artistName": "SIXMOREVODKA", + "name": "Warmother's Call", + "cardCode": "01FR023", + "keywords": [ + "Slow" + ], + "keywordRefs": [ + "Slow" + ], + "spellSpeed": "Slow", + "spellSpeedRef": "Slow", + "rarity": "EPIC", + "rarityRef": "Epic", + "subtypes": [], + "supertype": "", + "type": "Spell", + "collectible": true, + "set": "Set1" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set1/en_us/img/cards/01FR047.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set1/en_us/img/cards/01FR047-full.png" + } + ], + "regions": [ + "Freljord" + ], + "regionRefs": [ + "Freljord" + ], + "attack": 2, + "cost": 2, + "health": 2, + "description": "Enlightened: I have +4|+4.", + "descriptionRaw": "Enlightened: I have +4|+4.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "“Those who learn to roar as beasts soon forget their native tongue.” - Anivia", + "artistName": "SIXMOREVODKA", + "name": "Feral Mystic", + "cardCode": "01FR047", + "keywords": [ + "Overwhelm" + ], + "keywordRefs": [ + "Overwhelm" + ], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "COMMON", + "rarityRef": "Common", + "subtypes": [], + "supertype": "", + "type": "Unit", + "collectible": true, + "set": "Set1" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set1/en_us/img/cards/01FR056.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set1/en_us/img/cards/01FR056-full.png" + } + ], + "regions": [ + "Freljord" + ], + "regionRefs": [ + "Freljord" + ], + "attack": 5, + "cost": 7, + "health": 5, + "description": "When I'm summoned, Frostbite enemies with 3 or less Health.", + "descriptionRaw": "When I'm summoned, Frostbite enemies with 3 or less Health.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"AaaaaaaAAaaaAaaaaah!\" - Bjerg the Wanderer", + "artistName": "JiHun Lee", + "name": "Icy Yeti", + "cardCode": "01FR056", + "keywords": [], + "keywordRefs": [], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "RARE", + "rarityRef": "Rare", + "subtypes": [ + "YETI" + ], + "supertype": "", + "type": "Unit", + "collectible": true, + "set": "Set1" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set1/en_us/img/cards/01FR027.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set1/en_us/img/cards/01FR027-full.png" + } + ], + "regions": [ + "Freljord" + ], + "regionRefs": [ + "Freljord" + ], + "attack": 4, + "cost": 4, + "health": 5, + "description": "", + "descriptionRaw": "", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "Avarosan folk tales speak of \"Old Uncle Elnuk\", a stubborn old grouch who wanted nothing more than a warm patch of grass and an argument to dig his heel into. ", + "artistName": "SIXMOREVODKA", + "name": "Bull Elnuk", + "cardCode": "01FR027", + "keywords": [], + "keywordRefs": [], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "COMMON", + "rarityRef": "Common", + "subtypes": [ + "ELNUK" + ], + "supertype": "", + "type": "Unit", + "collectible": true, + "set": "Set1" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set1/en_us/img/cards/01FR057.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set1/en_us/img/cards/01FR057-full.png" + } + ], + "regions": [ + "Freljord" + ], + "regionRefs": [ + "Freljord" + ], + "attack": 0, + "cost": 7, + "health": 0, + "description": "Give all allies +2|+2 and Overwhelm this round.", + "descriptionRaw": "Give all allies +2|+2 and Overwhelm this round.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "A lone howl echoed through the night, followed by another, then another. Within moments, the pack howled as one--a chorus of frenzied voices calling out for blood.", + "artistName": "Kudos Productions", + "name": "Pack Mentality", + "cardCode": "01FR057", + "keywords": [ + "Slow" + ], + "keywordRefs": [ + "Slow" + ], + "spellSpeed": "Slow", + "spellSpeedRef": "Slow", + "rarity": "RARE", + "rarityRef": "Rare", + "subtypes": [], + "supertype": "", + "type": "Spell", + "collectible": true, + "set": "Set1" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set1/en_us/img/cards/01FR004.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set1/en_us/img/cards/01FR004-full.png" + } + ], + "regions": [ + "Freljord" + ], + "regionRefs": [ + "Freljord" + ], + "attack": 0, + "cost": 1, + "health": 0, + "description": "Give an ally +0|+2 this round.", + "descriptionRaw": "Give an ally +0|+2 this round.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"Rough out there, eh? Not to worry, the 'Owl serves up a special brew so strong it'll pull the chill outta y'bones 'n grow hair on the chest of a newborn!\" - Kindly Tavernkeeper", + "artistName": "SIXMOREVODKA", + "name": "Elixir of Iron", + "cardCode": "01FR004", + "keywords": [ + "Burst" + ], + "keywordRefs": [ + "Burst" + ], + "spellSpeed": "Burst", + "spellSpeedRef": "Burst", + "rarity": "COMMON", + "rarityRef": "Common", + "subtypes": [], + "supertype": "", + "type": "Spell", + "collectible": true, + "set": "Set1" + }, + { + "associatedCards": [], + "associatedCardRefs": [ + "01FR028" + ], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set1/en_us/img/cards/01FR048.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set1/en_us/img/cards/01FR048-full.png" + } + ], + "regions": [ + "Freljord" + ], + "regionRefs": [ + "Freljord" + ], + "attack": 3, + "cost": 3, + "health": 3, + "description": "When I'm summoned, create an Enraged Yeti in the top 3 cards of your deck.", + "descriptionRaw": "When I'm summoned, create an Enraged Yeti in the top 3 cards of your deck.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"Caught nothing all week! Either those beasts are onto me, or something's scaring 'em off...\"", + "artistName": "SIXMOREVODKA", + "name": "Avarosan Trapper", + "cardCode": "01FR048", + "keywords": [], + "keywordRefs": [], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "COMMON", + "rarityRef": "Common", + "subtypes": [], + "supertype": "", + "type": "Unit", + "collectible": true, + "set": "Set1" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set1/en_us/img/cards/01FR017.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set1/en_us/img/cards/01FR017-full.png" + } + ], + "regions": [ + "Freljord" + ], + "regionRefs": [ + "Freljord" + ], + "attack": 3, + "cost": 5, + "health": 3, + "description": "Play: For the top 6 cards in your deck, summon each Elnuk and shuffle the rest into your deck.", + "descriptionRaw": "Play: For the top 6 cards in your deck, summon each Elnuk and shuffle the rest into your deck.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"Avarosans are like elnuks--dull-eyed grass-eaters easily felled by the unscarred. It is by numbers alone that they stay alive.\" - Scarmother Vrynna", + "artistName": "SIXMOREVODKA", + "name": "Troop of Elnuks", + "cardCode": "01FR017", + "keywords": [], + "keywordRefs": [], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "COMMON", + "rarityRef": "Common", + "subtypes": [ + "ELNUK" + ], + "supertype": "", + "type": "Unit", + "collectible": true, + "set": "Set1" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set1/en_us/img/cards/01FR046.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set1/en_us/img/cards/01FR046-full.png" + } + ], + "regions": [ + "Freljord" + ], + "regionRefs": [ + "Freljord" + ], + "attack": 0, + "cost": 3, + "health": 0, + "description": "Grant a damaged ally +3|+3.", + "descriptionRaw": "Grant a damaged ally +3|+3.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"... Though his wounds were great, Braum threw back his head and laughed. For he knew that dire times are when heroes are made!\"\n- The Tale of Braum", + "artistName": "SIXMOREVODKA", + "name": "Take Heart", + "cardCode": "01FR046", + "keywords": [ + "Burst" + ], + "keywordRefs": [ + "Burst" + ], + "spellSpeed": "Burst", + "spellSpeedRef": "Burst", + "rarity": "RARE", + "rarityRef": "Rare", + "subtypes": [], + "supertype": "", + "type": "Spell", + "collectible": true, + "set": "Set1" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set1/en_us/img/cards/01FR012.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set1/en_us/img/cards/01FR012-full.png" + } + ], + "regions": [ + "Freljord" + ], + "regionRefs": [ + "Freljord" + ], + "attack": 0, + "cost": 5, + "health": 0, + "description": "Get an empty mana gem and heal your Nexus 3.", + "descriptionRaw": "Get an empty mana gem and heal your Nexus 3.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "Neither ruby nor sapphire surpass the luster of the aeon stone--a brilliant gem with legendary restorative properties. ", + "artistName": "Kudos Productions", + "name": "Catalyst of Aeons", + "cardCode": "01FR012", + "keywords": [ + "Burst" + ], + "keywordRefs": [ + "Burst" + ], + "spellSpeed": "Burst", + "spellSpeedRef": "Burst", + "rarity": "COMMON", + "rarityRef": "Common", + "subtypes": [], + "supertype": "", + "type": "Spell", + "collectible": true, + "set": "Set1" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set1/en_us/img/cards/01FR040.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set1/en_us/img/cards/01FR040-full.png" + } + ], + "regions": [ + "Freljord" + ], + "regionRefs": [ + "Freljord" + ], + "attack": 3, + "cost": 5, + "health": 4, + "description": "Round Start: Frostbite the strongest enemy.", + "descriptionRaw": "Round Start: Frostbite the strongest enemy.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"To become one with the wild we must not hide from the cold, but revel in its savagery.\"", + "artistName": "SIXMOREVODKA", + "name": "Rimetusk Shaman", + "cardCode": "01FR040", + "keywords": [], + "keywordRefs": [], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "RARE", + "rarityRef": "Rare", + "subtypes": [], + "supertype": "", + "type": "Unit", + "collectible": true, + "set": "Set1" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set1/en_us/img/cards/01FR031.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set1/en_us/img/cards/01FR031-full.png" + } + ], + "regions": [ + "Freljord" + ], + "regionRefs": [ + "Freljord" + ], + "attack": 5, + "cost": 7, + "health": 5, + "description": "Round End: Reduce my cost by 1.", + "descriptionRaw": "Round End: Reduce my cost by 1.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"What was that? Sounded like a sneeze. Do glaciers... sneeze?\" - Bjerg the Wanderer\n", + "artistName": "SIXMOREVODKA", + "name": "Ancient Yeti", + "cardCode": "01FR031", + "keywords": [ + "Overwhelm" + ], + "keywordRefs": [ + "Overwhelm" + ], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "RARE", + "rarityRef": "Rare", + "subtypes": [ + "YETI" + ], + "supertype": "", + "type": "Unit", + "collectible": true, + "set": "Set1" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set1/en_us/img/cards/01FR036T1.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set1/en_us/img/cards/01FR036T1-full.png" + } + ], + "regions": [ + "Freljord" + ], + "regionRefs": [ + "Freljord" + ], + "attack": 0, + "cost": 0, + "health": 0, + "description": "Deal 1 to an enemy.", + "descriptionRaw": "Deal 1 to an enemy.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "Gotcha.", + "artistName": "Max Grecke", + "name": "Bullseye", + "cardCode": "01FR036T1", + "keywords": [ + "Skill" + ], + "keywordRefs": [ + "Skill" + ], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "None", + "rarityRef": "None", + "subtypes": [], + "supertype": "", + "type": "Ability", + "collectible": false, + "set": "Set1" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set1/en_us/img/cards/01FR053.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set1/en_us/img/cards/01FR053-full.png" + } + ], + "regions": [ + "Freljord" + ], + "regionRefs": [ + "Freljord" + ], + "attack": 3, + "cost": 3, + "health": 3, + "description": "", + "descriptionRaw": "", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"Ol' Longhorn here lost an eye defending the Poro King himself from an ornery wildclaw! After all, it's not the size of the hammer but the size of the heart that matters.\" - Poro Herder\n", + "artistName": "SIXMOREVODKA", + "name": "Mighty Poro", + "cardCode": "01FR053", + "keywords": [ + "Overwhelm" + ], + "keywordRefs": [ + "Overwhelm" + ], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "COMMON", + "rarityRef": "Common", + "subtypes": [ + "PORO" + ], + "supertype": "", + "type": "Unit", + "collectible": true, + "set": "Set1" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set1/en_us/img/cards/01FR010.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set1/en_us/img/cards/01FR010-full.png" + } + ], + "regions": [ + "Freljord" + ], + "regionRefs": [ + "Freljord" + ], + "attack": 0, + "cost": 4, + "health": 0, + "description": "Grant 2 allies +0|+3.", + "descriptionRaw": "Grant 2 allies +0|+3.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"I will be a torch in your heart, a shield at your side. Let me find strength to protect us and our kin, and may our lives flow together as the blood that seals this oath.\" - Tryndamere", + "artistName": "SIXMOREVODKA", + "name": "Bloodsworn Pledge", + "cardCode": "01FR010", + "keywords": [ + "Burst" + ], + "keywordRefs": [ + "Burst" + ], + "spellSpeed": "Burst", + "spellSpeedRef": "Burst", + "rarity": "RARE", + "rarityRef": "Rare", + "subtypes": [], + "supertype": "", + "type": "Spell", + "collectible": true, + "set": "Set1" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set1/en_us/img/cards/01FR001.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set1/en_us/img/cards/01FR001-full.png" + } + ], + "regions": [ + "Freljord" + ], + "regionRefs": [ + "Freljord" + ], + "attack": 0, + "cost": 3, + "health": 0, + "description": "Frostbite an enemy.", + "descriptionRaw": "Frostbite an enemy.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "The cold strikes without warning, rendering even the strongest warrior helpless.", + "artistName": "SIXMOREVODKA", + "name": "Flash Freeze", + "cardCode": "01FR001", + "keywords": [ + "Burst" + ], + "keywordRefs": [ + "Burst" + ], + "spellSpeed": "Burst", + "spellSpeedRef": "Burst", + "rarity": "RARE", + "rarityRef": "Rare", + "subtypes": [], + "supertype": "", + "type": "Spell", + "collectible": true, + "set": "Set1" + }, + { + "associatedCards": [], + "associatedCardRefs": [ + "01FR043" + ], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set1/en_us/img/cards/01FR043T1.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set1/en_us/img/cards/01FR043T1-full.png" + } + ], + "regions": [ + "Freljord" + ], + "regionRefs": [ + "Freljord" + ], + "attack": 4, + "cost": 6, + "health": 4, + "description": "Last Breath: Summon a Heart of the Fluft.", + "descriptionRaw": "Last Breath: Summon a Heart of the Fluft.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"... At first she didn't know what the little ones could do. But then another appeared, and another, 'til the hall was full of them! And every poro gathered--\" \n\"Bedtime! If you two aren't asleep in five minutes...!\"", + "artistName": "SIXMOREVODKA", + "name": "Fluft of Poros", + "cardCode": "01FR043T1", + "keywords": [ + "Last Breath" + ], + "keywordRefs": [ + "LastBreath" + ], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "None", + "rarityRef": "None", + "subtypes": [ + "PORO" + ], + "supertype": "", + "type": "Unit", + "collectible": false, + "set": "Set1" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set1/en_us/img/cards/01FR032.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set1/en_us/img/cards/01FR032-full.png" + } + ], + "regions": [ + "Freljord" + ], + "regionRefs": [ + "Freljord" + ], + "attack": 2, + "cost": 2, + "health": 3, + "description": "When you play a spell, grant the top ally in your deck +1|+1.", + "descriptionRaw": "When you play a spell, grant the top ally in your deck +1|+1.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"Grant them keen ears to hear the wind's approach, light feet to cross the coming snows, and sharp eyes to see beyond the veil of winter.\"", + "artistName": "SIXMOREVODKA", + "name": "Starlit Seer", + "cardCode": "01FR032", + "keywords": [ + "Imbue" + ], + "keywordRefs": [ + "Imbue" + ], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "RARE", + "rarityRef": "Rare", + "subtypes": [], + "supertype": "", + "type": "Unit", + "collectible": true, + "set": "Set1" + }, + { + "associatedCards": [], + "associatedCardRefs": [ + "01FR028" + ], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set1/en_us/img/cards/01FR051.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set1/en_us/img/cards/01FR051-full.png" + } + ], + "regions": [ + "Freljord" + ], + "regionRefs": [ + "Freljord" + ], + "attack": 0, + "cost": 3, + "health": 0, + "description": "If you have a Yeti, summon an Enraged Yeti. Otherwise, create it on top of your deck.", + "descriptionRaw": "If you have a Yeti, summon an Enraged Yeti. Otherwise, create it on top of your deck.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"... and this one has a mouth fulla big jagged teeths an' smashy fists an super an-ger-y eyes an a HUUUGE TREE-SHAKING ROAR! Uncle Bjerg told me so!\" - Ingvar the Younger", + "artistName": "SIXMOREVODKA", + "name": "Tall Tales", + "cardCode": "01FR051", + "keywords": [ + "Slow" + ], + "keywordRefs": [ + "Slow" + ], + "spellSpeed": "Slow", + "spellSpeedRef": "Slow", + "rarity": "COMMON", + "rarityRef": "Common", + "subtypes": [], + "supertype": "", + "type": "Spell", + "collectible": true, + "set": "Set1" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set1/en_us/img/cards/01FR034.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set1/en_us/img/cards/01FR034-full.png" + } + ], + "regions": [ + "Freljord" + ], + "regionRefs": [ + "Freljord" + ], + "attack": 1, + "cost": 7, + "health": 1, + "description": "When I'm summoned, grant me +1|+1 for each ally that has died. ", + "descriptionRaw": "When I'm summoned, grant me +1|+1 for each ally that has died. ", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"Ah, old Bjerg's been through a bit. Lost his crew up north, returned pale an' gibberin' months later. Now, it's just \"giant beasts\" this and \"huge claws\" that. That poor man...\" - Kindly Tavernkeeper", + "artistName": "SIXMOREVODKA", + "name": "They Who Endure", + "cardCode": "01FR034", + "keywords": [ + "Overwhelm" + ], + "keywordRefs": [ + "Overwhelm" + ], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "RARE", + "rarityRef": "Rare", + "subtypes": [], + "supertype": "", + "type": "Unit", + "collectible": true, + "set": "Set1" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set1/en_us/img/cards/01FR007.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set1/en_us/img/cards/01FR007-full.png" + } + ], + "regions": [ + "Freljord" + ], + "regionRefs": [ + "Freljord" + ], + "attack": 3, + "cost": 4, + "health": 4, + "description": "When I'm summoned, draw a unit with 5+ Power.", + "descriptionRaw": "When I'm summoned, draw a unit with 5+ Power.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"Y-You've gotta believe me! It was huge, I tell you, HUUUGE!\"", + "artistName": "SIXMOREVODKA", + "name": "Babbling Bjerg", + "cardCode": "01FR007", + "keywords": [], + "keywordRefs": [], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "COMMON", + "rarityRef": "Common", + "subtypes": [], + "supertype": "", + "type": "Unit", + "collectible": true, + "set": "Set1" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set1/en_us/img/cards/01FR003.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set1/en_us/img/cards/01FR003-full.png" + } + ], + "regions": [ + "Freljord" + ], + "regionRefs": [ + "Freljord" + ], + "attack": 2, + "cost": 2, + "health": 1, + "description": "Last Breath: Draw 1.", + "descriptionRaw": "Last Breath: Draw 1.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"Once I sought my place on distant battlefields. Now, I've found it beside my kin, my homestead. My eyes are theirs, and their safety is in my hands.\"", + "artistName": "SIXMOREVODKA", + "name": "Avarosan Sentry", + "cardCode": "01FR003", + "keywords": [ + "Last Breath" + ], + "keywordRefs": [ + "LastBreath" + ], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "COMMON", + "rarityRef": "Common", + "subtypes": [], + "supertype": "", + "type": "Unit", + "collectible": true, + "set": "Set1" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set1/en_us/img/cards/01SI038.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set1/en_us/img/cards/01SI038-full.png" + } + ], + "regions": [ + "Shadow Isles" + ], + "regionRefs": [ + "ShadowIsles" + ], + "attack": 0, + "cost": 3, + "health": 3, + "description": "When another ally dies, deal 1 to the enemy Nexus.", + "descriptionRaw": "When another ally dies, deal 1 to the enemy Nexus.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "Her cruelest trick wasn't slaughtering the soldiers who trusted the cries of a little girl, but sowing doubt in the survivors who returned home and ignored the pleas of their daughters.", + "artistName": "SIXMOREVODKA", + "name": "Phantom Prankster", + "cardCode": "01SI038", + "keywords": [], + "keywordRefs": [], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "RARE", + "rarityRef": "Rare", + "subtypes": [], + "supertype": "", + "type": "Unit", + "collectible": true, + "set": "Set1" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set1/en_us/img/cards/01SI049.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set1/en_us/img/cards/01SI049-full.png" + } + ], + "regions": [ + "Shadow Isles" + ], + "regionRefs": [ + "ShadowIsles" + ], + "attack": 0, + "cost": 2, + "health": 0, + "description": "Kill an ally to draw 2.", + "descriptionRaw": "Kill an ally to draw 2.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"I have erred. We were not meant to peer beyond the pale curtain. Whatever insight lingers there comes at far too great a cost.\" - Arie Wrence, Dauntless vindicator", + "artistName": "Kudos Productions", + "name": "Glimpse Beyond", + "cardCode": "01SI049", + "keywords": [ + "Fast" + ], + "keywordRefs": [ + "Fast" + ], + "spellSpeed": "Fast", + "spellSpeedRef": "Fast", + "rarity": "COMMON", + "rarityRef": "Common", + "subtypes": [], + "supertype": "", + "type": "Spell", + "collectible": true, + "set": "Set1" + }, + { + "associatedCards": [], + "associatedCardRefs": [ + "01SI053T2", + "01SI053T1", + "01SI002" + ], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set1/en_us/img/cards/01SI053.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set1/en_us/img/cards/01SI053-full.png" + } + ], + "regions": [ + "Shadow Isles" + ], + "regionRefs": [ + "ShadowIsles" + ], + "attack": 2, + "cost": 2, + "health": 3, + "description": "Attack: Summon an attacking Spiderling.", + "descriptionRaw": "Attack: Summon an attacking Spiderling.", + "levelupDescription": "Round Start: You have 3+ other Spiders.", + "levelupDescriptionRaw": "Round Start: You have 3+ other Spiders.", + "flavorText": "Once the head of a powerful Noxian house, Elise's dark ties to the Shadow Isles granted her unnatural youth and beauty in exchange for a few unwitting souls offered in sacrifice. An easy decision.", + "artistName": "SIXMOREVODKA", + "name": "Elise", + "cardCode": "01SI053", + "keywords": [ + "Fearsome" + ], + "keywordRefs": [ + "Fearsome" + ], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "Champion", + "rarityRef": "Champion", + "subtypes": [ + "SPIDER" + ], + "supertype": "Champion", + "type": "Unit", + "collectible": true, + "set": "Set1" + }, + { + "associatedCards": [], + "associatedCardRefs": [ + "01SI002", + "01SI053", + "01SI053T2" + ], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set1/en_us/img/cards/01SI053T1.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set1/en_us/img/cards/01SI053T1-full.png" + } + ], + "regions": [ + "Shadow Isles" + ], + "regionRefs": [ + "ShadowIsles" + ], + "attack": 0, + "cost": 1, + "health": 0, + "description": "If an ally died this round, summon 2 Spiderlings.\r\nCreate an Elise in your deck.", + "descriptionRaw": "If an ally died this round, summon 2 Spiderlings.\r\nCreate an Elise in your deck.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "That creeping feeling on your skin isn't nearly as unsettling as the one underneath it.", + "artistName": "Kudos Productions", + "name": "Elise's Crawling Sensation", + "cardCode": "01SI053T1", + "keywords": [ + "Slow" + ], + "keywordRefs": [ + "Slow" + ], + "spellSpeed": "Slow", + "spellSpeedRef": "Slow", + "rarity": "None", + "rarityRef": "None", + "subtypes": [], + "supertype": "Champion", + "type": "Spell", + "collectible": false, + "set": "Set1" + }, + { + "associatedCards": [], + "associatedCardRefs": [ + "01SI053T1", + "01SI053" + ], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set1/en_us/img/cards/01SI053T2.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set1/en_us/img/cards/01SI053T2-full.png" + } + ], + "regions": [ + "Shadow Isles" + ], + "regionRefs": [ + "ShadowIsles" + ], + "attack": 4, + "cost": 2, + "health": 3, + "description": "Other Spider allies have Challenger and Fearsome.", + "descriptionRaw": "Other Spider allies have Challenger and Fearsome.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "Beauty is in the many eyes of the beholder.", + "artistName": "SIXMOREVODKA", + "name": "Spider Queen Elise", + "cardCode": "01SI053T2", + "keywords": [ + "Fearsome", + "Challenger", + "Missing Translation" + ], + "keywordRefs": [ + "Fearsome", + "Challenger", + "AuraVisualFakeKeyword" + ], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "None", + "rarityRef": "None", + "subtypes": [ + "SPIDER" + ], + "supertype": "Champion", + "type": "Unit", + "collectible": false, + "set": "Set1" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set1/en_us/img/cards/01SI057.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set1/en_us/img/cards/01SI057-full.png" + } + ], + "regions": [ + "Shadow Isles" + ], + "regionRefs": [ + "ShadowIsles" + ], + "attack": 7, + "cost": 4, + "health": 7, + "description": "To play me, kill 2 allies.", + "descriptionRaw": "To play me, kill 2 allies.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"Put 'em in the cage, tum-te-dum... \nPluck up every soul, one by one...\nNever let ‘em go, no! No sir…\nElse them spirits make quite a stir...\"", + "artistName": "JiHun Lee", + "name": "Ancient Crocolith", + "cardCode": "01SI057", + "keywords": [], + "keywordRefs": [], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "RARE", + "rarityRef": "Rare", + "subtypes": [], + "supertype": "", + "type": "Unit", + "collectible": true, + "set": "Set1" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set1/en_us/img/cards/01SI023.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set1/en_us/img/cards/01SI023-full.png" + } + ], + "regions": [ + "Shadow Isles" + ], + "regionRefs": [ + "ShadowIsles" + ], + "attack": 2, + "cost": 2, + "health": 3, + "description": "When you summon an Ephemeral ally, grant it +1|+1.", + "descriptionRaw": "When you summon an Ephemeral ally, grant it +1|+1.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "Only the fallen knew that she did not walk alone. Only they could see the countless companions she led down the path to lands beyond.", + "artistName": "SIXMOREVODKA", + "name": "Soul Shepherd", + "cardCode": "01SI023", + "keywords": [], + "keywordRefs": [], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "COMMON", + "rarityRef": "Common", + "subtypes": [], + "supertype": "", + "type": "Unit", + "collectible": true, + "set": "Set1" + }, + { + "associatedCards": [], + "associatedCardRefs": [ + "01SI024" + ], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set1/en_us/img/cards/01SI010.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set1/en_us/img/cards/01SI010-full.png" + } + ], + "regions": [ + "Shadow Isles" + ], + "regionRefs": [ + "ShadowIsles" + ], + "attack": 0, + "cost": 2, + "health": 0, + "description": "Summon 2 Spectral Riders.", + "descriptionRaw": "Summon 2 Spectral Riders.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "They live now as they died then: loyal 'til the very end.", + "artistName": "Kudos Productions", + "name": "Onslaught of Shadows", + "cardCode": "01SI010", + "keywords": [ + "Slow" + ], + "keywordRefs": [ + "Slow" + ], + "spellSpeed": "Slow", + "spellSpeedRef": "Slow", + "rarity": "COMMON", + "rarityRef": "Common", + "subtypes": [], + "supertype": "", + "type": "Spell", + "collectible": true, + "set": "Set1" + }, + { + "associatedCards": [], + "associatedCardRefs": [ + "01SI042T1", + "01SI042T2", + "01SI024" + ], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set1/en_us/img/cards/01SI042.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set1/en_us/img/cards/01SI042-full.png" + } + ], + "regions": [ + "Shadow Isles" + ], + "regionRefs": [ + "ShadowIsles" + ], + "attack": 5, + "cost": 6, + "health": 6, + "description": "Attack: Summon 2 attacking Spectral Riders.", + "descriptionRaw": "Attack: Summon 2 attacking Spectral Riders.", + "levelupDescription": "You've attacked with 7+ Ephemeral allies.", + "levelupDescriptionRaw": "You've attacked with 7+ Ephemeral allies.", + "flavorText": "That's not thunder. The Shadow of War is on the horizon.", + "artistName": "SIXMOREVODKA", + "name": "Hecarim", + "cardCode": "01SI042", + "keywords": [ + "Overwhelm" + ], + "keywordRefs": [ + "Overwhelm" + ], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "Champion", + "rarityRef": "Champion", + "subtypes": [], + "supertype": "Champion", + "type": "Unit", + "collectible": true, + "set": "Set1" + }, + { + "associatedCards": [], + "associatedCardRefs": [ + "01SI042", + "01SI042T2", + "01SI024" + ], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set1/en_us/img/cards/01SI042T1.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set1/en_us/img/cards/01SI042T1-full.png" + } + ], + "regions": [ + "Shadow Isles" + ], + "regionRefs": [ + "ShadowIsles" + ], + "attack": 6, + "cost": 6, + "health": 7, + "description": "When I level up, grant your Nexus \"Ephemeral allies have +3|+0\".\r\nAttack: Summon 2 attacking Spectral Riders.", + "descriptionRaw": "When I level up, grant your Nexus \"Ephemeral allies have +3|+0\".\r\nAttack: Summon 2 attacking Spectral Riders.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "Listen. Hear him ride. The trampling of hooves. The creak of armor, long-worn and rusted. The ghostly cries of soldiers, echoes of the past. The resounding silence that follows.", + "artistName": "SIXMOREVODKA", + "name": "Hecarim", + "cardCode": "01SI042T1", + "keywords": [ + "Overwhelm" + ], + "keywordRefs": [ + "Overwhelm" + ], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "None", + "rarityRef": "None", + "subtypes": [], + "supertype": "Champion", + "type": "Unit", + "collectible": false, + "set": "Set1" + }, + { + "associatedCards": [], + "associatedCardRefs": [ + "01SI042", + "01SI042T1", + "01SI024" + ], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set1/en_us/img/cards/01SI042T2.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set1/en_us/img/cards/01SI042T2-full.png" + } + ], + "regions": [ + "Shadow Isles" + ], + "regionRefs": [ + "ShadowIsles" + ], + "attack": 0, + "cost": 2, + "health": 0, + "description": "Summon 2 Spectral Riders.\r\nCreate a Hecarim in your deck.", + "descriptionRaw": "Summon 2 Spectral Riders.\r\nCreate a Hecarim in your deck.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "They live now as they died then: loyal 'til the very end.", + "artistName": "Kudos Productions", + "name": "Hecarim's Onslaught of Shadows", + "cardCode": "01SI042T2", + "keywords": [ + "Slow" + ], + "keywordRefs": [ + "Slow" + ], + "spellSpeed": "Slow", + "spellSpeedRef": "Slow", + "rarity": "None", + "rarityRef": "None", + "subtypes": [], + "supertype": "Champion", + "type": "Spell", + "collectible": false, + "set": "Set1" + }, + { + "associatedCards": [], + "associatedCardRefs": [ + "01SI027T1" + ], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set1/en_us/img/cards/01SI027.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set1/en_us/img/cards/01SI027-full.png" + } + ], + "regions": [ + "Shadow Isles" + ], + "regionRefs": [ + "ShadowIsles" + ], + "attack": 0, + "cost": 3, + "health": 0, + "description": "If 3+ allies have died this round, summon Vilemaw.\r\n", + "descriptionRaw": "If 3+ allies have died this round, summon Vilemaw.\r\n", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"Kneel before your fanged god. Better yet, die before it.\" - Elise", + "artistName": "Kudos Productions", + "name": "Fresh Offerings", + "cardCode": "01SI027", + "keywords": [ + "Slow" + ], + "keywordRefs": [ + "Slow" + ], + "spellSpeed": "Slow", + "spellSpeedRef": "Slow", + "rarity": "RARE", + "rarityRef": "Rare", + "subtypes": [], + "supertype": "", + "type": "Spell", + "collectible": true, + "set": "Set1" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set1/en_us/img/cards/01SI027T1.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set1/en_us/img/cards/01SI027T1-full.png" + } + ], + "regions": [ + "Shadow Isles" + ], + "regionRefs": [ + "ShadowIsles" + ], + "attack": 6, + "cost": 3, + "health": 6, + "description": "", + "descriptionRaw": "", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"Who is your god? What can your god do? Will he let you wither and die defending him? Or will he give you life and vitality like no mortal has ever known? Why serve a god who won't serve you?\" - Elise", + "artistName": "SIXMOREVODKA", + "name": "Vilemaw", + "cardCode": "01SI027T1", + "keywords": [ + "Fearsome" + ], + "keywordRefs": [ + "Fearsome" + ], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "None", + "rarityRef": "None", + "subtypes": [ + "SPIDER" + ], + "supertype": "", + "type": "Unit", + "collectible": false, + "set": "Set1" + }, + { + "associatedCards": [], + "associatedCardRefs": [ + "01SI048T1" + ], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set1/en_us/img/cards/01SI048.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set1/en_us/img/cards/01SI048-full.png" + } + ], + "regions": [ + "Shadow Isles" + ], + "regionRefs": [ + "ShadowIsles" + ], + "attack": 1, + "cost": 2, + "health": 1, + "description": "Last Breath: Summon an Escaped Abomination.", + "descriptionRaw": "Last Breath: Summon an Escaped Abomination.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "Madness and time. Never was there a more terrible pair.", + "artistName": "SIXMOREVODKA", + "name": "Cursed Keeper", + "cardCode": "01SI048", + "keywords": [ + "Can't Block", + "Last Breath" + ], + "keywordRefs": [ + "CantBlock", + "LastBreath" + ], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "COMMON", + "rarityRef": "Common", + "subtypes": [], + "supertype": "", + "type": "Unit", + "collectible": true, + "set": "Set1" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set1/en_us/img/cards/01SI018.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set1/en_us/img/cards/01SI018-full.png" + } + ], + "regions": [ + "Shadow Isles" + ], + "regionRefs": [ + "ShadowIsles" + ], + "attack": 2, + "cost": 3, + "health": 3, + "description": "When I'm summoned, create a copy in hand of an ally that died this game.", + "descriptionRaw": "When I'm summoned, create a copy in hand of an ally that died this game.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"Little did our author know that soon the Ruinatio--the Ruin--no, no, no, that's not right, the ink's spilled again! Little did our author--no, no, no!\"", + "artistName": "SIXMOREVODKA", + "name": "Scribe of Sorrows", + "cardCode": "01SI018", + "keywords": [], + "keywordRefs": [], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "COMMON", + "rarityRef": "Common", + "subtypes": [], + "supertype": "", + "type": "Unit", + "collectible": true, + "set": "Set1" + }, + { + "associatedCards": [], + "associatedCardRefs": [ + "01SI030T2", + "01SI030T1" + ], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set1/en_us/img/cards/01SI030.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set1/en_us/img/cards/01SI030-full.png" + } + ], + "regions": [ + "Shadow Isles" + ], + "regionRefs": [ + "ShadowIsles" + ], + "attack": 3, + "cost": 3, + "health": 4, + "description": "", + "descriptionRaw": "", + "levelupDescription": "I've seen 3+ allies die.", + "levelupDescriptionRaw": "I've seen 3+ allies die.", + "flavorText": "In life, she was a general, a protector, a hero. But as flesh gave way, she was left with naught but the blazing fires of retribution--an undying spirit of vengeance.", + "artistName": "SIXMOREVODKA", + "name": "Kalista", + "cardCode": "01SI030", + "keywords": [ + "Fearsome" + ], + "keywordRefs": [ + "Fearsome" + ], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "Champion", + "rarityRef": "Champion", + "subtypes": [], + "supertype": "Champion", + "type": "Unit", + "collectible": true, + "set": "Set1" + }, + { + "associatedCards": [], + "associatedCardRefs": [ + "01SI030", + "01SI030T1" + ], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set1/en_us/img/cards/01SI030T2.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set1/en_us/img/cards/01SI030T2-full.png" + } + ], + "regions": [ + "Shadow Isles" + ], + "regionRefs": [ + "ShadowIsles" + ], + "attack": 4, + "cost": 3, + "health": 5, + "description": "Each round, the first time I attack revive an attacking Ephemeral copy of the strongest dead allied follower. This round, we're bonded and it takes damage for me.", + "descriptionRaw": "Each round, the first time I attack revive an attacking Ephemeral copy of the strongest dead allied follower. This round, we're bonded and it takes damage for me.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"The wronged shall have their vengeance!\"", + "artistName": "SIXMOREVODKA", + "name": "Kalista", + "cardCode": "01SI030T2", + "keywords": [ + "Fearsome" + ], + "keywordRefs": [ + "Fearsome" + ], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "None", + "rarityRef": "None", + "subtypes": [], + "supertype": "Champion", + "type": "Unit", + "collectible": false, + "set": "Set1" + }, + { + "associatedCards": [], + "associatedCardRefs": [ + "01SI030T2", + "01SI030" + ], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set1/en_us/img/cards/01SI030T1.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set1/en_us/img/cards/01SI030T1-full.png" + } + ], + "regions": [ + "Shadow Isles" + ], + "regionRefs": [ + "ShadowIsles" + ], + "attack": 0, + "cost": 3, + "health": 0, + "description": "If an ally died this round, deal 4 to a unit.\r\nCreate a Kalista in your deck.", + "descriptionRaw": "If an ally died this round, deal 4 to a unit.\r\nCreate a Kalista in your deck.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"Our spear sings for the fallen.\" - Kalista", + "artistName": "Wild Blue Studios", + "name": "Kalista's Black Spear", + "cardCode": "01SI030T1", + "keywords": [ + "Fast" + ], + "keywordRefs": [ + "Fast" + ], + "spellSpeed": "Fast", + "spellSpeedRef": "Fast", + "rarity": "None", + "rarityRef": "None", + "subtypes": [], + "supertype": "Champion", + "type": "Spell", + "collectible": false, + "set": "Set1" + }, + { + "associatedCards": [], + "associatedCardRefs": [ + "01SI035T1" + ], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set1/en_us/img/cards/01SI035.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set1/en_us/img/cards/01SI035-full.png" + } + ], + "regions": [ + "Shadow Isles" + ], + "regionRefs": [ + "ShadowIsles" + ], + "attack": 8, + "cost": 8, + "health": 6, + "description": "Play: Kill the 2 weakest enemies if an ally died this round.", + "descriptionRaw": "Play: Kill the 2 weakest enemies if an ally died this round.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"We were told... they called it a legend's journey. We were going to... for Demacia's future. We sailed with such hope. But all... all those lives... for what?\" - Arie Wrence, Demacian soldier", + "artistName": "SIXMOREVODKA", + "name": "Rhasa the Sunderer", + "cardCode": "01SI035", + "keywords": [ + "Fearsome" + ], + "keywordRefs": [ + "Fearsome" + ], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "EPIC", + "rarityRef": "Epic", + "subtypes": [], + "supertype": "", + "type": "Unit", + "collectible": true, + "set": "Set1" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set1/en_us/img/cards/01SI035T1.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set1/en_us/img/cards/01SI035T1-full.png" + } + ], + "regions": [ + "Shadow Isles" + ], + "regionRefs": [ + "ShadowIsles" + ], + "attack": 0, + "cost": 0, + "health": 0, + "description": "Kill the 2 Weakest enemies if an ally died this round.", + "descriptionRaw": "Kill the 2 Weakest enemies if an ally died this round.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "Thin the herd.", + "artistName": "Kudos Productions", + "name": "Night Harvest", + "cardCode": "01SI035T1", + "keywords": [ + "Skill" + ], + "keywordRefs": [ + "Skill" + ], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "None", + "rarityRef": "None", + "subtypes": [], + "supertype": "", + "type": "Ability", + "collectible": false, + "set": "Set1" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set1/en_us/img/cards/01SI002.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set1/en_us/img/cards/01SI002-full.png" + } + ], + "regions": [ + "Shadow Isles" + ], + "regionRefs": [ + "ShadowIsles" + ], + "attack": 1, + "cost": 1, + "health": 1, + "description": "", + "descriptionRaw": "", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"What are you afraid of? It's just ONE little spider.\" - Lord Sassen, Hapless Aristocrat", + "artistName": "SIXMOREVODKA", + "name": "Spiderling", + "cardCode": "01SI002", + "keywords": [], + "keywordRefs": [], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "None", + "rarityRef": "None", + "subtypes": [ + "SPIDER" + ], + "supertype": "", + "type": "Unit", + "collectible": false, + "set": "Set1" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set1/en_us/img/cards/01SI024.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set1/en_us/img/cards/01SI024-full.png" + } + ], + "regions": [ + "Shadow Isles" + ], + "regionRefs": [ + "ShadowIsles" + ], + "attack": 2, + "cost": 2, + "health": 2, + "description": "", + "descriptionRaw": "", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "No longer bound by flesh, rider and beast became one, determined to race mindlessly into battles they no longer understood.", + "artistName": "SIXMOREVODKA", + "name": "Spectral Rider", + "cardCode": "01SI024", + "keywords": [ + "Ephemeral" + ], + "keywordRefs": [ + "Ephemeral" + ], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "None", + "rarityRef": "None", + "subtypes": [], + "supertype": "", + "type": "Unit", + "collectible": false, + "set": "Set1" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set1/en_us/img/cards/01SI005.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set1/en_us/img/cards/01SI005-full.png" + } + ], + "regions": [ + "Shadow Isles" + ], + "regionRefs": [ + "ShadowIsles" + ], + "attack": 5, + "cost": 10, + "health": 5, + "description": "Reduce my cost by 1 for each ally that died this game.", + "descriptionRaw": "Reduce my cost by 1 for each ally that died this game.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "Once a beast of burden for a kingdom long forgotten, this monster now scavenges across forgotten battlefields, adding scrap to its shell, and the souls of the dead to its core.", + "artistName": "SIXMOREVODKA", + "name": "Scuttlegeist", + "cardCode": "01SI005", + "keywords": [ + "Fearsome" + ], + "keywordRefs": [ + "Fearsome" + ], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "RARE", + "rarityRef": "Rare", + "subtypes": [], + "supertype": "", + "type": "Unit", + "collectible": true, + "set": "Set1" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set1/en_us/img/cards/01SI037.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set1/en_us/img/cards/01SI037-full.png" + } + ], + "regions": [ + "Shadow Isles" + ], + "regionRefs": [ + "ShadowIsles" + ], + "attack": 1, + "cost": 1, + "health": 1, + "description": "", + "descriptionRaw": "", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "I mean, there are worse ways to die.", + "artistName": "SIXMOREVODKA", + "name": "Sinister Poro", + "cardCode": "01SI037", + "keywords": [ + "Fearsome" + ], + "keywordRefs": [ + "Fearsome" + ], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "COMMON", + "rarityRef": "Common", + "subtypes": [ + "PORO" + ], + "supertype": "", + "type": "Unit", + "collectible": true, + "set": "Set1" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set1/en_us/img/cards/01SI048T1.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set1/en_us/img/cards/01SI048T1-full.png" + } + ], + "regions": [ + "Shadow Isles" + ], + "regionRefs": [ + "ShadowIsles" + ], + "attack": 4, + "cost": 2, + "health": 2, + "description": "", + "descriptionRaw": "", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "Time may have stopped, but madness remains. ", + "artistName": "SIXMOREVODKA", + "name": "Escaped Abomination", + "cardCode": "01SI048T1", + "keywords": [], + "keywordRefs": [], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "None", + "rarityRef": "None", + "subtypes": [], + "supertype": "", + "type": "Unit", + "collectible": false, + "set": "Set1" + }, + { + "associatedCards": [], + "associatedCardRefs": [ + "01SI052T1", + "01SI052T2" + ], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set1/en_us/img/cards/01SI052.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set1/en_us/img/cards/01SI052-full.png" + } + ], + "regions": [ + "Shadow Isles" + ], + "regionRefs": [ + "ShadowIsles" + ], + "attack": 3, + "cost": 5, + "health": 6, + "description": "", + "descriptionRaw": "", + "levelupDescription": "I've seen 6+ units die.", + "levelupDescriptionRaw": "I've seen 6+ units die.", + "flavorText": "\"Cling clang, go the chains, someone's out to find you,\nCling clang, oh the chains, the Warden's right behind you...\"", + "artistName": "SIXMOREVODKA", + "name": "Thresh", + "cardCode": "01SI052", + "keywords": [ + "Challenger" + ], + "keywordRefs": [ + "Challenger" + ], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "Champion", + "rarityRef": "Champion", + "subtypes": [], + "supertype": "Champion", + "type": "Unit", + "collectible": true, + "set": "Set1" + }, + { + "associatedCards": [], + "associatedCardRefs": [ + "01SI033T1" + ], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set1/en_us/img/cards/01SI033.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set1/en_us/img/cards/01SI033-full.png" + } + ], + "regions": [ + "Shadow Isles" + ], + "regionRefs": [ + "ShadowIsles" + ], + "attack": 9, + "cost": 9, + "health": 6, + "description": "Play: Deal damage to the enemy Nexus equal to half its Health, rounded up.\r\nLast Breath: Return me to hand.", + "descriptionRaw": "Play: Deal damage to the enemy Nexus equal to half its Health, rounded up.\r\nLast Breath: Return me to hand.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "Most spirits lost themselves as the passing years eroded their memories. But anguish anchored Ledros to his past. Some things, even time cannot absolve.", + "artistName": "SIXMOREVODKA", + "name": "Commander Ledros", + "cardCode": "01SI033", + "keywords": [ + "Fearsome", + "Last Breath" + ], + "keywordRefs": [ + "Fearsome", + "LastBreath" + ], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "EPIC", + "rarityRef": "Epic", + "subtypes": [], + "supertype": "", + "type": "Unit", + "collectible": true, + "set": "Set1" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set1/en_us/img/cards/01SI003.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set1/en_us/img/cards/01SI003-full.png" + } + ], + "regions": [ + "Shadow Isles" + ], + "regionRefs": [ + "ShadowIsles" + ], + "attack": 0, + "cost": 9, + "health": 0, + "description": "Revive the 6 strongest allies that died this game and grant them Ephemeral.", + "descriptionRaw": "Revive the 6 strongest allies that died this game and grant them Ephemeral.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "On certain nights, a tide of hungry spirits swells the Black Mist. It carries them across the seas to prey on the living, and feed the growing darkness with foul new unlife.", + "artistName": "Rafael Zanchetin", + "name": "The Harrowing", + "cardCode": "01SI003", + "keywords": [ + "Slow" + ], + "keywordRefs": [ + "Slow" + ], + "spellSpeed": "Slow", + "spellSpeedRef": "Slow", + "rarity": "EPIC", + "rarityRef": "Epic", + "subtypes": [], + "supertype": "", + "type": "Spell", + "collectible": true, + "set": "Set1" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set1/en_us/img/cards/01SI041.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set1/en_us/img/cards/01SI041-full.png" + } + ], + "regions": [ + "Shadow Isles" + ], + "regionRefs": [ + "ShadowIsles" + ], + "attack": 2, + "cost": 3, + "health": 2, + "description": "Last Breath: Revive me at the next Round Start and grant me +1|+1 for each time I've died. ", + "descriptionRaw": "Last Breath: Revive me at the next Round Start and grant me +1|+1 for each time I've died. ", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "The old martyr remembered rallying his comrades to their doom. But it had been years since he could remember why...", + "artistName": "SIXMOREVODKA", + "name": "The Undying", + "cardCode": "01SI041", + "keywords": [ + "Can't Block", + "Last Breath" + ], + "keywordRefs": [ + "CantBlock", + "LastBreath" + ], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "EPIC", + "rarityRef": "Epic", + "subtypes": [], + "supertype": "", + "type": "Unit", + "collectible": true, + "set": "Set1" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set1/en_us/img/cards/01SI045.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set1/en_us/img/cards/01SI045-full.png" + } + ], + "regions": [ + "Shadow Isles" + ], + "regionRefs": [ + "ShadowIsles" + ], + "attack": 0, + "cost": 1, + "health": 0, + "description": "Drain 4 from an ally.", + "descriptionRaw": "Drain 4 from an ally.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"What kills you only makes me stronger.\" - Thresh", + "artistName": "Kudos Productions", + "name": "Absorb Soul", + "cardCode": "01SI045", + "keywords": [ + "Fast" + ], + "keywordRefs": [ + "Fast" + ], + "spellSpeed": "Fast", + "spellSpeedRef": "Fast", + "rarity": "COMMON", + "rarityRef": "Common", + "subtypes": [], + "supertype": "", + "type": "Spell", + "collectible": true, + "set": "Set1" + }, + { + "associatedCards": [], + "associatedCardRefs": [ + "01SI002" + ], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set1/en_us/img/cards/01SI036.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set1/en_us/img/cards/01SI036-full.png" + } + ], + "regions": [ + "Shadow Isles" + ], + "regionRefs": [ + "ShadowIsles" + ], + "attack": 0, + "cost": 1, + "health": 0, + "description": "If an ally died this round, summon 2 Spiderlings.", + "descriptionRaw": "If an ally died this round, summon 2 Spiderlings.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "That creeping feeling on your skin isn't nearly as unsettling as the one underneath it.", + "artistName": "Kudos Productions", + "name": "Crawling Sensation", + "cardCode": "01SI036", + "keywords": [ + "Slow" + ], + "keywordRefs": [ + "Slow" + ], + "spellSpeed": "Slow", + "spellSpeedRef": "Slow", + "rarity": "COMMON", + "rarityRef": "Common", + "subtypes": [], + "supertype": "", + "type": "Spell", + "collectible": true, + "set": "Set1" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set1/en_us/img/cards/01SI051.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set1/en_us/img/cards/01SI051-full.png" + } + ], + "regions": [ + "Shadow Isles" + ], + "regionRefs": [ + "ShadowIsles" + ], + "attack": 4, + "cost": 5, + "health": 4, + "description": "When an ally dies, refill your spell mana.", + "descriptionRaw": "When an ally dies, refill your spell mana.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "He toiled night and day, perfecting his composition. Then, in the blink of an eye, a dark silence blew through him. Others screamed and ran for their lives. He noticed nothing.", + "artistName": "SIXMOREVODKA", + "name": "Tortured Prodigy", + "cardCode": "01SI051", + "keywords": [], + "keywordRefs": [], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "RARE", + "rarityRef": "Rare", + "subtypes": [], + "supertype": "", + "type": "Unit", + "collectible": true, + "set": "Set1" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set1/en_us/img/cards/01SI012.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set1/en_us/img/cards/01SI012-full.png" + } + ], + "regions": [ + "Shadow Isles" + ], + "regionRefs": [ + "ShadowIsles" + ], + "attack": 2, + "cost": 1, + "health": 1, + "description": "Play: Grant an ally in hand Ephemeral and reduce its cost by 1.", + "descriptionRaw": "Play: Grant an ally in hand Ephemeral and reduce its cost by 1.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "Oh, the poor lad...", + "artistName": "SIXMOREVODKA", + "name": "Oblivious Islander", + "cardCode": "01SI012", + "keywords": [], + "keywordRefs": [], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "COMMON", + "rarityRef": "Common", + "subtypes": [], + "supertype": "", + "type": "Unit", + "collectible": true, + "set": "Set1" + }, + { + "associatedCards": [], + "associatedCardRefs": [ + "01SI052", + "01SI052T1" + ], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set1/en_us/img/cards/01SI052T2.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set1/en_us/img/cards/01SI052T2-full.png" + } + ], + "regions": [ + "Shadow Isles" + ], + "regionRefs": [ + "ShadowIsles" + ], + "attack": 0, + "cost": 4, + "health": 0, + "description": "Deal 3 to each enemy that was summoned this round.\r\nCreate a Thresh in your deck.", + "descriptionRaw": "Deal 3 to each enemy that was summoned this round.\r\nCreate a Thresh in your deck.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"Nobody escapes.\" - Thresh", + "artistName": "Kudos Productions", + "name": "Thresh's The Box", + "cardCode": "01SI052T2", + "keywords": [ + "Fast" + ], + "keywordRefs": [ + "Fast" + ], + "spellSpeed": "Fast", + "spellSpeedRef": "Fast", + "rarity": "None", + "rarityRef": "None", + "subtypes": [], + "supertype": "Champion", + "type": "Spell", + "collectible": false, + "set": "Set1" + }, + { + "associatedCards": [], + "associatedCardRefs": [ + "01SI052T2", + "01SI052" + ], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set1/en_us/img/cards/01SI052T1.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set1/en_us/img/cards/01SI052T1-full.png" + } + ], + "regions": [ + "Shadow Isles" + ], + "regionRefs": [ + "ShadowIsles" + ], + "attack": 4, + "cost": 5, + "health": 7, + "description": "The first time I attack this game, summon another attacking champion from your deck or hand.", + "descriptionRaw": "The first time I attack this game, summon another attacking champion from your deck or hand.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"You're mine. Forever.\"Cling clang, oh the chains, the Warden's right behind you...", + "artistName": "SIXMOREVODKA", + "name": "Thresh", + "cardCode": "01SI052T1", + "keywords": [ + "Challenger" + ], + "keywordRefs": [ + "Challenger" + ], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "None", + "rarityRef": "None", + "subtypes": [], + "supertype": "Champion", + "type": "Unit", + "collectible": false, + "set": "Set1" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set1/en_us/img/cards/01SI031.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set1/en_us/img/cards/01SI031-full.png" + } + ], + "regions": [ + "Shadow Isles" + ], + "regionRefs": [ + "ShadowIsles" + ], + "attack": 2, + "cost": 3, + "health": 4, + "description": "Attack: Grant me +1|+0 for each Ephemeral ally you have.", + "descriptionRaw": "Attack: Grant me +1|+0 for each Ephemeral ally you have.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "In death, as in life, he bellows the twisted, dark command. And in death, as in life, Hecarim's loyal knights answer, charging forth to slaughter.", + "artistName": "SIXMOREVODKA", + "name": "Iron Harbinger", + "cardCode": "01SI031", + "keywords": [ + "Fearsome" + ], + "keywordRefs": [ + "Fearsome" + ], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "RARE", + "rarityRef": "Rare", + "subtypes": [], + "supertype": "", + "type": "Unit", + "collectible": true, + "set": "Set1" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set1/en_us/img/cards/01SI034.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set1/en_us/img/cards/01SI034-full.png" + } + ], + "regions": [ + "Shadow Isles" + ], + "regionRefs": [ + "ShadowIsles" + ], + "attack": 0, + "cost": 3, + "health": 0, + "description": "If an ally died this round, deal 4 to a unit.", + "descriptionRaw": "If an ally died this round, deal 4 to a unit.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"Our spear sings for the fallen.\" - Kalista", + "artistName": "Wild Blue Studios", + "name": "Black Spear", + "cardCode": "01SI034", + "keywords": [ + "Fast" + ], + "keywordRefs": [ + "Fast" + ], + "spellSpeed": "Fast", + "spellSpeedRef": "Fast", + "rarity": "COMMON", + "rarityRef": "Common", + "subtypes": [], + "supertype": "", + "type": "Spell", + "collectible": true, + "set": "Set1" + }, + { + "associatedCards": [], + "associatedCardRefs": [ + "01SI002" + ], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set1/en_us/img/cards/01SI043.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set1/en_us/img/cards/01SI043-full.png" + } + ], + "regions": [ + "Shadow Isles" + ], + "regionRefs": [ + "ShadowIsles" + ], + "attack": 1, + "cost": 1, + "health": 1, + "description": "Last Breath: Summon a Spiderling.", + "descriptionRaw": "Last Breath: Summon a Spiderling.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"L-Lady Elise? Where... where did you go?\"", + "artistName": "SIXMOREVODKA", + "name": "Hapless Aristocrat", + "cardCode": "01SI043", + "keywords": [ + "Last Breath" + ], + "keywordRefs": [ + "LastBreath" + ], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "COMMON", + "rarityRef": "Common", + "subtypes": [], + "supertype": "", + "type": "Unit", + "collectible": true, + "set": "Set1" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set1/en_us/img/cards/01SI009.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set1/en_us/img/cards/01SI009-full.png" + } + ], + "regions": [ + "Shadow Isles" + ], + "regionRefs": [ + "ShadowIsles" + ], + "attack": 3, + "cost": 2, + "health": 2, + "description": "Support: Grant my supported ally +2|+0 and Ephemeral.", + "descriptionRaw": "Support: Grant my supported ally +2|+0 and Ephemeral.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "Some look at the Ruination and only see the destruction and misery. Others see the glass half full.", + "artistName": "SIXMOREVODKA", + "name": "Stirred Spirits", + "cardCode": "01SI009", + "keywords": [ + "Support" + ], + "keywordRefs": [ + "Support" + ], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "COMMON", + "rarityRef": "Common", + "subtypes": [], + "supertype": "", + "type": "Unit", + "collectible": true, + "set": "Set1" + }, + { + "associatedCards": [], + "associatedCardRefs": [ + "01SI007T1" + ], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set1/en_us/img/cards/01SI007.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set1/en_us/img/cards/01SI007-full.png" + } + ], + "regions": [ + "Shadow Isles" + ], + "regionRefs": [ + "ShadowIsles" + ], + "attack": 0, + "cost": 2, + "health": 0, + "description": "Summon 3 Unleashed Spirits.", + "descriptionRaw": "Summon 3 Unleashed Spirits.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "These ancient artifacts are treasured both by the living hungry to claim them, and the dead desperate to retain them.", + "artistName": "Kudos Productions", + "name": "Haunted Relic", + "cardCode": "01SI007", + "keywords": [ + "Slow" + ], + "keywordRefs": [ + "Slow" + ], + "spellSpeed": "Slow", + "spellSpeedRef": "Slow", + "rarity": "COMMON", + "rarityRef": "Common", + "subtypes": [], + "supertype": "", + "type": "Spell", + "collectible": true, + "set": "Set1" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set1/en_us/img/cards/01SI007T1.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set1/en_us/img/cards/01SI007T1-full.png" + } + ], + "regions": [ + "Shadow Isles" + ], + "regionRefs": [ + "ShadowIsles" + ], + "attack": 1, + "cost": 1, + "health": 1, + "description": "", + "descriptionRaw": "", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "...each spirit another victim of the relic's allure. They seethe in silence as they await the arrival of the next greedy fool.", + "artistName": "SIXMOREVODKA", + "name": "Unleashed Spirit", + "cardCode": "01SI007T1", + "keywords": [ + "Ephemeral" + ], + "keywordRefs": [ + "Ephemeral" + ], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "None", + "rarityRef": "None", + "subtypes": [], + "supertype": "", + "type": "Unit", + "collectible": false, + "set": "Set1" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set1/en_us/img/cards/01SI056.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set1/en_us/img/cards/01SI056-full.png" + } + ], + "regions": [ + "Shadow Isles" + ], + "regionRefs": [ + "ShadowIsles" + ], + "attack": 3, + "cost": 3, + "health": 2, + "description": "When I'm summoned, give other Spider allies +1|+0 and enemies -1|-0 this round.", + "descriptionRaw": "When I'm summoned, give other Spider allies +1|+0 and enemies -1|-0 this round.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"They can spin a web the size of a man in less than a minute... would you like a demonstration?\" - Elise", + "artistName": "SIXMOREVODKA", + "name": "Frenzied Skitterer", + "cardCode": "01SI056", + "keywords": [ + "Fearsome" + ], + "keywordRefs": [ + "Fearsome" + ], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "RARE", + "rarityRef": "Rare", + "subtypes": [ + "SPIDER" + ], + "supertype": "", + "type": "Unit", + "collectible": true, + "set": "Set1" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set1/en_us/img/cards/01SI001.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set1/en_us/img/cards/01SI001-full.png" + } + ], + "regions": [ + "Shadow Isles" + ], + "regionRefs": [ + "ShadowIsles" + ], + "attack": 0, + "cost": 6, + "health": 0, + "description": "Kill a unit.", + "descriptionRaw": "Kill a unit.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "The betrayed invoke Kalista on their dying breath, hoping her spear brings them vengeance.", + "artistName": "Max Grecke", + "name": "Vengeance", + "cardCode": "01SI001", + "keywords": [ + "Fast" + ], + "keywordRefs": [ + "Fast" + ], + "spellSpeed": "Fast", + "spellSpeedRef": "Fast", + "rarity": "COMMON", + "rarityRef": "Common", + "subtypes": [], + "supertype": "", + "type": "Spell", + "collectible": true, + "set": "Set1" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set1/en_us/img/cards/01SI019.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set1/en_us/img/cards/01SI019-full.png" + } + ], + "regions": [ + "Shadow Isles" + ], + "regionRefs": [ + "ShadowIsles" + ], + "attack": 0, + "cost": 4, + "health": 0, + "description": "Deal 3 to each enemy that was summoned this round.", + "descriptionRaw": "Deal 3 to each enemy that was summoned this round.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"Nobody escapes.\" - Thresh", + "artistName": "Kudos Productions", + "name": "The Box", + "cardCode": "01SI019", + "keywords": [ + "Fast" + ], + "keywordRefs": [ + "Fast" + ], + "spellSpeed": "Fast", + "spellSpeedRef": "Fast", + "rarity": "RARE", + "rarityRef": "Rare", + "subtypes": [], + "supertype": "", + "type": "Spell", + "collectible": true, + "set": "Set1" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set1/en_us/img/cards/01SI014.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set1/en_us/img/cards/01SI014-full.png" + } + ], + "regions": [ + "Shadow Isles" + ], + "regionRefs": [ + "ShadowIsles" + ], + "attack": 2, + "cost": 2, + "health": 2, + "description": "When I'm summoned, grant other allied Mistwraiths everywhere +1|+0.", + "descriptionRaw": "When I'm summoned, grant other allied Mistwraiths everywhere +1|+0.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "These specters of the Isles shed their identities long ago to become amalgamations of pure, unappeasable hunger.", + "artistName": "SIXMOREVODKA", + "name": "Mistwraith", + "cardCode": "01SI014", + "keywords": [ + "Fearsome" + ], + "keywordRefs": [ + "Fearsome" + ], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "COMMON", + "rarityRef": "Common", + "subtypes": [], + "supertype": "", + "type": "Unit", + "collectible": true, + "set": "Set1" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set1/en_us/img/cards/01SI022.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set1/en_us/img/cards/01SI022-full.png" + } + ], + "regions": [ + "Shadow Isles" + ], + "regionRefs": [ + "ShadowIsles" + ], + "attack": 0, + "cost": 1, + "health": 0, + "description": "Grant an ally +2|+2 and Ephemeral.", + "descriptionRaw": "Grant an ally +2|+2 and Ephemeral.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "Power, but at what cost?", + "artistName": "Kudos Productions", + "name": "Mark of the Isles", + "cardCode": "01SI022", + "keywords": [ + "Burst" + ], + "keywordRefs": [ + "Burst" + ], + "spellSpeed": "Burst", + "spellSpeedRef": "Burst", + "rarity": "COMMON", + "rarityRef": "Common", + "subtypes": [], + "supertype": "", + "type": "Spell", + "collectible": true, + "set": "Set1" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set1/en_us/img/cards/01SI006.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set1/en_us/img/cards/01SI006-full.png" + } + ], + "regions": [ + "Shadow Isles" + ], + "regionRefs": [ + "ShadowIsles" + ], + "attack": 0, + "cost": 5, + "health": 0, + "description": "Steal an enemy follower this round. (Can't play if you have 6 allies or landmarks already.)", + "descriptionRaw": "Steal an enemy follower this round. (Can't play if you have 6 allies or landmarks already.)", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "He woke to find his hands glistening red and the camp unusually quiet. ", + "artistName": "Kudos Productions", + "name": "Possession", + "cardCode": "01SI006", + "keywords": [ + "Slow" + ], + "keywordRefs": [ + "Slow" + ], + "spellSpeed": "Slow", + "spellSpeedRef": "Slow", + "rarity": "RARE", + "rarityRef": "Rare", + "subtypes": [], + "supertype": "", + "type": "Spell", + "collectible": true, + "set": "Set1" + }, + { + "associatedCards": [], + "associatedCardRefs": [ + "01SI033" + ], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set1/en_us/img/cards/01SI033T1.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set1/en_us/img/cards/01SI033T1-full.png" + } + ], + "regions": [ + "Shadow Isles" + ], + "regionRefs": [ + "ShadowIsles" + ], + "attack": 0, + "cost": 0, + "health": 0, + "description": "Deal damage to the enemy Nexus equal to half its Health, rounded up.", + "descriptionRaw": "Deal damage to the enemy Nexus equal to half its Health, rounded up.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "Half a blade for half a man. A weapon broken as its wielder's vow, broken as the king it was sworn to protect, broken as the kingdom of shadow that once was blessed.", + "artistName": "Kudos Productions", + "name": "Blade of Ledros", + "cardCode": "01SI033T1", + "keywords": [ + "Skill" + ], + "keywordRefs": [ + "Skill" + ], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "None", + "rarityRef": "None", + "subtypes": [], + "supertype": "", + "type": "Ability", + "collectible": false, + "set": "Set1" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set1/en_us/img/cards/01SI028.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set1/en_us/img/cards/01SI028-full.png" + } + ], + "regions": [ + "Shadow Isles" + ], + "regionRefs": [ + "ShadowIsles" + ], + "attack": 0, + "cost": 3, + "health": 0, + "description": "Summon an exact copy of an ally. It's Ephemeral and 1|1.", + "descriptionRaw": "Summon an exact copy of an ally. It's Ephemeral and 1|1.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"I lifted the body from the water to identify the poor soul. As I laid my hand upon its shoulder, it turned and showed its face. It was... me?\" - Arie Wrence, Demacian soldier", + "artistName": "Max Grecke", + "name": "Splinter Soul", + "cardCode": "01SI028", + "keywords": [ + "Slow" + ], + "keywordRefs": [ + "Slow" + ], + "spellSpeed": "Slow", + "spellSpeedRef": "Slow", + "rarity": "RARE", + "rarityRef": "Rare", + "subtypes": [], + "supertype": "", + "type": "Spell", + "collectible": true, + "set": "Set1" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set1/en_us/img/cards/01SI025.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set1/en_us/img/cards/01SI025-full.png" + } + ], + "regions": [ + "Shadow Isles" + ], + "regionRefs": [ + "ShadowIsles" + ], + "attack": 0, + "cost": 7, + "health": 0, + "description": "Kill an ally to deal damage equal to its Power to anything.", + "descriptionRaw": "Kill an ally to deal damage equal to its Power to anything.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "Killing means nothing to those who cannot know death.", + "artistName": "Kudos Productions", + "name": "Atrocity", + "cardCode": "01SI025", + "keywords": [ + "Fast" + ], + "keywordRefs": [ + "Fast" + ], + "spellSpeed": "Fast", + "spellSpeedRef": "Fast", + "rarity": "RARE", + "rarityRef": "Rare", + "subtypes": [], + "supertype": "", + "type": "Spell", + "collectible": true, + "set": "Set1" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set1/en_us/img/cards/01SI011.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set1/en_us/img/cards/01SI011-full.png" + } + ], + "regions": [ + "Shadow Isles" + ], + "regionRefs": [ + "ShadowIsles" + ], + "attack": 3, + "cost": 0, + "health": 2, + "description": "To play me, kill an ally.", + "descriptionRaw": "To play me, kill an ally.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "You are what you eat.", + "artistName": "SIXMOREVODKA", + "name": "Ravenous Butcher", + "cardCode": "01SI011", + "keywords": [], + "keywordRefs": [], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "COMMON", + "rarityRef": "Common", + "subtypes": [], + "supertype": "", + "type": "Unit", + "collectible": true, + "set": "Set1" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set1/en_us/img/cards/01SI046.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set1/en_us/img/cards/01SI046-full.png" + } + ], + "regions": [ + "Shadow Isles" + ], + "regionRefs": [ + "ShadowIsles" + ], + "attack": 0, + "cost": 3, + "health": 0, + "description": "Revive a random ally that died this round.", + "descriptionRaw": "Revive a random ally that died this round.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"The Mist severs spirit from flesh, leaving behind a foul parody of life. I have seen it corrupt my lands, so I go now to those cursed isles, to end this.\" - Arie Wrence, Dauntless vindicator", + "artistName": "Rafael Zanchetin", + "name": "Mist's Call", + "cardCode": "01SI046", + "keywords": [ + "Fast" + ], + "keywordRefs": [ + "Fast" + ], + "spellSpeed": "Fast", + "spellSpeedRef": "Fast", + "rarity": "COMMON", + "rarityRef": "Common", + "subtypes": [], + "supertype": "", + "type": "Spell", + "collectible": true, + "set": "Set1" + }, + { + "associatedCards": [], + "associatedCardRefs": [ + "01SI002" + ], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set1/en_us/img/cards/01SI050.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set1/en_us/img/cards/01SI050-full.png" + } + ], + "regions": [ + "Shadow Isles" + ], + "regionRefs": [ + "ShadowIsles" + ], + "attack": 0, + "cost": 6, + "health": 0, + "description": "Summon 3 Spiderlings, then grant Spider allies +1|+0. ", + "descriptionRaw": "Summon 3 Spiderlings, then grant Spider allies +1|+0. ", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "They're hungriest when they hatch.", + "artistName": "Kudos Productions", + "name": "Brood Awakening", + "cardCode": "01SI050", + "keywords": [ + "Slow" + ], + "keywordRefs": [ + "Slow" + ], + "spellSpeed": "Slow", + "spellSpeedRef": "Slow", + "rarity": "RARE", + "rarityRef": "Rare", + "subtypes": [], + "supertype": "", + "type": "Spell", + "collectible": true, + "set": "Set1" + }, + { + "associatedCards": [], + "associatedCardRefs": [ + "01SI014" + ], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set1/en_us/img/cards/01SI016.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set1/en_us/img/cards/01SI016-full.png" + } + ], + "regions": [ + "Shadow Isles" + ], + "regionRefs": [ + "ShadowIsles" + ], + "attack": 4, + "cost": 4, + "health": 3, + "description": "Allegiance: Summon a Mistwraith.", + "descriptionRaw": "Allegiance: Summon a Mistwraith.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "She appears without a sound. The terrors that follow her are far less subtle.", + "artistName": "SIXMOREVODKA", + "name": "Wraithcaller", + "cardCode": "01SI016", + "keywords": [], + "keywordRefs": [], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "RARE", + "rarityRef": "Rare", + "subtypes": [], + "supertype": "", + "type": "Unit", + "collectible": true, + "set": "Set1" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set1/en_us/img/cards/01SI021.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set1/en_us/img/cards/01SI021-full.png" + } + ], + "regions": [ + "Shadow Isles" + ], + "regionRefs": [ + "ShadowIsles" + ], + "attack": 3, + "cost": 2, + "health": 1, + "description": "Last Breath: The next time an Ephemeral ally attacks, revive me attacking.", + "descriptionRaw": "Last Breath: The next time an Ephemeral ally attacks, revive me attacking.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"She saw what? I see. Madness is a cruel mistress, apothecary. At least the others make some degree of sense.\" - Demacian surgeon", + "artistName": "SIXMOREVODKA", + "name": "Shark Chariot", + "cardCode": "01SI021", + "keywords": [ + "Can't Block", + "Ephemeral", + "Last Breath" + ], + "keywordRefs": [ + "CantBlock", + "Ephemeral", + "LastBreath" + ], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "RARE", + "rarityRef": "Rare", + "subtypes": [], + "supertype": "", + "type": "Unit", + "collectible": true, + "set": "Set1" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set1/en_us/img/cards/01SI032.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set1/en_us/img/cards/01SI032-full.png" + } + ], + "regions": [ + "Shadow Isles" + ], + "regionRefs": [ + "ShadowIsles" + ], + "attack": 3, + "cost": 4, + "health": 3, + "description": "Play: Kill an ally, then revive it.", + "descriptionRaw": "Play: Kill an ally, then revive it.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "There was a time when she sat with her father--a lord curator--as he studied the dusty tomes. He hoped one day she would take on the mantle. But not like this.", + "artistName": "SIXMOREVODKA", + "name": "Chronicler of Ruin", + "cardCode": "01SI032", + "keywords": [], + "keywordRefs": [], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "COMMON", + "rarityRef": "Common", + "subtypes": [], + "supertype": "", + "type": "Unit", + "collectible": true, + "set": "Set1" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set1/en_us/img/cards/01SI058.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set1/en_us/img/cards/01SI058-full.png" + } + ], + "regions": [ + "Shadow Isles" + ], + "regionRefs": [ + "ShadowIsles" + ], + "attack": 4, + "cost": 5, + "health": 3, + "description": "Play: Kill an ally to summon a random follower that costs 2 more.", + "descriptionRaw": "Play: Kill an ally to summon a random follower that costs 2 more.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "Spirits, lend your voices to mine! Together, we will call down a darkness unending!", + "artistName": "JiHun Lee", + "name": "Ethereal Remitter", + "cardCode": "01SI058", + "keywords": [], + "keywordRefs": [], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "RARE", + "rarityRef": "Rare", + "subtypes": [], + "supertype": "", + "type": "Unit", + "collectible": true, + "set": "Set1" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set1/en_us/img/cards/01SI054.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set1/en_us/img/cards/01SI054-full.png" + } + ], + "regions": [ + "Shadow Isles" + ], + "regionRefs": [ + "ShadowIsles" + ], + "attack": 0, + "cost": 5, + "health": 0, + "description": "Drain 3 from any unit.", + "descriptionRaw": "Drain 3 from any unit.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "The dead want nothing more than to silence the ceaseless pulse of the living.", + "artistName": "Kudos Productions", + "name": "Grasp of the Undying", + "cardCode": "01SI054", + "keywords": [ + "Fast" + ], + "keywordRefs": [ + "Fast" + ], + "spellSpeed": "Fast", + "spellSpeedRef": "Fast", + "rarity": "COMMON", + "rarityRef": "Common", + "subtypes": [], + "supertype": "", + "type": "Spell", + "collectible": true, + "set": "Set1" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set1/en_us/img/cards/01SI044.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set1/en_us/img/cards/01SI044-full.png" + } + ], + "regions": [ + "Shadow Isles" + ], + "regionRefs": [ + "ShadowIsles" + ], + "attack": 6, + "cost": 8, + "health": 6, + "description": "Play: Pick an ally in hand. Summon an exact copy of it. It's Ephemeral.", + "descriptionRaw": "Play: Pick an ally in hand. Summon an exact copy of it. It's Ephemeral.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "The Ruination corrupted all those caught in its path. The kind became cruel. The brave became brutal. Reason gave way to resentment.", + "artistName": "SIXMOREVODKA", + "name": "Spectral Matron", + "cardCode": "01SI044", + "keywords": [ + "Fearsome" + ], + "keywordRefs": [ + "Fearsome" + ], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "EPIC", + "rarityRef": "Epic", + "subtypes": [], + "supertype": "", + "type": "Unit", + "collectible": true, + "set": "Set1" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set1/en_us/img/cards/01SI039.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set1/en_us/img/cards/01SI039-full.png" + } + ], + "regions": [ + "Shadow Isles" + ], + "regionRefs": [ + "ShadowIsles" + ], + "attack": 3, + "cost": 2, + "health": 2, + "description": "", + "descriptionRaw": "", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "Some malevolent spirits take inspiration from local fauna, twisting the familiar into the nightmarish.", + "artistName": "SIXMOREVODKA", + "name": "Arachnoid Horror", + "cardCode": "01SI039", + "keywords": [ + "Fearsome" + ], + "keywordRefs": [ + "Fearsome" + ], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "COMMON", + "rarityRef": "Common", + "subtypes": [ + "SPIDER" + ], + "supertype": "", + "type": "Unit", + "collectible": true, + "set": "Set1" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set1/en_us/img/cards/01SI020.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set1/en_us/img/cards/01SI020-full.png" + } + ], + "regions": [ + "Shadow Isles" + ], + "regionRefs": [ + "ShadowIsles" + ], + "attack": 4, + "cost": 7, + "health": 4, + "description": "When I'm summoned, revive the strongest dead allied champion.", + "descriptionRaw": "When I'm summoned, revive the strongest dead allied champion.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "What use does a dying candle have, other than to light its successor?", + "artistName": "SIXMOREVODKA", + "name": "The Rekindler", + "cardCode": "01SI020", + "keywords": [], + "keywordRefs": [], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "RARE", + "rarityRef": "Rare", + "subtypes": [], + "supertype": "", + "type": "Unit", + "collectible": true, + "set": "Set1" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set1/en_us/img/cards/01SI029.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set1/en_us/img/cards/01SI029-full.png" + } + ], + "regions": [ + "Shadow Isles" + ], + "regionRefs": [ + "ShadowIsles" + ], + "attack": 0, + "cost": 5, + "health": 0, + "description": "Deal 1 to all enemies. Heal your Nexus 3.", + "descriptionRaw": "Deal 1 to all enemies. Heal your Nexus 3.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "That which kills us makes them stronger.", + "artistName": "Kudos Productions", + "name": "Withering Wail", + "cardCode": "01SI029", + "keywords": [ + "Fast" + ], + "keywordRefs": [ + "Fast" + ], + "spellSpeed": "Fast", + "spellSpeedRef": "Fast", + "rarity": "COMMON", + "rarityRef": "Common", + "subtypes": [], + "supertype": "", + "type": "Spell", + "collectible": true, + "set": "Set1" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set1/en_us/img/cards/01SI004.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set1/en_us/img/cards/01SI004-full.png" + } + ], + "regions": [ + "Shadow Isles" + ], + "regionRefs": [ + "ShadowIsles" + ], + "attack": 5, + "cost": 3, + "health": 5, + "description": "", + "descriptionRaw": "", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "Some fleeing the Ruination tried diving beneath the waves, believing the corruption wouldn't seep into the depths. They were wrong.", + "artistName": "SIXMOREVODKA", + "name": "Darkwater Scourge", + "cardCode": "01SI004", + "keywords": [ + "Ephemeral", + "Lifesteal" + ], + "keywordRefs": [ + "Ephemeral", + "Lifesteal" + ], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "COMMON", + "rarityRef": "Common", + "subtypes": [], + "supertype": "", + "type": "Unit", + "collectible": true, + "set": "Set1" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set1/en_us/img/cards/01SI026.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set1/en_us/img/cards/01SI026-full.png" + } + ], + "regions": [ + "Shadow Isles" + ], + "regionRefs": [ + "ShadowIsles" + ], + "attack": 1, + "cost": 1, + "health": 1, + "description": "Last Breath: Create in hand another random Last Breath follower that costs 3 or less.", + "descriptionRaw": "Last Breath: Create in hand another random Last Breath follower that costs 3 or less.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "He held his breath as best he could, praying the warden would move on. Little did he know, this pursuit would just be the beginning of Thresh's delighted torments…", + "artistName": "SIXMOREVODKA", + "name": "Warden's Prey", + "cardCode": "01SI026", + "keywords": [ + "Last Breath" + ], + "keywordRefs": [ + "LastBreath" + ], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "COMMON", + "rarityRef": "Common", + "subtypes": [], + "supertype": "", + "type": "Unit", + "collectible": true, + "set": "Set1" + }, + { + "associatedCards": [], + "associatedCardRefs": [ + "01SI002" + ], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set1/en_us/img/cards/01SI040.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set1/en_us/img/cards/01SI040-full.png" + } + ], + "regions": [ + "Shadow Isles" + ], + "regionRefs": [ + "ShadowIsles" + ], + "attack": 0, + "cost": 2, + "health": 0, + "description": "Drain 1 from a unit to summon a Spiderling.", + "descriptionRaw": "Drain 1 from a unit to summon a Spiderling.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"My... my lady! I didn't realize you were such an... an arachnophile! Could you perhaps call them away from me? L-Lady Elise? Please?\" - Lord Sassen, Hapless Aristocrat", + "artistName": "Kudos Productions", + "name": "Vile Feast", + "cardCode": "01SI040", + "keywords": [ + "Fast" + ], + "keywordRefs": [ + "Fast" + ], + "spellSpeed": "Fast", + "spellSpeedRef": "Fast", + "rarity": "COMMON", + "rarityRef": "Common", + "subtypes": [], + "supertype": "", + "type": "Spell", + "collectible": true, + "set": "Set1" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set1/en_us/img/cards/01SI015.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set1/en_us/img/cards/01SI015-full.png" + } + ], + "regions": [ + "Shadow Isles" + ], + "regionRefs": [ + "ShadowIsles" + ], + "attack": 0, + "cost": 9, + "health": 0, + "description": "Kill ALL units.", + "descriptionRaw": "Kill ALL units.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "To think something so pure as love could cause something so cruel and inescapable. ", + "artistName": "Oliver Chipping", + "name": "The Ruination", + "cardCode": "01SI015", + "keywords": [ + "Slow" + ], + "keywordRefs": [ + "Slow" + ], + "spellSpeed": "Slow", + "spellSpeedRef": "Slow", + "rarity": "EPIC", + "rarityRef": "Epic", + "subtypes": [], + "supertype": "", + "type": "Spell", + "collectible": true, + "set": "Set1" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set1/en_us/img/cards/01SI055.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set1/en_us/img/cards/01SI055-full.png" + } + ], + "regions": [ + "Shadow Isles" + ], + "regionRefs": [ + "ShadowIsles" + ], + "attack": 3, + "cost": 6, + "health": 7, + "description": "", + "descriptionRaw": "", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"As our ships near those haunted lands, I ponder this: did those nightmarish creations originate on these twisted shores? Did they ever truly live?\" - Arie Wrence, Demacian soldier", + "artistName": "SIXMOREVODKA", + "name": "Soulgorger", + "cardCode": "01SI055", + "keywords": [ + "Lifesteal" + ], + "keywordRefs": [ + "Lifesteal" + ], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "RARE", + "rarityRef": "Rare", + "subtypes": [], + "supertype": "", + "type": "Unit", + "collectible": true, + "set": "Set1" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set1/en_us/img/cards/01SI047.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set1/en_us/img/cards/01SI047-full.png" + } + ], + "regions": [ + "Shadow Isles" + ], + "regionRefs": [ + "ShadowIsles" + ], + "attack": 0, + "cost": 0, + "health": 0, + "description": "Pick a follower. Create an Ephemeral copy of it in hand.", + "descriptionRaw": "Pick a follower. Create an Ephemeral copy of it in hand.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "For a moment, she remembered. Dappled sunlight dancing across her skin, plump dewberries bursting between her teeth, and the glade’s fragile melody drifting over her on the breeze. Then... it was gone.", + "artistName": "Kudos Productions", + "name": "Fading Memories", + "cardCode": "01SI047", + "keywords": [ + "Burst" + ], + "keywordRefs": [ + "Burst" + ], + "spellSpeed": "Burst", + "spellSpeedRef": "Burst", + "rarity": "RARE", + "rarityRef": "Rare", + "subtypes": [], + "supertype": "", + "type": "Spell", + "collectible": true, + "set": "Set1" + } +] \ No newline at end of file diff --git a/data/set1-en_us/metadata.json b/data/set1-en_us/metadata.json new file mode 100644 index 0000000..73ddb2d --- /dev/null +++ b/data/set1-en_us/metadata.json @@ -0,0 +1,5 @@ +{ + "locales": [ + "en_us" + ] +} \ No newline at end of file diff --git a/data/set2-en_us/COPYRIGHT b/data/set2-en_us/COPYRIGHT new file mode 100644 index 0000000..095081a --- /dev/null +++ b/data/set2-en_us/COPYRIGHT @@ -0,0 +1 @@ +Copyright Riot Games, Inc. 2019 \ No newline at end of file diff --git a/data/set2-en_us/README.md b/data/set2-en_us/README.md new file mode 100644 index 0000000..378a7b6 --- /dev/null +++ b/data/set2-en_us/README.md @@ -0,0 +1,40 @@ +metadata.json +{ + "locales": ["{string}", ...], + "clientHash": "{string}" + "gameplayDataHash": "{string}", + "timestamp": "{YYYYMMDDhhmm}", + "patchlineRef": "{string}" +} + +cards.json +[ + { + "id": "{cardCode}", + "idComponents": + { + "set": "setNumber", + "region": + { + "id": "{shortRegionCode}", + "name": "{regionName}" + } + } + "name": "{name}", + "type": "{type}", + "subType": "{subType}", + "superType": "{superType}", + "description": "{description}", + "keywords": [], + "associatedCards": [{cardCode}, ...] + "health": "{health}", + "attack": "{attack}", + "cost": "{cost}", + "assets": + { + "gameAbsolutePath": "http://{cdn}/{bundleName}/set1/en_us/img/card/game/{cardCode}.png" + } + + }, + {...} +] diff --git a/data/set2-en_us/en_us/data/set2-en_us.json b/data/set2-en_us/en_us/data/set2-en_us.json new file mode 100644 index 0000000..a49d5b0 --- /dev/null +++ b/data/set2-en_us/en_us/data/set2-en_us.json @@ -0,0 +1,7417 @@ +[ + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set2/en_us/img/cards/02PZ001.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set2/en_us/img/cards/02PZ001-full.png" + } + ], + "regions": [ + "Piltover & Zaun" + ], + "regionRefs": [ + "PiltoverZaun" + ], + "attack": 1, + "cost": 5, + "health": 5, + "description": "When I'm summoned, draw 1.\r\nThen, if you've played at least 10 other cards with different names, grant me +4|+0. ", + "descriptionRaw": "When I'm summoned, draw 1.\r\nThen, if you've played at least 10 other cards with different names, grant me +4|+0. ", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "Nothing could stop his escape from those simpering humans. Not even a little water...", + "artistName": "SIXMOREVODKA", + "name": "Subpurrsible", + "cardCode": "02PZ001", + "keywords": [ + "Elusive" + ], + "keywordRefs": [ + "Elusive" + ], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "EPIC", + "rarityRef": "Epic", + "subtypes": [], + "supertype": "", + "type": "Unit", + "collectible": true, + "set": "Set2" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set2/en_us/img/cards/02PZ010.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set2/en_us/img/cards/02PZ010-full.png" + } + ], + "regions": [ + "Piltover & Zaun" + ], + "regionRefs": [ + "PiltoverZaun" + ], + "attack": 3, + "cost": 2, + "health": 2, + "description": "When I'm summoned, ALL players draw 1.", + "descriptionRaw": "When I'm summoned, ALL players draw 1.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "Some officers rely on their instincts to crack a case. Others lean on their contacts. But Officer J.S. Harknor's strength is pure diligence, and paperwork. Lots and lots of paperwork.", + "artistName": "SIXMOREVODKA", + "name": "Veteran Investigator", + "cardCode": "02PZ010", + "keywords": [], + "keywordRefs": [], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "COMMON", + "rarityRef": "Common", + "subtypes": [ + "YORDLE" + ], + "supertype": "", + "type": "Unit", + "collectible": true, + "set": "Set2" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set2/en_us/img/cards/02PZ006.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set2/en_us/img/cards/02PZ006-full.png" + } + ], + "regions": [ + "Piltover & Zaun" + ], + "regionRefs": [ + "PiltoverZaun" + ], + "attack": 0, + "cost": 4, + "health": 0, + "description": "When drawn, costs 2 less this round.\r\nDeal 3 to a unit.", + "descriptionRaw": "When drawn, costs 2 less this round.\r\nDeal 3 to a unit.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"Mind trying on these handcuffs, Mr. Berz?\"\n\"What's in it for me?\"\n\"You can keep them.\"\n\"...A'right then.\"\n\"You're under arrest. Take him away!\"", + "artistName": "Max Grecke", + "name": "Gotcha!", + "cardCode": "02PZ006", + "keywords": [ + "Fast" + ], + "keywordRefs": [ + "Fast" + ], + "spellSpeed": "Fast", + "spellSpeedRef": "Fast", + "rarity": "COMMON", + "rarityRef": "Common", + "subtypes": [], + "supertype": "", + "type": "Spell", + "collectible": true, + "set": "Set2" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set2/en_us/img/cards/02PZ004.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set2/en_us/img/cards/02PZ004-full.png" + } + ], + "regions": [ + "Piltover & Zaun" + ], + "regionRefs": [ + "PiltoverZaun" + ], + "attack": 0, + "cost": 3, + "health": 0, + "description": "Give an ally +2|+0 this round.\r\nCreate a Fleeting Vault Breaker in hand.", + "descriptionRaw": "Give an ally +2|+0 this round.\r\nCreate a Fleeting Vault Breaker in hand.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"I let my hands do the talking.\" - Vi", + "artistName": "Kudos Productions", + "name": "Vault Breaker", + "cardCode": "02PZ004", + "keywords": [ + "Burst" + ], + "keywordRefs": [ + "Burst" + ], + "spellSpeed": "Burst", + "spellSpeedRef": "Burst", + "rarity": "RARE", + "rarityRef": "Rare", + "subtypes": [], + "supertype": "", + "type": "Spell", + "collectible": true, + "set": "Set2" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set2/en_us/img/cards/02PZ007.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set2/en_us/img/cards/02PZ007-full.png" + } + ], + "regions": [ + "Piltover & Zaun" + ], + "regionRefs": [ + "PiltoverZaun" + ], + "attack": 3, + "cost": 4, + "health": 3, + "description": "When you play a 2 cost card, draw 1 and give it Fleeting.", + "descriptionRaw": "When you play a 2 cost card, draw 1 and give it Fleeting.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"All detectives respond, but a good detective anticipates, and an exemplary detective prevents.\" - The Warden's Handbook", + "artistName": "SIXMOREVODKA", + "name": "Insightful Investigator", + "cardCode": "02PZ007", + "keywords": [], + "keywordRefs": [], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "RARE", + "rarityRef": "Rare", + "subtypes": [], + "supertype": "", + "type": "Unit", + "collectible": true, + "set": "Set2" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set2/en_us/img/cards/02PZ002.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set2/en_us/img/cards/02PZ002-full.png" + } + ], + "regions": [ + "Piltover & Zaun" + ], + "regionRefs": [ + "PiltoverZaun" + ], + "attack": 5, + "cost": 6, + "health": 6, + "description": "When you draw a card, give it Fleeting and create an exact copy of it in hand.", + "descriptionRaw": "When you draw a card, give it Fleeting and create an exact copy of it in hand.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "At age five, she made the world's first multi-frequency sonic knife. While not very practical (she mostly used it to slice sandwiches), it set her on her way to the Wardens' elite Armaments Department.", + "artistName": "SIXMOREVODKA", + "name": "Chief Mechanist Zevi", + "cardCode": "02PZ002", + "keywords": [], + "keywordRefs": [], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "EPIC", + "rarityRef": "Epic", + "subtypes": [], + "supertype": "", + "type": "Unit", + "collectible": true, + "set": "Set2" + }, + { + "associatedCards": [], + "associatedCardRefs": [ + "02PZ008T2", + "02PZ008T1" + ], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set2/en_us/img/cards/02PZ008.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set2/en_us/img/cards/02PZ008-full.png" + } + ], + "regions": [ + "Piltover & Zaun" + ], + "regionRefs": [ + "PiltoverZaun" + ], + "attack": 2, + "cost": 5, + "health": 4, + "description": "While I'm in play or in hand, grant me +1|+0 when you play another card (max +8|+0). ", + "descriptionRaw": "While I'm in play or in hand, grant me +1|+0 when you play another card (max +8|+0). ", + "levelupDescription": "I've struck for 10+ Damage.", + "levelupDescriptionRaw": "I've struck for 10+ Damage.", + "flavorText": "\"Enforcer Vi, please! Think of the people! The collateral damage! The PAPERWORK FOR INJURY CLAIMS!\" - Insightful Investigator", + "artistName": "SIXMOREVODKA", + "name": "Vi", + "cardCode": "02PZ008", + "keywords": [ + "Challenger", + "Tough" + ], + "keywordRefs": [ + "Challenger", + "Tough" + ], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "Champion", + "rarityRef": "Champion", + "subtypes": [], + "supertype": "Champion", + "type": "Unit", + "collectible": true, + "set": "Set2" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set2/en_us/img/cards/02PZ009.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set2/en_us/img/cards/02PZ009-full.png" + } + ], + "regions": [ + "Piltover & Zaun" + ], + "regionRefs": [ + "PiltoverZaun" + ], + "attack": 0, + "cost": 2, + "health": 0, + "description": "Create in hand a random 2 cost card from your regions. It costs 0 this round.", + "descriptionRaw": "Create in hand a random 2 cost card from your regions. It costs 0 this round.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"And thus,\" Officer Harknor announced, \"the trail leads us to...\"", + "artistName": "Kudos Productions", + "name": "Trail of Evidence", + "cardCode": "02PZ009", + "keywords": [ + "Burst" + ], + "keywordRefs": [ + "Burst" + ], + "spellSpeed": "Burst", + "spellSpeedRef": "Burst", + "rarity": "COMMON", + "rarityRef": "Common", + "subtypes": [], + "supertype": "", + "type": "Spell", + "collectible": true, + "set": "Set2" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set2/en_us/img/cards/02PZ003.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set2/en_us/img/cards/02PZ003-full.png" + } + ], + "regions": [ + "Piltover & Zaun" + ], + "regionRefs": [ + "PiltoverZaun" + ], + "attack": 0, + "cost": 4, + "health": 0, + "description": "When drawn, costs 2 less this round.\r\nGrow an ally to 4|4.", + "descriptionRaw": "When drawn, costs 2 less this round.\r\nGrow an ally to 4|4.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"Trouble at the docks! Take these, and give them my regards.\" - Chief Mechanist Zevi", + "artistName": "Kudos Productions", + "name": "Suit Up!", + "cardCode": "02PZ003", + "keywords": [ + "Burst" + ], + "keywordRefs": [ + "Burst" + ], + "spellSpeed": "Burst", + "spellSpeedRef": "Burst", + "rarity": "RARE", + "rarityRef": "Rare", + "subtypes": [], + "supertype": "", + "type": "Spell", + "collectible": true, + "set": "Set2" + }, + { + "associatedCards": [], + "associatedCardRefs": [ + "02PZ008", + "02PZ008T1" + ], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set2/en_us/img/cards/02PZ008T2.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set2/en_us/img/cards/02PZ008T2-full.png" + } + ], + "regions": [ + "Piltover & Zaun" + ], + "regionRefs": [ + "PiltoverZaun" + ], + "attack": 10, + "cost": 5, + "health": 5, + "description": "When I strike a unit while attacking, deal 5 to the enemy Nexus.", + "descriptionRaw": "When I strike a unit while attacking, deal 5 to the enemy Nexus.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"So! Looks like your buddies are all tuckered out. You wanna tell me where you hid the hextech, or d'ya wanna make friends with the wall, too?\"", + "artistName": "SIXMOREVODKA", + "name": "Vi", + "cardCode": "02PZ008T2", + "keywords": [ + "Challenger", + "Tough" + ], + "keywordRefs": [ + "Challenger", + "Tough" + ], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "None", + "rarityRef": "None", + "subtypes": [], + "supertype": "Champion", + "type": "Unit", + "collectible": false, + "set": "Set2" + }, + { + "associatedCards": [], + "associatedCardRefs": [ + "02PZ008", + "02PZ008T2" + ], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set2/en_us/img/cards/02PZ008T1.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set2/en_us/img/cards/02PZ008T1-full.png" + } + ], + "regions": [ + "Piltover & Zaun" + ], + "regionRefs": [ + "PiltoverZaun" + ], + "attack": 0, + "cost": 3, + "health": 0, + "description": "Give an ally +2|+0 this round.\r\nCreate a Fleeting Vault Breaker in hand.\r\nCreate a Vi in your deck.", + "descriptionRaw": "Give an ally +2|+0 this round.\r\nCreate a Fleeting Vault Breaker in hand.\r\nCreate a Vi in your deck.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"I let my hands do the talking.\" - Vi", + "artistName": "Kudos Productions", + "name": "Vi's Vault Breaker", + "cardCode": "02PZ008T1", + "keywords": [ + "Burst" + ], + "keywordRefs": [ + "Burst" + ], + "spellSpeed": "Burst", + "spellSpeedRef": "Burst", + "rarity": "None", + "rarityRef": "None", + "subtypes": [], + "supertype": "Champion", + "type": "Spell", + "collectible": false, + "set": "Set2" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set2/en_us/img/cards/02PZ005.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set2/en_us/img/cards/02PZ005-full.png" + } + ], + "regions": [ + "Piltover & Zaun" + ], + "regionRefs": [ + "PiltoverZaun" + ], + "attack": 4, + "cost": 3, + "health": 3, + "description": "When I'm drawn, I cost 1 less this round.", + "descriptionRaw": "When I'm drawn, I cost 1 less this round.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "Warden Mir's sprinting technique was a running joke among the other enforcers. Warden Kepple didn't get it.", + "artistName": "SIXMOREVODKA", + "name": "Patrol Wardens", + "cardCode": "02PZ005", + "keywords": [], + "keywordRefs": [], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "COMMON", + "rarityRef": "Common", + "subtypes": [], + "supertype": "", + "type": "Unit", + "collectible": true, + "set": "Set2" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set2/en_us/img/cards/02BW040.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set2/en_us/img/cards/02BW040-full.png" + } + ], + "regions": [ + "Bilgewater" + ], + "regionRefs": [ + "Bilgewater" + ], + "attack": 2, + "cost": 1, + "health": 1, + "description": "", + "descriptionRaw": "", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"MY GRATEST STRENF IS PREBABLE MY COMAND OF DA COMON PEEPUL AN ALSO APPARENLY MY SPELING IS RELLY GUD TO\" - Note scribbled in sand", + "artistName": "Kudos Productions", + "name": "Shellshocker ", + "cardCode": "02BW040", + "keywords": [ + "Attune" + ], + "keywordRefs": [ + "Attune" + ], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "COMMON", + "rarityRef": "Common", + "subtypes": [], + "supertype": "", + "type": "Unit", + "collectible": true, + "set": "Set2" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set2/en_us/img/cards/02BW057.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set2/en_us/img/cards/02BW057-full.png" + } + ], + "regions": [ + "Bilgewater" + ], + "regionRefs": [ + "Bilgewater" + ], + "attack": 4, + "cost": 5, + "health": 4, + "description": "", + "descriptionRaw": "", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"Swear I seen the strangest things over them reefs, Cap'n. Wha's that lunk put in 'em oranges? Tha's what I wanna know...\" - Petty Officer", + "artistName": "Kudos Productions", + "name": "Slippery Waverider", + "cardCode": "02BW057", + "keywords": [ + "Elusive", + "Attune" + ], + "keywordRefs": [ + "Elusive", + "Attune" + ], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "COMMON", + "rarityRef": "Common", + "subtypes": [], + "supertype": "", + "type": "Unit", + "collectible": true, + "set": "Set2" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set2/en_us/img/cards/02BW041.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set2/en_us/img/cards/02BW041-full.png" + } + ], + "regions": [ + "Bilgewater" + ], + "regionRefs": [ + "Bilgewater" + ], + "attack": 4, + "cost": 4, + "health": 4, + "description": "", + "descriptionRaw": "", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"Fear not the blasted beast ye know,\nFor some survive their thunder,\nBut what of them that broke the bow,\nAn' took them poor souls under?\" - Found scratched into a Bilgewater tavern beam", + "artistName": "SIXMOREVODKA", + "name": "The Beast Below", + "cardCode": "02BW041", + "keywords": [ + "Deep" + ], + "keywordRefs": [ + "Deep" + ], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "COMMON", + "rarityRef": "Common", + "subtypes": [ + "SEA MONSTER" + ], + "supertype": "", + "type": "Unit", + "collectible": true, + "set": "Set2" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set2/en_us/img/cards/02BW013.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set2/en_us/img/cards/02BW013-full.png" + } + ], + "regions": [ + "Bilgewater" + ], + "regionRefs": [ + "Bilgewater" + ], + "attack": 1, + "cost": 1, + "health": 1, + "description": "", + "descriptionRaw": "", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"...and the idiot said I had hips that 'rolled like the waves'. I told him to cut the flattery, or I'd cut out his tongue.\"", + "artistName": "SIXMOREVODKA", + "name": "Prowling Cutthroat", + "cardCode": "02BW013", + "keywords": [ + "Fearsome", + "Elusive" + ], + "keywordRefs": [ + "Fearsome", + "Elusive" + ], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "COMMON", + "rarityRef": "Common", + "subtypes": [], + "supertype": "", + "type": "Unit", + "collectible": true, + "set": "Set2" + }, + { + "associatedCards": [], + "associatedCardRefs": [ + "02BW034T1" + ], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set2/en_us/img/cards/02BW034.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set2/en_us/img/cards/02BW034-full.png" + } + ], + "regions": [ + "Bilgewater" + ], + "regionRefs": [ + "Bilgewater" + ], + "attack": 0, + "cost": 3, + "health": 5, + "description": "Round Start: Deal 2 to me and summon a Powder Monkey.", + "descriptionRaw": "Round Start: Deal 2 to me and summon a Powder Monkey.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"This one's a... souvenir. The crew nabbed it from a crazy old rival of mine. Turns out the fool's ramblings about 'ancient, mysterious powers' weren't too far from the truth...\" - Miss Fortune", + "artistName": "Kudos Productions", + "name": "Monkey Idol", + "cardCode": "02BW034", + "keywords": [ + "Immobile" + ], + "keywordRefs": [ + "Immobile" + ], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "RARE", + "rarityRef": "Rare", + "subtypes": [], + "supertype": "", + "type": "Unit", + "collectible": true, + "set": "Set2" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set2/en_us/img/cards/02BW034T1.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set2/en_us/img/cards/02BW034T1-full.png" + } + ], + "regions": [ + "Bilgewater" + ], + "regionRefs": [ + "Bilgewater" + ], + "attack": 2, + "cost": 1, + "health": 1, + "description": "Last Breath: Deal 1 to the enemy Nexus.", + "descriptionRaw": "Last Breath: Deal 1 to the enemy Nexus.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"Mischievous little scamps, ain't they? More help than they seem, but word is they've got explosive tempers...\" - Syren deckhand", + "artistName": "Kudos Productions", + "name": "Powder Monkey", + "cardCode": "02BW034T1", + "keywords": [ + "Ephemeral", + "Last Breath" + ], + "keywordRefs": [ + "Ephemeral", + "LastBreath" + ], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "None", + "rarityRef": "None", + "subtypes": [], + "supertype": "", + "type": "Unit", + "collectible": false, + "set": "Set2" + }, + { + "associatedCards": [], + "associatedCardRefs": [ + "02BW056T1" + ], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set2/en_us/img/cards/02BW056.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set2/en_us/img/cards/02BW056-full.png" + } + ], + "regions": [ + "Bilgewater" + ], + "regionRefs": [ + "Bilgewater" + ], + "attack": 4, + "cost": 6, + "health": 4, + "description": "Play: Obliterate an enemy with less Health than me.\r\n", + "descriptionRaw": "Play: Obliterate an enemy with less Health than me.\r\n", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"I was sailing just the other day,\nOut beyond Bilgewater Bay,\nWhen, from the depths, she came my way,\nthe Wing-Eared Sunken Lady...\" - \"Ballad of the Wing-Eared Sunken Lady\"", + "artistName": "Kudos Productions", + "name": "Devourer of the Depths", + "cardCode": "02BW056", + "keywords": [ + "Deep" + ], + "keywordRefs": [ + "Deep" + ], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "EPIC", + "rarityRef": "Epic", + "subtypes": [ + "SEA MONSTER" + ], + "supertype": "", + "type": "Unit", + "collectible": true, + "set": "Set2" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set2/en_us/img/cards/02BW056T1.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set2/en_us/img/cards/02BW056T1-full.png" + } + ], + "regions": [ + "Bilgewater" + ], + "regionRefs": [ + "Bilgewater" + ], + "attack": 0, + "cost": 0, + "health": 0, + "description": "Obliterate an enemy with less Health than me.", + "descriptionRaw": "Obliterate an enemy with less Health than me.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"She swallowed me whole, me skiff and me soul,\nSo I'm singin' this song in her belly,\nAnd now I must wait 'til I meet my fate,\nIn the Wing-Eared Sunken Lady.\" - \"Ballad of the Wing-Eared Sunken Lady\"", + "artistName": "Kudos Productions", + "name": "Devour", + "cardCode": "02BW056T1", + "keywords": [ + "Skill" + ], + "keywordRefs": [ + "Skill" + ], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "None", + "rarityRef": "None", + "subtypes": [], + "supertype": "", + "type": "Ability", + "collectible": false, + "set": "Set2" + }, + { + "associatedCards": [], + "associatedCardRefs": [ + "02BW060T1" + ], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set2/en_us/img/cards/02BW060.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set2/en_us/img/cards/02BW060-full.png" + } + ], + "regions": [ + "Bilgewater" + ], + "regionRefs": [ + "Bilgewater" + ], + "attack": 1, + "cost": 1, + "health": 1, + "description": "When allies attack, deal 1 to the enemy Nexus.", + "descriptionRaw": "When allies attack, deal 1 to the enemy Nexus.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"Being short gives you a surprising advantage in a fight. Turns out, nobody ever thinks to look down.\"", + "artistName": "SIXMOREVODKA", + "name": "Crackshot Corsair", + "cardCode": "02BW060", + "keywords": [], + "keywordRefs": [], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "COMMON", + "rarityRef": "Common", + "subtypes": [ + "YORDLE" + ], + "supertype": "", + "type": "Unit", + "collectible": true, + "set": "Set2" + }, + { + "associatedCards": [], + "associatedCardRefs": [ + "02BW020" + ], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set2/en_us/img/cards/02BW011.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set2/en_us/img/cards/02BW011-full.png" + } + ], + "regions": [ + "Bilgewater" + ], + "regionRefs": [ + "Bilgewater" + ], + "attack": 3, + "cost": 4, + "health": 3, + "description": "Allegiance: Nab 1 and create a Warning Shot in hand.", + "descriptionRaw": "Allegiance: Nab 1 and create a Warning Shot in hand.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"Y'know, friends love to help friends out. And you? I like the shine in your eye and the glint on your cutlass! It is a really, really nice cutlass.\"", + "artistName": "SIXMOREVODKA", + "name": "Yordle Grifter", + "cardCode": "02BW011", + "keywords": [], + "keywordRefs": [], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "RARE", + "rarityRef": "Rare", + "subtypes": [ + "YORDLE" + ], + "supertype": "", + "type": "Unit", + "collectible": true, + "set": "Set2" + }, + { + "associatedCards": [], + "associatedCardRefs": [ + "02BW030T2", + "02BW030T3", + "02BW030T1", + "02BW030T4" + ], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set2/en_us/img/cards/02BW030.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set2/en_us/img/cards/02BW030-full.png" + } + ], + "regions": [ + "Bilgewater" + ], + "regionRefs": [ + "Bilgewater" + ], + "attack": 7, + "cost": 7, + "health": 5, + "description": "When I'm summoned, Toss 2 and create 2 Treasures in your deck.\r\n", + "descriptionRaw": "When I'm summoned, Toss 2 and create 2 Treasures in your deck.\r\n", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"These days, there's more treasure 'neath the waves than above 'em, I wager. Would be easy enough pickins, if 'tweren't for her.\" - Jagged Butcher", + "artistName": "Kudos Productions", + "name": "Shipwreck Hoarder", + "cardCode": "02BW030", + "keywords": [ + "Deep" + ], + "keywordRefs": [ + "Deep" + ], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "EPIC", + "rarityRef": "Epic", + "subtypes": [ + "SEA MONSTER" + ], + "supertype": "", + "type": "Unit", + "collectible": true, + "set": "Set2" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set2/en_us/img/cards/02BW030T2.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set2/en_us/img/cards/02BW030T2-full.png" + } + ], + "regions": [ + "Bilgewater" + ], + "regionRefs": [ + "Bilgewater" + ], + "attack": 0, + "cost": 5, + "health": 0, + "description": "If I'm Tossed, draw me instead.\r\nDeal 5 to ALL units.", + "descriptionRaw": "If I'm Tossed, draw me instead.\r\nDeal 5 to ALL units.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "The deckhands roared as one and hauled the chains, their treasure now just below the calm waters. Little did they know the Seascraw's legendary cannon had one final act in store.", + "artistName": "Kudos Productions", + "name": "Keelbreaker", + "cardCode": "02BW030T2", + "keywords": [ + "Slow" + ], + "keywordRefs": [ + "Slow" + ], + "spellSpeed": "Slow", + "spellSpeedRef": "Slow", + "rarity": "None", + "rarityRef": "None", + "subtypes": [ + "TREASURE" + ], + "supertype": "", + "type": "Spell", + "collectible": false, + "set": "Set2" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set2/en_us/img/cards/02BW030T1.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set2/en_us/img/cards/02BW030T1-full.png" + } + ], + "regions": [ + "Bilgewater" + ], + "regionRefs": [ + "Bilgewater" + ], + "attack": 0, + "cost": 5, + "health": 0, + "description": "Create 5 random cards in hand. They cost 0 and are Fleeting.\r\nIf I'm Tossed, draw me instead.", + "descriptionRaw": "Create 5 random cards in hand. They cost 0 and are Fleeting.\r\nIf I'm Tossed, draw me instead.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "Captain Finn roared out \"Ye earned this, boys! Told ye the Tithe was nothin' but coward feed!\" Some cheered, but not all. The waters seemed to still, save for the bubbles around the Rancour's hull.", + "artistName": "Kudos Productions", + "name": "Treasure Trove", + "cardCode": "02BW030T1", + "keywords": [ + "Slow" + ], + "keywordRefs": [ + "Slow" + ], + "spellSpeed": "Slow", + "spellSpeedRef": "Slow", + "rarity": "None", + "rarityRef": "None", + "subtypes": [ + "TREASURE" + ], + "supertype": "", + "type": "Spell", + "collectible": false, + "set": "Set2" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set2/en_us/img/cards/02BW030T4.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set2/en_us/img/cards/02BW030T4-full.png" + } + ], + "regions": [ + "Bilgewater" + ], + "regionRefs": [ + "Bilgewater" + ], + "attack": 5, + "cost": 5, + "health": 5, + "description": "", + "descriptionRaw": "", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "The terrifying beasts burst through the waves and split the hull with vice-like jaws. Though the sailors begged the Bearded Lady for mercy, their captain's greed had already sealed their fate.", + "artistName": "SIXMOREVODKA", + "name": "Vicious Platewyrm", + "cardCode": "02BW030T4", + "keywords": [ + "Fearsome", + "Deep" + ], + "keywordRefs": [ + "Fearsome", + "Deep" + ], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "None", + "rarityRef": "None", + "subtypes": [ + "SEA MONSTER" + ], + "supertype": "", + "type": "Unit", + "collectible": false, + "set": "Set2" + }, + { + "associatedCards": [], + "associatedCardRefs": [ + "02BW030T4" + ], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set2/en_us/img/cards/02BW030T3.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set2/en_us/img/cards/02BW030T3-full.png" + } + ], + "regions": [ + "Bilgewater" + ], + "regionRefs": [ + "Bilgewater" + ], + "attack": 0, + "cost": 5, + "health": 0, + "description": "If I'm Tossed, draw me instead.\r\nSummon 3 Vicious Platewyrms.", + "descriptionRaw": "If I'm Tossed, draw me instead.\r\nSummon 3 Vicious Platewyrms.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "The grizzled captain held his shining quarry aloft and roared out \"This'll keep us fer life!\" Heady cheers rang out from the crew, while around their brig, the waters began to churn...", + "artistName": "Kudos Productions", + "name": "Platewyrm Egg", + "cardCode": "02BW030T3", + "keywords": [ + "Slow" + ], + "keywordRefs": [ + "Slow" + ], + "spellSpeed": "Slow", + "spellSpeedRef": "Slow", + "rarity": "None", + "rarityRef": "None", + "subtypes": [ + "TREASURE" + ], + "supertype": "", + "type": "Spell", + "collectible": false, + "set": "Set2" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set2/en_us/img/cards/02BW019.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set2/en_us/img/cards/02BW019-full.png" + } + ], + "regions": [ + "Bilgewater" + ], + "regionRefs": [ + "Bilgewater" + ], + "attack": 0, + "cost": 3, + "health": 6, + "description": "", + "descriptionRaw": "", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "Lively currents of magic weave through Serpent Isles' reefs, nourishing the sea's extraordinary inhabitants.", + "artistName": "Kudos Productions", + "name": "Bubble Bear", + "cardCode": "02BW019", + "keywords": [ + "Attune", + "Elusive" + ], + "keywordRefs": [ + "Attune", + "Elusive" + ], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "COMMON", + "rarityRef": "Common", + "subtypes": [], + "supertype": "", + "type": "Unit", + "collectible": true, + "set": "Set2" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set2/en_us/img/cards/02BW007.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set2/en_us/img/cards/02BW007-full.png" + } + ], + "regions": [ + "Bilgewater" + ], + "regionRefs": [ + "Bilgewater" + ], + "attack": 4, + "cost": 4, + "health": 5, + "description": "To play me, discard 2.\r\nAttack: Draw 2 and give them Fleeting.", + "descriptionRaw": "To play me, discard 2.\r\nAttack: Draw 2 and give them Fleeting.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"Ain't nothing to it, most o' the time. Tables are full of fools too busy singing 'emselves hoarse to focus on the game. Not that I mind none. Coin's coin, and it's better in my pocket than theirs.\"", + "artistName": "JiHun Lee", + "name": "Brash Gambler", + "cardCode": "02BW007", + "keywords": [], + "keywordRefs": [], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "RARE", + "rarityRef": "Rare", + "subtypes": [], + "supertype": "", + "type": "Unit", + "collectible": true, + "set": "Set2" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set2/en_us/img/cards/02BW014.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set2/en_us/img/cards/02BW014-full.png" + } + ], + "regions": [ + "Bilgewater" + ], + "regionRefs": [ + "Bilgewater" + ], + "attack": 1, + "cost": 2, + "health": 3, + "description": "When I'm summoned, create in hand a random 1 cost spell from your regions.", + "descriptionRaw": "When I'm summoned, create in hand a random 1 cost spell from your regions.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "Most shallows teem with all kinds of marine life, but none compare to the reefs of the Azure Way. The Way is a magical, otherworldly place, full of wonder.", + "artistName": "Kudos Productions", + "name": "Coral Creatures", + "cardCode": "02BW014", + "keywords": [ + "Attune" + ], + "keywordRefs": [ + "Attune" + ], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "RARE", + "rarityRef": "Rare", + "subtypes": [], + "supertype": "", + "type": "Unit", + "collectible": true, + "set": "Set2" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set2/en_us/img/cards/02BW055.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set2/en_us/img/cards/02BW055-full.png" + } + ], + "regions": [ + "Bilgewater" + ], + "regionRefs": [ + "Bilgewater" + ], + "attack": 3, + "cost": 2, + "health": 2, + "description": "Plunder: Grant 1 cost allies everywhere +1|+0.", + "descriptionRaw": "Plunder: Grant 1 cost allies everywhere +1|+0.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "Once she fires, the Hooks have to move fast. Blood in the water brings all manner of company... and none of it is welcome.", + "artistName": "JiHun Lee", + "name": "Jagged Taskmaster", + "cardCode": "02BW055", + "keywords": [ + "Plunder" + ], + "keywordRefs": [ + "Plunder" + ], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "EPIC", + "rarityRef": "Epic", + "subtypes": [], + "supertype": "", + "type": "Unit", + "collectible": true, + "set": "Set2" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set2/en_us/img/cards/02BW017.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set2/en_us/img/cards/02BW017-full.png" + } + ], + "regions": [ + "Bilgewater" + ], + "regionRefs": [ + "Bilgewater" + ], + "attack": 4, + "cost": 6, + "health": 5, + "description": "Plunder: Heal allies and your Nexus 3, then Rally.\r\n", + "descriptionRaw": "Plunder: Heal allies and your Nexus 3, then Rally.\r\n", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"All sailors think they so tough! Grr this. Yarr that. Yes yes. Very good. But you still need orange! Make skin pretty, make teeth stay, and make me happy. So you eat, or you swim. Easy.\"", + "artistName": "SIXMOREVODKA", + "name": "Citrus Courier", + "cardCode": "02BW017", + "keywords": [ + "Plunder" + ], + "keywordRefs": [ + "Plunder" + ], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "RARE", + "rarityRef": "Rare", + "subtypes": [], + "supertype": "", + "type": "Unit", + "collectible": true, + "set": "Set2" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set2/en_us/img/cards/02BW038.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set2/en_us/img/cards/02BW038-full.png" + } + ], + "regions": [ + "Bilgewater" + ], + "regionRefs": [ + "Bilgewater" + ], + "attack": 2, + "cost": 4, + "health": 2, + "description": "When I'm summoned, draw a spell that costs 3 or less from your deck.", + "descriptionRaw": "When I'm summoned, draw a spell that costs 3 or less from your deck.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "Zap once completed the Azure Way circuit in just under three minutes. She even had to dodge the Jilldaw's shattered hull near the end! The currents that day were AWESOME.", + "artistName": "Kudos Productions", + "name": "Zap Sprayfin", + "cardCode": "02BW038", + "keywords": [ + "Elusive", + "Attune" + ], + "keywordRefs": [ + "Elusive", + "Attune" + ], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "EPIC", + "rarityRef": "Epic", + "subtypes": [], + "supertype": "", + "type": "Unit", + "collectible": true, + "set": "Set2" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set2/en_us/img/cards/02BW021.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set2/en_us/img/cards/02BW021-full.png" + } + ], + "regions": [ + "Bilgewater" + ], + "regionRefs": [ + "Bilgewater" + ], + "attack": 4, + "cost": 5, + "health": 4, + "description": "Play: Grant an enemy Vulnerable.", + "descriptionRaw": "Play: Grant an enemy Vulnerable.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"I've heard he'll swim miles to find his mark, 'n when he finds 'em, he never misses his shot. Not sure if he's a man or a fish, but it's clear he knows these waters far better'n we do.\" - Jagged Butcher", + "artistName": "Alex Heath", + "name": "Razorscale Hunter", + "cardCode": "02BW021", + "keywords": [ + "Scout" + ], + "keywordRefs": [ + "Scout" + ], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "RARE", + "rarityRef": "Rare", + "subtypes": [], + "supertype": "", + "type": "Unit", + "collectible": true, + "set": "Set2" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set2/en_us/img/cards/02BW035.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set2/en_us/img/cards/02BW035-full.png" + } + ], + "regions": [ + "Bilgewater" + ], + "regionRefs": [ + "Bilgewater" + ], + "attack": 7, + "cost": 6, + "health": 6, + "description": "When I'm summoned, grant all enemies Vulnerable.", + "descriptionRaw": "When I'm summoned, grant all enemies Vulnerable.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "There may be no law in Bilgewater, yet a handful of brave souls within the city's boisterous walls are unafraid of enforcing their own idea of justice.", + "artistName": "SIXMOREVODKA", + "name": "Sheriff Lariette Rose", + "cardCode": "02BW035", + "keywords": [], + "keywordRefs": [], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "EPIC", + "rarityRef": "Epic", + "subtypes": [], + "supertype": "", + "type": "Unit", + "collectible": true, + "set": "Set2" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set2/en_us/img/cards/02BW058.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set2/en_us/img/cards/02BW058-full.png" + } + ], + "regions": [ + "Bilgewater" + ], + "regionRefs": [ + "Bilgewater" + ], + "attack": 2, + "cost": 1, + "health": 2, + "description": "Plunder: Grant me +1|+1.", + "descriptionRaw": "Plunder: Grant me +1|+1.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "Entry into the Jagged Hooks is a bloody affair. Sailors must prove they know their way around a ship, a fight, and a butcher's block. The most unsavory candidates hit all three marks in a single scrap.", + "artistName": "Slawomir Maniak", + "name": "Jagged Butcher", + "cardCode": "02BW058", + "keywords": [ + "Plunder" + ], + "keywordRefs": [ + "Plunder" + ], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "COMMON", + "rarityRef": "Common", + "subtypes": [], + "supertype": "", + "type": "Unit", + "collectible": true, + "set": "Set2" + }, + { + "associatedCards": [], + "associatedCardRefs": [ + "02BW028T1" + ], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set2/en_us/img/cards/02BW028.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set2/en_us/img/cards/02BW028-full.png" + } + ], + "regions": [ + "Bilgewater" + ], + "regionRefs": [ + "Bilgewater" + ], + "attack": 7, + "cost": 8, + "health": 5, + "description": "Plunder: Play Cannon Barrage 7 times on randomly targeted enemies.", + "descriptionRaw": "Plunder: Play Cannon Barrage 7 times on randomly targeted enemies.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"Sail past the sailors, sail past the wreck,\nThe battle's already over.\nThe smoke's cleared the water, their captain's met Rex,\nAnd their ship's ripped an' torn timber.\" - \"Home With You, Sally\"", + "artistName": "MAR Studio", + "name": "Riptide Rex", + "cardCode": "02BW028", + "keywords": [ + "Plunder" + ], + "keywordRefs": [ + "Plunder" + ], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "EPIC", + "rarityRef": "Epic", + "subtypes": [], + "supertype": "", + "type": "Unit", + "collectible": true, + "set": "Set2" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set2/en_us/img/cards/02BW028T1.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set2/en_us/img/cards/02BW028T1-full.png" + } + ], + "regions": [ + "Bilgewater" + ], + "regionRefs": [ + "Bilgewater" + ], + "attack": 0, + "cost": 0, + "health": 0, + "description": "Deal 2 to a unit.\r\nIf it's dead or gone, deal 1 to the enemy Nexus instead.", + "descriptionRaw": "Deal 2 to a unit.\r\nIf it's dead or gone, deal 1 to the enemy Nexus instead.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "Gangplank's cruelty doesn't end with those who wrong him. To make an enemy of the Saltwater Scourge is to bring death upon everyone you hold dear.", + "artistName": "Kudos Productions", + "name": "Cannon Barrage", + "cardCode": "02BW028T1", + "keywords": [ + "Skill" + ], + "keywordRefs": [ + "Skill" + ], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "None", + "rarityRef": "None", + "subtypes": [], + "supertype": "", + "type": "Ability", + "collectible": false, + "set": "Set2" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set2/en_us/img/cards/02BW037.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set2/en_us/img/cards/02BW037-full.png" + } + ], + "regions": [ + "Bilgewater" + ], + "regionRefs": [ + "Bilgewater" + ], + "attack": 3, + "cost": 5, + "health": 3, + "description": "Nexus Strike: Draw 1.\r\n", + "descriptionRaw": "Nexus Strike: Draw 1.\r\n", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"Aye aye, they cried, and set off away,\nTo see to trouble in fair Nashramae,\nBut nature, she turned, and many did die,\nAn' the rest are off to see the all-seein' eye!\" - \"The All-Seeing Eye\"", + "artistName": "Kudos Productions", + "name": "Abyssal Eye", + "cardCode": "02BW037", + "keywords": [ + "Elusive", + "Deep" + ], + "keywordRefs": [ + "Elusive", + "Deep" + ], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "RARE", + "rarityRef": "Rare", + "subtypes": [ + "SEA MONSTER" + ], + "supertype": "", + "type": "Unit", + "collectible": true, + "set": "Set2" + }, + { + "associatedCards": [], + "associatedCardRefs": [ + "02BW032T1" + ], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set2/en_us/img/cards/02BW008.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set2/en_us/img/cards/02BW008-full.png" + } + ], + "regions": [ + "Bilgewater" + ], + "regionRefs": [ + "Bilgewater" + ], + "attack": 3, + "cost": 3, + "health": 1, + "description": "Play: Summon a Powder Keg or a random 1 cost follower.", + "descriptionRaw": "Play: Summon a Powder Keg or a random 1 cost follower.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "Few things, he learned, could motivate a slacking sailor as promptly as a lit fuse.", + "artistName": "SIXMOREVODKA", + "name": "Petty Officer", + "cardCode": "02BW008", + "keywords": [], + "keywordRefs": [], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "RARE", + "rarityRef": "Rare", + "subtypes": [ + "YORDLE" + ], + "supertype": "", + "type": "Unit", + "collectible": true, + "set": "Set2" + }, + { + "associatedCards": [], + "associatedCardRefs": [ + "02BW032T1" + ], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set2/en_us/img/cards/02BW008T02.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set2/en_us/img/cards/02BW008T02-full.png" + } + ], + "regions": [ + "Bilgewater" + ], + "regionRefs": [ + "Bilgewater" + ], + "attack": 3, + "cost": 3, + "health": 1, + "description": "Play: Summon a random 1 cost follower.", + "descriptionRaw": "Play: Summon a random 1 cost follower.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "Few things, he learned, could motivate a slacking sailor as promptly as a lit fuse.", + "artistName": "SIXMOREVODKA", + "name": "Petty Officer", + "cardCode": "02BW008T02", + "keywords": [], + "keywordRefs": [], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "None", + "rarityRef": "None", + "subtypes": [ + "YORDLE" + ], + "supertype": "", + "type": "Unit", + "collectible": false, + "set": "Set2" + }, + { + "associatedCards": [], + "associatedCardRefs": [ + "02BW032T1" + ], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set2/en_us/img/cards/02BW008T01.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set2/en_us/img/cards/02BW008T01-full.png" + } + ], + "regions": [ + "Bilgewater" + ], + "regionRefs": [ + "Bilgewater" + ], + "attack": 3, + "cost": 3, + "health": 1, + "description": "Play: Summon a Powder Keg.", + "descriptionRaw": "Play: Summon a Powder Keg.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "Few things, he learned, could motivate a slacking sailor as promptly as a lit fuse.", + "artistName": "SIXMOREVODKA", + "name": "Petty Officer", + "cardCode": "02BW008T01", + "keywords": [], + "keywordRefs": [], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "None", + "rarityRef": "None", + "subtypes": [ + "YORDLE" + ], + "supertype": "", + "type": "Unit", + "collectible": false, + "set": "Set2" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set2/en_us/img/cards/02BW047.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set2/en_us/img/cards/02BW047-full.png" + } + ], + "regions": [ + "Bilgewater" + ], + "regionRefs": [ + "Bilgewater" + ], + "attack": 2, + "cost": 1, + "health": 1, + "description": "When I'm summoned, Toss 3.", + "descriptionRaw": "When I'm summoned, Toss 3.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "It takes a special sort to make complete garbage of perfectly seaworthy gear. But if there's one thing they're good at, it's that. Just that.", + "artistName": "Alex Heath", + "name": "Dreg Dredgers", + "cardCode": "02BW047", + "keywords": [], + "keywordRefs": [], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "COMMON", + "rarityRef": "Common", + "subtypes": [], + "supertype": "", + "type": "Unit", + "collectible": true, + "set": "Set2" + }, + { + "associatedCards": [], + "associatedCardRefs": [ + "02BW032T1" + ], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set2/en_us/img/cards/02BW004.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set2/en_us/img/cards/02BW004-full.png" + } + ], + "regions": [ + "Bilgewater" + ], + "regionRefs": [ + "Bilgewater" + ], + "attack": 2, + "cost": 2, + "health": 2, + "description": "When I'm summoned, summon a Powder Keg.", + "descriptionRaw": "When I'm summoned, summon a Powder Keg.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"Aye, we could fight 'em at dawn, when their crew's awake and their cannons are primed. Or we could leave 'em a gift tonight, nice and quiet-like...\"", + "artistName": "Dao Le", + "name": "Dreadway Deckhand", + "cardCode": "02BW004", + "keywords": [], + "keywordRefs": [], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "COMMON", + "rarityRef": "Common", + "subtypes": [], + "supertype": "", + "type": "Unit", + "collectible": true, + "set": "Set2" + }, + { + "associatedCards": [], + "associatedCardRefs": [ + "02BW032" + ], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set2/en_us/img/cards/02BW002.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set2/en_us/img/cards/02BW002-full.png" + } + ], + "regions": [ + "Bilgewater" + ], + "regionRefs": [ + "Bilgewater" + ], + "attack": 4, + "cost": 8, + "health": 6, + "description": "When I'm summoned, draw a Gangplank. Double all damage dealt by your skills, spells and allies.", + "descriptionRaw": "When I'm summoned, draw a Gangplank. Double all damage dealt by your skills, spells and allies.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"Ohhhh, best say yer farewells and draw down the sails,\nFor the Dreadway's a-comin'.\nWe're off to the deep, where graves're replete,\n'Cuz the Dreadway's a-comin'!\" - \"The Dreadway's a-Comin'\"", + "artistName": "SIXMOREVODKA", + "name": "The Dreadway", + "cardCode": "02BW002", + "keywords": [ + "Fearsome", + "Missing Translation" + ], + "keywordRefs": [ + "Fearsome", + "AuraVisualFakeKeyword" + ], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "EPIC", + "rarityRef": "Epic", + "subtypes": [], + "supertype": "", + "type": "Unit", + "collectible": true, + "set": "Set2" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set2/en_us/img/cards/02BW016.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set2/en_us/img/cards/02BW016-full.png" + } + ], + "regions": [ + "Bilgewater" + ], + "regionRefs": [ + "Bilgewater" + ], + "attack": 1, + "cost": 3, + "health": 4, + "description": "When I'm summoned or Round Start: Grant me +0|+1 for each card you drew last round, then shuffle my stats.\r\n", + "descriptionRaw": "When I'm summoned or Round Start: Grant me +0|+1 for each card you drew last round, then shuffle my stats.\r\n", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "One prototype spun three bombs and then exploded. Later models had this early \"feature\" removed.", + "artistName": "Kudos Productions", + "name": "Slotbot", + "cardCode": "02BW016", + "keywords": [], + "keywordRefs": [], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "RARE", + "rarityRef": "Rare", + "subtypes": [], + "supertype": "", + "type": "Unit", + "collectible": true, + "set": "Set2" + }, + { + "associatedCards": [], + "associatedCardRefs": [ + "02BW036" + ], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set2/en_us/img/cards/02BW027.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set2/en_us/img/cards/02BW027-full.png" + } + ], + "regions": [ + "Bilgewater" + ], + "regionRefs": [ + "Bilgewater" + ], + "attack": 6, + "cost": 4, + "health": 6, + "description": "When I'm summoned, summon a Golden Narwhal for your opponent.", + "descriptionRaw": "When I'm summoned, summon a Golden Narwhal for your opponent.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "The gold that glitters beneath the waves is neither coin nor ingot, but the lustrous horn of the Slaughter Fleet captain's clever adversary.", + "artistName": "SIXMOREVODKA", + "name": "Hunting Fleet", + "cardCode": "02BW027", + "keywords": [], + "keywordRefs": [], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "COMMON", + "rarityRef": "Common", + "subtypes": [], + "supertype": "", + "type": "Unit", + "collectible": true, + "set": "Set2" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set2/en_us/img/cards/02BW050.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set2/en_us/img/cards/02BW050-full.png" + } + ], + "regions": [ + "Bilgewater" + ], + "regionRefs": [ + "Bilgewater" + ], + "attack": 3, + "cost": 7, + "health": 4, + "description": "Plunder: Reduce the cost of allies in your hand and deck by 2.", + "descriptionRaw": "Plunder: Reduce the cost of allies in your hand and deck by 2.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"Come with us on a musical journey! Enjoy tunes from across Runeterra! Just remember--coin's required for entry, and tips are deeply appreciated...\" - Show promoter", + "artistName": "Chin LikHui", + "name": "Smooth Soloist", + "cardCode": "02BW050", + "keywords": [ + "Elusive", + "Plunder" + ], + "keywordRefs": [ + "Elusive", + "Plunder" + ], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "RARE", + "rarityRef": "Rare", + "subtypes": [], + "supertype": "", + "type": "Unit", + "collectible": true, + "set": "Set2" + }, + { + "associatedCards": [], + "associatedCardRefs": [ + "02BW022" + ], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set2/en_us/img/cards/02BW015.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set2/en_us/img/cards/02BW015-full.png" + } + ], + "regions": [ + "Bilgewater" + ], + "regionRefs": [ + "Bilgewater" + ], + "attack": 3, + "cost": 7, + "health": 7, + "description": "When I'm summoned, draw a Miss Fortune.\r\nWhile I'm attacking, all your spells and skills deal 1 extra damage.", + "descriptionRaw": "When I'm summoned, draw a Miss Fortune.\r\nWhile I'm attacking, all your spells and skills deal 1 extra damage.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "There's no mistaking the Syren. Her broad pearly sails and polished woodwork leave her as sleek and decorated as the captain at her helm.", + "artistName": "SIXMOREVODKA", + "name": "The Syren", + "cardCode": "02BW015", + "keywords": [ + "Scout" + ], + "keywordRefs": [ + "Scout" + ], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "EPIC", + "rarityRef": "Epic", + "subtypes": [], + "supertype": "", + "type": "Unit", + "collectible": true, + "set": "Set2" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set2/en_us/img/cards/02BW010.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set2/en_us/img/cards/02BW010-full.png" + } + ], + "regions": [ + "Bilgewater" + ], + "regionRefs": [ + "Bilgewater" + ], + "attack": 1, + "cost": 1, + "health": 1, + "description": "Plunder: Grant me 2 random keywords.", + "descriptionRaw": "Plunder: Grant me 2 random keywords.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"His picture's been on the Bounty Board longer'n most, for he's a greedy, ruthless devil that won't let anyone or anything stand in his way. Worst of all? He's... He's cute, damn it.\" - Gangplank", + "artistName": "SIXMOREVODKA", + "name": "Plunder Poro", + "cardCode": "02BW010", + "keywords": [ + "Plunder" + ], + "keywordRefs": [ + "Plunder" + ], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "COMMON", + "rarityRef": "Common", + "subtypes": [ + "PORO" + ], + "supertype": "", + "type": "Unit", + "collectible": true, + "set": "Set2" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set2/en_us/img/cards/02BW009.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set2/en_us/img/cards/02BW009-full.png" + } + ], + "regions": [ + "Bilgewater" + ], + "regionRefs": [ + "Bilgewater" + ], + "attack": 1, + "cost": 1, + "health": 2, + "description": "When I'm summoned, draw 1 at the next Round Start and give it Fleeting.", + "descriptionRaw": "When I'm summoned, draw 1 at the next Round Start and give it Fleeting.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"It don't make no sense to me. I was knocking 'em in easy, but the last one just... wouldn't go. Not my day, I s'pose...\" - Brash Gambler", + "artistName": "Dao Le", + "name": "Pool Shark", + "cardCode": "02BW009", + "keywords": [], + "keywordRefs": [], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "COMMON", + "rarityRef": "Common", + "subtypes": [], + "supertype": "", + "type": "Unit", + "collectible": true, + "set": "Set2" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set2/en_us/img/cards/02BW005.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set2/en_us/img/cards/02BW005-full.png" + } + ], + "regions": [ + "Bilgewater" + ], + "regionRefs": [ + "Bilgewater" + ], + "attack": 2, + "cost": 2, + "health": 3, + "description": "When I'm summoned, grant the strongest enemy Vulnerable.", + "descriptionRaw": "When I'm summoned, grant the strongest enemy Vulnerable.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"This your picture? Oof, you're even rougher on the eyes than advertised--let's hope your head's worth my while.\"", + "artistName": "SIXMOREVODKA", + "name": "Hired Gun", + "cardCode": "02BW005", + "keywords": [], + "keywordRefs": [], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "COMMON", + "rarityRef": "Common", + "subtypes": [], + "supertype": "", + "type": "Unit", + "collectible": true, + "set": "Set2" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set2/en_us/img/cards/02BW039.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set2/en_us/img/cards/02BW039-full.png" + } + ], + "regions": [ + "Bilgewater" + ], + "regionRefs": [ + "Bilgewater" + ], + "attack": 4, + "cost": 3, + "health": 1, + "description": "When I'm summoned, create a random Sea Monster in hand.", + "descriptionRaw": "When I'm summoned, create a random Sea Monster in hand.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "The lure of fortune pulls countless crews out beyond the shallows. Those poor souls soon discover how terrifying the waters can be, and why so few return.", + "artistName": "SIXMOREVODKA", + "name": "Jaull Hunters", + "cardCode": "02BW039", + "keywords": [ + "Challenger" + ], + "keywordRefs": [ + "Challenger" + ], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "RARE", + "rarityRef": "Rare", + "subtypes": [], + "supertype": "", + "type": "Unit", + "collectible": true, + "set": "Set2" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set2/en_us/img/cards/02BW006.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set2/en_us/img/cards/02BW006-full.png" + } + ], + "regions": [ + "Bilgewater" + ], + "regionRefs": [ + "Bilgewater" + ], + "attack": 2, + "cost": 4, + "health": 2, + "description": "Play: Transform an ally into a random 5 cost follower.", + "descriptionRaw": "Play: Transform an ally into a random 5 cost follower.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"Marvolio? Where... Where are my hands?\"\n\"I will-a now make-a them appear! Tadaa! Ahem. Ta... daa...!\"\n\"...WHERE ARE MY HANDS?!\"\n\"OKAY, TIME-A TO GO! THANK-A YOU ALL SO VERY MUCH!\"", + "artistName": "Kudos Productions", + "name": "Mystifying Magician", + "cardCode": "02BW006", + "keywords": [], + "keywordRefs": [], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "RARE", + "rarityRef": "Rare", + "subtypes": [], + "supertype": "", + "type": "Unit", + "collectible": true, + "set": "Set2" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set2/en_us/img/cards/02BW036.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set2/en_us/img/cards/02BW036-full.png" + } + ], + "regions": [ + "Bilgewater" + ], + "regionRefs": [ + "Bilgewater" + ], + "attack": 2, + "cost": 2, + "health": 3, + "description": "", + "descriptionRaw": "", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "Legends say a pale, horned whale once stole from the Bearded Lady. As punishment, the Lady covered the greedy creature in glittering gold, so it would forever tempt the avarice of others.", + "artistName": "SIXMOREVODKA", + "name": "Golden Narwhal", + "cardCode": "02BW036", + "keywords": [ + "Elusive", + "Vulnerable" + ], + "keywordRefs": [ + "Elusive", + "Vulnerable" + ], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "COMMON", + "rarityRef": "Common", + "subtypes": [], + "supertype": "", + "type": "Unit", + "collectible": true, + "set": "Set2" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set2/en_us/img/cards/02BW033.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set2/en_us/img/cards/02BW033-full.png" + } + ], + "regions": [ + "Bilgewater" + ], + "regionRefs": [ + "Bilgewater" + ], + "attack": 2, + "cost": 2, + "health": 2, + "description": "When you draw an enemy card, reduce its cost by 1.\r\nPlunder: Nab 1.", + "descriptionRaw": "When you draw an enemy card, reduce its cost by 1.\r\nPlunder: Nab 1.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"If you want it, I've got it! Even got some 'special stock'.... Just remember, you didn't get it from me!\"", + "artistName": "SIXMOREVODKA", + "name": "Black Market Merchant", + "cardCode": "02BW033", + "keywords": [ + "Plunder" + ], + "keywordRefs": [ + "Plunder" + ], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "RARE", + "rarityRef": "Rare", + "subtypes": [], + "supertype": "", + "type": "Unit", + "collectible": true, + "set": "Set2" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set2/en_us/img/cards/02BW060T1.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set2/en_us/img/cards/02BW060T1-full.png" + } + ], + "regions": [ + "Bilgewater" + ], + "regionRefs": [ + "Bilgewater" + ], + "attack": 0, + "cost": 0, + "health": 0, + "description": "Deal 1 to the enemy Nexus.", + "descriptionRaw": "Deal 1 to the enemy Nexus.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"Captain's orders: bullet to the face!\" - Crackshot Corsair", + "artistName": "Kudos Productions", + "name": "Crackshot", + "cardCode": "02BW060T1", + "keywords": [ + "Skill" + ], + "keywordRefs": [ + "Skill" + ], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "None", + "rarityRef": "None", + "subtypes": [], + "supertype": "", + "type": "Ability", + "collectible": false, + "set": "Set2" + }, + { + "associatedCards": [], + "associatedCardRefs": [ + "02BW032T3", + "02BW032T2", + "02BW032T1", + "02BW032T4" + ], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set2/en_us/img/cards/02BW032.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set2/en_us/img/cards/02BW032-full.png" + } + ], + "regions": [ + "Bilgewater" + ], + "regionRefs": [ + "Bilgewater" + ], + "attack": 5, + "cost": 5, + "health": 4, + "description": "When I'm summoned, summon a Powder Keg.", + "descriptionRaw": "When I'm summoned, summon a Powder Keg.", + "levelupDescription": "You've damaged the enemy Nexus in 5 different rounds.", + "levelupDescriptionRaw": "You've damaged the enemy Nexus in 5 different rounds.", + "flavorText": "\"Don't stare too long, lest he catches you lookin'. And don't speak ill of him, for he hears all Bilgewater's whispers. Here he comes. Chin low. Eyes lower.\" - Dreadway deckhand", + "artistName": "SIXMOREVODKA", + "name": "Gangplank", + "cardCode": "02BW032", + "keywords": [ + "Overwhelm" + ], + "keywordRefs": [ + "Overwhelm" + ], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "Champion", + "rarityRef": "Champion", + "subtypes": [], + "supertype": "Champion", + "type": "Unit", + "collectible": true, + "set": "Set2" + }, + { + "associatedCards": [], + "associatedCardRefs": [ + "02BW032", + "02BW032T3" + ], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set2/en_us/img/cards/02BW032T2.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set2/en_us/img/cards/02BW032T2-full.png" + } + ], + "regions": [ + "Bilgewater" + ], + "regionRefs": [ + "Bilgewater" + ], + "attack": 0, + "cost": 1, + "health": 0, + "description": "Deal 1 to anything.\r\nIf this kills it, deal 1 to the enemy Nexus.\r\nCreate a Gangplank in your deck.", + "descriptionRaw": "Deal 1 to anything.\r\nIf this kills it, deal 1 to the enemy Nexus.\r\nCreate a Gangplank in your deck.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "Gangplank's version of mediation is often brief, and always bloody.", + "artistName": "Kudos Productions", + "name": "Gangplank's Parrrley", + "cardCode": "02BW032T2", + "keywords": [ + "Slow" + ], + "keywordRefs": [ + "Slow" + ], + "spellSpeed": "Slow", + "spellSpeedRef": "Slow", + "rarity": "None", + "rarityRef": "None", + "subtypes": [], + "supertype": "Champion", + "type": "Spell", + "collectible": false, + "set": "Set2" + }, + { + "associatedCards": [], + "associatedCardRefs": [ + "02BW032T1", + "02BW032T4", + "02BW032", + "02BW032T2" + ], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set2/en_us/img/cards/02BW032T3.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set2/en_us/img/cards/02BW032T3-full.png" + } + ], + "regions": [ + "Bilgewater" + ], + "regionRefs": [ + "Bilgewater" + ], + "attack": 6, + "cost": 5, + "health": 5, + "description": "When I'm summoned or Round Start: Summon a Powder Keg.\r\nAttack: Deal 1 to all enemies and the enemy Nexus.", + "descriptionRaw": "When I'm summoned or Round Start: Summon a Powder Keg.\r\nAttack: Deal 1 to all enemies and the enemy Nexus.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"Seen his eyes enough to know. Ain't nothin' but pure anger there. Someday, the boss'll do to Bilgewater what it did to him.\" - Petty Officer", + "artistName": "SIXMOREVODKA", + "name": "Gangplank", + "cardCode": "02BW032T3", + "keywords": [ + "Overwhelm" + ], + "keywordRefs": [ + "Overwhelm" + ], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "None", + "rarityRef": "None", + "subtypes": [], + "supertype": "Champion", + "type": "Unit", + "collectible": false, + "set": "Set2" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set2/en_us/img/cards/02BW032T1.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set2/en_us/img/cards/02BW032T1-full.png" + } + ], + "regions": [ + "Bilgewater" + ], + "regionRefs": [ + "Bilgewater" + ], + "attack": 0, + "cost": 0, + "health": 1, + "description": "Powder Kegs stack.\r\nAll of your spells and skills deal 1 extra damage.\r\nDestroy me when your spell or skill damages enemies or the enemy Nexus.", + "descriptionRaw": "Powder Kegs stack.\r\nAll of your spells and skills deal 1 extra damage.\r\nDestroy me when your spell or skill damages enemies or the enemy Nexus.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"Where there's a keg, there's a way.\" - Bilgewater saying", + "artistName": "Kudos Productions", + "name": "Powder Keg", + "cardCode": "02BW032T1", + "keywords": [ + "Immobile", + "Vulnerable" + ], + "keywordRefs": [ + "Immobile", + "Vulnerable" + ], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "None", + "rarityRef": "None", + "subtypes": [], + "supertype": "", + "type": "Unit", + "collectible": false, + "set": "Set2" + }, + { + "associatedCards": [], + "associatedCardRefs": [ + "02BW032T1" + ], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set2/en_us/img/cards/02BW032T4.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set2/en_us/img/cards/02BW032T4-full.png" + } + ], + "regions": [ + "Bilgewater" + ], + "regionRefs": [ + "Bilgewater" + ], + "attack": 0, + "cost": 0, + "health": 0, + "description": "Deal 1 to all enemies and the enemy Nexus.", + "descriptionRaw": "Deal 1 to all enemies and the enemy Nexus.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"Blow 'em to the depths!\" - Gangplank", + "artistName": "Kudos Productions", + "name": "Powderful Explosion", + "cardCode": "02BW032T4", + "keywords": [ + "Skill" + ], + "keywordRefs": [ + "Skill" + ], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "None", + "rarityRef": "None", + "subtypes": [], + "supertype": "", + "type": "Ability", + "collectible": false, + "set": "Set2" + }, + { + "associatedCards": [], + "associatedCardRefs": [ + "02BW022T4", + "02BW022T3", + "02BW022T2", + "02BW022T1" + ], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set2/en_us/img/cards/02BW022.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set2/en_us/img/cards/02BW022-full.png" + } + ], + "regions": [ + "Bilgewater" + ], + "regionRefs": [ + "Bilgewater" + ], + "attack": 3, + "cost": 3, + "health": 3, + "description": "When allies attack, deal 1 to all battling enemies and the enemy Nexus.", + "descriptionRaw": "When allies attack, deal 1 to all battling enemies and the enemy Nexus.", + "levelupDescription": "I've seen you attack 4 times.", + "levelupDescriptionRaw": "I've seen you attack 4 times.", + "flavorText": "\"'Miss' Fortune? Out here, you call me 'Captain'.\"", + "artistName": "SIXMOREVODKA", + "name": "Miss Fortune", + "cardCode": "02BW022", + "keywords": [], + "keywordRefs": [], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "Champion", + "rarityRef": "Champion", + "subtypes": [], + "supertype": "Champion", + "type": "Unit", + "collectible": true, + "set": "Set2" + }, + { + "associatedCards": [], + "associatedCardRefs": [ + "02BW022", + "02BW022T2" + ], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set2/en_us/img/cards/02BW022T3.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set2/en_us/img/cards/02BW022T3-full.png" + } + ], + "regions": [ + "Bilgewater" + ], + "regionRefs": [ + "Bilgewater" + ], + "attack": 0, + "cost": 2, + "health": 0, + "description": "Deal 1 to three different randomly targeted enemies or the enemy Nexus.\r\nCreate a Miss Fortune in your deck.", + "descriptionRaw": "Deal 1 to three different randomly targeted enemies or the enemy Nexus.\r\nCreate a Miss Fortune in your deck.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"Guns blazin'!\" - Miss Fortune", + "artistName": "Kudos Productions", + "name": "Miss Fortune's Make it Rain", + "cardCode": "02BW022T3", + "keywords": [ + "Fast" + ], + "keywordRefs": [ + "Fast" + ], + "spellSpeed": "Fast", + "spellSpeedRef": "Fast", + "rarity": "None", + "rarityRef": "None", + "subtypes": [], + "supertype": "Champion", + "type": "Spell", + "collectible": false, + "set": "Set2" + }, + { + "associatedCards": [], + "associatedCardRefs": [ + "02BW022T4", + "02BW022", + "02BW022T3" + ], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set2/en_us/img/cards/02BW022T2.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set2/en_us/img/cards/02BW022T2-full.png" + } + ], + "regions": [ + "Bilgewater" + ], + "regionRefs": [ + "Bilgewater" + ], + "attack": 4, + "cost": 3, + "health": 4, + "description": "When allies attack, deal 1 three times to all battling enemies and the enemy Nexus.", + "descriptionRaw": "When allies attack, deal 1 three times to all battling enemies and the enemy Nexus.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"Most people don't get close enough to see the craftsmanship on these guns. Lucky you.\"", + "artistName": "SIXMOREVODKA", + "name": "Miss Fortune", + "cardCode": "02BW022T2", + "keywords": [ + "Overwhelm" + ], + "keywordRefs": [ + "Overwhelm" + ], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "None", + "rarityRef": "None", + "subtypes": [], + "supertype": "Champion", + "type": "Unit", + "collectible": false, + "set": "Set2" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set2/en_us/img/cards/02BW022T4.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set2/en_us/img/cards/02BW022T4-full.png" + } + ], + "regions": [ + "Bilgewater" + ], + "regionRefs": [ + "Bilgewater" + ], + "attack": 0, + "cost": 0, + "health": 0, + "description": "Deal 1 three times to all battling enemies and the enemy Nexus.", + "descriptionRaw": "Deal 1 three times to all battling enemies and the enemy Nexus.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "Even if you fail to hear the bawdy cries of her crew, there's no way you'll miss her laughter...", + "artistName": "Kudos Productions", + "name": "Bullet Time", + "cardCode": "02BW022T4", + "keywords": [ + "Skill" + ], + "keywordRefs": [ + "Skill" + ], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "None", + "rarityRef": "None", + "subtypes": [], + "supertype": "", + "type": "Ability", + "collectible": false, + "set": "Set2" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set2/en_us/img/cards/02BW022T1.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set2/en_us/img/cards/02BW022T1-full.png" + } + ], + "regions": [ + "Bilgewater" + ], + "regionRefs": [ + "Bilgewater" + ], + "attack": 0, + "cost": 0, + "health": 0, + "description": "Deal 1 to all battling enemies and the enemy Nexus.", + "descriptionRaw": "Deal 1 to all battling enemies and the enemy Nexus.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"A little something to remember me by.\" - Miss Fortune", + "artistName": "Kudos Productions", + "name": "Love Tap", + "cardCode": "02BW022T1", + "keywords": [ + "Skill" + ], + "keywordRefs": [ + "Skill" + ], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "None", + "rarityRef": "None", + "subtypes": [], + "supertype": "", + "type": "Ability", + "collectible": false, + "set": "Set2" + }, + { + "associatedCards": [], + "associatedCardRefs": [ + "02BW046T3", + "02BW046T1", + "02BW025", + "02BW046T2" + ], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set2/en_us/img/cards/02BW046.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set2/en_us/img/cards/02BW046-full.png" + } + ], + "regions": [ + "Bilgewater", + "Bandle City" + ], + "regionRefs": [ + "Bilgewater", + "BandleCity" + ], + "attack": 2, + "cost": 1, + "health": 1, + "description": "When you play a spell, stop all enemy spells and skills targeting me and give me Elusive this round.", + "descriptionRaw": "When you play a spell, stop all enemy spells and skills targeting me and give me Elusive this round.", + "levelupDescription": "You've played 6+ spells.", + "levelupDescriptionRaw": "You've played 6+ spells.", + "flavorText": "Of all Bilgewater's legendary figures, Fizz is the most mercurial. Some sailors curse him for the countless brutal wrecks littering the coast...", + "artistName": "SIXMOREVODKA", + "name": "Fizz", + "cardCode": "02BW046", + "keywords": [ + "Imbue" + ], + "keywordRefs": [ + "Imbue" + ], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "Champion", + "rarityRef": "Champion", + "subtypes": [ + "YORDLE" + ], + "supertype": "Champion", + "type": "Unit", + "collectible": true, + "set": "Set2" + }, + { + "associatedCards": [], + "associatedCardRefs": [ + "02BW046", + "02BW046T1", + "02BW025", + "02BW046T2" + ], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set2/en_us/img/cards/02BW046T3.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set2/en_us/img/cards/02BW046T3-full.png" + } + ], + "regions": [ + "Bilgewater", + "Bandle City" + ], + "regionRefs": [ + "Bilgewater", + "BandleCity" + ], + "attack": 3, + "cost": 1, + "health": 2, + "description": "When you play a spell, stop all enemy spells and skills targeting me and give me Elusive this round.\r\nNexus Strike: Create a Chum the Waters in hand.", + "descriptionRaw": "When you play a spell, stop all enemy spells and skills targeting me and give me Elusive this round.\r\nNexus Strike: Create a Chum the Waters in hand.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "...while others insist he's just a playful child who safeguards others on their journeys home.", + "artistName": "SIXMOREVODKA", + "name": "Fizz", + "cardCode": "02BW046T3", + "keywords": [ + "Imbue" + ], + "keywordRefs": [ + "Imbue" + ], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "None", + "rarityRef": "None", + "subtypes": [ + "YORDLE" + ], + "supertype": "Champion", + "type": "Unit", + "collectible": false, + "set": "Set2" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set2/en_us/img/cards/02BW046T2.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set2/en_us/img/cards/02BW046T2-full.png" + } + ], + "regions": [ + "Bilgewater" + ], + "regionRefs": [ + "Bilgewater" + ], + "attack": 5, + "cost": 4, + "health": 2, + "description": "", + "descriptionRaw": "", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "Though there may be ambiguity surrounding Fizz's temperament and intentions, there's absolutely none when it comes to Longtooth.", + "artistName": "SIXMOREVODKA", + "name": "Longtooth", + "cardCode": "02BW046T2", + "keywords": [ + "Overwhelm" + ], + "keywordRefs": [ + "Overwhelm" + ], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "None", + "rarityRef": "None", + "subtypes": [], + "supertype": "", + "type": "Unit", + "collectible": false, + "set": "Set2" + }, + { + "associatedCards": [], + "associatedCardRefs": [ + "02BW046", + "02BW046T3" + ], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set2/en_us/img/cards/02BW046T1.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set2/en_us/img/cards/02BW046T1-full.png" + } + ], + "regions": [ + "Bilgewater" + ], + "regionRefs": [ + "Bilgewater" + ], + "attack": 0, + "cost": 4, + "health": 0, + "description": "Remove an attacking ally from combat to Rally.\r\nCreate a Fizz in your deck.", + "descriptionRaw": "Remove an attacking ally from combat to Rally.\r\nCreate a Fizz in your deck.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"One jump ahead of you!\" - Fizz", + "artistName": "Max Grecke", + "name": "Fizz's Playful Trickster", + "cardCode": "02BW046T1", + "keywords": [ + "Fast" + ], + "keywordRefs": [ + "Fast" + ], + "spellSpeed": "Fast", + "spellSpeedRef": "Fast", + "rarity": "None", + "rarityRef": "None", + "subtypes": [], + "supertype": "Champion", + "type": "Spell", + "collectible": false, + "set": "Set2" + }, + { + "associatedCards": [], + "associatedCardRefs": [ + "02BW026T2", + "02BW026T4", + "02BW026T5", + "02BW026T3", + "02BW026T1" + ], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set2/en_us/img/cards/02BW026.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set2/en_us/img/cards/02BW026-full.png" + } + ], + "regions": [ + "Bilgewater" + ], + "regionRefs": [ + "Bilgewater" + ], + "attack": 2, + "cost": 4, + "health": 2, + "description": "Play: Play a Destiny Card.", + "descriptionRaw": "Play: Play a Destiny Card.", + "levelupDescription": "I've seen you draw 9+ cards.", + "levelupDescriptionRaw": "I've seen you draw 9+ cards.", + "flavorText": "\"Now, watch the hands, count the cards, and try to keep up. And just remember...\"", + "artistName": "SIXMOREVODKA", + "name": "Twisted Fate", + "cardCode": "02BW026", + "keywords": [ + "Quick Attack" + ], + "keywordRefs": [ + "QuickStrike" + ], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "Champion", + "rarityRef": "Champion", + "subtypes": [], + "supertype": "Champion", + "type": "Unit", + "collectible": true, + "set": "Set2" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set2/en_us/img/cards/02BW026T5.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set2/en_us/img/cards/02BW026T5-full.png" + } + ], + "regions": [ + "Bilgewater" + ], + "regionRefs": [ + "Bilgewater" + ], + "attack": 0, + "cost": 0, + "health": 0, + "description": "Deal 2 and Stun the strongest enemy.", + "descriptionRaw": "Deal 2 and Stun the strongest enemy.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"All that glitters...\" - Twisted Fate", + "artistName": "Kudos Productions", + "name": "Gold Card", + "cardCode": "02BW026T5", + "keywords": [ + "Skill" + ], + "keywordRefs": [ + "Skill" + ], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "None", + "rarityRef": "None", + "subtypes": [], + "supertype": "", + "type": "Ability", + "collectible": false, + "set": "Set2" + }, + { + "associatedCards": [], + "associatedCardRefs": [ + "02BW026", + "02BW026T1", + "02BW026T5", + "02BW026T4", + "02BW026T2" + ], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set2/en_us/img/cards/02BW026T3.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set2/en_us/img/cards/02BW026T3-full.png" + } + ], + "regions": [ + "Bilgewater" + ], + "regionRefs": [ + "Bilgewater" + ], + "attack": 3, + "cost": 4, + "health": 3, + "description": "Each round, the first 3 times you play a card, I play a Destiny Card.", + "descriptionRaw": "Each round, the first 3 times you play a card, I play a Destiny Card.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"...it ain't gamblin' if you can't lose.\"", + "artistName": "SIXMOREVODKA", + "name": "Twisted Fate", + "cardCode": "02BW026T3", + "keywords": [ + "Quick Attack" + ], + "keywordRefs": [ + "QuickStrike" + ], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "None", + "rarityRef": "None", + "subtypes": [], + "supertype": "Champion", + "type": "Unit", + "collectible": false, + "set": "Set2" + }, + { + "associatedCards": [], + "associatedCardRefs": [ + "02BW026T3", + "02BW026" + ], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set2/en_us/img/cards/02BW026T1.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set2/en_us/img/cards/02BW026T1-full.png" + } + ], + "regions": [ + "Bilgewater" + ], + "regionRefs": [ + "Bilgewater" + ], + "attack": 0, + "cost": 2, + "health": 0, + "description": "Place a card from hand into your deck to draw 2 at the next Round Start. Give them Fleeting.\r\nCreate a Twisted Fate in your deck.", + "descriptionRaw": "Place a card from hand into your deck to draw 2 at the next Round Start. Give them Fleeting.\r\nCreate a Twisted Fate in your deck.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"I make my own luck.\" - Twisted Fate", + "artistName": "Kudos Productions", + "name": "Twisted Fate's Pick a Card", + "cardCode": "02BW026T1", + "keywords": [ + "Burst" + ], + "keywordRefs": [ + "Burst" + ], + "spellSpeed": "Burst", + "spellSpeedRef": "Burst", + "rarity": "None", + "rarityRef": "None", + "subtypes": [], + "supertype": "Champion", + "type": "Spell", + "collectible": false, + "set": "Set2" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set2/en_us/img/cards/02BW026T2.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set2/en_us/img/cards/02BW026T2-full.png" + } + ], + "regions": [ + "Bilgewater" + ], + "regionRefs": [ + "Bilgewater" + ], + "attack": 0, + "cost": 0, + "health": 0, + "description": "Refill 1 spell mana.\r\nDraw 1.", + "descriptionRaw": "Refill 1 spell mana.\r\nDraw 1.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"Blue as the Serpentine.\" - Twisted Fate", + "artistName": "Kudos Productions", + "name": "Blue Card", + "cardCode": "02BW026T2", + "keywords": [ + "Skill" + ], + "keywordRefs": [ + "Skill" + ], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "None", + "rarityRef": "None", + "subtypes": [], + "supertype": "", + "type": "Ability", + "collectible": false, + "set": "Set2" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set2/en_us/img/cards/02BW026T4.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set2/en_us/img/cards/02BW026T4-full.png" + } + ], + "regions": [ + "Bilgewater" + ], + "regionRefs": [ + "Bilgewater" + ], + "attack": 0, + "cost": 0, + "health": 0, + "description": "Deal 1 to all enemies and the enemy Nexus.", + "descriptionRaw": "Deal 1 to all enemies and the enemy Nexus.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"Somethin' for everyone.\" - Twisted Fate", + "artistName": "Kudos Productions", + "name": "Red Card", + "cardCode": "02BW026T4", + "keywords": [ + "Skill" + ], + "keywordRefs": [ + "Skill" + ], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "None", + "rarityRef": "None", + "subtypes": [], + "supertype": "", + "type": "Ability", + "collectible": false, + "set": "Set2" + }, + { + "associatedCards": [], + "associatedCardRefs": [ + "02BW053T1", + "02BW053T2" + ], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set2/en_us/img/cards/02BW053.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set2/en_us/img/cards/02BW053-full.png" + } + ], + "regions": [ + "Bilgewater" + ], + "regionRefs": [ + "Bilgewater" + ], + "attack": 0, + "cost": 7, + "health": 12, + "description": "", + "descriptionRaw": "", + "levelupDescription": "When you are Deep. When I level up, copy Tossed allies that cost 4+ into your deck.", + "levelupDescriptionRaw": "When you are Deep. When I level up, copy Tossed allies that cost 4+ into your deck.", + "flavorText": "\"'Twas an anchor what broke the Rancour. Pulled Finn down, an' all. Just a handful of us left now, but night's coming... and the cold. I'm sorry, Ma. You were right. The Titan lives.\" - Recovered note", + "artistName": "SIXMOREVODKA", + "name": "Nautilus", + "cardCode": "02BW053", + "keywords": [ + "Tough", + "Fearsome" + ], + "keywordRefs": [ + "Tough", + "Fearsome" + ], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "Champion", + "rarityRef": "Champion", + "subtypes": [], + "supertype": "Champion", + "type": "Unit", + "collectible": true, + "set": "Set2" + }, + { + "associatedCards": [], + "associatedCardRefs": [ + "02BW053", + "02BW053T1" + ], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set2/en_us/img/cards/02BW053T2.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set2/en_us/img/cards/02BW053T2-full.png" + } + ], + "regions": [ + "Bilgewater" + ], + "regionRefs": [ + "Bilgewater" + ], + "attack": 0, + "cost": 4, + "health": 0, + "description": "Stun an enemy.\r\nPlace that unit into the enemy deck if you have a Nautilus.\r\nCreate a Nautilus into your deck.", + "descriptionRaw": "Stun an enemy.\r\nPlace that unit into the enemy deck if you have a Nautilus.\r\nCreate a Nautilus into your deck.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"Drag them down...\" - Nautilus", + "artistName": "Kudos Productions", + "name": "Nautilus' Riptide", + "cardCode": "02BW053T2", + "keywords": [ + "Fast" + ], + "keywordRefs": [ + "Fast" + ], + "spellSpeed": "Fast", + "spellSpeedRef": "Fast", + "rarity": "None", + "rarityRef": "None", + "subtypes": [], + "supertype": "Champion", + "type": "Spell", + "collectible": false, + "set": "Set2" + }, + { + "associatedCards": [], + "associatedCardRefs": [ + "02BW053", + "02BW053T2" + ], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set2/en_us/img/cards/02BW053T1.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set2/en_us/img/cards/02BW053T1-full.png" + } + ], + "regions": [ + "Bilgewater" + ], + "regionRefs": [ + "Bilgewater" + ], + "attack": 13, + "cost": 7, + "health": 13, + "description": "Sea Monster allies cost 4 less.", + "descriptionRaw": "Sea Monster allies cost 4 less.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "All pay the tithe, one way or another.", + "artistName": "SIXMOREVODKA", + "name": "Nautilus", + "cardCode": "02BW053T1", + "keywords": [ + "Tough", + "Fearsome", + "Missing Translation" + ], + "keywordRefs": [ + "Tough", + "Fearsome", + "AuraVisualFakeKeyword" + ], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "None", + "rarityRef": "None", + "subtypes": [], + "supertype": "Champion", + "type": "Unit", + "collectible": false, + "set": "Set2" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set2/en_us/img/cards/02BW061.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set2/en_us/img/cards/02BW061-full.png" + } + ], + "regions": [ + "Bilgewater" + ], + "regionRefs": [ + "Bilgewater" + ], + "attack": 0, + "cost": 3, + "health": 0, + "description": "When drawn, costs 1 less this round.\r\nGrant an ally +2|+1.", + "descriptionRaw": "When drawn, costs 1 less this round.\r\nGrant an ally +2|+1.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"Ain't nothin' like a hot streak to keep the chips comin'.\" - Twisted Fate", + "artistName": "Kudos Productions", + "name": "Pocket Aces", + "cardCode": "02BW061", + "keywords": [ + "Burst" + ], + "keywordRefs": [ + "Burst" + ], + "spellSpeed": "Burst", + "spellSpeedRef": "Burst", + "rarity": "COMMON", + "rarityRef": "Common", + "subtypes": [], + "supertype": "", + "type": "Spell", + "collectible": true, + "set": "Set2" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set2/en_us/img/cards/02BW024.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set2/en_us/img/cards/02BW024-full.png" + } + ], + "regions": [ + "Bilgewater" + ], + "regionRefs": [ + "Bilgewater" + ], + "attack": 0, + "cost": 3, + "health": 0, + "description": "Summon 2 random 1 cost followers.", + "descriptionRaw": "Summon 2 random 1 cost followers.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"Oi, Gav--ain't that the fella we're after? Looks like he found a friend.\"\n\"Is that... Is that a shark-man, Baz?\"\n\"It's also a bunch more gold, mate. Come on...\" - Baz and Gav, aspiring bounty hunters", + "artistName": "Kudos Productions", + "name": "Double Trouble", + "cardCode": "02BW024", + "keywords": [ + "Slow" + ], + "keywordRefs": [ + "Slow" + ], + "spellSpeed": "Slow", + "spellSpeedRef": "Slow", + "rarity": "RARE", + "rarityRef": "Rare", + "subtypes": [], + "supertype": "", + "type": "Spell", + "collectible": true, + "set": "Set2" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set2/en_us/img/cards/02BW003.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set2/en_us/img/cards/02BW003-full.png" + } + ], + "regions": [ + "Bilgewater" + ], + "regionRefs": [ + "Bilgewater" + ], + "attack": 0, + "cost": 6, + "health": 0, + "description": "Plunder: Recall ANY follower into your hand.", + "descriptionRaw": "Plunder: Recall ANY follower into your hand.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"Yer workin' fer us now!\" - Petty Officer", + "artistName": "Kudos Productions", + "name": "Strong-arm", + "cardCode": "02BW003", + "keywords": [ + "Slow", + "Plunder" + ], + "keywordRefs": [ + "Slow", + "Plunder" + ], + "spellSpeed": "Slow", + "spellSpeedRef": "Slow", + "rarity": "RARE", + "rarityRef": "Rare", + "subtypes": [], + "supertype": "", + "type": "Spell", + "collectible": true, + "set": "Set2" + }, + { + "associatedCards": [], + "associatedCardRefs": [ + "02BW046T2" + ], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set2/en_us/img/cards/02BW025.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set2/en_us/img/cards/02BW025-full.png" + } + ], + "regions": [ + "Bilgewater" + ], + "regionRefs": [ + "Bilgewater" + ], + "attack": 0, + "cost": 4, + "health": 0, + "description": "Grant an enemy Vulnerable and summon Longtooth.", + "descriptionRaw": "Grant an enemy Vulnerable and summon Longtooth.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"Shark!\" - Fizz", + "artistName": "Kudos Productions", + "name": "Chum the Waters", + "cardCode": "02BW025", + "keywords": [ + "Slow" + ], + "keywordRefs": [ + "Slow" + ], + "spellSpeed": "Slow", + "spellSpeedRef": "Slow", + "rarity": "COMMON", + "rarityRef": "Common", + "subtypes": [], + "supertype": "", + "type": "Spell", + "collectible": true, + "set": "Set2" + }, + { + "associatedCards": [], + "associatedCardRefs": [ + "02BW032T1" + ], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set2/en_us/img/cards/02BW012.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set2/en_us/img/cards/02BW012-full.png" + } + ], + "regions": [ + "Bilgewater" + ], + "regionRefs": [ + "Bilgewater" + ], + "attack": 0, + "cost": 2, + "health": 0, + "description": "Summon 2 Powder Kegs.", + "descriptionRaw": "Summon 2 Powder Kegs.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"Barrel!\" - Gangplank", + "artistName": "Kudos Productions", + "name": "More Powder!", + "cardCode": "02BW012", + "keywords": [ + "Slow" + ], + "keywordRefs": [ + "Slow" + ], + "spellSpeed": "Slow", + "spellSpeedRef": "Slow", + "rarity": "COMMON", + "rarityRef": "Common", + "subtypes": [], + "supertype": "", + "type": "Spell", + "collectible": true, + "set": "Set2" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set2/en_us/img/cards/02BW018.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set2/en_us/img/cards/02BW018-full.png" + } + ], + "regions": [ + "Bilgewater" + ], + "regionRefs": [ + "Bilgewater" + ], + "attack": 0, + "cost": 1, + "health": 0, + "description": "Deal 1 to anything.\r\nIf this kills it, deal 1 to the enemy Nexus.", + "descriptionRaw": "Deal 1 to anything.\r\nIf this kills it, deal 1 to the enemy Nexus.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "Gangplank's version of mediation is often brief, and always bloody.", + "artistName": "Kudos Productions", + "name": "Parrrley", + "cardCode": "02BW018", + "keywords": [ + "Slow" + ], + "keywordRefs": [ + "Slow" + ], + "spellSpeed": "Slow", + "spellSpeedRef": "Slow", + "rarity": "COMMON", + "rarityRef": "Common", + "subtypes": [], + "supertype": "", + "type": "Spell", + "collectible": true, + "set": "Set2" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set2/en_us/img/cards/02BW048.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set2/en_us/img/cards/02BW048-full.png" + } + ], + "regions": [ + "Bilgewater" + ], + "regionRefs": [ + "Bilgewater" + ], + "attack": 0, + "cost": 1, + "health": 0, + "description": "Summon a random 1 cost follower.", + "descriptionRaw": "Summon a random 1 cost follower.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"Whatcha think, Baz? He don't look so tough.\"\n\"Ya sure, Gav? He broke out of prison...\"\n\"Means he's wily, not tough. Come on!\" - Baz and Gav, aspiring bounty hunters", + "artistName": "Kudos Productions", + "name": "Jailbreak", + "cardCode": "02BW048", + "keywords": [ + "Slow" + ], + "keywordRefs": [ + "Slow" + ], + "spellSpeed": "Slow", + "spellSpeedRef": "Slow", + "rarity": "COMMON", + "rarityRef": "Common", + "subtypes": [], + "supertype": "", + "type": "Spell", + "collectible": true, + "set": "Set2" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set2/en_us/img/cards/02BW043.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set2/en_us/img/cards/02BW043-full.png" + } + ], + "regions": [ + "Bilgewater" + ], + "regionRefs": [ + "Bilgewater" + ], + "attack": 0, + "cost": 2, + "health": 0, + "description": "Place a card from hand into your deck to draw 2 at the next Round Start. Give them Fleeting.", + "descriptionRaw": "Place a card from hand into your deck to draw 2 at the next Round Start. Give them Fleeting.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"I make my own luck.\" - Twisted Fate", + "artistName": "Kudos Productions", + "name": "Pick a Card", + "cardCode": "02BW043", + "keywords": [ + "Burst" + ], + "keywordRefs": [ + "Burst" + ], + "spellSpeed": "Burst", + "spellSpeedRef": "Burst", + "rarity": "RARE", + "rarityRef": "Rare", + "subtypes": [], + "supertype": "", + "type": "Spell", + "collectible": true, + "set": "Set2" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set2/en_us/img/cards/02BW051.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set2/en_us/img/cards/02BW051-full.png" + } + ], + "regions": [ + "Bilgewater" + ], + "regionRefs": [ + "Bilgewater" + ], + "attack": 0, + "cost": 4, + "health": 0, + "description": "Remove an attacking ally from combat to Rally.", + "descriptionRaw": "Remove an attacking ally from combat to Rally.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"One jump ahead of you!\" - Fizz", + "artistName": "Max Grecke", + "name": "Playful Trickster", + "cardCode": "02BW051", + "keywords": [ + "Fast" + ], + "keywordRefs": [ + "Fast" + ], + "spellSpeed": "Fast", + "spellSpeedRef": "Fast", + "rarity": "RARE", + "rarityRef": "Rare", + "subtypes": [], + "supertype": "", + "type": "Spell", + "collectible": true, + "set": "Set2" + }, + { + "associatedCards": [], + "associatedCardRefs": [ + "02BW053" + ], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set2/en_us/img/cards/02BW054.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set2/en_us/img/cards/02BW054-full.png" + } + ], + "regions": [ + "Bilgewater" + ], + "regionRefs": [ + "Bilgewater" + ], + "attack": 0, + "cost": 4, + "health": 0, + "description": "Stun an enemy.\r\nPlace that unit into the enemy deck if you have a Nautilus.", + "descriptionRaw": "Stun an enemy.\r\nPlace that unit into the enemy deck if you have a Nautilus.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"Drag them down...\" - Nautilus", + "artistName": "Kudos Productions", + "name": "Riptide", + "cardCode": "02BW054", + "keywords": [ + "Fast" + ], + "keywordRefs": [ + "Fast" + ], + "spellSpeed": "Fast", + "spellSpeedRef": "Fast", + "rarity": "RARE", + "rarityRef": "Rare", + "subtypes": [], + "supertype": "", + "type": "Spell", + "collectible": true, + "set": "Set2" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set2/en_us/img/cards/02BW042.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set2/en_us/img/cards/02BW042-full.png" + } + ], + "regions": [ + "Bilgewater" + ], + "regionRefs": [ + "Bilgewater" + ], + "attack": 0, + "cost": 7, + "health": 0, + "description": "This round, grow all allies' Power and Health to the number of other spells you've played this game. ", + "descriptionRaw": "This round, grow all allies' Power and Health to the number of other spells you've played this game. ", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "The currents and tides around Bilgewater are rightly feared for their strength and sudden turns. But no sailor knows the true power within those waters.", + "artistName": "Kudos Productions", + "name": "Mind Meld", + "cardCode": "02BW042", + "keywords": [ + "Slow" + ], + "keywordRefs": [ + "Slow" + ], + "spellSpeed": "Slow", + "spellSpeedRef": "Slow", + "rarity": "EPIC", + "rarityRef": "Epic", + "subtypes": [], + "supertype": "", + "type": "Spell", + "collectible": true, + "set": "Set2" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set2/en_us/img/cards/02BW059.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set2/en_us/img/cards/02BW059-full.png" + } + ], + "regions": [ + "Bilgewater" + ], + "regionRefs": [ + "Bilgewater" + ], + "attack": 0, + "cost": 7, + "health": 0, + "description": "Toss 3.\r\nDeal 7 to a unit.", + "descriptionRaw": "Toss 3.\r\nDeal 7 to a unit.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"If it sinks 'em, it was worth it.\" - Bilgewater saying", + "artistName": "Kudos Productions", + "name": "Scrapshot", + "cardCode": "02BW059", + "keywords": [ + "Fast" + ], + "keywordRefs": [ + "Fast" + ], + "spellSpeed": "Fast", + "spellSpeedRef": "Fast", + "rarity": "RARE", + "rarityRef": "Rare", + "subtypes": [], + "supertype": "", + "type": "Spell", + "collectible": true, + "set": "Set2" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set2/en_us/img/cards/02BW023.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set2/en_us/img/cards/02BW023-full.png" + } + ], + "regions": [ + "Bilgewater" + ], + "regionRefs": [ + "Bilgewater" + ], + "attack": 0, + "cost": 3, + "health": 0, + "description": "Reduce the cost of Sea Monster allies everywhere by 1.\r\nDraw a Sea Monster.", + "descriptionRaw": "Reduce the cost of Sea Monster allies everywhere by 1.\r\nDraw a Sea Monster.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "Sailors speak in hushed tones of dark days to come; when the seas churn and boil, and unspeakable horrors rise from the waves.", + "artistName": "Kudos Productions", + "name": "Lure of the Depths", + "cardCode": "02BW023", + "keywords": [ + "Burst" + ], + "keywordRefs": [ + "Burst" + ], + "spellSpeed": "Burst", + "spellSpeedRef": "Burst", + "rarity": "RARE", + "rarityRef": "Rare", + "subtypes": [], + "supertype": "", + "type": "Spell", + "collectible": true, + "set": "Set2" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set2/en_us/img/cards/02BW031.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set2/en_us/img/cards/02BW031-full.png" + } + ], + "regions": [ + "Bilgewater" + ], + "regionRefs": [ + "Bilgewater" + ], + "attack": 0, + "cost": 5, + "health": 0, + "description": "Deal 2 to an enemy.\r\nIf this kills it, deal 4 to the enemy Nexus.", + "descriptionRaw": "Deal 2 to an enemy.\r\nIf this kills it, deal 4 to the enemy Nexus.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"I always shoot first.\" - Miss Fortune", + "artistName": "Kudos Productions", + "name": "Double Up", + "cardCode": "02BW031", + "keywords": [ + "Fast" + ], + "keywordRefs": [ + "Fast" + ], + "spellSpeed": "Fast", + "spellSpeedRef": "Fast", + "rarity": "RARE", + "rarityRef": "Rare", + "subtypes": [], + "supertype": "", + "type": "Spell", + "collectible": true, + "set": "Set2" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set2/en_us/img/cards/02BW029.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set2/en_us/img/cards/02BW029-full.png" + } + ], + "regions": [ + "Bilgewater" + ], + "regionRefs": [ + "Bilgewater" + ], + "attack": 0, + "cost": 4, + "health": 0, + "description": "Toss 2.\r\nDraw 2.", + "descriptionRaw": "Toss 2.\r\nDraw 2.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "Flotsam doesn't stay afloat for long. Any seafarer worth their salt has to be able to quickly discern valuable cargo from common junk...", + "artistName": "Kudos Productions", + "name": "Salvage", + "cardCode": "02BW029", + "keywords": [ + "Burst" + ], + "keywordRefs": [ + "Burst" + ], + "spellSpeed": "Burst", + "spellSpeedRef": "Burst", + "rarity": "COMMON", + "rarityRef": "Common", + "subtypes": [], + "supertype": "", + "type": "Spell", + "collectible": true, + "set": "Set2" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set2/en_us/img/cards/02BW049.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set2/en_us/img/cards/02BW049-full.png" + } + ], + "regions": [ + "Bilgewater" + ], + "regionRefs": [ + "Bilgewater" + ], + "attack": 0, + "cost": 3, + "health": 0, + "description": "Nab 1.\r\nPlunder: Nab 1 more.", + "descriptionRaw": "Nab 1.\r\nPlunder: Nab 1 more.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "What's mine is mine, and what's yours is... also mine.", + "artistName": "Kudos Productions", + "name": "Pilfered Goods", + "cardCode": "02BW049", + "keywords": [ + "Burst", + "Plunder" + ], + "keywordRefs": [ + "Burst", + "Plunder" + ], + "spellSpeed": "Burst", + "spellSpeedRef": "Burst", + "rarity": "COMMON", + "rarityRef": "Common", + "subtypes": [], + "supertype": "", + "type": "Spell", + "collectible": true, + "set": "Set2" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set2/en_us/img/cards/02BW001.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set2/en_us/img/cards/02BW001-full.png" + } + ], + "regions": [ + "Bilgewater" + ], + "regionRefs": [ + "Bilgewater" + ], + "attack": 0, + "cost": 1, + "health": 0, + "description": "Give an enemy Vulnerable this round. If it dies this round, draw 1.", + "descriptionRaw": "Give an enemy Vulnerable this round. If it dies this round, draw 1.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"Keep yer chin up and yer spirits high, boy! If the cap'n sees ya saggin', he'll hoist ya up, cut y'open, an' feed ya to the gulls. Now, move yer arse!\" - Dreadway deckhand", + "artistName": "Greg Faillace", + "name": "Ye Been Warned", + "cardCode": "02BW001", + "keywords": [ + "Slow" + ], + "keywordRefs": [ + "Slow" + ], + "spellSpeed": "Slow", + "spellSpeedRef": "Slow", + "rarity": "COMMON", + "rarityRef": "Common", + "subtypes": [], + "supertype": "", + "type": "Spell", + "collectible": true, + "set": "Set2" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set2/en_us/img/cards/02BW063.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set2/en_us/img/cards/02BW063-full.png" + } + ], + "regions": [ + "Bilgewater" + ], + "regionRefs": [ + "Bilgewater" + ], + "attack": 0, + "cost": 3, + "health": 0, + "description": "Plunder: Draw a random non-champion card from the enemy hand.", + "descriptionRaw": "Plunder: Draw a random non-champion card from the enemy hand.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"Cards ain't about luck. It's about people. You get the folks across the table to doubt themselves? Might as well take all they've got there and then.\" - Twisted Fate", + "artistName": "Kudos Productions", + "name": "Sleight of Hand", + "cardCode": "02BW063", + "keywords": [ + "Slow", + "Plunder" + ], + "keywordRefs": [ + "Slow", + "Plunder" + ], + "spellSpeed": "Slow", + "spellSpeedRef": "Slow", + "rarity": "RARE", + "rarityRef": "Rare", + "subtypes": [], + "supertype": "", + "type": "Spell", + "collectible": true, + "set": "Set2" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set2/en_us/img/cards/02BW045.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set2/en_us/img/cards/02BW045-full.png" + } + ], + "regions": [ + "Bilgewater" + ], + "regionRefs": [ + "Bilgewater" + ], + "attack": 0, + "cost": 2, + "health": 0, + "description": "Deal 1 to three different randomly targeted enemies or the enemy Nexus.", + "descriptionRaw": "Deal 1 to three different randomly targeted enemies or the enemy Nexus.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"Guns blazin'!\" - Miss Fortune", + "artistName": "Kudos Productions", + "name": "Make it Rain", + "cardCode": "02BW045", + "keywords": [ + "Fast" + ], + "keywordRefs": [ + "Fast" + ], + "spellSpeed": "Fast", + "spellSpeedRef": "Fast", + "rarity": "COMMON", + "rarityRef": "Common", + "subtypes": [], + "supertype": "", + "type": "Spell", + "collectible": true, + "set": "Set2" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set2/en_us/img/cards/02BW020.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set2/en_us/img/cards/02BW020-full.png" + } + ], + "regions": [ + "Bilgewater" + ], + "regionRefs": [ + "Bilgewater" + ], + "attack": 0, + "cost": 0, + "health": 0, + "description": "Deal 1 to the enemy Nexus.", + "descriptionRaw": "Deal 1 to the enemy Nexus.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"Yer supposed to fire w' the rest of us, lad! That's what a salvo is!\" - Petty Officer", + "artistName": "Kudos Productions", + "name": "Warning Shot", + "cardCode": "02BW020", + "keywords": [ + "Burst" + ], + "keywordRefs": [ + "Burst" + ], + "spellSpeed": "Burst", + "spellSpeedRef": "Burst", + "rarity": "COMMON", + "rarityRef": "Common", + "subtypes": [], + "supertype": "", + "type": "Spell", + "collectible": true, + "set": "Set2" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set2/en_us/img/cards/02BW044.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set2/en_us/img/cards/02BW044-full.png" + } + ], + "regions": [ + "Bilgewater" + ], + "regionRefs": [ + "Bilgewater" + ], + "attack": 0, + "cost": 1, + "health": 0, + "description": "Toss 4.", + "descriptionRaw": "Toss 4.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"If it ain't worth its weight, it goes over. Same goes for you lot, 'n all. Now back ta work!\" - Petty Officer", + "artistName": "Kudos Productions", + "name": "Jettison", + "cardCode": "02BW044", + "keywords": [ + "Burst" + ], + "keywordRefs": [ + "Burst" + ], + "spellSpeed": "Burst", + "spellSpeedRef": "Burst", + "rarity": "RARE", + "rarityRef": "Rare", + "subtypes": [], + "supertype": "", + "type": "Spell", + "collectible": true, + "set": "Set2" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set2/en_us/img/cards/02BW062.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set2/en_us/img/cards/02BW062-full.png" + } + ], + "regions": [ + "Bilgewater" + ], + "regionRefs": [ + "Bilgewater" + ], + "attack": 2, + "cost": 4, + "health": 4, + "description": "When I'm summoned, summon a random 1 cost follower and grant it Scout.", + "descriptionRaw": "When I'm summoned, summon a random 1 cost follower and grant it Scout.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"Lift the light from Mother Serpent\nTo the clouds, up from the waves.\nThe sky looks down, with gray eyes earnest,\nA calm reflection of her gaze.\nShe smiles, is at peace...\"\n- prayer to Nagakaborous", + "artistName": "Dao Le", + "name": "Island Navigator", + "cardCode": "02BW062", + "keywords": [ + "Scout" + ], + "keywordRefs": [ + "Scout" + ], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "RARE", + "rarityRef": "Rare", + "subtypes": [], + "supertype": "", + "type": "Unit", + "collectible": true, + "set": "Set2" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set2/en_us/img/cards/02FR009.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set2/en_us/img/cards/02FR009-full.png" + } + ], + "regions": [ + "Freljord" + ], + "regionRefs": [ + "Freljord" + ], + "attack": 4, + "cost": 4, + "health": 3, + "description": "Plunder: Get an empty mana gem.", + "descriptionRaw": "Plunder: Get an empty mana gem.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "The young riders of the Winter's Claw are given a wolf pup the moment they can hold a weapon. Their upbringing is devoted entirely to battle--the wolf trained to savage and maim, and the rider to pillage and steal.", + "artistName": "MAR Studio", + "name": "Wolfrider", + "cardCode": "02FR009", + "keywords": [ + "Overwhelm", + "Plunder" + ], + "keywordRefs": [ + "Overwhelm", + "Plunder" + ], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "COMMON", + "rarityRef": "Common", + "subtypes": [], + "supertype": "", + "type": "Unit", + "collectible": true, + "set": "Set2" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set2/en_us/img/cards/02FR004.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set2/en_us/img/cards/02FR004-full.png" + } + ], + "regions": [ + "Freljord" + ], + "regionRefs": [ + "Freljord" + ], + "attack": 0, + "cost": 2, + "health": 0, + "description": "Give an enemy Frostbite and Vulnerable this round.", + "descriptionRaw": "Give an enemy Frostbite and Vulnerable this round.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"These warmbloods wouldn't last a single day in the Freljord!\" - Sejuani", + "artistName": "Kudos Productions", + "name": "Caught in the Cold", + "cardCode": "02FR004", + "keywords": [ + "Slow" + ], + "keywordRefs": [ + "Slow" + ], + "spellSpeed": "Slow", + "spellSpeedRef": "Slow", + "rarity": "RARE", + "rarityRef": "Rare", + "subtypes": [], + "supertype": "", + "type": "Spell", + "collectible": true, + "set": "Set2" + }, + { + "associatedCards": [], + "associatedCardRefs": [ + "02FR002T3", + "02FR002T1" + ], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set2/en_us/img/cards/02FR002.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set2/en_us/img/cards/02FR002-full.png" + } + ], + "regions": [ + "Freljord" + ], + "regionRefs": [ + "Freljord" + ], + "attack": 5, + "cost": 6, + "health": 6, + "description": "Play: Give an enemy Frostbite and Vulnerable this round.", + "descriptionRaw": "Play: Give an enemy Frostbite and Vulnerable this round.", + "levelupDescription": "You've damaged the enemy Nexus in 5 different rounds.", + "levelupDescriptionRaw": "You've damaged the enemy Nexus in 5 different rounds.", + "flavorText": "While her flail of True Ice is formidable, Sejuani herself is the weapon--forged in the bitter cold of the Freljord and tested against the freezing climes.", + "artistName": "SIXMOREVODKA", + "name": "Sejuani", + "cardCode": "02FR002", + "keywords": [ + "Overwhelm" + ], + "keywordRefs": [ + "Overwhelm" + ], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "Champion", + "rarityRef": "Champion", + "subtypes": [], + "supertype": "Champion", + "type": "Unit", + "collectible": true, + "set": "Set2" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set2/en_us/img/cards/02FR001.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set2/en_us/img/cards/02FR001-full.png" + } + ], + "regions": [ + "Freljord" + ], + "regionRefs": [ + "Freljord" + ], + "attack": 3, + "cost": 3, + "health": 2, + "description": "Round Start: Deal 1 to EVERYTHING.", + "descriptionRaw": "Round Start: Deal 1 to EVERYTHING.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"They will till their fruitful fields,\nThey will weakly sow their seeds.\nWe will set 'most all aflame, \nWinter's Claw takes what it please!\" - a Winter's Claw children's rhyme", + "artistName": "SIXMOREVODKA", + "name": "Ember Maiden", + "cardCode": "02FR001", + "keywords": [], + "keywordRefs": [], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "RARE", + "rarityRef": "Rare", + "subtypes": [], + "supertype": "", + "type": "Unit", + "collectible": true, + "set": "Set2" + }, + { + "associatedCards": [], + "associatedCardRefs": [ + "02FR005T1" + ], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set2/en_us/img/cards/02FR005.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set2/en_us/img/cards/02FR005-full.png" + } + ], + "regions": [ + "Freljord" + ], + "regionRefs": [ + "Freljord" + ], + "attack": 4, + "cost": 5, + "health": 6, + "description": "Plunder: I transform into Stormclaw Ursine.", + "descriptionRaw": "Plunder: I transform into Stormclaw Ursine.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "The Ursine begin as humans, but give up the familiar trappings of their mortal lives for the feral, savage power granted by the great spirit of the Volibear.", + "artistName": "Kudos Productions", + "name": "Ursine Spiritwalker", + "cardCode": "02FR005", + "keywords": [ + "Plunder" + ], + "keywordRefs": [ + "Plunder" + ], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "COMMON", + "rarityRef": "Common", + "subtypes": [], + "supertype": "", + "type": "Unit", + "collectible": true, + "set": "Set2" + }, + { + "associatedCards": [], + "associatedCardRefs": [ + "02FR005" + ], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set2/en_us/img/cards/02FR005T1.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set2/en_us/img/cards/02FR005T1-full.png" + } + ], + "regions": [ + "Freljord" + ], + "regionRefs": [ + "Freljord" + ], + "attack": 6, + "cost": 5, + "health": 6, + "description": "Other allies with 5+ Power have Overwhelm.", + "descriptionRaw": "Other allies with 5+ Power have Overwhelm.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "Fully unleashed, the Ursine shed their humanity and take on the power of the storm. They tear across the frozen steppes, their roars echoing like peals of thunder.", + "artistName": "Kudos Productions", + "name": "Stormclaw Ursine", + "cardCode": "02FR005T1", + "keywords": [ + "Overwhelm", + "Missing Translation" + ], + "keywordRefs": [ + "Overwhelm", + "AuraVisualFakeKeyword" + ], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "None", + "rarityRef": "None", + "subtypes": [], + "supertype": "", + "type": "Unit", + "collectible": false, + "set": "Set2" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set2/en_us/img/cards/02FR010.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set2/en_us/img/cards/02FR010-full.png" + } + ], + "regions": [ + "Freljord" + ], + "regionRefs": [ + "Freljord" + ], + "attack": 0, + "cost": 2, + "health": 0, + "description": "Grant the top 3 units in your deck +1|+1.\r\nPlunder: Draw 1 of them.", + "descriptionRaw": "Grant the top 3 units in your deck +1|+1.\r\nPlunder: Draw 1 of them.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"Share and share alike.\" - Ruthless Raider", + "artistName": "Kudos Productions", + "name": "Shared Spoils", + "cardCode": "02FR010", + "keywords": [ + "Burst", + "Plunder" + ], + "keywordRefs": [ + "Burst", + "Plunder" + ], + "spellSpeed": "Burst", + "spellSpeedRef": "Burst", + "rarity": "RARE", + "rarityRef": "Rare", + "subtypes": [], + "supertype": "", + "type": "Spell", + "collectible": true, + "set": "Set2" + }, + { + "associatedCards": [], + "associatedCardRefs": [ + "02FR002", + "02FR002T3" + ], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set2/en_us/img/cards/02FR008.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set2/en_us/img/cards/02FR008-full.png" + } + ], + "regions": [ + "Freljord" + ], + "regionRefs": [ + "Freljord" + ], + "attack": 7, + "cost": 8, + "health": 7, + "description": "When I'm summoned, Draw a Sejuani.\r\nPlunder: Double the Power and Health of allies in your deck.", + "descriptionRaw": "When I'm summoned, Draw a Sejuani.\r\nPlunder: Double the Power and Health of allies in your deck.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"When Spring brings weather just warm enough for us to plant, it also brings longboats... and the grain that started plentiful grows sparse.\" - Avarosan Hearthguard", + "artistName": "SIXMOREVODKA", + "name": "The Tuskraider", + "cardCode": "02FR008", + "keywords": [ + "Plunder" + ], + "keywordRefs": [ + "Plunder" + ], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "EPIC", + "rarityRef": "Epic", + "subtypes": [], + "supertype": "", + "type": "Unit", + "collectible": true, + "set": "Set2" + }, + { + "associatedCards": [], + "associatedCardRefs": [ + "02FR002T3", + "02FR002" + ], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set2/en_us/img/cards/02FR002T1.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set2/en_us/img/cards/02FR002T1-full.png" + } + ], + "regions": [ + "Freljord" + ], + "regionRefs": [ + "Freljord" + ], + "attack": 0, + "cost": 4, + "health": 0, + "description": "Give an ally +3|+4 this round.\r\nCreate a Sejuani in your deck.", + "descriptionRaw": "Give an ally +3|+4 this round.\r\nCreate a Sejuani in your deck.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"Embrace the beast within!\" - Sejuani", + "artistName": "Kudos Productions", + "name": "Sejuani's Fury of the North", + "cardCode": "02FR002T1", + "keywords": [ + "Burst" + ], + "keywordRefs": [ + "Burst" + ], + "spellSpeed": "Burst", + "spellSpeedRef": "Burst", + "rarity": "None", + "rarityRef": "None", + "subtypes": [], + "supertype": "Champion", + "type": "Spell", + "collectible": false, + "set": "Set2" + }, + { + "associatedCards": [], + "associatedCardRefs": [ + "02FR002", + "02FR002T1" + ], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set2/en_us/img/cards/02FR002T3.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set2/en_us/img/cards/02FR002T3-full.png" + } + ], + "regions": [ + "Freljord" + ], + "regionRefs": [ + "Freljord" + ], + "attack": 6, + "cost": 6, + "health": 7, + "description": "Play: Give an enemy Frostbite and Vulnerable this round.\r\nEach round, the first time you damage the enemy Nexus, Frostbite all enemies.", + "descriptionRaw": "Play: Give an enemy Frostbite and Vulnerable this round.\r\nEach round, the first time you damage the enemy Nexus, Frostbite all enemies.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"Lay them low! Show them the Freljord belongs to the Winter's Claw!\"", + "artistName": "SIXMOREVODKA", + "name": "Sejuani", + "cardCode": "02FR002T3", + "keywords": [ + "Overwhelm" + ], + "keywordRefs": [ + "Overwhelm" + ], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "None", + "rarityRef": "None", + "subtypes": [], + "supertype": "Champion", + "type": "Unit", + "collectible": false, + "set": "Set2" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set2/en_us/img/cards/02FR007.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set2/en_us/img/cards/02FR007-full.png" + } + ], + "regions": [ + "Freljord" + ], + "regionRefs": [ + "Freljord" + ], + "attack": 0, + "cost": 4, + "health": 0, + "description": "Give an ally +3|+4 this round.", + "descriptionRaw": "Give an ally +3|+4 this round.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"Embrace the beast within!\" - Sejuani", + "artistName": "Kudos Productions", + "name": "Fury of the North", + "cardCode": "02FR007", + "keywords": [ + "Burst" + ], + "keywordRefs": [ + "Burst" + ], + "spellSpeed": "Burst", + "spellSpeedRef": "Burst", + "rarity": "COMMON", + "rarityRef": "Common", + "subtypes": [], + "supertype": "", + "type": "Spell", + "collectible": true, + "set": "Set2" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set2/en_us/img/cards/02FR006.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set2/en_us/img/cards/02FR006-full.png" + } + ], + "regions": [ + "Freljord" + ], + "regionRefs": [ + "Freljord" + ], + "attack": 3, + "cost": 2, + "health": 1, + "description": "", + "descriptionRaw": "", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "The Winter's Claw has no equal in the Freljord, and all know the ferocity of these merciless raiders. Once their bloodlust takes over, one can only pray for a quick death.", + "artistName": "Kudos Productions", + "name": "Ruthless Raider", + "cardCode": "02FR006", + "keywords": [ + "Overwhelm", + "Tough" + ], + "keywordRefs": [ + "Overwhelm", + "Tough" + ], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "COMMON", + "rarityRef": "Common", + "subtypes": [], + "supertype": "", + "type": "Unit", + "collectible": true, + "set": "Set2" + }, + { + "associatedCards": [], + "associatedCardRefs": [ + "01FR016" + ], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set2/en_us/img/cards/02FR003.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set2/en_us/img/cards/02FR003-full.png" + } + ], + "regions": [ + "Freljord" + ], + "regionRefs": [ + "Freljord" + ], + "attack": 0, + "cost": 6, + "health": 0, + "description": "Create 2 random Poros and 2 Poro Snax in hand.", + "descriptionRaw": "Create 2 random Poros and 2 Poro Snax in hand.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"When you wish upon a poro,\nAn' look at da night sky,\nYou'll see da snax among da stars,\nAll sparkly in our eyes\" - Ingvar the Younger", + "artistName": "Kudos Productions", + "name": "Aurora Porealis", + "cardCode": "02FR003", + "keywords": [ + "Burst" + ], + "keywordRefs": [ + "Burst" + ], + "spellSpeed": "Burst", + "spellSpeedRef": "Burst", + "rarity": "EPIC", + "rarityRef": "Epic", + "subtypes": [], + "supertype": "", + "type": "Spell", + "collectible": true, + "set": "Set2" + }, + { + "associatedCards": [], + "associatedCardRefs": [ + "02NX007" + ], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set2/en_us/img/cards/02NX001.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set2/en_us/img/cards/02NX001-full.png" + } + ], + "regions": [ + "Noxus" + ], + "regionRefs": [ + "Noxus" + ], + "attack": 5, + "cost": 8, + "health": 8, + "description": "When I'm summoned, draw a Swain.\r\nRound Start: Deal 1 to the enemy Nexus 3 times.", + "descriptionRaw": "When I'm summoned, draw a Swain.\r\nRound Start: Deal 1 to the enemy Nexus 3 times.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "When the Ionian locals saw it looming on the horizon, they thought it a monster. They were not far from the truth--the steel warship is terrifying, the greatest feat of Noxian naval engineering yet.", + "artistName": "SIXMOREVODKA", + "name": "The Leviathan", + "cardCode": "02NX001", + "keywords": [ + "Overwhelm" + ], + "keywordRefs": [ + "Overwhelm" + ], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "EPIC", + "rarityRef": "Epic", + "subtypes": [], + "supertype": "", + "type": "Unit", + "collectible": true, + "set": "Set2" + }, + { + "associatedCards": [], + "associatedCardRefs": [ + "02NX007T2", + "02NX007T1" + ], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set2/en_us/img/cards/02NX007.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set2/en_us/img/cards/02NX007-full.png" + } + ], + "regions": [ + "Noxus" + ], + "regionRefs": [ + "Noxus" + ], + "attack": 3, + "cost": 5, + "health": 6, + "description": "Nexus Strike: Deal 3 to the enemy Nexus.", + "descriptionRaw": "Nexus Strike: Deal 3 to the enemy Nexus.", + "levelupDescription": "You've dealt 12 non-combat damage.", + "levelupDescriptionRaw": "You've dealt 12 non-combat damage.", + "flavorText": "\"A power beyond mortal understanding gave me the vision to see what most cannot. I peer through the darkness others fear.\"", + "artistName": "SIXMOREVODKA", + "name": "Swain", + "cardCode": "02NX007", + "keywords": [ + "Fearsome" + ], + "keywordRefs": [ + "Fearsome" + ], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "Champion", + "rarityRef": "Champion", + "subtypes": [], + "supertype": "Champion", + "type": "Unit", + "collectible": true, + "set": "Set2" + }, + { + "associatedCards": [], + "associatedCardRefs": [ + "02NX007", + "02NX007T1" + ], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set2/en_us/img/cards/02NX007T2.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set2/en_us/img/cards/02NX007T2-full.png" + } + ], + "regions": [ + "Noxus" + ], + "regionRefs": [ + "Noxus" + ], + "attack": 4, + "cost": 5, + "health": 7, + "description": "When you deal non-combat damage to the enemy Nexus, Stun the strongest backrow enemy.\r\nNexus Strike: Deal 3 to all enemies and the enemy Nexus.", + "descriptionRaw": "When you deal non-combat damage to the enemy Nexus, Stun the strongest backrow enemy.\r\nNexus Strike: Deal 3 to all enemies and the enemy Nexus.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"No sacrifice is too great to see my vision for Noxus fulfilled.\" ", + "artistName": "SIXMOREVODKA", + "name": "Swain", + "cardCode": "02NX007T2", + "keywords": [ + "Fearsome" + ], + "keywordRefs": [ + "Fearsome" + ], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "None", + "rarityRef": "None", + "subtypes": [], + "supertype": "Champion", + "type": "Unit", + "collectible": false, + "set": "Set2" + }, + { + "associatedCards": [], + "associatedCardRefs": [ + "02NX007", + "02NX007T2" + ], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set2/en_us/img/cards/02NX007T1.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set2/en_us/img/cards/02NX007T1-full.png" + } + ], + "regions": [ + "Noxus" + ], + "regionRefs": [ + "Noxus" + ], + "attack": 0, + "cost": 1, + "health": 0, + "description": "Deal 4 to a unit if it's damaged or Stunned.\r\nCreate a Swain in your deck.", + "descriptionRaw": "Deal 4 to a unit if it's damaged or Stunned.\r\nCreate a Swain in your deck.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "Listen. Can you hear them? The thunder of a thousand beating wings.", + "artistName": "Kudos Productions", + "name": "Swain's Ravenous Flock", + "cardCode": "02NX007T1", + "keywords": [ + "Fast" + ], + "keywordRefs": [ + "Fast" + ], + "spellSpeed": "Fast", + "spellSpeedRef": "Fast", + "rarity": "None", + "rarityRef": "None", + "subtypes": [], + "supertype": "Champion", + "type": "Spell", + "collectible": false, + "set": "Set2" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set2/en_us/img/cards/02NX006.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set2/en_us/img/cards/02NX006-full.png" + } + ], + "regions": [ + "Noxus" + ], + "regionRefs": [ + "Noxus" + ], + "attack": 1, + "cost": 4, + "health": 5, + "description": "Round Start: Deal 1 to the enemy Nexus.", + "descriptionRaw": "Round Start: Deal 1 to the enemy Nexus.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "The elder’s voice was surprisingly calm. “What, pray tell,” he inquired, “is the point of gathering stones to build higher walls, when the Noxians always manage to toss them back over?”", + "artistName": "Kudos Productions", + "name": "Citybreaker", + "cardCode": "02NX006", + "keywords": [], + "keywordRefs": [], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "RARE", + "rarityRef": "Rare", + "subtypes": [], + "supertype": "", + "type": "Unit", + "collectible": true, + "set": "Set2" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set2/en_us/img/cards/02NX002.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set2/en_us/img/cards/02NX002-full.png" + } + ], + "regions": [ + "Noxus" + ], + "regionRefs": [ + "Noxus" + ], + "attack": 6, + "cost": 6, + "health": 6, + "description": "Attack: Stun all damaged enemies.", + "descriptionRaw": "Attack: Stun all damaged enemies.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "“For generations, we have been subjugated. It was not until Noxus took our lands that we finally understood true freedom. That is why I fight for the empire.”", + "artistName": "Slawomir Maniak", + "name": "Aurok Glinthorn ", + "cardCode": "02NX002", + "keywords": [], + "keywordRefs": [], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "EPIC", + "rarityRef": "Epic", + "subtypes": [], + "supertype": "", + "type": "Unit", + "collectible": true, + "set": "Set2" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set2/en_us/img/cards/02NX009.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set2/en_us/img/cards/02NX009-full.png" + } + ], + "regions": [ + "Noxus" + ], + "regionRefs": [ + "Noxus" + ], + "attack": 0, + "cost": 1, + "health": 0, + "description": "Deal 4 to a unit if it's damaged or Stunned.", + "descriptionRaw": "Deal 4 to a unit if it's damaged or Stunned.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "Listen. Can you hear them? The thunder of a thousand beating wings.", + "artistName": "Kudos Productions", + "name": "Ravenous Flock", + "cardCode": "02NX009", + "keywords": [ + "Fast" + ], + "keywordRefs": [ + "Fast" + ], + "spellSpeed": "Fast", + "spellSpeedRef": "Fast", + "rarity": "RARE", + "rarityRef": "Rare", + "subtypes": [], + "supertype": "", + "type": "Spell", + "collectible": true, + "set": "Set2" + }, + { + "associatedCards": [], + "associatedCardRefs": [ + "02NX004T1" + ], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set2/en_us/img/cards/02NX004.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set2/en_us/img/cards/02NX004-full.png" + } + ], + "regions": [ + "Noxus" + ], + "regionRefs": [ + "Noxus" + ], + "attack": 2, + "cost": 2, + "health": 2, + "description": "Play: Deal 1 to an ally to deal 2 to the enemy Nexus.", + "descriptionRaw": "Play: Deal 1 to an ally to deal 2 to the enemy Nexus.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"Quick and quiet, 'til the boom.\"", + "artistName": "Dao Le", + "name": "Imperial Demolitionist", + "cardCode": "02NX004", + "keywords": [], + "keywordRefs": [], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "COMMON", + "rarityRef": "Common", + "subtypes": [], + "supertype": "", + "type": "Unit", + "collectible": true, + "set": "Set2" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set2/en_us/img/cards/02NX003.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set2/en_us/img/cards/02NX003-full.png" + } + ], + "regions": [ + "Noxus" + ], + "regionRefs": [ + "Noxus" + ], + "attack": 0, + "cost": 3, + "health": 0, + "description": "Deal 3 to an ally to deal 3 to anything.", + "descriptionRaw": "Deal 3 to an ally to deal 3 to anything.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"Sacrifices must be made.\" - Jericho Swain", + "artistName": "Kudos Productions", + "name": "Noxian Fervor", + "cardCode": "02NX003", + "keywords": [ + "Fast" + ], + "keywordRefs": [ + "Fast" + ], + "spellSpeed": "Fast", + "spellSpeedRef": "Fast", + "rarity": "COMMON", + "rarityRef": "Common", + "subtypes": [], + "supertype": "", + "type": "Spell", + "collectible": true, + "set": "Set2" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set2/en_us/img/cards/02NX010.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set2/en_us/img/cards/02NX010-full.png" + } + ], + "regions": [ + "Noxus" + ], + "regionRefs": [ + "Noxus" + ], + "attack": 6, + "cost": 6, + "health": 5, + "description": "Enemies with 4 or less Power cannot damage me.", + "descriptionRaw": "Enemies with 4 or less Power cannot damage me.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"There's no stopping a warbeast once it's in motion--best just to get out of the way.\" - Basilisk Rider", + "artistName": "Kudos Productions", + "name": "Armored Tuskrider", + "cardCode": "02NX010", + "keywords": [ + "Overwhelm" + ], + "keywordRefs": [ + "Overwhelm" + ], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "RARE", + "rarityRef": "Rare", + "subtypes": [], + "supertype": "", + "type": "Unit", + "collectible": true, + "set": "Set2" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set2/en_us/img/cards/02NX004T1.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set2/en_us/img/cards/02NX004T1-full.png" + } + ], + "regions": [ + "Noxus" + ], + "regionRefs": [ + "Noxus" + ], + "attack": 0, + "cost": 0, + "health": 0, + "description": "Deal 1 to an ally to deal 2 to the enemy Nexus.", + "descriptionRaw": "Deal 1 to an ally to deal 2 to the enemy Nexus.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "The hazards of using black powder are a small price to pay for tactical victory.", + "artistName": "Kudos Productions", + "name": "Black Powder Grenade", + "cardCode": "02NX004T1", + "keywords": [ + "Skill" + ], + "keywordRefs": [ + "Skill" + ], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "None", + "rarityRef": "None", + "subtypes": [], + "supertype": "", + "type": "Ability", + "collectible": false, + "set": "Set2" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set2/en_us/img/cards/02NX008.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set2/en_us/img/cards/02NX008-full.png" + } + ], + "regions": [ + "Noxus" + ], + "regionRefs": [ + "Noxus" + ], + "attack": 0, + "cost": 3, + "health": 0, + "description": "Deal 2 to an enemy and 1 to the enemy Nexus.", + "descriptionRaw": "Deal 2 to an enemy and 1 to the enemy Nexus.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"Try to die with dignity.\" - Swain", + "artistName": "Kudos Productions", + "name": "Death's Hand", + "cardCode": "02NX008", + "keywords": [ + "Fast" + ], + "keywordRefs": [ + "Fast" + ], + "spellSpeed": "Fast", + "spellSpeedRef": "Fast", + "rarity": "COMMON", + "rarityRef": "Common", + "subtypes": [], + "supertype": "", + "type": "Spell", + "collectible": true, + "set": "Set2" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set2/en_us/img/cards/02NX005.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set2/en_us/img/cards/02NX005-full.png" + } + ], + "regions": [ + "Noxus" + ], + "regionRefs": [ + "Noxus" + ], + "attack": 4, + "cost": 3, + "health": 3, + "description": "", + "descriptionRaw": "", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"A siege is easy, if you've the tools. The 'breakers bring 'em out, and the ballistae bring 'em down.\" - Siege Engineer", + "artistName": "Kudos Productions", + "name": "Iron Ballista", + "cardCode": "02NX005", + "keywords": [ + "Overwhelm" + ], + "keywordRefs": [ + "Overwhelm" + ], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "COMMON", + "rarityRef": "Common", + "subtypes": [], + "supertype": "", + "type": "Unit", + "collectible": true, + "set": "Set2" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set2/en_us/img/cards/02DE003.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set2/en_us/img/cards/02DE003-full.png" + } + ], + "regions": [ + "Demacia" + ], + "regionRefs": [ + "Demacia" + ], + "attack": 3, + "cost": 3, + "health": 4, + "description": "", + "descriptionRaw": "", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "It's true what they say--pets look like their owners.", + "artistName": "SIXMOREVODKA", + "name": "Loyal Badgerbear", + "cardCode": "02DE003", + "keywords": [], + "keywordRefs": [], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "COMMON", + "rarityRef": "Common", + "subtypes": [], + "supertype": "", + "type": "Unit", + "collectible": true, + "set": "Set2" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set2/en_us/img/cards/02DE008.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set2/en_us/img/cards/02DE008-full.png" + } + ], + "regions": [ + "Demacia" + ], + "regionRefs": [ + "Demacia" + ], + "attack": 5, + "cost": 5, + "health": 5, + "description": "", + "descriptionRaw": "", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "A ranger recruit spends months in the forest with their companions, learning to predict their stag's every move. They must be patient, but once the two have bonded, nothing can come between them.", + "artistName": "SIXMOREVODKA", + "name": "Greathorn Companion", + "cardCode": "02DE008", + "keywords": [ + "Scout" + ], + "keywordRefs": [ + "Scout" + ], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "COMMON", + "rarityRef": "Common", + "subtypes": [], + "supertype": "", + "type": "Unit", + "collectible": true, + "set": "Set2" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set2/en_us/img/cards/02DE004.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set2/en_us/img/cards/02DE004-full.png" + } + ], + "regions": [ + "Demacia" + ], + "regionRefs": [ + "Demacia" + ], + "attack": 2, + "cost": 3, + "health": 2, + "description": "", + "descriptionRaw": "", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"I swore an oath to protect this forest, and all who seek shelter within it.\"", + "artistName": "Rafael Zanchetin", + "name": "Greenfang Warden", + "cardCode": "02DE004", + "keywords": [ + "Barrier", + "Scout" + ], + "keywordRefs": [ + "Barrier", + "Scout" + ], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "COMMON", + "rarityRef": "Common", + "subtypes": [ + "ELITE" + ], + "supertype": "", + "type": "Unit", + "collectible": true, + "set": "Set2" + }, + { + "associatedCards": [], + "associatedCardRefs": [ + "02DE006T2", + "02DE006T1", + "02DE006T3" + ], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set2/en_us/img/cards/02DE006.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set2/en_us/img/cards/02DE006-full.png" + } + ], + "regions": [ + "Demacia" + ], + "regionRefs": [ + "Demacia" + ], + "attack": 3, + "cost": 5, + "health": 5, + "description": "When I'm summoned, summon Valor.", + "descriptionRaw": "When I'm summoned, summon Valor.", + "levelupDescription": "I've seen you attack 4 times.", + "levelupDescriptionRaw": "I've seen you attack 4 times.", + "flavorText": "\"She's always been a fearless ranger-knight, our Quinn--and with Valor by her side and in the skies, the two are unstoppable.\" - Genevieve Elmheart, ranger-knight", + "artistName": "SIXMOREVODKA", + "name": "Quinn", + "cardCode": "02DE006", + "keywords": [ + "Scout" + ], + "keywordRefs": [ + "Scout" + ], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "Champion", + "rarityRef": "Champion", + "subtypes": [], + "supertype": "Champion", + "type": "Unit", + "collectible": true, + "set": "Set2" + }, + { + "associatedCards": [], + "associatedCardRefs": [ + "02DE006", + "02DE006T1", + "02DE006T2" + ], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set2/en_us/img/cards/02DE006T3.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set2/en_us/img/cards/02DE006T3-full.png" + } + ], + "regions": [ + "Demacia" + ], + "regionRefs": [ + "Demacia" + ], + "attack": 0, + "cost": 2, + "health": 0, + "description": "Summon Valor.\r\nCreate a Quinn in your deck.", + "descriptionRaw": "Summon Valor.\r\nCreate a Quinn in your deck.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"He's in my hair! HE'S IN MY HAIR!\" - Legion Marauder", + "artistName": "Kudos Productions", + "name": "Quinn's Blinding Assault", + "cardCode": "02DE006T3", + "keywords": [ + "Slow" + ], + "keywordRefs": [ + "Slow" + ], + "spellSpeed": "Slow", + "spellSpeedRef": "Slow", + "rarity": "None", + "rarityRef": "None", + "subtypes": [], + "supertype": "Champion", + "type": "Spell", + "collectible": false, + "set": "Set2" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set2/en_us/img/cards/02DE006T2.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set2/en_us/img/cards/02DE006T2-full.png" + } + ], + "regions": [ + "Demacia" + ], + "regionRefs": [ + "Demacia" + ], + "attack": 2, + "cost": 2, + "health": 1, + "description": "", + "descriptionRaw": "", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "Those who meet him swear they see a glimmer of something more in those sharp eyes, a shrewd intelligence that far surpasses any ordinary bird of prey. ", + "artistName": "SIXMOREVODKA", + "name": "Valor", + "cardCode": "02DE006T2", + "keywords": [ + "Challenger", + "Scout" + ], + "keywordRefs": [ + "Challenger", + "Scout" + ], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "None", + "rarityRef": "None", + "subtypes": [], + "supertype": "", + "type": "Unit", + "collectible": false, + "set": "Set2" + }, + { + "associatedCards": [], + "associatedCardRefs": [ + "02DE006", + "02DE006T3", + "02DE006T2" + ], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set2/en_us/img/cards/02DE006T1.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set2/en_us/img/cards/02DE006T1-full.png" + } + ], + "regions": [ + "Demacia" + ], + "regionRefs": [ + "Demacia" + ], + "attack": 4, + "cost": 5, + "health": 6, + "description": "Attack: Summon Valor Challenging the strongest enemy.", + "descriptionRaw": "Attack: Summon Valor Challenging the strongest enemy.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"I'll follow your lead, Valor!\"", + "artistName": "SIXMOREVODKA", + "name": "Quinn", + "cardCode": "02DE006T1", + "keywords": [ + "Scout" + ], + "keywordRefs": [ + "Scout" + ], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "None", + "rarityRef": "None", + "subtypes": [], + "supertype": "Champion", + "type": "Unit", + "collectible": false, + "set": "Set2" + }, + { + "associatedCards": [], + "associatedCardRefs": [ + "02DE003" + ], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set2/en_us/img/cards/02DE009.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set2/en_us/img/cards/02DE009-full.png" + } + ], + "regions": [ + "Demacia" + ], + "regionRefs": [ + "Demacia" + ], + "attack": 3, + "cost": 4, + "health": 1, + "description": "Last Breath: Summon a Loyal Badgerbear.", + "descriptionRaw": "Last Breath: Summon a Loyal Badgerbear.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "Betrand got his start in the Bandle Scouts. He got all the badges except for 'Cheerful Demeanor'.\"", + "artistName": "SIXMOREVODKA", + "name": "Grizzled Ranger", + "cardCode": "02DE009", + "keywords": [ + "Scout", + "Last Breath" + ], + "keywordRefs": [ + "Scout", + "LastBreath" + ], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "RARE", + "rarityRef": "Rare", + "subtypes": [ + "YORDLE" + ], + "supertype": "", + "type": "Unit", + "collectible": true, + "set": "Set2" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set2/en_us/img/cards/02DE005.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set2/en_us/img/cards/02DE005-full.png" + } + ], + "regions": [ + "Demacia" + ], + "regionRefs": [ + "Demacia" + ], + "attack": 0, + "cost": 8, + "health": 0, + "description": "Grant an ally \"I can't take damage or die\".", + "descriptionRaw": "Grant an ally \"I can't take damage or die\".", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "Ignoring the pain of her wounded leg, the ranger stood once more, sword aloft. It was not just her own resolve that kept her standing, but the resolve of Demacia itself.", + "artistName": "Max Grecke", + "name": "Unyielding Spirit", + "cardCode": "02DE005", + "keywords": [ + "Fast" + ], + "keywordRefs": [ + "Fast" + ], + "spellSpeed": "Fast", + "spellSpeedRef": "Fast", + "rarity": "EPIC", + "rarityRef": "Epic", + "subtypes": [], + "supertype": "", + "type": "Spell", + "collectible": true, + "set": "Set2" + }, + { + "associatedCards": [], + "associatedCardRefs": [ + "02DE006T2" + ], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set2/en_us/img/cards/02DE002.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set2/en_us/img/cards/02DE002-full.png" + } + ], + "regions": [ + "Demacia" + ], + "regionRefs": [ + "Demacia" + ], + "attack": 0, + "cost": 2, + "health": 0, + "description": "Summon Valor.", + "descriptionRaw": "Summon Valor.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"He's in my hair! HE'S IN MY HAIR!\" - Legion Marauder", + "artistName": "Kudos Productions", + "name": "Blinding Assault", + "cardCode": "02DE002", + "keywords": [ + "Slow" + ], + "keywordRefs": [ + "Slow" + ], + "spellSpeed": "Slow", + "spellSpeedRef": "Slow", + "rarity": "RARE", + "rarityRef": "Rare", + "subtypes": [], + "supertype": "", + "type": "Spell", + "collectible": true, + "set": "Set2" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set2/en_us/img/cards/02DE010.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set2/en_us/img/cards/02DE010-full.png" + } + ], + "regions": [ + "Demacia" + ], + "regionRefs": [ + "Demacia" + ], + "attack": 5, + "cost": 6, + "health": 4, + "description": "When I'm summoned, give other allies +1|+1 this round.", + "descriptionRaw": "When I'm summoned, give other allies +1|+1 this round.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "To see the rangers of Demacia in battle is inspiring. They fight as one--human and animal, side by side, fiercely determined and utterly inseparable.", + "artistName": "SIXMOREVODKA", + "name": "Genevieve Elmheart", + "cardCode": "02DE010", + "keywords": [ + "Scout", + "Challenger" + ], + "keywordRefs": [ + "Scout", + "Challenger" + ], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "EPIC", + "rarityRef": "Epic", + "subtypes": [], + "supertype": "", + "type": "Unit", + "collectible": true, + "set": "Set2" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set2/en_us/img/cards/02DE007.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set2/en_us/img/cards/02DE007-full.png" + } + ], + "regions": [ + "Demacia" + ], + "regionRefs": [ + "Demacia" + ], + "attack": 0, + "cost": 1, + "health": 0, + "description": "Give all allies Tough this round.", + "descriptionRaw": "Give all allies Tough this round.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"When the enemy draws near, do not let fear into your hearts, for the trees themselves protect us.\" - Greenfang Warden", + "artistName": "Kudos Productions", + "name": "Ranger's Resolve", + "cardCode": "02DE007", + "keywords": [ + "Burst" + ], + "keywordRefs": [ + "Burst" + ], + "spellSpeed": "Burst", + "spellSpeedRef": "Burst", + "rarity": "RARE", + "rarityRef": "Rare", + "subtypes": [], + "supertype": "", + "type": "Spell", + "collectible": true, + "set": "Set2" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set2/en_us/img/cards/02DE001.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set2/en_us/img/cards/02DE001-full.png" + } + ], + "regions": [ + "Demacia" + ], + "regionRefs": [ + "Demacia" + ], + "attack": 0, + "cost": 5, + "health": 0, + "description": "Pick an enemy. 2 allies strike it one after another.", + "descriptionRaw": "Pick an enemy. 2 allies strike it one after another.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"With me, as one!\" - Greenfang Warden", + "artistName": "Kudos Productions", + "name": "Concerted Strike", + "cardCode": "02DE001", + "keywords": [ + "Fast" + ], + "keywordRefs": [ + "Fast" + ], + "spellSpeed": "Fast", + "spellSpeedRef": "Fast", + "rarity": "COMMON", + "rarityRef": "Common", + "subtypes": [], + "supertype": "", + "type": "Spell", + "collectible": true, + "set": "Set2" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set2/en_us/img/cards/02SI005.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set2/en_us/img/cards/02SI005-full.png" + } + ], + "regions": [ + "Shadow Isles" + ], + "regionRefs": [ + "ShadowIsles" + ], + "attack": 0, + "cost": 3, + "health": 0, + "description": "Toss 3.\r\nHeal all allies 3.", + "descriptionRaw": "Toss 3.\r\nHeal all allies 3.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"These Isles will be cleansed.\" - Maokai", + "artistName": "Kudos Productions", + "name": "Sap Magic", + "cardCode": "02SI005", + "keywords": [ + "Burst" + ], + "keywordRefs": [ + "Burst" + ], + "spellSpeed": "Burst", + "spellSpeedRef": "Burst", + "rarity": "RARE", + "rarityRef": "Rare", + "subtypes": [], + "supertype": "", + "type": "Spell", + "collectible": true, + "set": "Set2" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set2/en_us/img/cards/02SI010.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set2/en_us/img/cards/02SI010-full.png" + } + ], + "regions": [ + "Shadow Isles" + ], + "regionRefs": [ + "ShadowIsles" + ], + "attack": 3, + "cost": 3, + "health": 2, + "description": "When I'm summoned, Toss 3.", + "descriptionRaw": "When I'm summoned, Toss 3.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"The great treant has continued showing... creatures. This one... to spread life as she wanders... remarkable such... here. These are Blessed Isles indeed!\" - Recovered journal", + "artistName": "Slawomir Maniak", + "name": "Deadbloom Wanderer", + "cardCode": "02SI010", + "keywords": [ + "Lifesteal" + ], + "keywordRefs": [ + "Lifesteal" + ], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "COMMON", + "rarityRef": "Common", + "subtypes": [], + "supertype": "", + "type": "Unit", + "collectible": true, + "set": "Set2" + }, + { + "associatedCards": [], + "associatedCardRefs": [ + "02SI008T1", + "02SI008T2", + "02SI008T3" + ], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set2/en_us/img/cards/02SI008.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set2/en_us/img/cards/02SI008-full.png" + } + ], + "regions": [ + "Shadow Isles" + ], + "regionRefs": [ + "ShadowIsles" + ], + "attack": 1, + "cost": 4, + "health": 4, + "description": "Each round, the first time you summon another ally, Toss 2 and summon a Sapling.", + "descriptionRaw": "Each round, the first time you summon another ally, Toss 2 and summon a Sapling.", + "levelupDescription": "Your units have died or your cards have been Tossed 25 times.", + "levelupDescriptionRaw": "Your units have died or your cards have been Tossed 25 times.", + "flavorText": "These cursed lands would not break Maokai. The treant's commitment ran too deep, and his fury burned too bright, for anything to stand in his way.", + "artistName": "SIXMOREVODKA", + "name": "Maokai", + "cardCode": "02SI008", + "keywords": [], + "keywordRefs": [], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "Champion", + "rarityRef": "Champion", + "subtypes": [], + "supertype": "Champion", + "type": "Unit", + "collectible": true, + "set": "Set2" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set2/en_us/img/cards/02SI008T3.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set2/en_us/img/cards/02SI008T3-full.png" + } + ], + "regions": [ + "Shadow Isles" + ], + "regionRefs": [ + "ShadowIsles" + ], + "attack": 2, + "cost": 1, + "health": 1, + "description": "", + "descriptionRaw": "", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"Life here… so effortless. Verdant forests... to sprout overnight… quite exquisite. What a treasure this land is. Must preserve… generations.\" - Recovered journal", + "artistName": "MAR Studio", + "name": "Sapling", + "cardCode": "02SI008T3", + "keywords": [ + "Ephemeral", + "Challenger" + ], + "keywordRefs": [ + "Ephemeral", + "Challenger" + ], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "None", + "rarityRef": "None", + "subtypes": [], + "supertype": "", + "type": "Unit", + "collectible": false, + "set": "Set2" + }, + { + "associatedCards": [], + "associatedCardRefs": [ + "02SI008T3", + "02SI008T2", + "02SI008" + ], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set2/en_us/img/cards/02SI008T1.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set2/en_us/img/cards/02SI008T1-full.png" + } + ], + "regions": [ + "Shadow Isles" + ], + "regionRefs": [ + "ShadowIsles" + ], + "attack": 0, + "cost": 3, + "health": 0, + "description": "Toss 3.\r\nHeal all allies 3.\r\nCreate a Maokai in your deck.", + "descriptionRaw": "Toss 3.\r\nHeal all allies 3.\r\nCreate a Maokai in your deck.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"These Isles will be cleansed.\" - Maokai", + "artistName": "Kudos Productions", + "name": "Maokai's Sap Magic", + "cardCode": "02SI008T1", + "keywords": [ + "Burst" + ], + "keywordRefs": [ + "Burst" + ], + "spellSpeed": "Burst", + "spellSpeedRef": "Burst", + "rarity": "None", + "rarityRef": "None", + "subtypes": [], + "supertype": "Champion", + "type": "Spell", + "collectible": false, + "set": "Set2" + }, + { + "associatedCards": [], + "associatedCardRefs": [ + "02SI008", + "02SI008T1", + "02SI008T3" + ], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set2/en_us/img/cards/02SI008T2.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set2/en_us/img/cards/02SI008T2-full.png" + } + ], + "regions": [ + "Shadow Isles" + ], + "regionRefs": [ + "ShadowIsles" + ], + "attack": 2, + "cost": 4, + "health": 5, + "description": "When I Level Up, Obliterate the enemy deck, leaving 4 non-champions.\r\nRound Start: Summon a Sapling.", + "descriptionRaw": "When I Level Up, Obliterate the enemy deck, leaving 4 non-champions.\r\nRound Start: Summon a Sapling.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "He would destroy the blight within these isles, and restore its long-lost life.", + "artistName": "SIXMOREVODKA", + "name": "Maokai", + "cardCode": "02SI008T2", + "keywords": [ + "Regeneration" + ], + "keywordRefs": [ + "Regeneration" + ], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "None", + "rarityRef": "None", + "subtypes": [], + "supertype": "Champion", + "type": "Unit", + "collectible": false, + "set": "Set2" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set2/en_us/img/cards/02SI007.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set2/en_us/img/cards/02SI007-full.png" + } + ], + "regions": [ + "Shadow Isles" + ], + "regionRefs": [ + "ShadowIsles" + ], + "attack": 1, + "cost": 2, + "health": 4, + "description": "Last Breath: Toss 2 and heal your Nexus 2.", + "descriptionRaw": "Last Breath: Toss 2 and heal your Nexus 2.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"...remarkable species… same creature I found as a child... not a day older! I wonder… next town. Perhaps these wonderful fellows will live forever!\" - Recovered journal", + "artistName": "MAR Studio", + "name": "Thorny Toad", + "cardCode": "02SI007", + "keywords": [ + "Last Breath" + ], + "keywordRefs": [ + "LastBreath" + ], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "COMMON", + "rarityRef": "Common", + "subtypes": [], + "supertype": "", + "type": "Unit", + "collectible": true, + "set": "Set2" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set2/en_us/img/cards/02SI003.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set2/en_us/img/cards/02SI003-full.png" + } + ], + "regions": [ + "Shadow Isles" + ], + "regionRefs": [ + "ShadowIsles" + ], + "attack": 6, + "cost": 8, + "health": 5, + "description": "Sea Monster allies have Fearsome. \r\nAttack: Give enemies -2|-0 this round.\r\n", + "descriptionRaw": "Sea Monster allies have Fearsome. \r\nAttack: Give enemies -2|-0 this round.\r\n", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "They realized the danger too late. The titanic beast opened its gaping maw and surged toward them. The hunters could only wait for death as the endless teeth slowly crunched through their ship.", + "artistName": "SIXMOREVODKA", + "name": "Terror of the Tides", + "cardCode": "02SI003", + "keywords": [ + "Deep" + ], + "keywordRefs": [ + "Deep" + ], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "EPIC", + "rarityRef": "Epic", + "subtypes": [ + "SEA MONSTER" + ], + "supertype": "", + "type": "Unit", + "collectible": true, + "set": "Set2" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set2/en_us/img/cards/02SI001.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set2/en_us/img/cards/02SI001-full.png" + } + ], + "regions": [ + "Shadow Isles" + ], + "regionRefs": [ + "ShadowIsles" + ], + "attack": 2, + "cost": 5, + "health": 4, + "description": "When another ally dies, drain 1 from the enemy Nexus.", + "descriptionRaw": "When another ally dies, drain 1 from the enemy Nexus.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"Bumped into Niven this... the new ferryman! He rowed us... to... He can certainly hold a tune! Before... must invite him to supper soon.\" - Recovered journal", + "artistName": "Kudos Productions", + "name": "Neverglade Collector", + "cardCode": "02SI001", + "keywords": [], + "keywordRefs": [], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "RARE", + "rarityRef": "Rare", + "subtypes": [], + "supertype": "", + "type": "Unit", + "collectible": true, + "set": "Set2" + }, + { + "associatedCards": [], + "associatedCardRefs": [ + "02SI002", + "02SI002", + "02SI002", + "02SI002", + "02SI002", + "02SI002", + "02SI002", + "02SI002", + "02SI002" + ], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set2/en_us/img/cards/02SI002.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set2/en_us/img/cards/02SI002-full.png" + } + ], + "regions": [ + "Shadow Isles" + ], + "regionRefs": [ + "ShadowIsles" + ], + "attack": 5, + "cost": 7, + "health": 3, + "description": "When you summon a follower, kill it to summon an Overgrown Snapvine.", + "descriptionRaw": "When you summon a follower, kill it to summon an Overgrown Snapvine.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"Today... another remarkable... surfaced around... children quite scared. But... posed no threat. Nuzzled... quite a trusting creature. Must forage them more berries!\"\n- Recovered journal", + "artistName": "SIXMOREVODKA", + "name": "Overgrown Snapvine", + "cardCode": "02SI002", + "keywords": [], + "keywordRefs": [], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "EPIC", + "rarityRef": "Epic", + "subtypes": [], + "supertype": "", + "type": "Unit", + "collectible": true, + "set": "Set2" + }, + { + "associatedCards": [], + "associatedCardRefs": [ + "02SI008T3" + ], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set2/en_us/img/cards/02SI004.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set2/en_us/img/cards/02SI004-full.png" + } + ], + "regions": [ + "Shadow Isles" + ], + "regionRefs": [ + "ShadowIsles" + ], + "attack": 2, + "cost": 3, + "health": 1, + "description": "Play: Kill an ally to summon 2 Saplings.", + "descriptionRaw": "Play: Kill an ally to summon 2 Saplings.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"Every heart is a garden where roots may take hold!\"", + "artistName": "MAR Studio", + "name": "Blighted Caretaker", + "cardCode": "02SI004", + "keywords": [], + "keywordRefs": [], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "RARE", + "rarityRef": "Rare", + "subtypes": [], + "supertype": "", + "type": "Unit", + "collectible": true, + "set": "Set2" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set2/en_us/img/cards/02SI006.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set2/en_us/img/cards/02SI006-full.png" + } + ], + "regions": [ + "Shadow Isles" + ], + "regionRefs": [ + "ShadowIsles" + ], + "attack": 1, + "cost": 1, + "health": 1, + "description": "The first time an ally dies, grant me +2|+2.", + "descriptionRaw": "The first time an ally dies, grant me +2|+2.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "The creatures of the Shadow Isles shed sentimentality long ago. They all must eat.", + "artistName": "MAR Studio", + "name": "Barkbeast", + "cardCode": "02SI006", + "keywords": [], + "keywordRefs": [], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "COMMON", + "rarityRef": "Common", + "subtypes": [], + "supertype": "", + "type": "Unit", + "collectible": true, + "set": "Set2" + }, + { + "associatedCards": [], + "associatedCardRefs": [ + "02SI008T3" + ], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set2/en_us/img/cards/02SI009.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set2/en_us/img/cards/02SI009-full.png" + } + ], + "regions": [ + "Shadow Isles" + ], + "regionRefs": [ + "ShadowIsles" + ], + "attack": 0, + "cost": 1, + "health": 0, + "description": "Summon a Sapling at the next Round Start.", + "descriptionRaw": "Summon a Sapling at the next Round Start.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"Wheeeeeeee!\" - Sapling", + "artistName": "Kudos Productions", + "name": "Sapling Toss", + "cardCode": "02SI009", + "keywords": [ + "Burst" + ], + "keywordRefs": [ + "Burst" + ], + "spellSpeed": "Burst", + "spellSpeedRef": "Burst", + "rarity": "COMMON", + "rarityRef": "Common", + "subtypes": [], + "supertype": "", + "type": "Spell", + "collectible": true, + "set": "Set2" + }, + { + "associatedCards": [], + "associatedCardRefs": [ + "02IO008T1" + ], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set2/en_us/img/cards/02IO008.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set2/en_us/img/cards/02IO008-full.png" + } + ], + "regions": [ + "Ionia" + ], + "regionRefs": [ + "Ionia" + ], + "attack": 0, + "cost": 2, + "health": 0, + "description": "Give an ally Challenger this round.\r\nCreate a Fleeting Resonating Strike in hand.", + "descriptionRaw": "Give an ally Challenger this round.\r\nCreate a Fleeting Resonating Strike in hand.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"Master yourself...\" - Lee Sin", + "artistName": "Kudos Productions", + "name": "Sonic Wave", + "cardCode": "02IO008", + "keywords": [ + "Burst" + ], + "keywordRefs": [ + "Burst" + ], + "spellSpeed": "Burst", + "spellSpeedRef": "Burst", + "rarity": "COMMON", + "rarityRef": "Common", + "subtypes": [], + "supertype": "", + "type": "Spell", + "collectible": true, + "set": "Set2" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set2/en_us/img/cards/02IO008T1.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set2/en_us/img/cards/02IO008T1-full.png" + } + ], + "regions": [ + "Ionia" + ], + "regionRefs": [ + "Ionia" + ], + "attack": 0, + "cost": 1, + "health": 0, + "description": "Give an ally +2|+0 this round.", + "descriptionRaw": "Give an ally +2|+0 this round.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"...master the enemy.\" - Lee Sin", + "artistName": "Kudos Productions", + "name": "Resonating Strike", + "cardCode": "02IO008T1", + "keywords": [ + "Burst", + "Fleeting" + ], + "keywordRefs": [ + "Burst", + "Fleeting" + ], + "spellSpeed": "Burst", + "spellSpeedRef": "Burst", + "rarity": "None", + "rarityRef": "None", + "subtypes": [], + "supertype": "", + "type": "Spell", + "collectible": false, + "set": "Set2" + }, + { + "associatedCards": [], + "associatedCardRefs": [ + "02IO005" + ], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set2/en_us/img/cards/02IO005T1.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set2/en_us/img/cards/02IO005T1-full.png" + } + ], + "regions": [ + "Ionia" + ], + "regionRefs": [ + "Ionia" + ], + "attack": 3, + "cost": 3, + "health": 2, + "description": "When I'm Recalled, transform me into Concussive Palm.", + "descriptionRaw": "When I'm Recalled, transform me into Concussive Palm.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"A student must move with grace, for the Dragon's breath created the wind and waves which brought motion to our world.\" - Teachings of the Dragon", + "artistName": "SIXMOREVODKA", + "name": "Tail of the Dragon", + "cardCode": "02IO005T1", + "keywords": [], + "keywordRefs": [], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "None", + "rarityRef": "None", + "subtypes": [], + "supertype": "", + "type": "Unit", + "collectible": false, + "set": "Set2" + }, + { + "associatedCards": [], + "associatedCardRefs": [ + "02IO002T1" + ], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set2/en_us/img/cards/02IO002.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set2/en_us/img/cards/02IO002-full.png" + } + ], + "regions": [ + "Ionia" + ], + "regionRefs": [ + "Ionia" + ], + "attack": 4, + "cost": 3, + "health": 2, + "description": "When I'm summoned, create a Dragon's Protection in hand.", + "descriptionRaw": "When I'm summoned, create a Dragon's Protection in hand.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"A student must act with compassion, for the Dragon nurtured the First Lands, and graced them with warmth and life.\" - Teachings of the Dragon", + "artistName": "SIXMOREVODKA", + "name": "Scales of the Dragon", + "cardCode": "02IO002", + "keywords": [], + "keywordRefs": [], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "COMMON", + "rarityRef": "Common", + "subtypes": [], + "supertype": "", + "type": "Unit", + "collectible": true, + "set": "Set2" + }, + { + "associatedCards": [], + "associatedCardRefs": [ + "02IO002" + ], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set2/en_us/img/cards/02IO002T1.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set2/en_us/img/cards/02IO002T1-full.png" + } + ], + "regions": [ + "Ionia" + ], + "regionRefs": [ + "Ionia" + ], + "attack": 0, + "cost": 2, + "health": 0, + "description": "Grant an ally +0|+3.", + "descriptionRaw": "Grant an ally +0|+3.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"The Dragon will keep you safe.\" - Scales of the Dragon", + "artistName": "Kudos Productions", + "name": "Dragon's Protection", + "cardCode": "02IO002T1", + "keywords": [ + "Focus" + ], + "keywordRefs": [ + "Focus" + ], + "spellSpeed": "Burst", + "spellSpeedRef": "Burst", + "rarity": "None", + "rarityRef": "None", + "subtypes": [], + "supertype": "", + "type": "Spell", + "collectible": false, + "set": "Set2" + }, + { + "associatedCards": [], + "associatedCardRefs": [ + "02IO008T1", + "02IO011", + "02IO006T3", + "02IO006T1" + ], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set2/en_us/img/cards/02IO006.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set2/en_us/img/cards/02IO006-full.png" + } + ], + "regions": [ + "Ionia" + ], + "regionRefs": [ + "Ionia" + ], + "attack": 3, + "cost": 5, + "health": 5, + "description": "When you play a spell, give me Challenger this round.\r\nIf you play another, give me Barrier this round.", + "descriptionRaw": "When you play a spell, give me Challenger this round.\r\nIf you play another, give me Barrier this round.", + "levelupDescription": "You've played 8+ spells.", + "levelupDescriptionRaw": "You've played 8+ spells.", + "flavorText": "\"The Dragon aids the worthy. To the weary, it gives vigor. To the sick, comfort. To the lost, light. To the shaken, balance...\"", + "artistName": "SIXMOREVODKA", + "name": "Lee Sin", + "cardCode": "02IO006", + "keywords": [ + "Imbue" + ], + "keywordRefs": [ + "Imbue" + ], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "Champion", + "rarityRef": "Champion", + "subtypes": [], + "supertype": "Champion", + "type": "Unit", + "collectible": true, + "set": "Set2" + }, + { + "associatedCards": [], + "associatedCardRefs": [ + "02IO006T1", + "02IO006", + "02IO008T1" + ], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set2/en_us/img/cards/02IO011.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set2/en_us/img/cards/02IO011-full.png" + } + ], + "regions": [ + "Ionia" + ], + "regionRefs": [ + "Ionia" + ], + "attack": 0, + "cost": 2, + "health": 0, + "description": "Give an ally Challenger this round.\r\nCreate a Fleeting Resonating Strike in hand.\r\nCreate a Lee Sin in your deck.", + "descriptionRaw": "Give an ally Challenger this round.\r\nCreate a Fleeting Resonating Strike in hand.\r\nCreate a Lee Sin in your deck.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"Master yourself...\" - Lee Sin", + "artistName": "Kudos Productions", + "name": "Lee Sin's Sonic Wave", + "cardCode": "02IO011", + "keywords": [ + "Burst" + ], + "keywordRefs": [ + "Burst" + ], + "spellSpeed": "Burst", + "spellSpeedRef": "Burst", + "rarity": "None", + "rarityRef": "None", + "subtypes": [], + "supertype": "Champion", + "type": "Spell", + "collectible": false, + "set": "Set2" + }, + { + "associatedCards": [], + "associatedCardRefs": [ + "02IO008T1", + "02IO011", + "02IO006T3", + "02IO006" + ], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set2/en_us/img/cards/02IO006T1.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set2/en_us/img/cards/02IO006T1-full.png" + } + ], + "regions": [ + "Ionia" + ], + "regionRefs": [ + "Ionia" + ], + "attack": 4, + "cost": 5, + "health": 6, + "description": "When you play a spell, give me Challenger this round.\r\nIf you play another, give me Barrier this round.\r\nI Dragon's Rage enemies that I Challenge.", + "descriptionRaw": "When you play a spell, give me Challenger this round.\r\nIf you play another, give me Barrier this round.\r\nI Dragon's Rage enemies that I Challenge.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"...But for the tyrant, the Dragon breathes fire.\"", + "artistName": "SIXMOREVODKA", + "name": "Lee Sin", + "cardCode": "02IO006T1", + "keywords": [ + "Imbue" + ], + "keywordRefs": [ + "Imbue" + ], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "None", + "rarityRef": "None", + "subtypes": [], + "supertype": "Champion", + "type": "Unit", + "collectible": false, + "set": "Set2" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set2/en_us/img/cards/02IO006T3.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set2/en_us/img/cards/02IO006T3-full.png" + } + ], + "regions": [ + "Ionia" + ], + "regionRefs": [ + "Ionia" + ], + "attack": 0, + "cost": 0, + "health": 0, + "description": "An ally kicks an enemy into the enemy Nexus, striking both.\r\nIf the enemy survives, Recall it.", + "descriptionRaw": "An ally kicks an enemy into the enemy Nexus, striking both.\r\nIf the enemy survives, Recall it.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"The Dragon must be unleashed, or it will consume me from within.\" - Lee Sin", + "artistName": "Kudos Productions", + "name": "Dragon's Rage", + "cardCode": "02IO006T3", + "keywords": [ + "Skill" + ], + "keywordRefs": [ + "Skill" + ], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "None", + "rarityRef": "None", + "subtypes": [], + "supertype": "", + "type": "Ability", + "collectible": false, + "set": "Set2" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set2/en_us/img/cards/02IO004.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set2/en_us/img/cards/02IO004-full.png" + } + ], + "regions": [ + "Ionia" + ], + "regionRefs": [ + "Ionia" + ], + "attack": 4, + "cost": 6, + "health": 6, + "description": "", + "descriptionRaw": "", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"A student must strive with all their might, for the Dragon pulled the earth from beneath the waves, and gave us a land to call home.\" - Teachings of the Dragon", + "artistName": "JiHun Lee", + "name": "Horns of the Dragon", + "cardCode": "02IO004", + "keywords": [ + "Double Attack" + ], + "keywordRefs": [ + "DoubleStrike" + ], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "COMMON", + "rarityRef": "Common", + "subtypes": [], + "supertype": "", + "type": "Unit", + "collectible": true, + "set": "Set2" + }, + { + "associatedCards": [], + "associatedCardRefs": [ + "02IO003T1" + ], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set2/en_us/img/cards/02IO003.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set2/en_us/img/cards/02IO003-full.png" + } + ], + "regions": [ + "Ionia" + ], + "regionRefs": [ + "Ionia" + ], + "attack": 1, + "cost": 2, + "health": 3, + "description": "Round Start: Summon a Dragonling if you played 2+ spells last round.", + "descriptionRaw": "Round Start: Summon a Dragonling if you played 2+ spells last round.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"A student must think with clarity, for the Dragon draws the sun across our skies, and reveals the world around us.\"\n- Teachings of the Dragon", + "artistName": "Dao Le", + "name": "Eye of the Dragon", + "cardCode": "02IO003", + "keywords": [ + "Attune" + ], + "keywordRefs": [ + "Attune" + ], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "EPIC", + "rarityRef": "Epic", + "subtypes": [], + "supertype": "", + "type": "Unit", + "collectible": true, + "set": "Set2" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set2/en_us/img/cards/02IO001.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set2/en_us/img/cards/02IO001-full.png" + } + ], + "regions": [ + "Ionia" + ], + "regionRefs": [ + "Ionia" + ], + "attack": 3, + "cost": 2, + "health": 2, + "description": "Summon me from hand the first time you've played 2 spells each round.", + "descriptionRaw": "Summon me from hand the first time you've played 2 spells each round.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"A student must listen with focus, for the Dragon roared the first sounds, and blessed our young spirits with the gift of magic.\" - Teachings of the Dragon", + "artistName": "SIXMOREVODKA", + "name": "Claws of the Dragon", + "cardCode": "02IO001", + "keywords": [], + "keywordRefs": [], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "COMMON", + "rarityRef": "Common", + "subtypes": [], + "supertype": "", + "type": "Unit", + "collectible": true, + "set": "Set2" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set2/en_us/img/cards/02IO003T1.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set2/en_us/img/cards/02IO003T1-full.png" + } + ], + "regions": [ + "Ionia" + ], + "regionRefs": [ + "Ionia" + ], + "attack": 2, + "cost": 2, + "health": 1, + "description": "", + "descriptionRaw": "", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"The spirit gives to those who listen.\" - Eye of the Dragon", + "artistName": "Dao Le", + "name": "Dragonling", + "cardCode": "02IO003T1", + "keywords": [ + "Ephemeral", + "Lifesteal" + ], + "keywordRefs": [ + "Ephemeral", + "Lifesteal" + ], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "None", + "rarityRef": "None", + "subtypes": [ + "DRAGON" + ], + "supertype": "", + "type": "Unit", + "collectible": false, + "set": "Set2" + }, + { + "associatedCards": [], + "associatedCardRefs": [ + "02IO005T1" + ], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set2/en_us/img/cards/02IO005.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set2/en_us/img/cards/02IO005-full.png" + } + ], + "regions": [ + "Ionia" + ], + "regionRefs": [ + "Ionia" + ], + "attack": 0, + "cost": 4, + "health": 0, + "description": "Stun an enemy to summon a Tail of the Dragon.", + "descriptionRaw": "Stun an enemy to summon a Tail of the Dragon.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"You did not see me leave, nor will you see me return.\" - Tail of the Dragon", + "artistName": "Kudos Productions", + "name": "Concussive Palm", + "cardCode": "02IO005", + "keywords": [ + "Fast" + ], + "keywordRefs": [ + "Fast" + ], + "spellSpeed": "Fast", + "spellSpeedRef": "Fast", + "rarity": "RARE", + "rarityRef": "Rare", + "subtypes": [], + "supertype": "", + "type": "Spell", + "collectible": true, + "set": "Set2" + }, + { + "associatedCards": [], + "associatedCardRefs": [ + "02IO010T1" + ], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set2/en_us/img/cards/02IO010.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set2/en_us/img/cards/02IO010-full.png" + } + ], + "regions": [ + "Ionia" + ], + "regionRefs": [ + "Ionia" + ], + "attack": 0, + "cost": 2, + "health": 0, + "description": "Recall an ally to create a Fleeting Return in hand.", + "descriptionRaw": "Recall an ally to create a Fleeting Return in hand.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "The first Noxians to set foot on the Ionian beaches found a weak and unprepared enemy. Countless were slaughtered, but a handful managed to make their way to safety...", + "artistName": "Kudos Productions", + "name": "Retreat", + "cardCode": "02IO010", + "keywords": [ + "Fast" + ], + "keywordRefs": [ + "Fast" + ], + "spellSpeed": "Fast", + "spellSpeedRef": "Fast", + "rarity": "RARE", + "rarityRef": "Rare", + "subtypes": [], + "supertype": "", + "type": "Spell", + "collectible": true, + "set": "Set2" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set2/en_us/img/cards/02IO007.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set2/en_us/img/cards/02IO007-full.png" + } + ], + "regions": [ + "Ionia" + ], + "regionRefs": [ + "Ionia" + ], + "attack": 0, + "cost": 7, + "health": 0, + "description": "An ally kicks an enemy into the enemy Nexus, striking the enemy then the enemy Nexus.\r\nIf the enemy survives, Recall it.", + "descriptionRaw": "An ally kicks an enemy into the enemy Nexus, striking the enemy then the enemy Nexus.\r\nIf the enemy survives, Recall it.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"The Dragon must be unleashed, or it will consume me from within.\" - Lee Sin", + "artistName": "Kudos Productions", + "name": "Dragon's Rage", + "cardCode": "02IO007", + "keywords": [ + "Slow" + ], + "keywordRefs": [ + "Slow" + ], + "spellSpeed": "Slow", + "spellSpeedRef": "Slow", + "rarity": "EPIC", + "rarityRef": "Epic", + "subtypes": [], + "supertype": "", + "type": "Spell", + "collectible": true, + "set": "Set2" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set2/en_us/img/cards/02IO010T1.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set2/en_us/img/cards/02IO010T1-full.png" + } + ], + "regions": [ + "Ionia" + ], + "regionRefs": [ + "Ionia" + ], + "attack": 0, + "cost": 1, + "health": 0, + "description": "Summon an ally that costs 3 or less from hand.", + "descriptionRaw": "Summon an ally that costs 3 or less from hand.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "...and how they rallied. The survivors soon gathered their forces, found their center, and showed the invaders the resilient spirit of the First Lands.", + "artistName": "Kudos Productions", + "name": "Return", + "cardCode": "02IO010T1", + "keywords": [ + "Burst", + "Fleeting" + ], + "keywordRefs": [ + "Burst", + "Fleeting" + ], + "spellSpeed": "Burst", + "spellSpeedRef": "Burst", + "rarity": "None", + "rarityRef": "None", + "subtypes": [], + "supertype": "", + "type": "Spell", + "collectible": false, + "set": "Set2" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set2/en_us/img/cards/02IO009.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set2/en_us/img/cards/02IO009-full.png" + } + ], + "regions": [ + "Ionia" + ], + "regionRefs": [ + "Ionia" + ], + "attack": 0, + "cost": 5, + "health": 0, + "description": "Costs 2 less if you played 2+ spells last round.\r\nDraw 2 other spells.\r\n", + "descriptionRaw": "Costs 2 less if you played 2+ spells last round.\r\nDraw 2 other spells.\r\n", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "Meditation is a journey with no destination--a path that can only be followed by getting lost along the way.", + "artistName": "Kudos Productions", + "name": "Deep Meditation", + "cardCode": "02IO009", + "keywords": [ + "Burst" + ], + "keywordRefs": [ + "Burst" + ], + "spellSpeed": "Burst", + "spellSpeedRef": "Burst", + "rarity": "RARE", + "rarityRef": "Rare", + "subtypes": [], + "supertype": "", + "type": "Spell", + "collectible": true, + "set": "Set2" + } +] \ No newline at end of file diff --git a/data/set2-en_us/metadata.json b/data/set2-en_us/metadata.json new file mode 100644 index 0000000..73ddb2d --- /dev/null +++ b/data/set2-en_us/metadata.json @@ -0,0 +1,5 @@ +{ + "locales": [ + "en_us" + ] +} \ No newline at end of file diff --git a/data/set3-en_us/COPYRIGHT b/data/set3-en_us/COPYRIGHT new file mode 100644 index 0000000..095081a --- /dev/null +++ b/data/set3-en_us/COPYRIGHT @@ -0,0 +1 @@ +Copyright Riot Games, Inc. 2019 \ No newline at end of file diff --git a/data/set3-en_us/README.md b/data/set3-en_us/README.md new file mode 100644 index 0000000..378a7b6 --- /dev/null +++ b/data/set3-en_us/README.md @@ -0,0 +1,40 @@ +metadata.json +{ + "locales": ["{string}", ...], + "clientHash": "{string}" + "gameplayDataHash": "{string}", + "timestamp": "{YYYYMMDDhhmm}", + "patchlineRef": "{string}" +} + +cards.json +[ + { + "id": "{cardCode}", + "idComponents": + { + "set": "setNumber", + "region": + { + "id": "{shortRegionCode}", + "name": "{regionName}" + } + } + "name": "{name}", + "type": "{type}", + "subType": "{subType}", + "superType": "{superType}", + "description": "{description}", + "keywords": [], + "associatedCards": [{cardCode}, ...] + "health": "{health}", + "attack": "{attack}", + "cost": "{cost}", + "assets": + { + "gameAbsolutePath": "http://{cdn}/{bundleName}/set1/en_us/img/card/game/{cardCode}.png" + } + + }, + {...} +] diff --git a/data/set3-en_us/en_us/data/set3-en_us.json b/data/set3-en_us/en_us/data/set3-en_us.json new file mode 100644 index 0000000..5212dcd --- /dev/null +++ b/data/set3-en_us/en_us/data/set3-en_us.json @@ -0,0 +1,11899 @@ +[ + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set3/en_us/img/cards/03NX019.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set3/en_us/img/cards/03NX019-full.png" + } + ], + "regions": [ + "Noxus" + ], + "regionRefs": [ + "Noxus" + ], + "attack": 0, + "cost": 2, + "health": 0, + "description": "Your opponent discards the weakest follower from hand.", + "descriptionRaw": "Your opponent discards the weakest follower from hand.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"The frail have no place in this world. Each day brings them new torment, another turn of the vise. I do not deal in death, I deal in mercy.\" - Arrel the Tracker", + "artistName": "Kudos Productions", + "name": "Hunt the Weak", + "cardCode": "03NX019", + "keywords": [ + "Slow" + ], + "keywordRefs": [ + "Slow" + ], + "spellSpeed": "Slow", + "spellSpeedRef": "Slow", + "rarity": "RARE", + "rarityRef": "Rare", + "subtypes": [], + "supertype": "", + "type": "Spell", + "collectible": true, + "set": "Set3" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set3/en_us/img/cards/03NX022.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set3/en_us/img/cards/03NX022-full.png" + } + ], + "regions": [ + "Noxus" + ], + "regionRefs": [ + "Noxus" + ], + "attack": 0, + "cost": 5, + "health": 0, + "description": "An ally strikes an enemy. If it has Overwhelm, deal excess damage to the enemy Nexus.", + "descriptionRaw": "An ally strikes an enemy. If it has Overwhelm, deal excess damage to the enemy Nexus.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"Oooh the wildman's looking EXTRA savage today! Stay clear of those claws, folks!\" - Arena Battlecaster", + "artistName": "Kudos Productions", + "name": "Wild Claws", + "cardCode": "03NX022", + "keywords": [ + "Slow" + ], + "keywordRefs": [ + "Slow" + ], + "spellSpeed": "Slow", + "spellSpeedRef": "Slow", + "rarity": "EPIC", + "rarityRef": "Epic", + "subtypes": [], + "supertype": "", + "type": "Spell", + "collectible": true, + "set": "Set3" + }, + { + "associatedCards": [], + "associatedCardRefs": [ + "03NX007T1", + "03NX012", + "03NX007T3", + "03NX008", + "03NX010", + "03NX011" + ], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set3/en_us/img/cards/03NX007.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set3/en_us/img/cards/03NX007-full.png" + } + ], + "regions": [ + "Noxus" + ], + "regionRefs": [ + "Noxus" + ], + "attack": 3, + "cost": 3, + "health": 4, + "description": "When I'm summoned, if you have the attack token, or when you gain the attack token, Reforge.", + "descriptionRaw": "When I'm summoned, if you have the attack token, or when you gain the attack token, Reforge.", + "levelupDescription": "I see Blade of the Exile in your hand.", + "levelupDescriptionRaw": "I see Blade of the Exile in your hand.", + "flavorText": "\"I will not run from what I was. I made a promise to mend what I have broken...\"", + "artistName": "SIXMOREVODKA", + "name": "Riven", + "cardCode": "03NX007", + "keywords": [], + "keywordRefs": [], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "Champion", + "rarityRef": "Champion", + "subtypes": [], + "supertype": "Champion", + "type": "Unit", + "collectible": true, + "set": "Set3" + }, + { + "associatedCards": [], + "associatedCardRefs": [ + "03NX010", + "03NX011", + "03NX012" + ], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set3/en_us/img/cards/03NX008.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set3/en_us/img/cards/03NX008-full.png" + } + ], + "regions": [ + "Noxus" + ], + "regionRefs": [ + "Noxus" + ], + "attack": 0, + "cost": 1, + "health": 0, + "description": "Give an ally Overwhelm this round.\r\n", + "descriptionRaw": "Give an ally Overwhelm this round.\r\n", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"A warrior must know the weight of their weapon, burdened heavy with guilt.\" - Riven", + "artistName": "Kudos Productions", + "name": "Heavy Blade Fragment", + "cardCode": "03NX008", + "keywords": [ + "Focus" + ], + "keywordRefs": [ + "Focus" + ], + "spellSpeed": "Burst", + "spellSpeedRef": "Burst", + "rarity": "None", + "rarityRef": "None", + "subtypes": [], + "supertype": "", + "type": "Spell", + "collectible": false, + "set": "Set3" + }, + { + "associatedCards": [], + "associatedCardRefs": [ + "03NX007", + "03NX007T1", + "03NX012", + "03NX008", + "03NX010", + "03NX011" + ], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set3/en_us/img/cards/03NX007T3.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set3/en_us/img/cards/03NX007T3-full.png" + } + ], + "regions": [ + "Noxus" + ], + "regionRefs": [ + "Noxus" + ], + "attack": 0, + "cost": 2, + "health": 0, + "description": "Give an ally +2|+0 this round. Reforge.\r\nCreate a Riven in your deck.", + "descriptionRaw": "Give an ally +2|+0 this round. Reforge.\r\nCreate a Riven in your deck.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"To know your enemy, first know their weapon. It will tell you how they move, how they think, when they'll strike. It is the purest expression of its wielder.\" - Arrel the Tracker", + "artistName": "Kudos Productions", + "name": "Riven's Weapon Hilt", + "cardCode": "03NX007T3", + "keywords": [ + "Burst" + ], + "keywordRefs": [ + "Burst" + ], + "spellSpeed": "Burst", + "spellSpeedRef": "Burst", + "rarity": "None", + "rarityRef": "None", + "subtypes": [], + "supertype": "Champion", + "type": "Spell", + "collectible": false, + "set": "Set3" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set3/en_us/img/cards/03NX011.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set3/en_us/img/cards/03NX011-full.png" + } + ], + "regions": [ + "Noxus" + ], + "regionRefs": [ + "Noxus" + ], + "attack": 0, + "cost": 1, + "health": 0, + "description": "Grant an ally +2|+0, Overwhelm, and Quick Attack.", + "descriptionRaw": "Grant an ally +2|+0, Overwhelm, and Quick Attack.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"But a warrior is more than their weapon alone. They must know power, but also consequence, forgiveness, and redemption.\" - Riven", + "artistName": "Kudos Productions", + "name": "Blade of the Exile", + "cardCode": "03NX011", + "keywords": [ + "Slow" + ], + "keywordRefs": [ + "Slow" + ], + "spellSpeed": "Slow", + "spellSpeedRef": "Slow", + "rarity": "None", + "rarityRef": "None", + "subtypes": [], + "supertype": "", + "type": "Spell", + "collectible": false, + "set": "Set3" + }, + { + "associatedCards": [], + "associatedCardRefs": [ + "03NX011", + "03NX012", + "03NX008" + ], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set3/en_us/img/cards/03NX010.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set3/en_us/img/cards/03NX010-full.png" + } + ], + "regions": [ + "Noxus" + ], + "regionRefs": [ + "Noxus" + ], + "attack": 0, + "cost": 1, + "health": 0, + "description": "Give an ally Quick Attack this round.\r\n", + "descriptionRaw": "Give an ally Quick Attack this round.\r\n", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"A warrior must know the sharpness of their blade, an edge that cuts both friends and foes.\" - Riven", + "artistName": "Kudos Productions", + "name": "Keen Blade Fragment", + "cardCode": "03NX010", + "keywords": [ + "Focus" + ], + "keywordRefs": [ + "Focus" + ], + "spellSpeed": "Burst", + "spellSpeedRef": "Burst", + "rarity": "None", + "rarityRef": "None", + "subtypes": [], + "supertype": "", + "type": "Spell", + "collectible": false, + "set": "Set3" + }, + { + "associatedCards": [], + "associatedCardRefs": [ + "03NX007", + "03NX007T3", + "03NX012", + "03NX008", + "03NX010", + "03NX011" + ], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set3/en_us/img/cards/03NX007T1.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set3/en_us/img/cards/03NX007T1-full.png" + } + ], + "regions": [ + "Noxus" + ], + "regionRefs": [ + "Noxus" + ], + "attack": 4, + "cost": 3, + "health": 5, + "description": "When I'm summoned, if you have the attack token, or when you gain the attack token, Reforge.\r\nEach round, the first time you increase my Power, increase it by twice the amount.", + "descriptionRaw": "When I'm summoned, if you have the attack token, or when you gain the attack token, Reforge.\r\nEach round, the first time you increase my Power, increase it by twice the amount.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"...and I will not run from those who would break me.\"", + "artistName": "SIXMOREVODKA", + "name": "Riven", + "cardCode": "03NX007T1", + "keywords": [], + "keywordRefs": [], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "None", + "rarityRef": "None", + "subtypes": [], + "supertype": "Champion", + "type": "Unit", + "collectible": false, + "set": "Set3" + }, + { + "associatedCards": [], + "associatedCardRefs": [ + "03NX010", + "03NX011", + "03NX008" + ], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set3/en_us/img/cards/03NX012.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set3/en_us/img/cards/03NX012-full.png" + } + ], + "regions": [ + "Noxus" + ], + "regionRefs": [ + "Noxus" + ], + "attack": 0, + "cost": 1, + "health": 0, + "description": "Give an ally +2|+0 this round.\r\n", + "descriptionRaw": "Give an ally +2|+0 this round.\r\n", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"A warrior must know their weapon's history... every bloody piece.\" - Riven", + "artistName": "Kudos Productions", + "name": "Glinting Blade Fragment", + "cardCode": "03NX012", + "keywords": [ + "Focus" + ], + "keywordRefs": [ + "Focus" + ], + "spellSpeed": "Burst", + "spellSpeedRef": "Burst", + "rarity": "None", + "rarityRef": "None", + "subtypes": [], + "supertype": "", + "type": "Spell", + "collectible": false, + "set": "Set3" + }, + { + "associatedCards": [], + "associatedCardRefs": [ + "03NX012", + "03NX008", + "03NX010", + "03NX011" + ], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set3/en_us/img/cards/03NX006.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set3/en_us/img/cards/03NX006-full.png" + } + ], + "regions": [ + "Noxus" + ], + "regionRefs": [ + "Noxus" + ], + "attack": 0, + "cost": 2, + "health": 0, + "description": "Give an ally +2|+0 this round. Reforge.", + "descriptionRaw": "Give an ally +2|+0 this round. Reforge.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"To know your enemy, first know their weapon. It will tell you how they move, how they think, when they'll strike. It is the purest expression of its wielder.\" - Arrel the Tracker", + "artistName": "Kudos Productions", + "name": "Weapon Hilt", + "cardCode": "03NX006", + "keywords": [ + "Burst" + ], + "keywordRefs": [ + "Burst" + ], + "spellSpeed": "Burst", + "spellSpeedRef": "Burst", + "rarity": "COMMON", + "rarityRef": "Common", + "subtypes": [], + "supertype": "", + "type": "Spell", + "collectible": true, + "set": "Set3" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set3/en_us/img/cards/03NX002.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set3/en_us/img/cards/03NX002-full.png" + } + ], + "regions": [ + "Noxus" + ], + "regionRefs": [ + "Noxus" + ], + "attack": 2, + "cost": 6, + "health": 5, + "description": "Round End: If you played a spell on me this round, I strike the weakest enemy.", + "descriptionRaw": "Round End: If you played a spell on me this round, I strike the weakest enemy.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"Hide, we will find you. \nBreathe, we will hear you.\nRun, we will kill you.\"", + "artistName": "SIXMOREVODKA", + "name": "Arrel the Tracker", + "cardCode": "03NX002", + "keywords": [], + "keywordRefs": [], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "EPIC", + "rarityRef": "Epic", + "subtypes": [], + "supertype": "", + "type": "Unit", + "collectible": true, + "set": "Set3" + }, + { + "associatedCards": [], + "associatedCardRefs": [ + "01NX038" + ], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set3/en_us/img/cards/03NX018.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set3/en_us/img/cards/03NX018-full.png" + } + ], + "regions": [ + "Noxus" + ], + "regionRefs": [ + "Noxus" + ], + "attack": 0, + "cost": 2, + "health": 0, + "description": "Stun an enemy.\r\nIf you have a Darius, Rally.", + "descriptionRaw": "Stun an enemy.\r\nIf you have a Darius, Rally.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"I'll handle this myself.\" - Darius", + "artistName": "Kudos Productions", + "name": "Apprehend", + "cardCode": "03NX018", + "keywords": [ + "Slow" + ], + "keywordRefs": [ + "Slow" + ], + "spellSpeed": "Slow", + "spellSpeedRef": "Slow", + "rarity": "RARE", + "rarityRef": "Rare", + "subtypes": [], + "supertype": "", + "type": "Spell", + "collectible": true, + "set": "Set3" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set3/en_us/img/cards/03NX009.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set3/en_us/img/cards/03NX009-full.png" + } + ], + "regions": [ + "Noxus" + ], + "regionRefs": [ + "Noxus" + ], + "attack": 7, + "cost": 5, + "health": 3, + "description": "", + "descriptionRaw": "", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"There is nothing like hunting another soldier. To track them, you must think and feel as they do. To catch them, you must fear them as they fear you. It is a bond that few will know, but one I savor above all others.\"", + "artistName": "SIXMOREVODKA", + "name": "Wrathful Rider", + "cardCode": "03NX009", + "keywords": [ + "Challenger" + ], + "keywordRefs": [ + "Challenger" + ], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "COMMON", + "rarityRef": "Common", + "subtypes": [], + "supertype": "", + "type": "Unit", + "collectible": true, + "set": "Set3" + }, + { + "associatedCards": [], + "associatedCardRefs": [ + "03NX016" + ], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set3/en_us/img/cards/03NX017.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set3/en_us/img/cards/03NX017-full.png" + } + ], + "regions": [ + "Noxus" + ], + "regionRefs": [ + "Noxus" + ], + "attack": 7, + "cost": 7, + "health": 4, + "description": "Play: Deal 1 to an ally and an enemy 4 times.", + "descriptionRaw": "Play: Deal 1 to an ally and an enemy 4 times.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "The basilisk trainers withhold live food from the beasts in the days leading up to battle. By the time the creatures are unleashed, they do not distinguish friend from foe, and are utterly indomitable.", + "artistName": "Kudos Productions", + "name": "Basilisk Bloodseeker", + "cardCode": "03NX017", + "keywords": [ + "Overwhelm" + ], + "keywordRefs": [ + "Overwhelm" + ], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "EPIC", + "rarityRef": "Epic", + "subtypes": [], + "supertype": "", + "type": "Unit", + "collectible": true, + "set": "Set3" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set3/en_us/img/cards/03NX016.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set3/en_us/img/cards/03NX016-full.png" + } + ], + "regions": [ + "Noxus" + ], + "regionRefs": [ + "Noxus" + ], + "attack": 0, + "cost": 0, + "health": 0, + "description": "Deal 1 to an ally and an enemy 4 times.", + "descriptionRaw": "Deal 1 to an ally and an enemy 4 times.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"It's not the sharpness of the claws you've got to look out for, it's the appetite of the beast that's grown 'em.\" - Basilisk trainer", + "artistName": "Kudos Productions", + "name": "Gouge", + "cardCode": "03NX016", + "keywords": [ + "Skill" + ], + "keywordRefs": [ + "Skill" + ], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "None", + "rarityRef": "None", + "subtypes": [], + "supertype": "", + "type": "Ability", + "collectible": false, + "set": "Set3" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set3/en_us/img/cards/03NX015.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set3/en_us/img/cards/03NX015-full.png" + } + ], + "regions": [ + "Noxus" + ], + "regionRefs": [ + "Noxus" + ], + "attack": 0, + "cost": 5, + "health": 0, + "description": "Allies can't drop below 1 health this round.\r\nWhen discarded, your strongest ally can't drop below 1 health this round.", + "descriptionRaw": "Allies can't drop below 1 health this round.\r\nWhen discarded, your strongest ally can't drop below 1 health this round.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"The drakehounds have the scent. They will find her, and we will finish this. There is no other way.\" - Arrel the Tracker", + "artistName": "Kudos Productions", + "name": "Survival Skills", + "cardCode": "03NX015", + "keywords": [ + "Slow" + ], + "keywordRefs": [ + "Slow" + ], + "spellSpeed": "Slow", + "spellSpeedRef": "Slow", + "rarity": "RARE", + "rarityRef": "Rare", + "subtypes": [], + "supertype": "", + "type": "Spell", + "collectible": true, + "set": "Set3" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set3/en_us/img/cards/03NX014.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set3/en_us/img/cards/03NX014-full.png" + } + ], + "regions": [ + "Noxus" + ], + "regionRefs": [ + "Noxus" + ], + "attack": 0, + "cost": 3, + "health": 0, + "description": "Give an ally +3|+2 this round.", + "descriptionRaw": "Give an ally +3|+2 this round.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"Yeah, I'll mend your weapons, and tend to the mounts, and cook your bloody food. What else am I good for, eh?\" - Erath, Blade Squire", + "artistName": "Kudos Productions", + "name": "Sharpened Resolve", + "cardCode": "03NX014", + "keywords": [ + "Burst" + ], + "keywordRefs": [ + "Burst" + ], + "spellSpeed": "Burst", + "spellSpeedRef": "Burst", + "rarity": "COMMON", + "rarityRef": "Common", + "subtypes": [], + "supertype": "", + "type": "Spell", + "collectible": true, + "set": "Set3" + }, + { + "associatedCards": [], + "associatedCardRefs": [ + "03NX012", + "03NX008", + "03NX010", + "03NX011" + ], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set3/en_us/img/cards/03NX003.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set3/en_us/img/cards/03NX003-full.png" + } + ], + "regions": [ + "Noxus" + ], + "regionRefs": [ + "Noxus" + ], + "attack": 2, + "cost": 1, + "health": 1, + "description": "Last Breath: Reforge.", + "descriptionRaw": "Last Breath: Reforge.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"Like the huntresses said--a hundred days and nights. A hundred blisters on these feet, a hundred bugs in my breakfast, a hundred 'blade'-this and 'vengeance' that. And well more than a hundred brow-beatings from those three, I'll tell you...\" ", + "artistName": "SIXMOREVODKA", + "name": "Blade Squire", + "cardCode": "03NX003", + "keywords": [ + "Last Breath" + ], + "keywordRefs": [ + "LastBreath" + ], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "COMMON", + "rarityRef": "Common", + "subtypes": [], + "supertype": "", + "type": "Unit", + "collectible": true, + "set": "Set3" + }, + { + "associatedCards": [], + "associatedCardRefs": [ + "03NX012", + "03NX008", + "03NX010", + "03NX011" + ], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set3/en_us/img/cards/03NX001.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set3/en_us/img/cards/03NX001-full.png" + } + ], + "regions": [ + "Noxus" + ], + "regionRefs": [ + "Noxus" + ], + "attack": 3, + "cost": 2, + "health": 1, + "description": "When I'm summoned, Reforge.", + "descriptionRaw": "When I'm summoned, Reforge.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"Most weapons are crude tools, no better than the hands that wield them. But a weapon infused with runic magic is so much more than mere steel.\"", + "artistName": "SIXMOREVODKA", + "name": "Runeweaver", + "cardCode": "03NX001", + "keywords": [], + "keywordRefs": [], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "COMMON", + "rarityRef": "Common", + "subtypes": [], + "supertype": "", + "type": "Unit", + "collectible": true, + "set": "Set3" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set3/en_us/img/cards/03NX005.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set3/en_us/img/cards/03NX005-full.png" + } + ], + "regions": [ + "Noxus" + ], + "regionRefs": [ + "Noxus" + ], + "attack": 3, + "cost": 4, + "health": 3, + "description": "When I'm summoned, give me Quick Attack this round.", + "descriptionRaw": "When I'm summoned, give me Quick Attack this round.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"There you are. We KNEW you wouldn't come without a fight! Or so we hoped.\"", + "artistName": "SIXMOREVODKA", + "name": "Brutal Hunter", + "cardCode": "03NX005", + "keywords": [ + "Challenger" + ], + "keywordRefs": [ + "Challenger" + ], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "RARE", + "rarityRef": "Rare", + "subtypes": [], + "supertype": "", + "type": "Unit", + "collectible": true, + "set": "Set3" + }, + { + "associatedCards": [], + "associatedCardRefs": [ + "03BW006T1" + ], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set3/en_us/img/cards/03BW006.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set3/en_us/img/cards/03BW006-full.png" + } + ], + "regions": [ + "Bilgewater" + ], + "regionRefs": [ + "Bilgewater" + ], + "attack": 5, + "cost": 5, + "health": 5, + "description": "Round Start: Create a Sleep with the Fishes in hand.", + "descriptionRaw": "Round Start: Create a Sleep with the Fishes in hand.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "Years in the boxing ring taught Jack valuable lessons. He learned that if his opponent can bleed, they can fear. He learned the power of a silent stare. He learned the power of uncontrolled violence.", + "artistName": "JiHun Lee", + "name": "Jack, the Winner", + "cardCode": "03BW006", + "keywords": [], + "keywordRefs": [], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "EPIC", + "rarityRef": "Epic", + "subtypes": [], + "supertype": "", + "type": "Unit", + "collectible": true, + "set": "Set3" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set3/en_us/img/cards/03BW010.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set3/en_us/img/cards/03BW010-full.png" + } + ], + "regions": [ + "Bilgewater" + ], + "regionRefs": [ + "Bilgewater" + ], + "attack": 0, + "cost": 3, + "health": 0, + "description": "An ally Captures another ally and gains the captured ally's stats.", + "descriptionRaw": "An ally Captures another ally and gains the captured ally's stats.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"Step inside, friend, and all that you desire shall be yours in perpetuity.\" - Tahm Kench", + "artistName": "Kudos Productions", + "name": "Bayou Brunch", + "cardCode": "03BW010", + "keywords": [ + "Slow" + ], + "keywordRefs": [ + "Slow" + ], + "spellSpeed": "Slow", + "spellSpeedRef": "Slow", + "rarity": "COMMON", + "rarityRef": "Common", + "subtypes": [], + "supertype": "", + "type": "Spell", + "collectible": true, + "set": "Set3" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set3/en_us/img/cards/03BW005.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set3/en_us/img/cards/03BW005-full.png" + } + ], + "regions": [ + "Bilgewater" + ], + "regionRefs": [ + "Bilgewater" + ], + "attack": 0, + "cost": 8, + "health": 0, + "description": "Place a unit or landmark into its deck.", + "descriptionRaw": "Place a unit or landmark into its deck.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"Now, I delivered to you exactly what you wanted, friend. I never said it would last forever.\" - Tahm Kench", + "artistName": "Kudos Productions", + "name": "Sunk Cost", + "cardCode": "03BW005", + "keywords": [ + "Slow" + ], + "keywordRefs": [ + "Slow" + ], + "spellSpeed": "Slow", + "spellSpeedRef": "Slow", + "rarity": "RARE", + "rarityRef": "Rare", + "subtypes": [], + "supertype": "", + "type": "Spell", + "collectible": true, + "set": "Set3" + }, + { + "associatedCards": [], + "associatedCardRefs": [ + "03BW004T4", + "03BW004T3", + "03BW004T2" + ], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set3/en_us/img/cards/03BW004.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set3/en_us/img/cards/03BW004-full.png" + } + ], + "regions": [ + "Bilgewater" + ], + "regionRefs": [ + "Bilgewater" + ], + "attack": 2, + "cost": 4, + "health": 6, + "description": "Round Start: Create an An Acquired Taste in hand.", + "descriptionRaw": "Round Start: Create an An Acquired Taste in hand.", + "levelupDescription": "I've Captured 3+ units. When I level up, Obliterate my Captured enemies and release my allies.", + "levelupDescriptionRaw": "I've Captured 3+ units. When I level up, Obliterate my Captured enemies and release my allies.", + "flavorText": "\"My friend, I know that expression. I can see you feelin' like the cards you're holdin' ain't the ones you deserve. You got a desire for the finer things, don'tcha? Perhaps you'll allow me to satisfy your hunger, let you savor all that you ever desired. All I need is your name, scratched on my paper... and you, my friend, will be satisfied for life.\"", + "artistName": "SIXMOREVODKA", + "name": "Tahm Kench", + "cardCode": "03BW004", + "keywords": [], + "keywordRefs": [], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "Champion", + "rarityRef": "Champion", + "subtypes": [], + "supertype": "Champion", + "type": "Unit", + "collectible": true, + "set": "Set3" + }, + { + "associatedCards": [], + "associatedCardRefs": [ + "03BW004T3", + "03BW004" + ], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set3/en_us/img/cards/03BW004T2.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set3/en_us/img/cards/03BW004T2-full.png" + } + ], + "regions": [ + "Bilgewater" + ], + "regionRefs": [ + "Bilgewater" + ], + "attack": 0, + "cost": 2, + "health": 0, + "description": "Tahm Kench swallows an enemy unit. It strikes him, then he Captures it.", + "descriptionRaw": "Tahm Kench swallows an enemy unit. It strikes him, then he Captures it.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"You had a chance to walk away. Instead, you're the fool who let me in...\" - Tahm Kench", + "artistName": "Kudos Productions", + "name": "An Acquired Taste", + "cardCode": "03BW004T2", + "keywords": [ + "Slow", + "Fleeting" + ], + "keywordRefs": [ + "Slow", + "Fleeting" + ], + "spellSpeed": "Slow", + "spellSpeedRef": "Slow", + "rarity": "None", + "rarityRef": "None", + "subtypes": [], + "supertype": "", + "type": "Spell", + "collectible": false, + "set": "Set3" + }, + { + "associatedCards": [], + "associatedCardRefs": [ + "03BW004T4", + "03BW004", + "03BW004T2" + ], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set3/en_us/img/cards/03BW004T3.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set3/en_us/img/cards/03BW004T3-full.png" + } + ], + "regions": [ + "Bilgewater" + ], + "regionRefs": [ + "Bilgewater" + ], + "attack": 3, + "cost": 4, + "health": 7, + "description": "Round Start: Create an An Acquired Taste in hand.\r\nAttack: Obliterate my Captured enemies and release my allies.", + "descriptionRaw": "Round Start: Create an An Acquired Taste in hand.\r\nAttack: Obliterate my Captured enemies and release my allies.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"You struck a deal, my friend, and though you will undoubtedly bask in its benefits, remember... there will be a time when I get my fill, too.\"", + "artistName": "SIXMOREVODKA", + "name": "Tahm Kench", + "cardCode": "03BW004T3", + "keywords": [], + "keywordRefs": [], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "None", + "rarityRef": "None", + "subtypes": [], + "supertype": "Champion", + "type": "Unit", + "collectible": false, + "set": "Set3" + }, + { + "associatedCards": [], + "associatedCardRefs": [ + "03BW004", + "03BW004T3" + ], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set3/en_us/img/cards/03BW004T4.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set3/en_us/img/cards/03BW004T4-full.png" + } + ], + "regions": [ + "Bilgewater" + ], + "regionRefs": [ + "Bilgewater" + ], + "attack": 0, + "cost": 3, + "health": 0, + "description": "An ally Captures another ally and gains the captured ally's stats.\r\nCreate a Tahm Kench in your deck.", + "descriptionRaw": "An ally Captures another ally and gains the captured ally's stats.\r\nCreate a Tahm Kench in your deck.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"Step inside, friend, and all that you desire shall be yours in perpetuity.\" - Tahm Kench", + "artistName": "Kudos Productions", + "name": "Tahm Kench's Bayou Brunch", + "cardCode": "03BW004T4", + "keywords": [ + "Slow" + ], + "keywordRefs": [ + "Slow" + ], + "spellSpeed": "Slow", + "spellSpeedRef": "Slow", + "rarity": "None", + "rarityRef": "None", + "subtypes": [], + "supertype": "Champion", + "type": "Spell", + "collectible": false, + "set": "Set3" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set3/en_us/img/cards/03BW002.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set3/en_us/img/cards/03BW002-full.png" + } + ], + "regions": [ + "Bilgewater" + ], + "regionRefs": [ + "Bilgewater" + ], + "attack": 3, + "cost": 3, + "health": 5, + "description": "Round Start: Deal 2 to me.", + "descriptionRaw": "Round Start: Deal 2 to me.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"Ah, people are stupid! Give them cold drink and warm chair, and they tell all kinds of secrets to friendly faces. And who has friendlier face than young Leonard, hmm?\" - Fortune Croaker", + "artistName": "Grafit Studio", + "name": "Lounging Lizard", + "cardCode": "03BW002", + "keywords": [ + "Elusive" + ], + "keywordRefs": [ + "Elusive" + ], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "COMMON", + "rarityRef": "Common", + "subtypes": [], + "supertype": "", + "type": "Unit", + "collectible": true, + "set": "Set3" + }, + { + "associatedCards": [], + "associatedCardRefs": [ + "02BW034T1" + ], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set3/en_us/img/cards/03BW014.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set3/en_us/img/cards/03BW014-full.png" + } + ], + "regions": [ + "Bilgewater" + ], + "regionRefs": [ + "Bilgewater" + ], + "attack": 0, + "cost": 2, + "health": 0, + "description": "Summon a Powder Monkey.\r\nPlunder: Summon another at the next Round Start.", + "descriptionRaw": "Summon a Powder Monkey.\r\nPlunder: Summon another at the next Round Start.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"Aw... d'ye think they're cute? WELL, THEY'RE NOT. They get into everything, they're messier than a seasick courier, an' THEY WON'T BLOODY SHUT UP. NO MONKEYS ON THE SHIP. THAT'S THE END OF IT.\" - Petty Officer", + "artistName": "Kudos Productions", + "name": "Monkey Business", + "cardCode": "03BW014", + "keywords": [ + "Slow", + "Plunder" + ], + "keywordRefs": [ + "Slow", + "Plunder" + ], + "spellSpeed": "Slow", + "spellSpeedRef": "Slow", + "rarity": "COMMON", + "rarityRef": "Common", + "subtypes": [], + "supertype": "", + "type": "Spell", + "collectible": true, + "set": "Set3" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set3/en_us/img/cards/03BW007.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set3/en_us/img/cards/03BW007-full.png" + } + ], + "regions": [ + "Bilgewater" + ], + "regionRefs": [ + "Bilgewater" + ], + "attack": 3, + "cost": 2, + "health": 4, + "description": "Play: Deal 3 to me.", + "descriptionRaw": "Play: Deal 3 to me.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"Sure, Pablo might be in a bit of a 'dry patch'--heh--and, yeah, he's taken his fair share of punches... but ya know what? Ain't nobody else around here getting octokills, pal.\" - Wise Fry", + "artistName": "Grafit Studio", + "name": "Boxtopus", + "cardCode": "03BW007", + "keywords": [ + "Challenger" + ], + "keywordRefs": [ + "Challenger" + ], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "COMMON", + "rarityRef": "Common", + "subtypes": [], + "supertype": "", + "type": "Unit", + "collectible": true, + "set": "Set3" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set3/en_us/img/cards/03BW006T1.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set3/en_us/img/cards/03BW006T1-full.png" + } + ], + "regions": [ + "Bilgewater" + ], + "regionRefs": [ + "Bilgewater" + ], + "attack": 0, + "cost": 0, + "health": 0, + "description": "Deal 2 to an ally to deal 2 to the enemy Nexus.", + "descriptionRaw": "Deal 2 to an ally to deal 2 to the enemy Nexus.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"Daub 'em with your blood, and set the sharks loose.\" - Jack, the Winner", + "artistName": "Kudos Productions", + "name": "Sleep with the Fishes", + "cardCode": "03BW006T1", + "keywords": [ + "Slow", + "Fleeting" + ], + "keywordRefs": [ + "Slow", + "Fleeting" + ], + "spellSpeed": "Slow", + "spellSpeedRef": "Slow", + "rarity": "None", + "rarityRef": "None", + "subtypes": [], + "supertype": "", + "type": "Spell", + "collectible": false, + "set": "Set3" + }, + { + "associatedCards": [], + "associatedCardRefs": [ + "02BW032T1" + ], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set3/en_us/img/cards/03BW016.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set3/en_us/img/cards/03BW016-full.png" + } + ], + "regions": [ + "Bilgewater" + ], + "regionRefs": [ + "Bilgewater" + ], + "attack": 0, + "cost": 3, + "health": 0, + "description": "Deal 1 to a unit.\r\nThen summon Powder Kegs equal to the amount of damage dealt.", + "descriptionRaw": "Deal 1 to a unit.\r\nThen summon Powder Kegs equal to the amount of damage dealt.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"Young Gerent raised the alarm right afore the first one blew. Our hull rocked, the jib caught flame, but the Jilldaw held. Thought that was that, but as I followed Gerent's gaze out to sea, I saw me four more rowboats comin' our way, all loaded with powder.\" - Jilldaw survivor", + "artistName": "Kudos Productions", + "name": "Boomship", + "cardCode": "03BW016", + "keywords": [ + "Slow" + ], + "keywordRefs": [ + "Slow" + ], + "spellSpeed": "Slow", + "spellSpeedRef": "Slow", + "rarity": "RARE", + "rarityRef": "Rare", + "subtypes": [], + "supertype": "", + "type": "Spell", + "collectible": true, + "set": "Set3" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set3/en_us/img/cards/03BW001.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set3/en_us/img/cards/03BW001-full.png" + } + ], + "regions": [ + "Bilgewater" + ], + "regionRefs": [ + "Bilgewater" + ], + "attack": 0, + "cost": 3, + "health": 0, + "description": "Round Start: Toss 1. If you are Deep, destroy me to summon a random Sea Monster. ", + "descriptionRaw": "Round Start: Toss 1. If you are Deep, destroy me to summon a random Sea Monster. ", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "Every day, locals wander through the Slaughter Docks to see the horrors Bilgewater's hunters have hauled up from the depths. The beasts are usually dead. Usually.", + "artistName": "SIXMOREVODKA", + "name": "The Slaughter Docks", + "cardCode": "03BW001", + "keywords": [ + "Landmark" + ], + "keywordRefs": [ + "LandmarkVisualOnly" + ], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "EPIC", + "rarityRef": "Epic", + "subtypes": [], + "supertype": "", + "type": "Landmark", + "collectible": true, + "set": "Set3" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set3/en_us/img/cards/03BW015.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set3/en_us/img/cards/03BW015-full.png" + } + ], + "regions": [ + "Bilgewater" + ], + "regionRefs": [ + "Bilgewater" + ], + "attack": 2, + "cost": 1, + "health": 4, + "description": "Play: Deal 2 to me.", + "descriptionRaw": "Play: Deal 2 to me.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"RING THE BELL, WILL YA?! AH'LL SHOW THAT POINTY FART WHY AH'VE GOT ALL MA NICKNAMES, AYE. 'EIGHT PUNCH PABLO', 'THE CRACKIN' KRAKEN', 'THE TENTACLED TERROR'! YOUR WEE STINGER'S GONNA BE CRYING FOR YA MAMMIE BY THE TIME AH'M DONE WI' YA!\" - Boxtopus", + "artistName": "SIXMOREVODKA", + "name": "Crusty Codger", + "cardCode": "03BW015", + "keywords": [], + "keywordRefs": [], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "COMMON", + "rarityRef": "Common", + "subtypes": [], + "supertype": "", + "type": "Unit", + "collectible": true, + "set": "Set3" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set3/en_us/img/cards/03BW003.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set3/en_us/img/cards/03BW003-full.png" + } + ], + "regions": [ + "Bilgewater" + ], + "regionRefs": [ + "Bilgewater" + ], + "attack": 3, + "cost": 6, + "health": 8, + "description": "Play: Deal 1 to all other allies and grant me +1|+0 for each of them.", + "descriptionRaw": "Play: Deal 1 to all other allies and grant me +1|+0 for each of them.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "The rise to power is often a violent business... but it's not normally this freakin' sloppy.", + "artistName": "Grafit Studio", + "name": "Wise Fry", + "cardCode": "03BW003", + "keywords": [ + "Overwhelm", + "Vulnerable" + ], + "keywordRefs": [ + "Overwhelm", + "Vulnerable" + ], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "RARE", + "rarityRef": "Rare", + "subtypes": [], + "supertype": "", + "type": "Unit", + "collectible": true, + "set": "Set3" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set3/en_us/img/cards/03BW017.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set3/en_us/img/cards/03BW017-full.png" + } + ], + "regions": [ + "Bilgewater" + ], + "regionRefs": [ + "Bilgewater" + ], + "attack": 2, + "cost": 6, + "health": 1, + "description": "Reduce my cost by 1 for each spell you've played this game.\r\nWhen I'm summoned, create in hand a random 1 cost spell from your regions.", + "descriptionRaw": "Reduce my cost by 1 for each spell you've played this game.\r\nWhen I'm summoned, create in hand a random 1 cost spell from your regions.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"Stand stwait, noobie! Your mishun is to infiltrate behind emenee lines, plant as many bubbels as you can, an' tell us evewythin' you SEE! E-VE-WEE-THIN'. DO YOU UNNASTAN'?!\" - Admiwal Shelly, Shellshocker", + "artistName": "SIXMOREVODKA", + "name": "Wiggly Burblefish", + "cardCode": "03BW017", + "keywords": [ + "Elusive" + ], + "keywordRefs": [ + "Elusive" + ], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "EPIC", + "rarityRef": "Epic", + "subtypes": [], + "supertype": "", + "type": "Unit", + "collectible": true, + "set": "Set3" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set3/en_us/img/cards/03BW008.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set3/en_us/img/cards/03BW008-full.png" + } + ], + "regions": [ + "Bilgewater" + ], + "regionRefs": [ + "Bilgewater" + ], + "attack": 2, + "cost": 2, + "health": 3, + "description": "Play: Deal 1 to me and an ally to draw 1.", + "descriptionRaw": "Play: Deal 1 to me and an ally to draw 1.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"Ol' Babs has had a few mishaps. Killed a few locals in her time, but I s'pose it helps lend her an air of authenticity.\" - Lounging Lizard", + "artistName": "Grafit Studio", + "name": "Fortune Croaker", + "cardCode": "03BW008", + "keywords": [], + "keywordRefs": [], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "COMMON", + "rarityRef": "Common", + "subtypes": [], + "supertype": "", + "type": "Unit", + "collectible": true, + "set": "Set3" + }, + { + "associatedCards": [], + "associatedCardRefs": [ + "02BW034T1" + ], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set3/en_us/img/cards/03BW020.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set3/en_us/img/cards/03BW020-full.png" + } + ], + "regions": [ + "Bilgewater" + ], + "regionRefs": [ + "Bilgewater" + ], + "attack": 0, + "cost": 4, + "health": 0, + "description": "Summon a Powder Monkey and give a random enemy Vulnerable this round for each time you've activated Plunder this game. ", + "descriptionRaw": "Summon a Powder Monkey and give a random enemy Vulnerable this round for each time you've activated Plunder this game. ", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"Oh, those little sootballs aren't so bad. Here's a tip for you--they like fireworks. So, you take out an enemy's gunpowder stores, and the monkeys, well, they'll do the rest.\" - Miss Fortune", + "artistName": "Kudos Productions", + "name": "Powder Pandemonium", + "cardCode": "03BW020", + "keywords": [ + "Slow", + "Plunder" + ], + "keywordRefs": [ + "Slow", + "Plunder" + ], + "spellSpeed": "Slow", + "spellSpeedRef": "Slow", + "rarity": "EPIC", + "rarityRef": "Epic", + "subtypes": [], + "supertype": "", + "type": "Spell", + "collectible": true, + "set": "Set3" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set3/en_us/img/cards/03BW009.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set3/en_us/img/cards/03BW009-full.png" + } + ], + "regions": [ + "Bilgewater" + ], + "regionRefs": [ + "Bilgewater" + ], + "attack": 0, + "cost": 1, + "health": 0, + "description": "Deal 2 to an ally to grant 2 enemies Vulnerable.", + "descriptionRaw": "Deal 2 to an ally to grant 2 enemies Vulnerable.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"You gonna tell me where you got those 'extra kegs', Slim? Huh? Otherwise, we could play a lil' tug-of-war between your tongue and Jimbo's arm. And buddy... I ain't bettin' on you.\" - Wise Fry", + "artistName": "Kudos Productions", + "name": "Shakedown", + "cardCode": "03BW009", + "keywords": [ + "Burst" + ], + "keywordRefs": [ + "Burst" + ], + "spellSpeed": "Burst", + "spellSpeedRef": "Burst", + "rarity": "RARE", + "rarityRef": "Rare", + "subtypes": [], + "supertype": "", + "type": "Spell", + "collectible": true, + "set": "Set3" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set3/en_us/img/cards/03DE010.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set3/en_us/img/cards/03DE010-full.png" + } + ], + "regions": [ + "Demacia" + ], + "regionRefs": [ + "Demacia" + ], + "attack": 0, + "cost": 3, + "health": 0, + "description": "When an ally is summoned, give it +1|+0 and Challenger this round.", + "descriptionRaw": "When an ally is summoned, give it +1|+0 and Challenger this round.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "Tianna looked out over the assembly, assessing the gathered ranks. The only sound in the square was her banner snapping in the breeze. She gave a curt nod of approval, then lifted the banner with a shout. \"Who among you is ready to fight for Demacia?\" The resounding cry from all those assembled shook the very mountains. ", + "artistName": "SIXMOREVODKA", + "name": "The Grand Plaza", + "cardCode": "03DE010", + "keywords": [ + "Landmark" + ], + "keywordRefs": [ + "LandmarkVisualOnly" + ], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "EPIC", + "rarityRef": "Epic", + "subtypes": [], + "supertype": "", + "type": "Landmark", + "collectible": true, + "set": "Set3" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set3/en_us/img/cards/03MT005.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set3/en_us/img/cards/03MT005-full.png" + } + ], + "regions": [ + "Targon" + ], + "regionRefs": [ + "Targon" + ], + "attack": 0, + "cost": 3, + "health": 0, + "description": "Draw a landmark or destroy a landmark.", + "descriptionRaw": "Draw a landmark or destroy a landmark.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "Targon is a capricious place, where the unbreakable is broken, and the broken made whole.", + "artistName": "Kudos Productions", + "name": "Divergent Paths", + "cardCode": "03MT005", + "keywords": [ + "Fast" + ], + "keywordRefs": [ + "Fast" + ], + "spellSpeed": "Fast", + "spellSpeedRef": "Fast", + "rarity": "COMMON", + "rarityRef": "Common", + "subtypes": [], + "supertype": "", + "type": "Spell", + "collectible": true, + "set": "Set3" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set3/en_us/img/cards/03FR009.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set3/en_us/img/cards/03FR009-full.png" + } + ], + "regions": [ + "Freljord" + ], + "regionRefs": [ + "Freljord" + ], + "attack": 0, + "cost": 6, + "health": 0, + "description": "Round Start: Create in hand a random level 2 champion that's not in your hand, deck, or play.", + "descriptionRaw": "Round Start: Create in hand a random level 2 champion that's not in your hand, deck, or play.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "Heroes come to the bridge, called to it by something from the unknown. They brave its bitter cold and crumbling deck to see what lies beyond--victory, or death.", + "artistName": "SIXMOREVODKA", + "name": "The Howling Abyss", + "cardCode": "03FR009", + "keywords": [ + "Landmark" + ], + "keywordRefs": [ + "LandmarkVisualOnly" + ], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "EPIC", + "rarityRef": "Epic", + "subtypes": [], + "supertype": "", + "type": "Landmark", + "collectible": true, + "set": "Set3" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set3/en_us/img/cards/03SI009.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set3/en_us/img/cards/03SI009-full.png" + } + ], + "regions": [ + "Shadow Isles" + ], + "regionRefs": [ + "ShadowIsles" + ], + "attack": 0, + "cost": 5, + "health": 0, + "description": "Round Start: If you can, kill your most expensive ally to summon an ally from your deck that costs 1 more.", + "descriptionRaw": "Round Start: If you can, kill your most expensive ally to summon an ally from your deck that costs 1 more.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "What could better lure a soul to this wretched place than the promise of eternal life, and endless riches?", + "artistName": "SIXMOREVODKA", + "name": "Vaults of Helia", + "cardCode": "03SI009", + "keywords": [ + "Landmark" + ], + "keywordRefs": [ + "LandmarkVisualOnly" + ], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "EPIC", + "rarityRef": "Epic", + "subtypes": [], + "supertype": "", + "type": "Landmark", + "collectible": true, + "set": "Set3" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set3/en_us/img/cards/03MT052.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set3/en_us/img/cards/03MT052-full.png" + } + ], + "regions": [ + "Targon" + ], + "regionRefs": [ + "Targon" + ], + "attack": 0, + "cost": 2, + "health": 0, + "description": "Round End: Heal damaged allies 1. Then, once I've seen you heal 22+ damage from allies, win the game. ", + "descriptionRaw": "Round End: Heal damaged allies 1. Then, once I've seen you heal 22+ damage from allies, win the game. ", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"Up to the sacred falling flow,\nDeep into pools, the healing springs\nShining light, water all aglow,\nListen to how the river sings,\nHigh on the crystal mountain.\"\n- Ottrani verse", + "artistName": "SIXMOREVODKA", + "name": "Star Spring", + "cardCode": "03MT052", + "keywords": [ + "Landmark" + ], + "keywordRefs": [ + "LandmarkVisualOnly" + ], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "EPIC", + "rarityRef": "Epic", + "subtypes": [], + "supertype": "", + "type": "Landmark", + "collectible": true, + "set": "Set3" + }, + { + "associatedCards": [], + "associatedCardRefs": [ + "03IO016" + ], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set3/en_us/img/cards/03IO006.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set3/en_us/img/cards/03IO006-full.png" + } + ], + "regions": [ + "Ionia" + ], + "regionRefs": [ + "Ionia" + ], + "attack": 0, + "cost": 3, + "health": 0, + "description": "Round Start: Create a Sanctuary in hand.", + "descriptionRaw": "Round Start: Create a Sanctuary in hand.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "The Ionian mountains hide a handful of sanctuaries for those looking to center themselves and gather their spirits.", + "artistName": "SIXMOREVODKA", + "name": "Monastery of Hirana", + "cardCode": "03IO006", + "keywords": [ + "Landmark" + ], + "keywordRefs": [ + "LandmarkVisualOnly" + ], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "EPIC", + "rarityRef": "Epic", + "subtypes": [], + "supertype": "", + "type": "Landmark", + "collectible": true, + "set": "Set3" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set3/en_us/img/cards/03IO016.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set3/en_us/img/cards/03IO016-full.png" + } + ], + "regions": [ + "Ionia" + ], + "regionRefs": [ + "Ionia" + ], + "attack": 0, + "cost": 1, + "health": 0, + "description": "Recall an ally.", + "descriptionRaw": "Recall an ally.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"The monastery welcomes all who seek refuge.\" - Elder Souma", + "artistName": "Wild Blue Studio", + "name": "Sanctuary", + "cardCode": "03IO016", + "keywords": [ + "Focus", + "Fleeting" + ], + "keywordRefs": [ + "Focus", + "Fleeting" + ], + "spellSpeed": "Burst", + "spellSpeedRef": "Burst", + "rarity": "None", + "rarityRef": "None", + "subtypes": [], + "supertype": "", + "type": "Spell", + "collectible": false, + "set": "Set3" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set3/en_us/img/cards/03NX013.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set3/en_us/img/cards/03NX013-full.png" + } + ], + "regions": [ + "Noxus" + ], + "regionRefs": [ + "Noxus" + ], + "attack": 0, + "cost": 3, + "health": 0, + "description": "Kill a damaged unit or destroy a landmark.", + "descriptionRaw": "Kill a damaged unit or destroy a landmark.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"The drakehounds have the scent. They will find her, and we will finish this. There is no other way.\" - Arrel the Tracker", + "artistName": "Kudos Productions", + "name": "Scorched Earth", + "cardCode": "03NX013", + "keywords": [ + "Fast" + ], + "keywordRefs": [ + "Fast" + ], + "spellSpeed": "Fast", + "spellSpeedRef": "Fast", + "rarity": "COMMON", + "rarityRef": "Common", + "subtypes": [], + "supertype": "", + "type": "Spell", + "collectible": true, + "set": "Set3" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set3/en_us/img/cards/03NX004.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set3/en_us/img/cards/03NX004-full.png" + } + ], + "regions": [ + "Noxus" + ], + "regionRefs": [ + "Noxus" + ], + "attack": 0, + "cost": 5, + "health": 0, + "description": "Round End: Your strongest ally and the weakest enemy strike each other.", + "descriptionRaw": "Round End: Your strongest ally and the weakest enemy strike each other.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"Hey there, rrrrreckoner fans, are you ready for a night of scorchin' hot THRILLS in the RING OF FIRE?! Wuh-oh, looks like Tiny Trik drew the SHORT straw today. He's up against the mighty, fight-y, GRANAAAAK the Great! Get those medics ringside, it's gonna be a quick one!\" - Arena Battlecaster", + "artistName": "SIXMOREVODKA", + "name": "Noxkraya Arena", + "cardCode": "03NX004", + "keywords": [ + "Landmark" + ], + "keywordRefs": [ + "LandmarkVisualOnly" + ], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "EPIC", + "rarityRef": "Epic", + "subtypes": [], + "supertype": "", + "type": "Landmark", + "collectible": true, + "set": "Set3" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set3/en_us/img/cards/03MT005T2.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set3/en_us/img/cards/03MT005T2-full.png" + } + ], + "regions": [ + "Targon" + ], + "regionRefs": [ + "Targon" + ], + "attack": 0, + "cost": 3, + "health": 0, + "description": "Destroy a landmark.", + "descriptionRaw": "Destroy a landmark.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "Each summit gave way before them, emboldening their climb and filling their hearts with determination. They would scale Targon.", + "artistName": "Kudos Productions", + "name": "Path of Destruction", + "cardCode": "03MT005T2", + "keywords": [ + "Fast" + ], + "keywordRefs": [ + "Fast" + ], + "spellSpeed": "Fast", + "spellSpeedRef": "Fast", + "rarity": "None", + "rarityRef": "None", + "subtypes": [], + "supertype": "", + "type": "Spell", + "collectible": false, + "set": "Set3" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set3/en_us/img/cards/03MT005T1.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set3/en_us/img/cards/03MT005T1-full.png" + } + ], + "regions": [ + "Targon" + ], + "regionRefs": [ + "Targon" + ], + "attack": 0, + "cost": 3, + "health": 0, + "description": "Draw a landmark.", + "descriptionRaw": "Draw a landmark.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "Beyond each summit loomed yet another, but their spirits pushed them onward. They would surmount the peaks of Targon.", + "artistName": "Kudos Productions", + "name": "Path of Discovery", + "cardCode": "03MT005T1", + "keywords": [ + "Fast" + ], + "keywordRefs": [ + "Fast" + ], + "spellSpeed": "Fast", + "spellSpeedRef": "Fast", + "rarity": "None", + "rarityRef": "None", + "subtypes": [], + "supertype": "", + "type": "Spell", + "collectible": false, + "set": "Set3" + }, + { + "associatedCards": [], + "associatedCardRefs": [ + "03DE004T1" + ], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set3/en_us/img/cards/03DE004.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set3/en_us/img/cards/03DE004-full.png" + } + ], + "regions": [ + "Demacia" + ], + "regionRefs": [ + "Demacia" + ], + "attack": 6, + "cost": 8, + "health": 6, + "description": "Play: Capture a unit or landmark.", + "descriptionRaw": "Play: Capture a unit or landmark.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "As a child, Arrika saw firsthand the devastation Noxus could inflict as it laid waste to her home. When she enlisted in the military, she vowed never to let the Noxian flag fly over Demacian land, or leave another child orphaned.", + "artistName": "SIXMOREVODKA", + "name": "Captain Arrika", + "cardCode": "03DE004", + "keywords": [ + "SpellShield" + ], + "keywordRefs": [ + "SpellShield" + ], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "RARE", + "rarityRef": "Rare", + "subtypes": [ + "ELITE" + ], + "supertype": "", + "type": "Unit", + "collectible": true, + "set": "Set3" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set3/en_us/img/cards/03DE004T1.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set3/en_us/img/cards/03DE004T1-full.png" + } + ], + "regions": [ + "Demacia" + ], + "regionRefs": [ + "Demacia" + ], + "attack": 0, + "cost": 0, + "health": 0, + "description": "Capture a unit or landmark.", + "descriptionRaw": "Capture a unit or landmark.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"Take back what is ours!\" - Captain Arrika", + "artistName": "Kudos Productions", + "name": "Claim", + "cardCode": "03DE004T1", + "keywords": [ + "Skill" + ], + "keywordRefs": [ + "Skill" + ], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "None", + "rarityRef": "None", + "subtypes": [], + "supertype": "", + "type": "Ability", + "collectible": false, + "set": "Set3" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set3/en_us/img/cards/03IO005.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set3/en_us/img/cards/03IO005-full.png" + } + ], + "regions": [ + "Ionia" + ], + "regionRefs": [ + "Ionia" + ], + "attack": 0, + "cost": 4, + "health": 0, + "description": "Recall an ally unit or landmark to Recall an enemy unit or landmark.", + "descriptionRaw": "Recall an ally unit or landmark to Recall an enemy unit or landmark.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"Trevvvvorrrrrr, come baaaack...\" - Trevor's house", + "artistName": "Kudos Productions", + "name": "Homecoming", + "cardCode": "03IO005", + "keywords": [ + "Fast" + ], + "keywordRefs": [ + "Fast" + ], + "spellSpeed": "Fast", + "spellSpeedRef": "Fast", + "rarity": "COMMON", + "rarityRef": "Common", + "subtypes": [], + "supertype": "", + "type": "Spell", + "collectible": true, + "set": "Set3" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set3/en_us/img/cards/03SI008.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set3/en_us/img/cards/03SI008-full.png" + } + ], + "regions": [ + "Shadow Isles" + ], + "regionRefs": [ + "ShadowIsles" + ], + "attack": 0, + "cost": 4, + "health": 0, + "description": "Kill an ally to kill a unit or destroy a landmark.", + "descriptionRaw": "Kill an ally to kill a unit or destroy a landmark.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "Nothing lasts on these haunted isles. All will end.", + "artistName": "Kudos Productions", + "name": "Crumble", + "cardCode": "03SI008", + "keywords": [ + "Slow" + ], + "keywordRefs": [ + "Slow" + ], + "spellSpeed": "Slow", + "spellSpeedRef": "Slow", + "rarity": "RARE", + "rarityRef": "Rare", + "subtypes": [], + "supertype": "", + "type": "Spell", + "collectible": true, + "set": "Set3" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set3/en_us/img/cards/03MT064.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set3/en_us/img/cards/03MT064-full.png" + } + ], + "regions": [ + "Targon" + ], + "regionRefs": [ + "Targon" + ], + "attack": 0, + "cost": 5, + "health": 0, + "description": "Round Start: Reduce the cost of a random card in ALL players' hands to 0 this round.", + "descriptionRaw": "Round Start: Reduce the cost of a random card in ALL players' hands to 0 this round.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "Standing watch at the gate to the Celestial Realm is Targon's crystalline guardian. Things fall away in it's presence - hope, doubt, fear. Its trials strip all mortal concerns, and lays bare the essence of the climber's soul. It is on this that they are judged, for the guardian is the great arbiter. ", + "artistName": "SIXMOREVODKA", + "name": "Targon's Peak", + "cardCode": "03MT064", + "keywords": [ + "Landmark" + ], + "keywordRefs": [ + "LandmarkVisualOnly" + ], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "EPIC", + "rarityRef": "Epic", + "subtypes": [], + "supertype": "", + "type": "Landmark", + "collectible": true, + "set": "Set3" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set3/en_us/img/cards/03PZ001.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set3/en_us/img/cards/03PZ001-full.png" + } + ], + "regions": [ + "Piltover & Zaun" + ], + "regionRefs": [ + "PiltoverZaun" + ], + "attack": 0, + "cost": 5, + "health": 0, + "description": "Round Start: Discard your hand. Create 3 random cards in hand and grant them Fleeting.", + "descriptionRaw": "Round Start: Discard your hand. Create 3 random cards in hand and grant them Fleeting.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "The inventions of Professor Cecil B. Heimerdinger made him famous, but it was his animated lectures and notoriously unpredictable classroom demonstrations that earned him a lasting impression on Piltover's brightest minds.", + "artistName": "SIXMOREVODKA", + "name": "The University of Piltover", + "cardCode": "03PZ001", + "keywords": [ + "Landmark" + ], + "keywordRefs": [ + "LandmarkVisualOnly" + ], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "EPIC", + "rarityRef": "Epic", + "subtypes": [], + "supertype": "", + "type": "Landmark", + "collectible": true, + "set": "Set3" + }, + { + "associatedCards": [], + "associatedCardRefs": [ + "03FR003T3", + "03FR003T1" + ], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set3/en_us/img/cards/03FR003.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set3/en_us/img/cards/03FR003-full.png" + } + ], + "regions": [ + "Freljord" + ], + "regionRefs": [ + "Freljord" + ], + "attack": 8, + "cost": 8, + "health": 8, + "description": "Play: Obliterate ALL landmarks or deal 3 to ALL other units.", + "descriptionRaw": "Play: Obliterate ALL landmarks or deal 3 to ALL other units.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"There was no time to gather our things or warn the others. We could only run for the forest and watch as it leveled our homes.\" - Avarosan Hearthguard", + "artistName": "Grafit Studio", + "name": "It That Stares", + "cardCode": "03FR003", + "keywords": [], + "keywordRefs": [], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "RARE", + "rarityRef": "Rare", + "subtypes": [], + "supertype": "", + "type": "Unit", + "collectible": true, + "set": "Set3" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set3/en_us/img/cards/03FR003T3.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set3/en_us/img/cards/03FR003T3-full.png" + } + ], + "regions": [ + "Freljord" + ], + "regionRefs": [ + "Freljord" + ], + "attack": 0, + "cost": 0, + "health": 0, + "description": "Deal 3 to ALL other units.", + "descriptionRaw": "Deal 3 to ALL other units.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "The people shall perish.", + "artistName": "Kudos Productions", + "name": "Extinguishing Ray", + "cardCode": "03FR003T3", + "keywords": [ + "Skill" + ], + "keywordRefs": [ + "Skill" + ], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "None", + "rarityRef": "None", + "subtypes": [], + "supertype": "", + "type": "Ability", + "collectible": false, + "set": "Set3" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set3/en_us/img/cards/03FR003T1.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set3/en_us/img/cards/03FR003T1-full.png" + } + ], + "regions": [ + "Freljord" + ], + "regionRefs": [ + "Freljord" + ], + "attack": 0, + "cost": 0, + "health": 0, + "description": "Obliterate ALL landmarks.", + "descriptionRaw": "Obliterate ALL landmarks.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "The earth shall break.", + "artistName": "Kudos Productions", + "name": "Destructive Ray", + "cardCode": "03FR003T1", + "keywords": [ + "Skill" + ], + "keywordRefs": [ + "Skill" + ], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "None", + "rarityRef": "None", + "subtypes": [], + "supertype": "", + "type": "Ability", + "collectible": false, + "set": "Set3" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set3/en_us/img/cards/03MT079.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set3/en_us/img/cards/03MT079-full.png" + } + ], + "regions": [ + "Targon" + ], + "regionRefs": [ + "Targon" + ], + "attack": 2, + "cost": 2, + "health": 2, + "description": "I cost 2 less if you Behold a Celestial.", + "descriptionRaw": "I cost 2 less if you Behold a Celestial.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"Adults are LAME. The only cool kids around here are Zoe and her buddies. I learn a lot from them, y'know? Not like that stupid high radiance priestess lady. I mean UGHHHH.\"", + "artistName": "Dao Le", + "name": "Starry Scamp", + "cardCode": "03MT079", + "keywords": [], + "keywordRefs": [], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "COMMON", + "rarityRef": "Common", + "subtypes": [], + "supertype": "", + "type": "Unit", + "collectible": true, + "set": "Set3" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set3/en_us/img/cards/03MT015.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set3/en_us/img/cards/03MT015-full.png" + } + ], + "regions": [ + "Targon" + ], + "regionRefs": [ + "Targon" + ], + "attack": 0, + "cost": 2, + "health": 0, + "description": "Invoke.", + "descriptionRaw": "Invoke.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "The heavens hang over you, a tapestry of black lit with twinkling stars. You are small and dim against its vastness. Where will you turn your gaze first?", + "artistName": "Kudos Productions", + "name": "Behold the Infinite", + "cardCode": "03MT015", + "keywords": [ + "Burst" + ], + "keywordRefs": [ + "Burst" + ], + "spellSpeed": "Burst", + "spellSpeedRef": "Burst", + "rarity": "COMMON", + "rarityRef": "Common", + "subtypes": [], + "supertype": "", + "type": "Spell", + "collectible": true, + "set": "Set3" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set3/en_us/img/cards/03MT018.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set3/en_us/img/cards/03MT018-full.png" + } + ], + "regions": [ + "Targon" + ], + "regionRefs": [ + "Targon" + ], + "attack": 2, + "cost": 2, + "health": 2, + "description": "When I'm summoned, draw 1.", + "descriptionRaw": "When I'm summoned, draw 1.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"As leaves unfurl from barren branches, the Lady of Spring sends her messenger to inform the Lord of Winter of the changing season. The messenger's bark startles the stars into new places in the sky, while his loyal heart warms the land.\" \n- Song of the Seasons", + "artistName": "Kudos Productions", + "name": "The Messenger", + "cardCode": "03MT018", + "keywords": [], + "keywordRefs": [], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "None", + "rarityRef": "None", + "subtypes": [ + "CELESTIAL" + ], + "supertype": "", + "type": "Unit", + "collectible": false, + "set": "Set3" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set3/en_us/img/cards/03MT034.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set3/en_us/img/cards/03MT034-full.png" + } + ], + "regions": [ + "Targon" + ], + "regionRefs": [ + "Targon" + ], + "attack": 1, + "cost": 0, + "health": 1, + "description": "", + "descriptionRaw": "", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"During Targon's first equinox, the people of the mountain attempted their first truce. But as their leaders laid their weapons down, one suddenly cried out in pain! Soldiers drew their spears, and all thoughts of peace were lost. Little did they know the true betrayer was a serpent hidden beneath their feet, forevermore a sign of violent times.\" \n- Targonian folk tale", + "artistName": "Kudos Productions", + "name": "The Serpent", + "cardCode": "03MT034", + "keywords": [ + "Challenger" + ], + "keywordRefs": [ + "Challenger" + ], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "None", + "rarityRef": "None", + "subtypes": [ + "CELESTIAL" + ], + "supertype": "", + "type": "Unit", + "collectible": false, + "set": "Set3" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set3/en_us/img/cards/03MT083.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set3/en_us/img/cards/03MT083-full.png" + } + ], + "regions": [ + "Targon" + ], + "regionRefs": [ + "Targon" + ], + "attack": 6, + "cost": 8, + "health": 5, + "description": "When I'm summoned, grant me +1|+0 for each Celestial card you played this game. \r\nThe first time I would die, fully heal me instead.", + "descriptionRaw": "When I'm summoned, grant me +1|+0 for each Celestial card you played this game. \r\nThe first time I would die, fully heal me instead.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"For ages, the Immortal Fire flew alone, till one day she saw a young bird with fiery golden wings like hers. She rejoiced, for she had never known another like herself. But as years passed, the young bird grew old and flickered out. The Immortal Fire grieved, for she had never known death. And so she wept sparks and sighed herself ablaze, till she emerged, renewed in body but burdened with knowledge.\" - Shuriman folk tale", + "artistName": "Kudos Productions", + "name": "The Immortal Fire", + "cardCode": "03MT083", + "keywords": [ + "Elusive" + ], + "keywordRefs": [ + "Elusive" + ], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "None", + "rarityRef": "None", + "subtypes": [ + "CELESTIAL" + ], + "supertype": "", + "type": "Unit", + "collectible": false, + "set": "Set3" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set3/en_us/img/cards/03MT004.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set3/en_us/img/cards/03MT004-full.png" + } + ], + "regions": [ + "Targon" + ], + "regionRefs": [ + "Targon" + ], + "attack": 0, + "cost": 0, + "health": 0, + "description": "Reduce the cost of a card in hand by 1.", + "descriptionRaw": "Reduce the cost of a card in hand by 1.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"Each full moon bathes our world in Her silver glow, revealing paths not yet trod, stories not yet told.\" - Lunari Priestess", + "artistName": "Kudos Productions", + "name": "Moonsilver", + "cardCode": "03MT004", + "keywords": [ + "Burst" + ], + "keywordRefs": [ + "Burst" + ], + "spellSpeed": "Burst", + "spellSpeedRef": "Burst", + "rarity": "None", + "rarityRef": "None", + "subtypes": [ + "CELESTIAL" + ], + "supertype": "", + "type": "Spell", + "collectible": false, + "set": "Set3" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set3/en_us/img/cards/03MT037.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set3/en_us/img/cards/03MT037-full.png" + } + ], + "regions": [ + "Targon" + ], + "regionRefs": [ + "Targon" + ], + "attack": 10, + "cost": 10, + "health": 10, + "description": "When I'm summoned, grant me +1|+0 for each Celestial card you played this game. \r\nAttack: Give other allies +2|+2 and Overwhelm this round.", + "descriptionRaw": "When I'm summoned, grant me +1|+0 for each Celestial card you played this game. \r\nAttack: Give other allies +2|+2 and Overwhelm this round.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "Legends speak of a Scourge that lurks at the furthest reaches of the Celestial Realm. Here, it awaits the time-at-the-end-of-time, when it will wield the power of the stars to shatter the foundations of the world.", + "artistName": "Kudos Productions", + "name": "The Scourge", + "cardCode": "03MT037", + "keywords": [ + "Challenger", + "Overwhelm" + ], + "keywordRefs": [ + "Challenger", + "Overwhelm" + ], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "None", + "rarityRef": "None", + "subtypes": [ + "CELESTIAL" + ], + "supertype": "", + "type": "Unit", + "collectible": false, + "set": "Set3" + }, + { + "associatedCards": [], + "associatedCardRefs": [ + "03MT059T1" + ], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set3/en_us/img/cards/03MT059.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set3/en_us/img/cards/03MT059-full.png" + } + ], + "regions": [ + "Targon" + ], + "regionRefs": [ + "Targon" + ], + "attack": 4, + "cost": 6, + "health": 3, + "description": "When I'm summoned, summon The Silver Sister.", + "descriptionRaw": "When I'm summoned, summon The Silver Sister.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"From the heavens\nTwo beings came:\nOne was robed in silver's glow,\nThe other clad in golden flame...\"\n- Hymn of the Hours", + "artistName": "Kudos Productions", + "name": "The Golden Sister", + "cardCode": "03MT059", + "keywords": [ + "Lifesteal" + ], + "keywordRefs": [ + "Lifesteal" + ], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "None", + "rarityRef": "None", + "subtypes": [ + "CELESTIAL" + ], + "supertype": "", + "type": "Unit", + "collectible": false, + "set": "Set3" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set3/en_us/img/cards/03MT053.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set3/en_us/img/cards/03MT053-full.png" + } + ], + "regions": [ + "Targon" + ], + "regionRefs": [ + "Targon" + ], + "attack": 0, + "cost": 2, + "health": 0, + "description": "Grant an ally +0|+2 and SpellShield.", + "descriptionRaw": "Grant an ally +0|+2 and SpellShield.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"Bathe in Her gentle glow and receive Her blessing.\" - Lunari Priestess", + "artistName": "Kudos Productions", + "name": "Moonglow", + "cardCode": "03MT053", + "keywords": [ + "Slow" + ], + "keywordRefs": [ + "Slow" + ], + "spellSpeed": "Slow", + "spellSpeedRef": "Slow", + "rarity": "None", + "rarityRef": "None", + "subtypes": [ + "CELESTIAL" + ], + "supertype": "", + "type": "Spell", + "collectible": false, + "set": "Set3" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set3/en_us/img/cards/03MT032.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set3/en_us/img/cards/03MT032-full.png" + } + ], + "regions": [ + "Targon" + ], + "regionRefs": [ + "Targon" + ], + "attack": 0, + "cost": 4, + "health": 0, + "description": "Draw a champion. Reduce its cost by 1 and grant it +2|+2.", + "descriptionRaw": "Draw a champion. Reduce its cost by 1 and grant it +2|+2.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"The vastness of the night sky represents the gulf between humanity below and the divine above. But there are some mortals who strive to achieve a higher purpose, and if the mountain deems them worthy, they may rise to become one with the stars themselves.\" - Mountain Scryer", + "artistName": "Kudos Productions", + "name": "Written in Stars", + "cardCode": "03MT032", + "keywords": [ + "Burst" + ], + "keywordRefs": [ + "Burst" + ], + "spellSpeed": "Burst", + "spellSpeedRef": "Burst", + "rarity": "None", + "rarityRef": "None", + "subtypes": [ + "CELESTIAL" + ], + "supertype": "", + "type": "Spell", + "collectible": false, + "set": "Set3" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set3/en_us/img/cards/03MT024.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set3/en_us/img/cards/03MT024-full.png" + } + ], + "regions": [ + "Targon" + ], + "regionRefs": [ + "Targon" + ], + "attack": 0, + "cost": 9, + "health": 0, + "description": "If you Behold a Celestial card, Obliterate 2 enemy units or landmarks.", + "descriptionRaw": "If you Behold a Celestial card, Obliterate 2 enemy units or landmarks.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "Dying stars create explosions so bright and powerful that even other stars, still lively and burning, are easily outshone. ", + "artistName": "Kudos Productions", + "name": "Supernova", + "cardCode": "03MT024", + "keywords": [ + "Slow" + ], + "keywordRefs": [ + "Slow" + ], + "spellSpeed": "Slow", + "spellSpeedRef": "Slow", + "rarity": "None", + "rarityRef": "None", + "subtypes": [ + "CELESTIAL" + ], + "supertype": "", + "type": "Spell", + "collectible": false, + "set": "Set3" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set3/en_us/img/cards/03MT066.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set3/en_us/img/cards/03MT066-full.png" + } + ], + "regions": [ + "Targon" + ], + "regionRefs": [ + "Targon" + ], + "attack": 0, + "cost": 7, + "health": 0, + "description": "If you Behold a Celestial card, grant allies everywhere +2|+2.", + "descriptionRaw": "If you Behold a Celestial card, grant allies everywhere +2|+2.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"Look to the night sky. Take in the stars' brilliance, and let them suffuse you with their healing light.\" - Soraka", + "artistName": "Kudos Productions", + "name": "Cosmic Inspiration", + "cardCode": "03MT066", + "keywords": [ + "Slow" + ], + "keywordRefs": [ + "Slow" + ], + "spellSpeed": "Slow", + "spellSpeedRef": "Slow", + "rarity": "None", + "rarityRef": "None", + "subtypes": [ + "CELESTIAL" + ], + "supertype": "", + "type": "Spell", + "collectible": false, + "set": "Set3" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set3/en_us/img/cards/03MT077.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set3/en_us/img/cards/03MT077-full.png" + } + ], + "regions": [ + "Targon" + ], + "regionRefs": [ + "Targon" + ], + "attack": 0, + "cost": 10, + "health": 0, + "description": "Fill your hand with random Fleeting Celestial cards. Refill your mana to full.", + "descriptionRaw": "Fill your hand with random Fleeting Celestial cards. Refill your mana to full.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"They say that some constellations were once mortals whose exceptional exploits earned them a place amongst the stars.\" - Mountain Scryer", + "artistName": "Kudos Productions", + "name": "Living Legends", + "cardCode": "03MT077", + "keywords": [ + "Burst" + ], + "keywordRefs": [ + "Burst" + ], + "spellSpeed": "Burst", + "spellSpeedRef": "Burst", + "rarity": "None", + "rarityRef": "None", + "subtypes": [ + "CELESTIAL" + ], + "supertype": "", + "type": "Spell", + "collectible": false, + "set": "Set3" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set3/en_us/img/cards/03MT010.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set3/en_us/img/cards/03MT010-full.png" + } + ], + "regions": [ + "Targon" + ], + "regionRefs": [ + "Targon" + ], + "attack": 7, + "cost": 7, + "health": 7, + "description": "When I'm summoned, grant me +1|+0 for each Celestial card you played this game. ", + "descriptionRaw": "When I'm summoned, grant me +1|+0 for each Celestial card you played this game. ", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"To safeguard the spaces between land and sky, a horned guardian was placed in the stars over the mountains. Sturdy and swift, it traverses the night sky in search of intruders, whom it greets with an impact that sends shudders through earth and sky alike.\" - The Minotaur Histories", + "artistName": "Kudos Productions", + "name": "The Destroyer", + "cardCode": "03MT010", + "keywords": [ + "Overwhelm", + "SpellShield" + ], + "keywordRefs": [ + "Overwhelm", + "SpellShield" + ], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "None", + "rarityRef": "None", + "subtypes": [ + "CELESTIAL" + ], + "supertype": "", + "type": "Unit", + "collectible": false, + "set": "Set3" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set3/en_us/img/cards/03MT070.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set3/en_us/img/cards/03MT070-full.png" + } + ], + "regions": [ + "Targon" + ], + "regionRefs": [ + "Targon" + ], + "attack": 3, + "cost": 4, + "health": 4, + "description": "Play: Invoke.", + "descriptionRaw": "Play: Invoke.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"We were always one and the same--we were separated only by the mountain, the journey, and a sea of stars.\"", + "artistName": "Kudos Productions", + "name": "The Traveler", + "cardCode": "03MT070", + "keywords": [], + "keywordRefs": [], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "None", + "rarityRef": "None", + "subtypes": [ + "CELESTIAL" + ], + "supertype": "", + "type": "Unit", + "collectible": false, + "set": "Set3" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set3/en_us/img/cards/03MT049.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set3/en_us/img/cards/03MT049-full.png" + } + ], + "regions": [ + "Targon" + ], + "regionRefs": [ + "Targon" + ], + "attack": 0, + "cost": 5, + "health": 0, + "description": "Deal 4 to an enemy and 1 to another.", + "descriptionRaw": "Deal 4 to an enemy and 1 to another.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"Forging stars is a messy business, I'm afraid. You never know where those little rocks will land. I am so terribly, terribly sorry if they happen to fall on you. And crush you. Oh so violently.\" - Aurelion Sol", + "artistName": "Kudos Productions", + "name": "Meteor Shower", + "cardCode": "03MT049", + "keywords": [ + "Slow" + ], + "keywordRefs": [ + "Slow" + ], + "spellSpeed": "Slow", + "spellSpeedRef": "Slow", + "rarity": "None", + "rarityRef": "None", + "subtypes": [ + "CELESTIAL" + ], + "supertype": "", + "type": "Spell", + "collectible": false, + "set": "Set3" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set3/en_us/img/cards/03MT043.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set3/en_us/img/cards/03MT043-full.png" + } + ], + "regions": [ + "Targon" + ], + "regionRefs": [ + "Targon" + ], + "attack": 0, + "cost": 6, + "health": 0, + "description": "Obliterate a unit or landmark.", + "descriptionRaw": "Obliterate a unit or landmark.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"I will drive the stars themselves through this insufferable place. It will be GLORIOUS.\" - Aurelion Sol", + "artistName": "Kudos Productions", + "name": "Falling Comet", + "cardCode": "03MT043", + "keywords": [ + "Slow" + ], + "keywordRefs": [ + "Slow" + ], + "spellSpeed": "Slow", + "spellSpeedRef": "Slow", + "rarity": "None", + "rarityRef": "None", + "subtypes": [ + "CELESTIAL" + ], + "supertype": "", + "type": "Spell", + "collectible": false, + "set": "Set3" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set3/en_us/img/cards/03MT022.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set3/en_us/img/cards/03MT022-full.png" + } + ], + "regions": [ + "Targon" + ], + "regionRefs": [ + "Targon" + ], + "attack": 8, + "cost": 9, + "health": 8, + "description": "When I'm summoned, grant me +1|+0 for each Celestial card you played this game. \r\nI am a Dragon.", + "descriptionRaw": "When I'm summoned, grant me +1|+0 for each Celestial card you played this game. \r\nI am a Dragon.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"Oh yes, my favorite constellation. I like to think it will be the first to rain down upon this forsaken mountain.\" - Aurelion Sol", + "artistName": "Kudos Productions", + "name": "The Great Beyond", + "cardCode": "03MT022", + "keywords": [ + "Elusive", + "Fury", + "SpellShield" + ], + "keywordRefs": [ + "Elusive", + "Fury", + "SpellShield" + ], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "None", + "rarityRef": "None", + "subtypes": [ + "CELESTIAL", + "DRAGON" + ], + "supertype": "", + "type": "Unit", + "collectible": false, + "set": "Set3" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set3/en_us/img/cards/03MT078.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set3/en_us/img/cards/03MT078-full.png" + } + ], + "regions": [ + "Targon" + ], + "regionRefs": [ + "Targon" + ], + "attack": 0, + "cost": 8, + "health": 0, + "description": "If you Behold a Celestial card, Obliterate enemies with 3 or less Power.", + "descriptionRaw": "If you Behold a Celestial card, Obliterate enemies with 3 or less Power.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "In the dark beginning, a spark of creation rippled through the universe. What sound it made, what light it shone, we will never know, for there were not yet then words to describe, nor yet ears or eyes to perceive it. ", + "artistName": "Kudos Productions", + "name": "Cosmic Rays", + "cardCode": "03MT078", + "keywords": [ + "Slow" + ], + "keywordRefs": [ + "Slow" + ], + "spellSpeed": "Slow", + "spellSpeedRef": "Slow", + "rarity": "None", + "rarityRef": "None", + "subtypes": [ + "CELESTIAL" + ], + "supertype": "", + "type": "Spell", + "collectible": false, + "set": "Set3" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set3/en_us/img/cards/03MT065.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set3/en_us/img/cards/03MT065-full.png" + } + ], + "regions": [ + "Targon" + ], + "regionRefs": [ + "Targon" + ], + "attack": 0, + "cost": 1, + "health": 0, + "description": "Silence a follower.", + "descriptionRaw": "Silence a follower.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "In the space between the stars, there is absolute silence.", + "artistName": "Max Grecke", + "name": "Equinox", + "cardCode": "03MT065", + "keywords": [ + "Slow" + ], + "keywordRefs": [ + "Slow" + ], + "spellSpeed": "Slow", + "spellSpeedRef": "Slow", + "rarity": "None", + "rarityRef": "None", + "subtypes": [ + "CELESTIAL" + ], + "supertype": "", + "type": "Spell", + "collectible": false, + "set": "Set3" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set3/en_us/img/cards/03MT050.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set3/en_us/img/cards/03MT050-full.png" + } + ], + "regions": [ + "Targon" + ], + "regionRefs": [ + "Targon" + ], + "attack": 5, + "cost": 5, + "health": 5, + "description": "", + "descriptionRaw": "", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "The strongest star in the night's sky, they say, is that of the warrior. An ancient being, thought immortal, who descends from the stars to prove his worth in combat. Never has he been beaten, but all stories must end, and all stars must die.", + "artistName": "Kudos Productions", + "name": "The Warrior", + "cardCode": "03MT050", + "keywords": [ + "Challenger" + ], + "keywordRefs": [ + "Challenger" + ], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "None", + "rarityRef": "None", + "subtypes": [ + "CELESTIAL" + ], + "supertype": "", + "type": "Unit", + "collectible": false, + "set": "Set3" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set3/en_us/img/cards/03MT011.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set3/en_us/img/cards/03MT011-full.png" + } + ], + "regions": [ + "Targon" + ], + "regionRefs": [ + "Targon" + ], + "attack": 0, + "cost": 3, + "health": 0, + "description": "Stun 2 enemies.", + "descriptionRaw": "Stun 2 enemies.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"Even the moon's glow can be blinding.\" - Diana\n\n", + "artistName": "Kudos Productions", + "name": "Crescent Strike", + "cardCode": "03MT011", + "keywords": [ + "Slow" + ], + "keywordRefs": [ + "Slow" + ], + "spellSpeed": "Slow", + "spellSpeedRef": "Slow", + "rarity": "None", + "rarityRef": "None", + "subtypes": [ + "CELESTIAL" + ], + "supertype": "", + "type": "Spell", + "collectible": false, + "set": "Set3" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set3/en_us/img/cards/03MT095.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set3/en_us/img/cards/03MT095-full.png" + } + ], + "regions": [ + "Targon" + ], + "regionRefs": [ + "Targon" + ], + "attack": 3, + "cost": 3, + "health": 3, + "description": "", + "descriptionRaw": "", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"So, there I was going 'bout my day, when in struts this fella packed to the gills with gold. Easy mark, eh? I sidle over, amp up the charm, and amp up the price. It's only when I put my coins away I realize the little scamp's paid me with my OWN money! The Trickster was shining bright that night, I tell ya.\" - Yordle Grifter", + "artistName": "Kudos Productions", + "name": "The Trickster", + "cardCode": "03MT095", + "keywords": [ + "Elusive" + ], + "keywordRefs": [ + "Elusive" + ], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "None", + "rarityRef": "None", + "subtypes": [ + "CELESTIAL" + ], + "supertype": "", + "type": "Unit", + "collectible": false, + "set": "Set3" + }, + { + "associatedCards": [], + "associatedCardRefs": [ + "03MT059" + ], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set3/en_us/img/cards/03MT059T1.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set3/en_us/img/cards/03MT059T1-full.png" + } + ], + "regions": [ + "Targon" + ], + "regionRefs": [ + "Targon" + ], + "attack": 4, + "cost": 6, + "health": 3, + "description": "", + "descriptionRaw": "", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"...Though both were formed of cosmic light,\nThey fought, for they were too alike.\nAnd so these two split night from day,\nSo each could always have their way...\"\n- Hymn of the Hours", + "artistName": "Kudos Productions", + "name": "The Silver Sister", + "cardCode": "03MT059T1", + "keywords": [ + "Elusive" + ], + "keywordRefs": [ + "Elusive" + ], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "None", + "rarityRef": "None", + "subtypes": [ + "CELESTIAL" + ], + "supertype": "", + "type": "Unit", + "collectible": false, + "set": "Set3" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set3/en_us/img/cards/03MT090.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set3/en_us/img/cards/03MT090-full.png" + } + ], + "regions": [ + "Targon" + ], + "regionRefs": [ + "Targon" + ], + "attack": 4, + "cost": 1, + "health": 1, + "description": "", + "descriptionRaw": "", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"The gold of the sun adorns his horns, and its fire lights his heart. Let the thunder of our shields ring out like the thunder of his hooves across the horizon!\" - Solari battle prayer", + "artistName": "Kudos Productions", + "name": "The Charger", + "cardCode": "03MT090", + "keywords": [ + "Overwhelm" + ], + "keywordRefs": [ + "Overwhelm" + ], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "None", + "rarityRef": "None", + "subtypes": [ + "CELESTIAL" + ], + "supertype": "", + "type": "Unit", + "collectible": false, + "set": "Set3" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set3/en_us/img/cards/03MT221.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set3/en_us/img/cards/03MT221-full.png" + } + ], + "regions": [ + "Targon" + ], + "regionRefs": [ + "Targon" + ], + "attack": 2, + "cost": 4, + "health": 2, + "description": "Play: Invoke a Celestial card that costs 3 or less.", + "descriptionRaw": "Play: Invoke a Celestial card that costs 3 or less.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"Mother Moon, show me the way,\nTear the sky open,\nShow me beyond.\"\n- Lunari Prayer", + "artistName": "Kudos Productions", + "name": "The Fangs", + "cardCode": "03MT221", + "keywords": [ + "Lifesteal" + ], + "keywordRefs": [ + "Lifesteal" + ], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "EPIC", + "rarityRef": "Epic", + "subtypes": [], + "supertype": "", + "type": "Unit", + "collectible": true, + "set": "Set3" + }, + { + "associatedCards": [], + "associatedCardRefs": [ + "03MT073T1" + ], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set3/en_us/img/cards/03MT073.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set3/en_us/img/cards/03MT073-full.png" + } + ], + "regions": [ + "Targon" + ], + "regionRefs": [ + "Targon" + ], + "attack": 2, + "cost": 1, + "health": 1, + "description": "When I'm summoned, create a Duskpetal Dust in hand.", + "descriptionRaw": "When I'm summoned, create a Duskpetal Dust in hand.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"Duskpetals bloom at night, and then only under a full moon. A proud symbol of the Lunari, we have used their dust for centuries, as only we know how to harvest them safely.\"", + "artistName": "JiHun Lee", + "name": "Lunari Duskbringer", + "cardCode": "03MT073", + "keywords": [], + "keywordRefs": [], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "COMMON", + "rarityRef": "Common", + "subtypes": [], + "supertype": "", + "type": "Unit", + "collectible": true, + "set": "Set3" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set3/en_us/img/cards/03MT073T1.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set3/en_us/img/cards/03MT073T1-full.png" + } + ], + "regions": [ + "Targon" + ], + "regionRefs": [ + "Targon" + ], + "attack": 0, + "cost": 1, + "health": 0, + "description": "The next unit with Nightfall you play this round costs 1 less.", + "descriptionRaw": "The next unit with Nightfall you play this round costs 1 less.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "The fragrance of the duskpetal is like none other. Sweet and strange, but fleeting, it is delicate as moonlight itself.", + "artistName": "Kudos Productions", + "name": "Duskpetal Dust", + "cardCode": "03MT073T1", + "keywords": [ + "Burst" + ], + "keywordRefs": [ + "Burst" + ], + "spellSpeed": "Burst", + "spellSpeedRef": "Burst", + "rarity": "None", + "rarityRef": "None", + "subtypes": [], + "supertype": "", + "type": "Spell", + "collectible": false, + "set": "Set3" + }, + { + "associatedCards": [], + "associatedCardRefs": [ + "03MT217T13", + "03MT217T11", + "03MT217T8", + "03MT217T9", + "03MT217T12", + "03MT217T14", + "03MT217T10" + ], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set3/en_us/img/cards/03MT217.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set3/en_us/img/cards/03MT217-full.png" + } + ], + "regions": [ + "Targon" + ], + "regionRefs": [ + "Targon" + ], + "attack": 3, + "cost": 3, + "health": 3, + "description": "Nightfall: Pick a Moon Weapon to create in hand.\r\nEach round, the first time you play 2 other cards, create the Phased Moon Weapon in hand if you don't already have one.", + "descriptionRaw": "Nightfall: Pick a Moon Weapon to create in hand.\r\nEach round, the first time you play 2 other cards, create the Phased Moon Weapon in hand if you don't already have one.", + "levelupDescription": "You've played 4+ Moon Weapons.", + "levelupDescriptionRaw": "You've played 4+ Moon Weapons.", + "flavorText": "\"With every conflict, we show the Solari we are worthy of respect. We have taught them that the moon's light is equal to their sun's, we have taught them not to disregard that which they did not know. And of the lessons they are yet to learn...\" - Lunari wanespeaker", + "artistName": "SIXMOREVODKA", + "name": "Aphelios", + "cardCode": "03MT217", + "keywords": [], + "keywordRefs": [], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "Champion", + "rarityRef": "Champion", + "subtypes": [], + "supertype": "Champion", + "type": "Unit", + "collectible": true, + "set": "Set3" + }, + { + "associatedCards": [], + "associatedCardRefs": [ + "03MT217T8", + "03MT217T9" + ], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set3/en_us/img/cards/03MT217T10.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set3/en_us/img/cards/03MT217T10-full.png" + } + ], + "regions": [ + "Targon" + ], + "regionRefs": [ + "Targon" + ], + "attack": 0, + "cost": 2, + "health": 0, + "description": "Summon a random 2 cost follower from your regions. Phase Calibrum or Severum.", + "descriptionRaw": "Summon a random 2 cost follower from your regions. Phase Calibrum or Severum.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"A crescent path opens before us.\" - Alune", + "artistName": "Kudos Productions", + "name": "Crescendum", + "cardCode": "03MT217T10", + "keywords": [ + "Slow" + ], + "keywordRefs": [ + "Slow" + ], + "spellSpeed": "Slow", + "spellSpeedRef": "Slow", + "rarity": "COMMON", + "rarityRef": "Common", + "subtypes": [ + "MOON WEAPON" + ], + "supertype": "", + "type": "Spell", + "collectible": false, + "set": "Set3" + }, + { + "associatedCards": [], + "associatedCardRefs": [ + "03MT217T10", + "03MT217T8" + ], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set3/en_us/img/cards/03MT217T14.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set3/en_us/img/cards/03MT217T14-full.png" + } + ], + "regions": [ + "Targon" + ], + "regionRefs": [ + "Targon" + ], + "attack": 0, + "cost": 2, + "health": 0, + "description": "Give an ally +2|+1 and Overwhelm this round. Phase Crescendum or Calibrum.", + "descriptionRaw": "Give an ally +2|+1 and Overwhelm this round. Phase Crescendum or Calibrum.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"The moon grows in flame.\" - Alune", + "artistName": "Kudos Productions", + "name": "Infernum", + "cardCode": "03MT217T14", + "keywords": [ + "Slow" + ], + "keywordRefs": [ + "Slow" + ], + "spellSpeed": "Slow", + "spellSpeedRef": "Slow", + "rarity": "COMMON", + "rarityRef": "Common", + "subtypes": [ + "MOON WEAPON" + ], + "supertype": "", + "type": "Spell", + "collectible": false, + "set": "Set3" + }, + { + "associatedCards": [], + "associatedCardRefs": [ + "03MT217", + "03MT217T13", + "03MT217T8", + "03MT217T9", + "03MT217T12", + "03MT217T14", + "03MT217T10" + ], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set3/en_us/img/cards/03MT217T11.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set3/en_us/img/cards/03MT217T11-full.png" + } + ], + "regions": [ + "Targon" + ], + "regionRefs": [ + "Targon" + ], + "attack": 0, + "cost": 2, + "health": 0, + "description": "Pick a Moon Weapon to create in hand.\r\nCreate an Aphelios in your deck.", + "descriptionRaw": "Pick a Moon Weapon to create in hand.\r\nCreate an Aphelios in your deck.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"Reach out, Aphelios...\" - Alune", + "artistName": "Kudos Productions", + "name": "Aphelios' Gifts From Beyond", + "cardCode": "03MT217T11", + "keywords": [ + "Burst" + ], + "keywordRefs": [ + "Burst" + ], + "spellSpeed": "Burst", + "spellSpeedRef": "Burst", + "rarity": "COMMON", + "rarityRef": "Common", + "subtypes": [], + "supertype": "Champion", + "type": "Spell", + "collectible": false, + "set": "Set3" + }, + { + "associatedCards": [], + "associatedCardRefs": [ + "03MT217T12", + "03MT217T14" + ], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set3/en_us/img/cards/03MT217T9.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set3/en_us/img/cards/03MT217T9-full.png" + } + ], + "regions": [ + "Targon" + ], + "regionRefs": [ + "Targon" + ], + "attack": 0, + "cost": 2, + "health": 0, + "description": "Give an ally +1|+2 and Lifesteal this round. Phase Gravitum or Infernum.", + "descriptionRaw": "Give an ally +1|+2 and Lifesteal this round. Phase Gravitum or Infernum.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"From darkness, light.\" - Alune", + "artistName": "Kudos Productions", + "name": "Severum", + "cardCode": "03MT217T9", + "keywords": [ + "Slow" + ], + "keywordRefs": [ + "Slow" + ], + "spellSpeed": "Slow", + "spellSpeedRef": "Slow", + "rarity": "COMMON", + "rarityRef": "Common", + "subtypes": [ + "MOON WEAPON" + ], + "supertype": "", + "type": "Spell", + "collectible": false, + "set": "Set3" + }, + { + "associatedCards": [], + "associatedCardRefs": [ + "03MT217T9", + "03MT217T12" + ], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set3/en_us/img/cards/03MT217T8.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set3/en_us/img/cards/03MT217T8-full.png" + } + ], + "regions": [ + "Targon" + ], + "regionRefs": [ + "Targon" + ], + "attack": 0, + "cost": 2, + "health": 0, + "description": "Deal 3 to a follower. Phase Severum or Gravitum.", + "descriptionRaw": "Deal 3 to a follower. Phase Severum or Gravitum.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"Move sure as the moon, Brother.\" - Alune", + "artistName": "Kudos Productions", + "name": "Calibrum", + "cardCode": "03MT217T8", + "keywords": [ + "Slow" + ], + "keywordRefs": [ + "Slow" + ], + "spellSpeed": "Slow", + "spellSpeedRef": "Slow", + "rarity": "COMMON", + "rarityRef": "Common", + "subtypes": [ + "MOON WEAPON" + ], + "supertype": "", + "type": "Spell", + "collectible": false, + "set": "Set3" + }, + { + "associatedCards": [], + "associatedCardRefs": [ + "03MT217", + "03MT217T11", + "03MT217T8", + "03MT217T9", + "03MT217T12", + "03MT217T14", + "03MT217T10" + ], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set3/en_us/img/cards/03MT217T13.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set3/en_us/img/cards/03MT217T13-full.png" + } + ], + "regions": [ + "Targon" + ], + "regionRefs": [ + "Targon" + ], + "attack": 4, + "cost": 3, + "health": 4, + "description": "Nightfall: Pick a Moon Weapon to create in hand.\r\nEach round, the first time you play 2 other cards or Round Start: Create the Phased Moon Weapon in hand if you don't already have one.\r\nYour Moon Weapons cost 1 less.", + "descriptionRaw": "Nightfall: Pick a Moon Weapon to create in hand.\r\nEach round, the first time you play 2 other cards or Round Start: Create the Phased Moon Weapon in hand if you don't already have one.\r\nYour Moon Weapons cost 1 less.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"...it is Aphelios and Alune who will best teach them..\" - Lunari wanespeaker", + "artistName": "SIXMOREVODKA", + "name": "Aphelios", + "cardCode": "03MT217T13", + "keywords": [ + "Quick Attack", + "Missing Translation" + ], + "keywordRefs": [ + "QuickStrike", + "AuraVisualFakeKeyword" + ], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "COMMON", + "rarityRef": "Common", + "subtypes": [], + "supertype": "Champion", + "type": "Unit", + "collectible": false, + "set": "Set3" + }, + { + "associatedCards": [], + "associatedCardRefs": [ + "03MT217T14", + "03MT217T10" + ], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set3/en_us/img/cards/03MT217T12.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set3/en_us/img/cards/03MT217T12-full.png" + } + ], + "regions": [ + "Targon" + ], + "regionRefs": [ + "Targon" + ], + "attack": 0, + "cost": 2, + "health": 0, + "description": "Stun an enemy. If it's a follower, Stun it again at the next Round Start. Phase Infernum or Crescendum.", + "descriptionRaw": "Stun an enemy. If it's a follower, Stun it again at the next Round Start. Phase Infernum or Crescendum.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"Doubt weighs heavy on their minds.\" - Alune", + "artistName": "Kudos Productions", + "name": "Gravitum", + "cardCode": "03MT217T12", + "keywords": [ + "Slow" + ], + "keywordRefs": [ + "Slow" + ], + "spellSpeed": "Slow", + "spellSpeedRef": "Slow", + "rarity": "COMMON", + "rarityRef": "Common", + "subtypes": [ + "MOON WEAPON" + ], + "supertype": "", + "type": "Spell", + "collectible": false, + "set": "Set3" + }, + { + "associatedCards": [], + "associatedCardRefs": [ + "03MT001T1" + ], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set3/en_us/img/cards/03MT001.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set3/en_us/img/cards/03MT001-full.png" + } + ], + "regions": [ + "Targon" + ], + "regionRefs": [ + "Targon" + ], + "attack": 3, + "cost": 5, + "health": 3, + "description": "Play: Stun enemies with 2 or less Power.", + "descriptionRaw": "Play: Stun enemies with 2 or less Power.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "Through the crystalline silence of the mountainside came the tinkling sounds of falling ice and, far above them, what the travelers could have sworn was... laughter.", + "artistName": "Dao Le", + "name": "Sneaky Zeebles", + "cardCode": "03MT001", + "keywords": [ + "Elusive" + ], + "keywordRefs": [ + "Elusive" + ], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "COMMON", + "rarityRef": "Common", + "subtypes": [], + "supertype": "", + "type": "Unit", + "collectible": true, + "set": "Set3" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set3/en_us/img/cards/03MT060.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set3/en_us/img/cards/03MT060-full.png" + } + ], + "regions": [ + "Targon" + ], + "regionRefs": [ + "Targon" + ], + "attack": 2, + "cost": 4, + "health": 7, + "description": "Round Start: Heal your Nexus 3. Deal damage to me equal to the amount healed.", + "descriptionRaw": "Round Start: Heal your Nexus 3. Deal damage to me equal to the amount healed.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"Nobody knows the paths of Targon like I do, so I get stuck with some of the, uh, willful stellacorns. Good thing they've got me to look after them!\" ", + "artistName": "SIXMOREVODKA", + "name": "Broadbacked Protector", + "cardCode": "03MT060", + "keywords": [], + "keywordRefs": [], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "EPIC", + "rarityRef": "Epic", + "subtypes": [], + "supertype": "", + "type": "Unit", + "collectible": true, + "set": "Set3" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set3/en_us/img/cards/03MT033.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set3/en_us/img/cards/03MT033-full.png" + } + ], + "regions": [ + "Targon" + ], + "regionRefs": [ + "Targon" + ], + "attack": 8, + "cost": 8, + "health": 4, + "description": "Play: Grant 2 allies +0|+4.", + "descriptionRaw": "Play: Grant 2 allies +0|+4.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"Listen, Osu. Do you hear that? Bells! Grandfather's back!\" - Illi, Star Shepherd", + "artistName": "Polar Engine Studio", + "name": "Grandfather Rumul", + "cardCode": "03MT033", + "keywords": [ + "Overwhelm", + "SpellShield" + ], + "keywordRefs": [ + "Overwhelm", + "SpellShield" + ], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "RARE", + "rarityRef": "Rare", + "subtypes": [], + "supertype": "", + "type": "Unit", + "collectible": true, + "set": "Set3" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set3/en_us/img/cards/03MT021.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set3/en_us/img/cards/03MT021-full.png" + } + ], + "regions": [ + "Targon" + ], + "regionRefs": [ + "Targon" + ], + "attack": 8, + "cost": 8, + "health": 8, + "description": "Play: Pick 2 enemies.\r\nRound Start: Stun them.", + "descriptionRaw": "Play: Pick 2 enemies.\r\nRound Start: Stun them.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "Travelers who lock eyes with the creature are said to be struck by a knowledge so profound, an insight so awesome, that their minds crumble beneath its gaze.", + "artistName": "SIXMOREVODKA", + "name": "The Infinite Mindsplitter", + "cardCode": "03MT021", + "keywords": [ + "Fury" + ], + "keywordRefs": [ + "Fury" + ], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "EPIC", + "rarityRef": "Epic", + "subtypes": [ + "DRAGON" + ], + "supertype": "", + "type": "Unit", + "collectible": true, + "set": "Set3" + }, + { + "associatedCards": [], + "associatedCardRefs": [ + "03MT056T2", + "03MT056T1" + ], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set3/en_us/img/cards/03MT056.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set3/en_us/img/cards/03MT056-full.png" + } + ], + "regions": [ + "Targon" + ], + "regionRefs": [ + "Targon" + ], + "attack": 2, + "cost": 2, + "health": 2, + "description": "Nightfall or when you activate another Nightfall: Give me Challenger this round.", + "descriptionRaw": "Nightfall or when you activate another Nightfall: Give me Challenger this round.", + "levelupDescription": "You've activated Nightfall 4+ times.", + "levelupDescriptionRaw": "You've activated Nightfall 4+ times.", + "flavorText": "She stood amidst them as she prepared for battle--radiating light, bedecked in silver and blue, her eyes like stars. As the moon rose and shone down on her, each of the Lunari gathered there closed their eyes in silent prayer for her safety, and in gratitude.", + "artistName": "SIXMOREVODKA", + "name": "Diana", + "cardCode": "03MT056", + "keywords": [ + "Quick Attack" + ], + "keywordRefs": [ + "QuickStrike" + ], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "Champion", + "rarityRef": "Champion", + "subtypes": [], + "supertype": "Champion", + "type": "Unit", + "collectible": true, + "set": "Set3" + }, + { + "associatedCards": [], + "associatedCardRefs": [ + "03MT056T2", + "03MT056" + ], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set3/en_us/img/cards/03MT056T1.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set3/en_us/img/cards/03MT056T1-full.png" + } + ], + "regions": [ + "Targon" + ], + "regionRefs": [ + "Targon" + ], + "attack": 3, + "cost": 2, + "health": 3, + "description": "Nightfall or when you activate another Nightfall: Give me +2|+0 and Challenger this round.", + "descriptionRaw": "Nightfall or when you activate another Nightfall: Give me +2|+0 and Challenger this round.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "Diana raced down the mountain, sword drawn and coated with duskpetal dust. She knew Leona would find her--she was counting on it. Her heart fluttered with anxious anticipation, and she breathed deeply to still it. This time upon their meeting, she would have the upper hand; this time, she would face her old friend head-on.", + "artistName": "SIXMOREVODKA", + "name": "Diana", + "cardCode": "03MT056T1", + "keywords": [ + "Quick Attack" + ], + "keywordRefs": [ + "QuickStrike" + ], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "None", + "rarityRef": "None", + "subtypes": [], + "supertype": "Champion", + "type": "Unit", + "collectible": false, + "set": "Set3" + }, + { + "associatedCards": [], + "associatedCardRefs": [ + "03MT056", + "03MT056T1" + ], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set3/en_us/img/cards/03MT056T2.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set3/en_us/img/cards/03MT056T2-full.png" + } + ], + "regions": [ + "Targon" + ], + "regionRefs": [ + "Targon" + ], + "attack": 0, + "cost": 2, + "health": 0, + "description": "Give an ally +1|+1 this round.\r\nNightfall: Draw 1.\r\nCreate a Diana in your deck.", + "descriptionRaw": "Give an ally +1|+1 this round.\r\nNightfall: Draw 1.\r\nCreate a Diana in your deck.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"Under cover of night, watched over by a pale moon.\" - Diana", + "artistName": "Kudos Productions", + "name": "Diana's Pale Cascade", + "cardCode": "03MT056T2", + "keywords": [ + "Burst" + ], + "keywordRefs": [ + "Burst" + ], + "spellSpeed": "Burst", + "spellSpeedRef": "Burst", + "rarity": "None", + "rarityRef": "None", + "subtypes": [], + "supertype": "Champion", + "type": "Spell", + "collectible": false, + "set": "Set3" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set3/en_us/img/cards/03MT067.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set3/en_us/img/cards/03MT067-full.png" + } + ], + "regions": [ + "Targon" + ], + "regionRefs": [ + "Targon" + ], + "attack": 4, + "cost": 4, + "health": 4, + "description": "Play: Grant an ally Overwhelm.", + "descriptionRaw": "Play: Grant an ally Overwhelm.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "Those seeking to scale Targon would do well to befriend the local fauna. No creature is more familiar with Targon's perilous gauntlet, and none can travel more swiftly across its icy terrain.", + "artistName": "Polar Engine Studio", + "name": "Crystal Ibex", + "cardCode": "03MT067", + "keywords": [], + "keywordRefs": [], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "COMMON", + "rarityRef": "Common", + "subtypes": [], + "supertype": "", + "type": "Unit", + "collectible": true, + "set": "Set3" + }, + { + "associatedCards": [], + "associatedCardRefs": [ + "03MT092T1" + ], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set3/en_us/img/cards/03MT092.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set3/en_us/img/cards/03MT092-full.png" + } + ], + "regions": [ + "Targon" + ], + "regionRefs": [ + "Targon" + ], + "attack": 3, + "cost": 2, + "health": 2, + "description": "Strike: Create a Gem in hand.", + "descriptionRaw": "Strike: Create a Gem in hand.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "The goats of Mount Targon are even more dangerous than their ordinary cousins, for the gems that make up their horns embed painful shards upon impact. ", + "artistName": "Polar Engine Studio", + "name": "Mountain Goat", + "cardCode": "03MT092", + "keywords": [], + "keywordRefs": [], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "RARE", + "rarityRef": "Rare", + "subtypes": [], + "supertype": "", + "type": "Unit", + "collectible": true, + "set": "Set3" + }, + { + "associatedCards": [], + "associatedCardRefs": [ + "03MT055T2", + "03MT055T1" + ], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set3/en_us/img/cards/03MT055.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set3/en_us/img/cards/03MT055-full.png" + } + ], + "regions": [ + "Targon" + ], + "regionRefs": [ + "Targon" + ], + "attack": 1, + "cost": 3, + "health": 6, + "description": "Support: Heal me and my supported ally 4.", + "descriptionRaw": "Support: Heal me and my supported ally 4.", + "levelupDescription": "You've healed damaged allies 4+ times.", + "levelupDescriptionRaw": "You've healed damaged allies 4+ times.", + "flavorText": "\"Healing is, by its very essence, selfless. You need not draw the power from them; they give it willingly. Show them compassion, and you will see how they shine.\"", + "artistName": "SIXMOREVODKA", + "name": "Soraka", + "cardCode": "03MT055", + "keywords": [ + "Support" + ], + "keywordRefs": [ + "Support" + ], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "Champion", + "rarityRef": "Champion", + "subtypes": [], + "supertype": "Champion", + "type": "Unit", + "collectible": true, + "set": "Set3" + }, + { + "associatedCards": [], + "associatedCardRefs": [ + "03MT055T2", + "03MT055" + ], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set3/en_us/img/cards/03MT055T1.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set3/en_us/img/cards/03MT055T1-full.png" + } + ], + "regions": [ + "Targon" + ], + "regionRefs": [ + "Targon" + ], + "attack": 2, + "cost": 3, + "health": 7, + "description": "Each round, the first time you heal a damaged ally, draw 1.\r\nSupport: Fully heal me and my supported ally.", + "descriptionRaw": "Each round, the first time you heal a damaged ally, draw 1.\r\nSupport: Fully heal me and my supported ally.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"What you give of yourself to help others will be returned to you a hundredfold. This is the power of giving. Generosity is a gift that heals the giver as well, in mind, body, and spirit.\"", + "artistName": "SIXMOREVODKA", + "name": "Soraka", + "cardCode": "03MT055T1", + "keywords": [ + "Support" + ], + "keywordRefs": [ + "Support" + ], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "None", + "rarityRef": "None", + "subtypes": [], + "supertype": "Champion", + "type": "Unit", + "collectible": false, + "set": "Set3" + }, + { + "associatedCards": [], + "associatedCardRefs": [ + "03MT055", + "03MT055T1" + ], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set3/en_us/img/cards/03MT055T2.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set3/en_us/img/cards/03MT055T2-full.png" + } + ], + "regions": [ + "Targon" + ], + "regionRefs": [ + "Targon" + ], + "attack": 0, + "cost": 3, + "health": 0, + "description": "Fully heal damaged allies.\r\nCreate a Soraka in your deck.", + "descriptionRaw": "Fully heal damaged allies.\r\nCreate a Soraka in your deck.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"For life!\" - Soraka", + "artistName": "Kudos Productions", + "name": "Soraka's Wish", + "cardCode": "03MT055T2", + "keywords": [ + "Slow" + ], + "keywordRefs": [ + "Slow" + ], + "spellSpeed": "Slow", + "spellSpeedRef": "Slow", + "rarity": "None", + "rarityRef": "None", + "subtypes": [], + "supertype": "Champion", + "type": "Spell", + "collectible": false, + "set": "Set3" + }, + { + "associatedCards": [], + "associatedCardRefs": [ + "03MT092T1" + ], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set3/en_us/img/cards/03MT048.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set3/en_us/img/cards/03MT048-full.png" + } + ], + "regions": [ + "Targon" + ], + "regionRefs": [ + "Targon" + ], + "attack": 1, + "cost": 1, + "health": 2, + "description": "When I'm summoned, create a Gem in hand.", + "descriptionRaw": "When I'm summoned, create a Gem in hand.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"They say the Protector blessed these gems. Wear them, and he shall be with you in spirit.\"", + "artistName": "SIXMOREVODKA", + "name": "Gift Giver", + "cardCode": "03MT048", + "keywords": [], + "keywordRefs": [], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "COMMON", + "rarityRef": "Common", + "subtypes": [], + "supertype": "", + "type": "Unit", + "collectible": true, + "set": "Set3" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set3/en_us/img/cards/03MT063.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set3/en_us/img/cards/03MT063-full.png" + } + ], + "regions": [ + "Targon" + ], + "regionRefs": [ + "Targon" + ], + "attack": 3, + "cost": 5, + "health": 6, + "description": "Play: Invoke.", + "descriptionRaw": "Play: Invoke.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"Look at all our friends out in the sky tonight! See that extra bright star? That's the Messenger's eye staring down at us! That dim cluster way out there? It is the Trickster hiding behind clouds! And that one over--KULUN, SHH! You cannot paw those down...!\"", + "artistName": "Aron Elekes", + "name": "Moondreamer", + "cardCode": "03MT063", + "keywords": [], + "keywordRefs": [], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "COMMON", + "rarityRef": "Common", + "subtypes": [], + "supertype": "", + "type": "Unit", + "collectible": true, + "set": "Set3" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set3/en_us/img/cards/03MT006.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set3/en_us/img/cards/03MT006-full.png" + } + ], + "regions": [ + "Targon" + ], + "regionRefs": [ + "Targon" + ], + "attack": 5, + "cost": 6, + "health": 6, + "description": "Each round, when an ally with Fury kills an enemy for the first time, create a random Dragon follower in hand.", + "descriptionRaw": "Each round, when an ally with Fury kills an enemy for the first time, create a random Dragon follower in hand.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"Look to the heavens, and see as I do! First the signals, for by night they shine. Then the fury, for by day all burns. You will see! We will all see!\" - Herald of Dragons", + "artistName": "SIXMOREVODKA", + "name": "Inviolus Vox", + "cardCode": "03MT006", + "keywords": [ + "Fury" + ], + "keywordRefs": [ + "Fury" + ], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "EPIC", + "rarityRef": "Epic", + "subtypes": [ + "DRAGON" + ], + "supertype": "", + "type": "Unit", + "collectible": true, + "set": "Set3" + }, + { + "associatedCards": [], + "associatedCardRefs": [ + "03MT054T3", + "03MT054T2", + "03MT054T1" + ], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set3/en_us/img/cards/03MT054.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set3/en_us/img/cards/03MT054-full.png" + } + ], + "regions": [ + "Targon" + ], + "regionRefs": [ + "Targon" + ], + "attack": 3, + "cost": 4, + "health": 5, + "description": "Daybreak: Stun the strongest enemy.", + "descriptionRaw": "Daybreak: Stun the strongest enemy.", + "levelupDescription": "You've activated Daybreak 4+ times.", + "levelupDescriptionRaw": "You've activated Daybreak 4+ times.", + "flavorText": "She stood amidst them as she prepared for battle--radiating light, bedecked in crimson and gold, her eyes like embers. As the rising sun crowned her head in light, each Solari present lowered their eyes, not in shame, but in deference to their shining leader.", + "artistName": "SIXMOREVODKA", + "name": "Leona", + "cardCode": "03MT054", + "keywords": [], + "keywordRefs": [], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "Champion", + "rarityRef": "Champion", + "subtypes": [], + "supertype": "Champion", + "type": "Unit", + "collectible": true, + "set": "Set3" + }, + { + "associatedCards": [], + "associatedCardRefs": [ + "03MT054", + "03MT054T1" + ], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set3/en_us/img/cards/03MT054T2.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set3/en_us/img/cards/03MT054T2-full.png" + } + ], + "regions": [ + "Targon" + ], + "regionRefs": [ + "Targon" + ], + "attack": 0, + "cost": 5, + "health": 0, + "description": "Give allies +2|+2 this round. Create a Leona in your deck.\r\nDaybreak: Activate all ally Daybreak effects at once.", + "descriptionRaw": "Give allies +2|+2 this round. Create a Leona in your deck.\r\nDaybreak: Activate all ally Daybreak effects at once.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"She is our unflinching leader in the heavens, the blinding flash of our weapons at noon, and the unquenchable fire that burns in our hearts.\" \n- Solari Priestess", + "artistName": "Kudos Productions", + "name": "Leona's Morning Light", + "cardCode": "03MT054T2", + "keywords": [ + "Slow" + ], + "keywordRefs": [ + "Slow" + ], + "spellSpeed": "Slow", + "spellSpeedRef": "Slow", + "rarity": "None", + "rarityRef": "None", + "subtypes": [], + "supertype": "Champion", + "type": "Spell", + "collectible": false, + "set": "Set3" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set3/en_us/img/cards/03MT054T3.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set3/en_us/img/cards/03MT054T3-full.png" + } + ], + "regions": [ + "Targon" + ], + "regionRefs": [ + "Targon" + ], + "attack": 0, + "cost": 0, + "health": 0, + "description": "Stun the strongest enemy.", + "descriptionRaw": "Stun the strongest enemy.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"The closer they stretch toward the heavens, the more the sun will burn them.\" - Leona\n", + "artistName": "Kudos Productions", + "name": "Solar Flare", + "cardCode": "03MT054T3", + "keywords": [ + "Skill" + ], + "keywordRefs": [ + "Skill" + ], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "None", + "rarityRef": "None", + "subtypes": [], + "supertype": "", + "type": "Ability", + "collectible": false, + "set": "Set3" + }, + { + "associatedCards": [], + "associatedCardRefs": [ + "03MT054T3", + "03MT054T2", + "03MT054" + ], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set3/en_us/img/cards/03MT054T1.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set3/en_us/img/cards/03MT054T1-full.png" + } + ], + "regions": [ + "Targon" + ], + "regionRefs": [ + "Targon" + ], + "attack": 4, + "cost": 4, + "health": 6, + "description": "Daybreak or when you activate another Daybreak: Stun the strongest enemy.", + "descriptionRaw": "Daybreak or when you activate another Daybreak: Stun the strongest enemy.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "This was what Leona had prepared for. She knew she would find Diana fleeing down the mountain, retreating before the light of the sun. She breathed deeply to still her fluttering heartbeat, willing it silent with grim resolve. This time upon their meeting, she had the upper hand; this time, she would face her old friend head-on.", + "artistName": "SIXMOREVODKA", + "name": "Leona", + "cardCode": "03MT054T1", + "keywords": [ + "Overwhelm" + ], + "keywordRefs": [ + "Overwhelm" + ], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "None", + "rarityRef": "None", + "subtypes": [], + "supertype": "Champion", + "type": "Unit", + "collectible": false, + "set": "Set3" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set3/en_us/img/cards/03MT014.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set3/en_us/img/cards/03MT014-full.png" + } + ], + "regions": [ + "Targon" + ], + "regionRefs": [ + "Targon" + ], + "attack": 1, + "cost": 2, + "health": 2, + "description": "Dragon allies cost 1 less.", + "descriptionRaw": "Dragon allies cost 1 less.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "The clouds twisted around their massive forms, and the sky itself seemed to shake with their keening wails. She knew what was to come, and yet felt not fear but the warm embrace of destiny.", + "artistName": "Polar Engine Studio", + "name": "Herald of Dragons", + "cardCode": "03MT014", + "keywords": [ + "Missing Translation" + ], + "keywordRefs": [ + "AuraVisualFakeKeyword" + ], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "RARE", + "rarityRef": "Rare", + "subtypes": [], + "supertype": "", + "type": "Unit", + "collectible": true, + "set": "Set3" + }, + { + "associatedCards": [], + "associatedCardRefs": [ + "03MT058T2", + "03MT058T1" + ], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set3/en_us/img/cards/03MT058.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set3/en_us/img/cards/03MT058-full.png" + } + ], + "regions": [ + "Targon" + ], + "regionRefs": [ + "Targon" + ], + "attack": 3, + "cost": 4, + "health": 5, + "description": "Support: Give me and my supported ally Tough this round. Copy the last spell you played on only me this round onto that ally (It can't be copied again).", + "descriptionRaw": "Support: Give me and my supported ally Tough this round. Copy the last spell you played on only me this round onto that ally (It can't be copied again).", + "levelupDescription": "I've seen you target or support allies 7+ times.", + "levelupDescriptionRaw": "I've seen you target or support allies 7+ times.", + "flavorText": "\"Taric's gentle kindness inspires all who meet him, galvanizing them to find the warmth within to bolster themselves on even the coldest of nights.\" - Mountain Scryer", + "artistName": "SIXMOREVODKA", + "name": "Taric", + "cardCode": "03MT058", + "keywords": [ + "Support" + ], + "keywordRefs": [ + "Support" + ], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "Champion", + "rarityRef": "Champion", + "subtypes": [], + "supertype": "Champion", + "type": "Unit", + "collectible": true, + "set": "Set3" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set3/en_us/img/cards/03MT098.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set3/en_us/img/cards/03MT098-full.png" + } + ], + "regions": [ + "Targon" + ], + "regionRefs": [ + "Targon" + ], + "attack": 0, + "cost": 2, + "health": 0, + "description": "Grant an ally +0|+2.", + "descriptionRaw": "Grant an ally +0|+2.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"Our shield is our conviction, our resolve, our trust in the light!\" - Solari Shieldbearer", + "artistName": "Kudos Productions", + "name": "Sunblessed Vigor", + "cardCode": "03MT098", + "keywords": [ + "Burst" + ], + "keywordRefs": [ + "Burst" + ], + "spellSpeed": "Burst", + "spellSpeedRef": "Burst", + "rarity": "COMMON", + "rarityRef": "Common", + "subtypes": [], + "supertype": "", + "type": "Spell", + "collectible": true, + "set": "Set3" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set3/en_us/img/cards/03MT040.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set3/en_us/img/cards/03MT040-full.png" + } + ], + "regions": [ + "Targon" + ], + "regionRefs": [ + "Targon" + ], + "attack": 1, + "cost": 3, + "health": 2, + "description": "", + "descriptionRaw": "", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"Hope is a delicate thing that flies ever higher, and should never be caught.\" - Lunari Priestess", + "artistName": "Polar Engine Studio", + "name": "Sparklefly", + "cardCode": "03MT040", + "keywords": [ + "Elusive", + "Lifesteal" + ], + "keywordRefs": [ + "Elusive", + "Lifesteal" + ], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "COMMON", + "rarityRef": "Common", + "subtypes": [], + "supertype": "", + "type": "Unit", + "collectible": true, + "set": "Set3" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set3/en_us/img/cards/03MT085.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set3/en_us/img/cards/03MT085-full.png" + } + ], + "regions": [ + "Targon" + ], + "regionRefs": [ + "Targon" + ], + "attack": 0, + "cost": 3, + "health": 0, + "description": "Silence a unit this round.", + "descriptionRaw": "Silence a unit this round.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"They will know serenity.\" - Soraka", + "artistName": "Kudos Productions", + "name": "Hush", + "cardCode": "03MT085", + "keywords": [ + "Burst" + ], + "keywordRefs": [ + "Burst" + ], + "spellSpeed": "Burst", + "spellSpeedRef": "Burst", + "rarity": "RARE", + "rarityRef": "Rare", + "subtypes": [], + "supertype": "", + "type": "Spell", + "collectible": true, + "set": "Set3" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set3/en_us/img/cards/03MT001T1.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set3/en_us/img/cards/03MT001T1-full.png" + } + ], + "regions": [ + "Targon" + ], + "regionRefs": [ + "Targon" + ], + "attack": 0, + "cost": 0, + "health": 0, + "description": "Stun enemies with 2 or less Power.", + "descriptionRaw": "Stun enemies with 2 or less Power.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"Hahahaha, lookit 'em GO! They're just. So. Fast! Is your head spinning too?!\" - Zoe", + "artistName": "Kudos Productions", + "name": "Mischief", + "cardCode": "03MT001T1", + "keywords": [ + "Skill" + ], + "keywordRefs": [ + "Skill" + ], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "None", + "rarityRef": "None", + "subtypes": [], + "supertype": "", + "type": "Ability", + "collectible": false, + "set": "Set3" + }, + { + "associatedCards": [], + "associatedCardRefs": [ + "03MT220T1" + ], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set3/en_us/img/cards/03MT220.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set3/en_us/img/cards/03MT220-full.png" + } + ], + "regions": [ + "Targon" + ], + "regionRefs": [ + "Targon" + ], + "attack": 5, + "cost": 5, + "health": 4, + "description": "Nightfall: Stun an enemy. If it's a follower, Stun it again at the next Round Start.", + "descriptionRaw": "Nightfall: Stun an enemy. If it's a follower, Stun it again at the next Round Start.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"Mother Moon, our night is set,\nMay we halt those who would harm us,\nAnd teach them regret.\"\n- Lunari Prayer", + "artistName": "Kudos Productions", + "name": "The Cloven Way", + "cardCode": "03MT220", + "keywords": [ + "Overwhelm" + ], + "keywordRefs": [ + "Overwhelm" + ], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "RARE", + "rarityRef": "Rare", + "subtypes": [], + "supertype": "", + "type": "Unit", + "collectible": true, + "set": "Set3" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set3/en_us/img/cards/03MT075.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set3/en_us/img/cards/03MT075-full.png" + } + ], + "regions": [ + "Targon" + ], + "regionRefs": [ + "Targon" + ], + "attack": 2, + "cost": 3, + "health": 2, + "description": "Nightfall: Invoke.", + "descriptionRaw": "Nightfall: Invoke.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"Oh, stars above, journeying like many pilgrims through the night's expanse--stay with us a moment, tell us what you've seen.\" - The Paeans of Evening", + "artistName": "Kudos Productions", + "name": "Lunari Priestess", + "cardCode": "03MT075", + "keywords": [], + "keywordRefs": [], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "RARE", + "rarityRef": "Rare", + "subtypes": [], + "supertype": "", + "type": "Unit", + "collectible": true, + "set": "Set3" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set3/en_us/img/cards/03MT020.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set3/en_us/img/cards/03MT020-full.png" + } + ], + "regions": [ + "Targon" + ], + "regionRefs": [ + "Targon" + ], + "attack": 5, + "cost": 5, + "health": 6, + "description": "Play: Heal an ally and your Nexus 3.", + "descriptionRaw": "Play: Heal an ally and your Nexus 3.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"See that star moving across the night sky? That's a grown stellacorn. While the young ones lend us their healing magic until they can be returned to the sky, grown stellacorns can wield that power on their own. It is considered very lucky to see one and know it for what it is. Luckier still to care for one.\" - Lidari, Keeper of the Stars", + "artistName": "SIXMOREVODKA", + "name": "Resplendent Stellacorn", + "cardCode": "03MT020", + "keywords": [], + "keywordRefs": [], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "COMMON", + "rarityRef": "Common", + "subtypes": [], + "supertype": "", + "type": "Unit", + "collectible": true, + "set": "Set3" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set3/en_us/img/cards/03MT071.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set3/en_us/img/cards/03MT071-full.png" + } + ], + "regions": [ + "Targon" + ], + "regionRefs": [ + "Targon" + ], + "attack": 2, + "cost": 2, + "health": 2, + "description": "Support: Grant my supported ally +0|+2.", + "descriptionRaw": "Support: Grant my supported ally +0|+2.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "In traveling, you must be open to the journey, which will inevitably change you. In traveling, you take something new with you... and you leave something of your old self behind. ", + "artistName": "SIXMOREVODKA", + "name": "Tyari the Traveler", + "cardCode": "03MT071", + "keywords": [ + "Support" + ], + "keywordRefs": [ + "Support" + ], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "COMMON", + "rarityRef": "Common", + "subtypes": [], + "supertype": "", + "type": "Unit", + "collectible": true, + "set": "Set3" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set3/en_us/img/cards/03MT002.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set3/en_us/img/cards/03MT002-full.png" + } + ], + "regions": [ + "Targon" + ], + "regionRefs": [ + "Targon" + ], + "attack": 0, + "cost": 15, + "health": 0, + "description": "Deal 15 to all enemies.\r\nCosts 2 less for each Dragon or Celestial ally you have.", + "descriptionRaw": "Deal 15 to all enemies.\r\nCosts 2 less for each Dragon or Celestial ally you have.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"When the time comes, I think I'll make an example of Runeterra. Perhaps I'll drag its smoldering husk around with me for all eternity. Like a toy. A dead, worthless toy. I don't know. I've not really thought about it much.\" - Aurelion Sol", + "artistName": "Kudos Productions", + "name": "The Skies Descend", + "cardCode": "03MT002", + "keywords": [ + "Slow" + ], + "keywordRefs": [ + "Slow" + ], + "spellSpeed": "Slow", + "spellSpeedRef": "Slow", + "rarity": "EPIC", + "rarityRef": "Epic", + "subtypes": [], + "supertype": "", + "type": "Spell", + "collectible": true, + "set": "Set3" + }, + { + "associatedCards": [], + "associatedCardRefs": [ + "03MT009T1", + "03MT009T2", + "03MT093", + "03MT091", + "03MT015" + ], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set3/en_us/img/cards/03MT009.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set3/en_us/img/cards/03MT009-full.png" + } + ], + "regions": [ + "Targon" + ], + "regionRefs": [ + "Targon" + ], + "attack": 1, + "cost": 1, + "health": 1, + "description": "Nexus Strike: Create a Supercool Starchart in hand or, if you have one, reduce its cost by 1.", + "descriptionRaw": "Nexus Strike: Create a Supercool Starchart in hand or, if you have one, reduce its cost by 1.", + "levelupDescription": "I've seen you play 10 cards with different names.", + "levelupDescriptionRaw": "I've seen you play 10 cards with different names.", + "flavorText": "\"Hey hiiiiiii! Whatcha doin'? Is that a CARD GAME? Can I play too? What?! I'M in YOUR game? Ha! What a silly dimension...\"", + "artistName": "SIXMOREVODKA", + "name": "Zoe", + "cardCode": "03MT009", + "keywords": [ + "Elusive" + ], + "keywordRefs": [ + "Elusive" + ], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "Champion", + "rarityRef": "Champion", + "subtypes": [], + "supertype": "Champion", + "type": "Unit", + "collectible": true, + "set": "Set3" + }, + { + "associatedCards": [], + "associatedCardRefs": [ + "03MT093", + "03MT009", + "03MT009T1", + "03MT091", + "03MT015" + ], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set3/en_us/img/cards/03MT009T2.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set3/en_us/img/cards/03MT009T2-full.png" + } + ], + "regions": [ + "Targon" + ], + "regionRefs": [ + "Targon" + ], + "attack": 0, + "cost": 2, + "health": 0, + "description": "Stun an enemy. Create a Fleeting Paddle Star in hand.\r\nCreate a Zoe in your deck.", + "descriptionRaw": "Stun an enemy. Create a Fleeting Paddle Star in hand.\r\nCreate a Zoe in your deck.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"Naptime for you! One sparklefly, twoooo sparklefly, thre-- Hey, what'sthatoverthere?!\" - Zoe", + "artistName": "Kudos Productions", + "name": "Zoe's Sleepy Trouble Bubble", + "cardCode": "03MT009T2", + "keywords": [ + "Slow" + ], + "keywordRefs": [ + "Slow" + ], + "spellSpeed": "Slow", + "spellSpeedRef": "Slow", + "rarity": "None", + "rarityRef": "None", + "subtypes": [], + "supertype": "Champion", + "type": "Spell", + "collectible": false, + "set": "Set3" + }, + { + "associatedCards": [], + "associatedCardRefs": [ + "03MT015", + "03MT093", + "03MT009", + "03MT009T2" + ], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set3/en_us/img/cards/03MT009T1.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set3/en_us/img/cards/03MT009T1-full.png" + } + ], + "regions": [ + "Targon" + ], + "regionRefs": [ + "Targon" + ], + "attack": 2, + "cost": 1, + "health": 2, + "description": "When I level up, grant your Nexus \"When you summon an ally, grant its keywords to all allies.\"\r\nNexus Strike: Create a Behold the Infinite that costs 0 in hand.", + "descriptionRaw": "When I level up, grant your Nexus \"When you summon an ally, grant its keywords to all allies.\"\r\nNexus Strike: Create a Behold the Infinite that costs 0 in hand.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"Ah, the vastness of space and a myriad realities stretched, squished, and squeezed out before us! Maaaaaybe we'll even see my favorite space doggy!\"", + "artistName": "SIXMOREVODKA", + "name": "Zoe", + "cardCode": "03MT009T1", + "keywords": [ + "Elusive", + "Missing Translation" + ], + "keywordRefs": [ + "Elusive", + "AuraVisualFakeKeyword" + ], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "None", + "rarityRef": "None", + "subtypes": [], + "supertype": "Champion", + "type": "Unit", + "collectible": false, + "set": "Set3" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set3/en_us/img/cards/03MT086.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set3/en_us/img/cards/03MT086-full.png" + } + ], + "regions": [ + "Targon" + ], + "regionRefs": [ + "Targon" + ], + "attack": 1, + "cost": 1, + "health": 1, + "description": "Play: Discard 1 to Invoke a Celestial card that costs 3 or less.", + "descriptionRaw": "Play: Discard 1 to Invoke a Celestial card that costs 3 or less.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"This one's my favorite! I call it 'Metaphysical Identity of the Conscious Psyche'. Unless you tilt your head like this... then it kinda looks like two spoons.\"", + "artistName": "Dao Le", + "name": "Spacey Sketcher", + "cardCode": "03MT086", + "keywords": [], + "keywordRefs": [], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "RARE", + "rarityRef": "Rare", + "subtypes": [], + "supertype": "", + "type": "Unit", + "collectible": true, + "set": "Set3" + }, + { + "associatedCards": [], + "associatedCardRefs": [ + "03MT087T2", + "03MT087T1" + ], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set3/en_us/img/cards/03MT087.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set3/en_us/img/cards/03MT087-full.png" + } + ], + "regions": [ + "Targon" + ], + "regionRefs": [ + "Targon" + ], + "attack": 10, + "cost": 10, + "health": 10, + "description": "Play: Invoke a Celestial card that costs 7 or more.\r\nRound Start: Create a random Celestial card in hand.", + "descriptionRaw": "Play: Invoke a Celestial card that costs 7 or more.\r\nRound Start: Create a random Celestial card in hand.", + "levelupDescription": "Round End: Your allies have 20+ total Power.", + "levelupDescriptionRaw": "Round End: Your allies have 20+ total Power.", + "flavorText": "\"I don't care what you write about me, you middling creature! Just make sure I'm described as handsome. And magnificent. And also very, very intelligent. Can you spell that?\"", + "artistName": "SIXMOREVODKA", + "name": "Aurelion Sol", + "cardCode": "03MT087", + "keywords": [ + "Fury", + "SpellShield" + ], + "keywordRefs": [ + "Fury", + "SpellShield" + ], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "Champion", + "rarityRef": "Champion", + "subtypes": [ + "DRAGON" + ], + "supertype": "Champion", + "type": "Unit", + "collectible": true, + "set": "Set3" + }, + { + "associatedCards": [], + "associatedCardRefs": [ + "03MT087T2", + "03MT087" + ], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set3/en_us/img/cards/03MT087T1.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set3/en_us/img/cards/03MT087T1-full.png" + } + ], + "regions": [ + "Targon" + ], + "regionRefs": [ + "Targon" + ], + "attack": 11, + "cost": 10, + "health": 11, + "description": "Play: Invoke a Celestial card that costs 7 or more.\r\nRound Start: Create a random Celestial card in hand.\r\nYour Celestial cards cost 0.", + "descriptionRaw": "Play: Invoke a Celestial card that costs 7 or more.\r\nRound Start: Create a random Celestial card in hand.\r\nYour Celestial cards cost 0.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "Aurelion Sol is handsome. And magnificent. And also very, very inteligent.", + "artistName": "SIXMOREVODKA", + "name": "Aurelion Sol", + "cardCode": "03MT087T1", + "keywords": [ + "Fury", + "SpellShield", + "Missing Translation" + ], + "keywordRefs": [ + "Fury", + "SpellShield", + "AuraVisualFakeKeyword" + ], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "None", + "rarityRef": "None", + "subtypes": [ + "DRAGON" + ], + "supertype": "Champion", + "type": "Unit", + "collectible": false, + "set": "Set3" + }, + { + "associatedCards": [], + "associatedCardRefs": [ + "03MT087", + "03MT087T1" + ], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set3/en_us/img/cards/03MT087T2.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set3/en_us/img/cards/03MT087T2-full.png" + } + ], + "regions": [ + "Targon" + ], + "regionRefs": [ + "Targon" + ], + "attack": 0, + "cost": 15, + "health": 0, + "description": "Deal 15 to all enemies.\r\nCosts 2 less for each Dragon or Celestial ally you have.\r\nCreate an Aurelion Sol in your deck.", + "descriptionRaw": "Deal 15 to all enemies.\r\nCosts 2 less for each Dragon or Celestial ally you have.\r\nCreate an Aurelion Sol in your deck.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"When the time comes, I think I'll make an example of Runeterra. Perhaps I'll drag its smoldering husk around with me for all eternity. Like a toy. A dead, worthless toy. I don't know. I've not really thought about it much.\" - Aurelion Sol", + "artistName": "Kudos Productions", + "name": "Aurelion Sol's The Skies Descend", + "cardCode": "03MT087T2", + "keywords": [ + "Slow" + ], + "keywordRefs": [ + "Slow" + ], + "spellSpeed": "Slow", + "spellSpeedRef": "Slow", + "rarity": "None", + "rarityRef": "None", + "subtypes": [], + "supertype": "Champion", + "type": "Spell", + "collectible": false, + "set": "Set3" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set3/en_us/img/cards/03MT019.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set3/en_us/img/cards/03MT019-full.png" + } + ], + "regions": [ + "Targon" + ], + "regionRefs": [ + "Targon" + ], + "attack": 0, + "cost": 4, + "health": 0, + "description": "Grant an ally +1|+1 and SpellShield.", + "descriptionRaw": "Grant an ally +1|+1 and SpellShield.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"Honor the mountain.\" - Taric", + "artistName": "Kudos Productions", + "name": "Bastion", + "cardCode": "03MT019", + "keywords": [ + "Burst" + ], + "keywordRefs": [ + "Burst" + ], + "spellSpeed": "Burst", + "spellSpeedRef": "Burst", + "rarity": "COMMON", + "rarityRef": "Common", + "subtypes": [], + "supertype": "", + "type": "Spell", + "collectible": true, + "set": "Set3" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set3/en_us/img/cards/03MT214.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set3/en_us/img/cards/03MT214-full.png" + } + ], + "regions": [ + "Targon" + ], + "regionRefs": [ + "Targon" + ], + "attack": 2, + "cost": 1, + "health": 1, + "description": "Nexus Strike: Draw 1 and shuffle me into the top 3 cards of your deck.", + "descriptionRaw": "Nexus Strike: Draw 1 and shuffle me into the top 3 cards of your deck.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"Mother Moon, gift me confidence,\nFill me with The Flight's conviction,\nSet me on my path.\"\n- Lunari Prayer", + "artistName": "Kudos Productions", + "name": "The Flight", + "cardCode": "03MT214", + "keywords": [ + "Elusive" + ], + "keywordRefs": [ + "Elusive" + ], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "RARE", + "rarityRef": "Rare", + "subtypes": [], + "supertype": "", + "type": "Unit", + "collectible": true, + "set": "Set3" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set3/en_us/img/cards/03MT013.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set3/en_us/img/cards/03MT013-full.png" + } + ], + "regions": [ + "Targon" + ], + "regionRefs": [ + "Targon" + ], + "attack": 0, + "cost": 5, + "health": 0, + "description": "Silence 2 enemy units this round.\r\nNightfall: They can't block this round.", + "descriptionRaw": "Silence 2 enemy units this round.\r\nNightfall: They can't block this round.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"Those unaccustomed to the moonlight must learn to see by it, or they will see nothing at all.\" - Diana", + "artistName": "Kudos Productions", + "name": "Moonlight Affliction", + "cardCode": "03MT013", + "keywords": [ + "Burst" + ], + "keywordRefs": [ + "Burst" + ], + "spellSpeed": "Burst", + "spellSpeedRef": "Burst", + "rarity": "COMMON", + "rarityRef": "Common", + "subtypes": [], + "supertype": "", + "type": "Spell", + "collectible": true, + "set": "Set3" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set3/en_us/img/cards/03MT008.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set3/en_us/img/cards/03MT008-full.png" + } + ], + "regions": [ + "Targon" + ], + "regionRefs": [ + "Targon" + ], + "attack": 0, + "cost": 3, + "health": 0, + "description": "Fully heal damaged allies.", + "descriptionRaw": "Fully heal damaged allies.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"For life!\" - Soraka", + "artistName": "Kudos Productions", + "name": "Wish", + "cardCode": "03MT008", + "keywords": [ + "Slow" + ], + "keywordRefs": [ + "Slow" + ], + "spellSpeed": "Slow", + "spellSpeedRef": "Slow", + "rarity": "RARE", + "rarityRef": "Rare", + "subtypes": [], + "supertype": "", + "type": "Spell", + "collectible": true, + "set": "Set3" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set3/en_us/img/cards/03MT023.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set3/en_us/img/cards/03MT023-full.png" + } + ], + "regions": [ + "Targon" + ], + "regionRefs": [ + "Targon" + ], + "attack": 0, + "cost": 6, + "health": 0, + "description": "Deal 6 to a unit.\r\nDaybreak: Instead, Silence it this round and deal 6 to it.", + "descriptionRaw": "Deal 6 to a unit.\r\nDaybreak: Instead, Silence it this round and deal 6 to it.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "Few things survive a gaze as unflinching as the sun's.", + "artistName": "Kudos Productions", + "name": "Sunburst", + "cardCode": "03MT023", + "keywords": [ + "Slow" + ], + "keywordRefs": [ + "Slow" + ], + "spellSpeed": "Slow", + "spellSpeedRef": "Slow", + "rarity": "RARE", + "rarityRef": "Rare", + "subtypes": [], + "supertype": "", + "type": "Spell", + "collectible": true, + "set": "Set3" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set3/en_us/img/cards/03MT096.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set3/en_us/img/cards/03MT096-full.png" + } + ], + "regions": [ + "Targon" + ], + "regionRefs": [ + "Targon" + ], + "attack": 2, + "cost": 3, + "health": 2, + "description": "Daybreak: Invoke a Celestial card that costs 4, 5, or 6.\r\n", + "descriptionRaw": "Daybreak: Invoke a Celestial card that costs 4, 5, or 6.\r\n", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "The Solari look to the stars for guidance as much as any other Targonian, for the star dearest to their faith is the sun.", + "artistName": "Grafit Studio", + "name": "Solari Priestess", + "cardCode": "03MT096", + "keywords": [], + "keywordRefs": [], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "RARE", + "rarityRef": "Rare", + "subtypes": [], + "supertype": "", + "type": "Unit", + "collectible": true, + "set": "Set3" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set3/en_us/img/cards/03MT045.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set3/en_us/img/cards/03MT045-full.png" + } + ], + "regions": [ + "Targon" + ], + "regionRefs": [ + "Targon" + ], + "attack": 0, + "cost": 4, + "health": 0, + "description": "Heal an ally 4 and grant it +0|+4.", + "descriptionRaw": "Heal an ally 4 and grant it +0|+4.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"You thought you'd beaten us? Ha! We're just getting started.\" - Broadbacked Protector", + "artistName": "Max Grecke", + "name": "Astral Protection", + "cardCode": "03MT045", + "keywords": [ + "Burst" + ], + "keywordRefs": [ + "Burst" + ], + "spellSpeed": "Burst", + "spellSpeedRef": "Burst", + "rarity": "COMMON", + "rarityRef": "Common", + "subtypes": [], + "supertype": "", + "type": "Spell", + "collectible": true, + "set": "Set3" + }, + { + "associatedCards": [], + "associatedCardRefs": [ + "03MT080T1" + ], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set3/en_us/img/cards/03MT080.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set3/en_us/img/cards/03MT080-full.png" + } + ], + "regions": [ + "Targon" + ], + "regionRefs": [ + "Targon" + ], + "attack": 3, + "cost": 3, + "health": 3, + "description": "When I'm summoned, create a Spring Gifts in hand.", + "descriptionRaw": "When I'm summoned, create a Spring Gifts in hand.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"Mostly, I mind the springs, but a shepherd's responsibility is first and foremost to their flock. Priorities have been known to collide.\"", + "artistName": "Polar Engine", + "name": "Spring Guardian", + "cardCode": "03MT080", + "keywords": [], + "keywordRefs": [], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "COMMON", + "rarityRef": "Common", + "subtypes": [], + "supertype": "", + "type": "Unit", + "collectible": true, + "set": "Set3" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set3/en_us/img/cards/03MT080T1.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set3/en_us/img/cards/03MT080T1-full.png" + } + ], + "regions": [ + "Targon" + ], + "regionRefs": [ + "Targon" + ], + "attack": 0, + "cost": 1, + "health": 0, + "description": "Fully heal an ally.", + "descriptionRaw": "Fully heal an ally.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"Let the springs soothe that which ails you.\" - Spring Guardian", + "artistName": "Max Grecke", + "name": "Spring Gifts", + "cardCode": "03MT080T1", + "keywords": [ + "Slow" + ], + "keywordRefs": [ + "Slow" + ], + "spellSpeed": "Slow", + "spellSpeedRef": "Slow", + "rarity": "None", + "rarityRef": "None", + "subtypes": [], + "supertype": "", + "type": "Spell", + "collectible": false, + "set": "Set3" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set3/en_us/img/cards/03MT042.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set3/en_us/img/cards/03MT042-full.png" + } + ], + "regions": [ + "Targon" + ], + "regionRefs": [ + "Targon" + ], + "attack": 0, + "cost": 1, + "health": 0, + "description": "Manifest an enemy spell played this game.", + "descriptionRaw": "Manifest an enemy spell played this game.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"Oh, that was uh-MAZING! But how much better would it be if I did it instead? 'Kaythanksbyeeee!\" - Zoe", + "artistName": "Kudos Productions", + "name": "Spell Thief", + "cardCode": "03MT042", + "keywords": [ + "Burst" + ], + "keywordRefs": [ + "Burst" + ], + "spellSpeed": "Burst", + "spellSpeedRef": "Burst", + "rarity": "RARE", + "rarityRef": "Rare", + "subtypes": [], + "supertype": "", + "type": "Spell", + "collectible": true, + "set": "Set3" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set3/en_us/img/cards/03MT057.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set3/en_us/img/cards/03MT057-full.png" + } + ], + "regions": [ + "Targon" + ], + "regionRefs": [ + "Targon" + ], + "attack": 5, + "cost": 4, + "health": 4, + "description": "Daybreak: Give me Lifesteal this round.", + "descriptionRaw": "Daybreak: Give me Lifesteal this round.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "The Sunforger held up his focus as light streamed into the room. The Solari artifact harnessed the sun's brilliant rays into a powerful enchantment for his weapon.", + "artistName": "Grafit Studio", + "name": "Solari Sunforger", + "cardCode": "03MT057", + "keywords": [], + "keywordRefs": [], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "COMMON", + "rarityRef": "Common", + "subtypes": [], + "supertype": "", + "type": "Unit", + "collectible": true, + "set": "Set3" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set3/en_us/img/cards/03MT091.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set3/en_us/img/cards/03MT091-full.png" + } + ], + "regions": [ + "Targon" + ], + "regionRefs": [ + "Targon" + ], + "attack": 0, + "cost": 2, + "health": 0, + "description": "Invoke a Celestial card that costs 3 or less.", + "descriptionRaw": "Invoke a Celestial card that costs 3 or less.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"And these three EXTRA sparkly stars I call... 'The Celestial Jump Rope'! Or is it more of an upside down happy face?\" - Zoe", + "artistName": "Max Grecke", + "name": "Supercool Starchart", + "cardCode": "03MT091", + "keywords": [ + "Burst" + ], + "keywordRefs": [ + "Burst" + ], + "spellSpeed": "Burst", + "spellSpeedRef": "Burst", + "rarity": "RARE", + "rarityRef": "Rare", + "subtypes": [], + "supertype": "", + "type": "Spell", + "collectible": true, + "set": "Set3" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set3/en_us/img/cards/03MT044.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set3/en_us/img/cards/03MT044-full.png" + } + ], + "regions": [ + "Targon" + ], + "regionRefs": [ + "Targon" + ], + "attack": 4, + "cost": 6, + "health": 4, + "description": "Daybreak: Give me +4|+4 this round.", + "descriptionRaw": "Daybreak: Give me +4|+4 this round.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"Shining guardian, your wrath burns like the noonday sun. Come forth and punish those who would trespass on this sacred place.\" - Sun Guardian's inscription", + "artistName": "SIXMOREVODKA", + "name": "Sun Guardian", + "cardCode": "03MT044", + "keywords": [ + "Overwhelm" + ], + "keywordRefs": [ + "Overwhelm" + ], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "EPIC", + "rarityRef": "Epic", + "subtypes": [], + "supertype": "", + "type": "Unit", + "collectible": true, + "set": "Set3" + }, + { + "associatedCards": [], + "associatedCardRefs": [ + "03MT092T1" + ], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set3/en_us/img/cards/03MT041.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set3/en_us/img/cards/03MT041-full.png" + } + ], + "regions": [ + "Targon" + ], + "regionRefs": [ + "Targon" + ], + "attack": 1, + "cost": 3, + "health": 1, + "description": "Support: Grant my supported ally +2|+2.\r\nLast Breath: Create 3 Gems in hand.", + "descriptionRaw": "Support: Grant my supported ally +2|+2.\r\nLast Breath: Create 3 Gems in hand.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"Did you catch anything he said in there?\"\n\"Not a word. Seemed nice, though.\"\n- Emir and Haley, Mountain Sojourners", + "artistName": "SIXMOREVODKA", + "name": "Mentor of the Stones", + "cardCode": "03MT041", + "keywords": [ + "Last Breath", + "Support" + ], + "keywordRefs": [ + "LastBreath", + "Support" + ], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "EPIC", + "rarityRef": "Epic", + "subtypes": [ + "YORDLE" + ], + "supertype": "", + "type": "Unit", + "collectible": true, + "set": "Set3" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set3/en_us/img/cards/03MT028.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set3/en_us/img/cards/03MT028-full.png" + } + ], + "regions": [ + "Targon" + ], + "regionRefs": [ + "Targon" + ], + "attack": 3, + "cost": 2, + "health": 2, + "description": "Daybreak: Give me +0|+4 this round.", + "descriptionRaw": "Daybreak: Give me +0|+4 this round.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"Foolish, not to come under the cover of night.\" The Shieldbearer straightened. \"Lay down your arms, and come peacefully.\"\nThe Lunari crouched in silence, readying her curved blades once more. \nSo be it. \nThe Solari readied herself in turn, lifting her shield to reflect the rays of the rising sun. ", + "artistName": "Kudos Productions", + "name": "Solari Shieldbearer", + "cardCode": "03MT028", + "keywords": [], + "keywordRefs": [], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "COMMON", + "rarityRef": "Common", + "subtypes": [], + "supertype": "", + "type": "Unit", + "collectible": true, + "set": "Set3" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set3/en_us/img/cards/03MT072.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set3/en_us/img/cards/03MT072-full.png" + } + ], + "regions": [ + "Targon" + ], + "regionRefs": [ + "Targon" + ], + "attack": 5, + "cost": 5, + "health": 5, + "description": "", + "descriptionRaw": "", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "Countless challenges await those climbing Mount Targon. Some, like the endless ascent, slowly sap the aspirants' strength. Others are much more immediate.", + "artistName": "Jihun Lee", + "name": "Fused Firebrand", + "cardCode": "03MT072", + "keywords": [ + "Fury", + "SpellShield" + ], + "keywordRefs": [ + "Fury", + "SpellShield" + ], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "COMMON", + "rarityRef": "Common", + "subtypes": [ + "DRAGON" + ], + "supertype": "", + "type": "Unit", + "collectible": true, + "set": "Set3" + }, + { + "associatedCards": [], + "associatedCardRefs": [ + "03MT092T1" + ], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set3/en_us/img/cards/03MT025.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set3/en_us/img/cards/03MT025-full.png" + } + ], + "regions": [ + "Targon" + ], + "regionRefs": [ + "Targon" + ], + "attack": 0, + "cost": 4, + "health": 0, + "description": "Fill your hand with Gems.", + "descriptionRaw": "Fill your hand with Gems.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"Turn a gem just so, and it glimmers in the light. Like mortal lives, each has its own inner fire.\" - Taric", + "artistName": "Kudos Productions", + "name": "Shards of the Mountain", + "cardCode": "03MT025", + "keywords": [ + "Slow" + ], + "keywordRefs": [ + "Slow" + ], + "spellSpeed": "Slow", + "spellSpeedRef": "Slow", + "rarity": "EPIC", + "rarityRef": "Epic", + "subtypes": [], + "supertype": "", + "type": "Spell", + "collectible": true, + "set": "Set3" + }, + { + "associatedCards": [], + "associatedCardRefs": [ + "03MT018" + ], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set3/en_us/img/cards/03MT017.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set3/en_us/img/cards/03MT017-full.png" + } + ], + "regions": [ + "Targon" + ], + "regionRefs": [ + "Targon" + ], + "attack": 0, + "cost": 1, + "health": 0, + "description": "Create 5 The Messengers in your deck.", + "descriptionRaw": "Create 5 The Messengers in your deck.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"Time passes, skies turn--the Serpent moves aside and the Messenger takes its place overhead. A season of abundance awaits...\" - Lunari Priestess", + "artistName": "Max Grecke", + "name": "Messenger's Sigil", + "cardCode": "03MT017", + "keywords": [ + "Burst" + ], + "keywordRefs": [ + "Burst" + ], + "spellSpeed": "Burst", + "spellSpeedRef": "Burst", + "rarity": "RARE", + "rarityRef": "Rare", + "subtypes": [], + "supertype": "", + "type": "Spell", + "collectible": true, + "set": "Set3" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set3/en_us/img/cards/03MT051.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set3/en_us/img/cards/03MT051-full.png" + } + ], + "regions": [ + "Targon" + ], + "regionRefs": [ + "Targon" + ], + "attack": 0, + "cost": 2, + "health": 0, + "description": "Heal an ally or your Nexus 2. Draw 1.", + "descriptionRaw": "Heal an ally or your Nexus 2. Draw 1.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "Stellacorns shine brightest when they are happy.", + "artistName": "Kudos Productions", + "name": "Guiding Touch", + "cardCode": "03MT051", + "keywords": [ + "Burst" + ], + "keywordRefs": [ + "Burst" + ], + "spellSpeed": "Burst", + "spellSpeedRef": "Burst", + "rarity": "COMMON", + "rarityRef": "Common", + "subtypes": [], + "supertype": "", + "type": "Spell", + "collectible": true, + "set": "Set3" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set3/en_us/img/cards/03MT012.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set3/en_us/img/cards/03MT012-full.png" + } + ], + "regions": [ + "Targon" + ], + "regionRefs": [ + "Targon" + ], + "attack": 6, + "cost": 10, + "health": 6, + "description": "Reduce my cost by 1 for each time you've targeted or supported allies this game.", + "descriptionRaw": "Reduce my cost by 1 for each time you've targeted or supported allies this game.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "The Arbiter is the mountain's final test, for only the guardian sees beyond the climber's deeds, and into their spirit.", + "artistName": "SIXMOREVODKA", + "name": "Arbiter of the Peak", + "cardCode": "03MT012", + "keywords": [ + "Overwhelm" + ], + "keywordRefs": [ + "Overwhelm" + ], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "EPIC", + "rarityRef": "Epic", + "subtypes": [], + "supertype": "", + "type": "Unit", + "collectible": true, + "set": "Set3" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set3/en_us/img/cards/03MT094.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set3/en_us/img/cards/03MT094-full.png" + } + ], + "regions": [ + "Targon" + ], + "regionRefs": [ + "Targon" + ], + "attack": 2, + "cost": 2, + "health": 3, + "description": "Nightfall: Grant me Elusive.", + "descriptionRaw": "Nightfall: Grant me Elusive.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"Let us cast our eyes toward the heavens, toward the sun, toward our lady's li-- Wait... What...? What is that...?\" - Solari Priest", + "artistName": "Kudos Productions", + "name": "Lunari Shadestalker", + "cardCode": "03MT094", + "keywords": [], + "keywordRefs": [], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "COMMON", + "rarityRef": "Common", + "subtypes": [], + "supertype": "", + "type": "Unit", + "collectible": true, + "set": "Set3" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set3/en_us/img/cards/03MT076.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set3/en_us/img/cards/03MT076-full.png" + } + ], + "regions": [ + "Targon" + ], + "regionRefs": [ + "Targon" + ], + "attack": 2, + "cost": 4, + "health": 3, + "description": "Your Celestial cards cost 1 less.\r\nAllegiance: Invoke.", + "descriptionRaw": "Your Celestial cards cost 1 less.\r\nAllegiance: Invoke.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"There is much to learn from the stars, from their guidance. For us, they are a constant, a way to chart our path.\"", + "artistName": "SIXMOREVODKA", + "name": "Mountain Scryer", + "cardCode": "03MT076", + "keywords": [ + "Missing Translation" + ], + "keywordRefs": [ + "AuraVisualFakeKeyword" + ], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "RARE", + "rarityRef": "Rare", + "subtypes": [], + "supertype": "", + "type": "Unit", + "collectible": true, + "set": "Set3" + }, + { + "associatedCards": [], + "associatedCardRefs": [ + "03MT217T8", + "03MT217T9", + "03MT217T12", + "03MT217T14", + "03MT217T10" + ], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set3/en_us/img/cards/03MT215.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set3/en_us/img/cards/03MT215-full.png" + } + ], + "regions": [ + "Targon" + ], + "regionRefs": [ + "Targon" + ], + "attack": 0, + "cost": 2, + "health": 0, + "description": "Pick a Moon Weapon to create in hand.", + "descriptionRaw": "Pick a Moon Weapon to create in hand.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"Reach out, Aphelios...\" - Alune", + "artistName": "Kudos Productions", + "name": "Gifts From Beyond", + "cardCode": "03MT215", + "keywords": [ + "Burst" + ], + "keywordRefs": [ + "Burst" + ], + "spellSpeed": "Burst", + "spellSpeedRef": "Burst", + "rarity": "COMMON", + "rarityRef": "Common", + "subtypes": [], + "supertype": "", + "type": "Spell", + "collectible": true, + "set": "Set3" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set3/en_us/img/cards/03MT100.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set3/en_us/img/cards/03MT100-full.png" + } + ], + "regions": [ + "Targon" + ], + "regionRefs": [ + "Targon" + ], + "attack": 7, + "cost": 7, + "health": 7, + "description": "Daybreak: The next Dragon or Celestial unit you play costs 2 less.\r\nNightfall: Create a random Dragon and Celestial follower in hand.", + "descriptionRaw": "Daybreak: The next Dragon or Celestial unit you play costs 2 less.\r\nNightfall: Create a random Dragon and Celestial follower in hand.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "Dragon scale (Eclipse Dragon, Draco Obscuratus)\nNotes: Scale has incredible optical properties. Highly reflective under direct sunlight.\nScribbled: IT ALSO GLOWS AT NIGHT!\n- Notes of Anden Mayne, Egghead Researcher", + "artistName": "SIXMOREVODKA", + "name": "Eclipse Dragon", + "cardCode": "03MT100", + "keywords": [ + "Fury" + ], + "keywordRefs": [ + "Fury" + ], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "RARE", + "rarityRef": "Rare", + "subtypes": [ + "DRAGON" + ], + "supertype": "", + "type": "Unit", + "collectible": true, + "set": "Set3" + }, + { + "associatedCards": [], + "associatedCardRefs": [ + "03MT058T2", + "03MT058" + ], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set3/en_us/img/cards/03MT058T1.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set3/en_us/img/cards/03MT058T1-full.png" + } + ], + "regions": [ + "Targon" + ], + "regionRefs": [ + "Targon" + ], + "attack": 4, + "cost": 4, + "health": 6, + "description": "Support: My supported ally and I can't take damage or die this round. Copy the last spell you played on only me this round onto that ally (It can't be copied again).", + "descriptionRaw": "Support: My supported ally and I can't take damage or die this round. Copy the last spell you played on only me this round onto that ally (It can't be copied again).", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"Why should Taric show his fellow man kindness? Well, he came to Targon a broken man, intent on climbing the mountain to atone for his sins... and he succeeded. Nobody knows better that all broken things can be made beautiful again.\" - Mountain Scryer", + "artistName": "SIXMOREVODKA", + "name": "Taric", + "cardCode": "03MT058T1", + "keywords": [ + "Support" + ], + "keywordRefs": [ + "Support" + ], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "None", + "rarityRef": "None", + "subtypes": [], + "supertype": "Champion", + "type": "Unit", + "collectible": false, + "set": "Set3" + }, + { + "associatedCards": [], + "associatedCardRefs": [ + "03MT058", + "03MT058T1" + ], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set3/en_us/img/cards/03MT058T2.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set3/en_us/img/cards/03MT058T2-full.png" + } + ], + "regions": [ + "Targon" + ], + "regionRefs": [ + "Targon" + ], + "attack": 0, + "cost": 5, + "health": 0, + "description": "Grant an ally +3|+3.\r\nCreate a Taric in your deck.", + "descriptionRaw": "Grant an ally +3|+3.\r\nCreate a Taric in your deck.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"A little something from Targon.\" - Taric", + "artistName": "Max Grecke", + "name": "Taric's Blessing of Targon", + "cardCode": "03MT058T2", + "keywords": [ + "Burst" + ], + "keywordRefs": [ + "Burst" + ], + "spellSpeed": "Burst", + "spellSpeedRef": "Burst", + "rarity": "None", + "rarityRef": "None", + "subtypes": [], + "supertype": "Champion", + "type": "Spell", + "collectible": false, + "set": "Set3" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set3/en_us/img/cards/03MT029.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set3/en_us/img/cards/03MT029-full.png" + } + ], + "regions": [ + "Targon" + ], + "regionRefs": [ + "Targon" + ], + "attack": 0, + "cost": 1, + "health": 3, + "description": "When you heal a damaged ally, grant me +2|+0.", + "descriptionRaw": "When you heal a damaged ally, grant me +2|+0.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"Ever since I first saw one streak across the night sky, I've loved stellacorns. If only I'd known then that I'd meet so many!\"", + "artistName": "SIXMOREVODKA", + "name": "Star Shepherd", + "cardCode": "03MT029", + "keywords": [], + "keywordRefs": [], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "RARE", + "rarityRef": "Rare", + "subtypes": [], + "supertype": "", + "type": "Unit", + "collectible": true, + "set": "Set3" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set3/en_us/img/cards/03MT219.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set3/en_us/img/cards/03MT219-full.png" + } + ], + "regions": [ + "Targon" + ], + "regionRefs": [ + "Targon" + ], + "attack": 0, + "cost": 4, + "health": 0, + "description": "Each round, the first time you play 2 other cards, refill 2 mana and grant your strongest ally +1|+0. ", + "descriptionRaw": "Each round, the first time you play 2 other cards, refill 2 mana and grant your strongest ally +1|+0. ", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "It is here, in the Spirit Realm, that Alune communes with her brother Aphelios. It is she who speaks words of comfort to the silent assassin, and who reaches through the veil to hand him his weapons of retribution.", + "artistName": "Kudos Productions", + "name": "The Veiled Temple", + "cardCode": "03MT219", + "keywords": [ + "Landmark" + ], + "keywordRefs": [ + "LandmarkVisualOnly" + ], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "RARE", + "rarityRef": "Rare", + "subtypes": [], + "supertype": "", + "type": "Landmark", + "collectible": true, + "set": "Set3" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set3/en_us/img/cards/03MT092T1.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set3/en_us/img/cards/03MT092T1-full.png" + } + ], + "regions": [ + "Targon" + ], + "regionRefs": [ + "Targon" + ], + "attack": 0, + "cost": 1, + "health": 0, + "description": "Heal an ally 1 and grant it +1|+0.", + "descriptionRaw": "Heal an ally 1 and grant it +1|+0.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"You don't need to see to believe. Just have a little faith.\" - Tyari the Traveler", + "artistName": "Kudos Productions", + "name": "Gem", + "cardCode": "03MT092T1", + "keywords": [ + "Focus" + ], + "keywordRefs": [ + "Focus" + ], + "spellSpeed": "Burst", + "spellSpeedRef": "Burst", + "rarity": "None", + "rarityRef": "None", + "subtypes": [], + "supertype": "", + "type": "Spell", + "collectible": false, + "set": "Set3" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set3/en_us/img/cards/03MT062.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set3/en_us/img/cards/03MT062-full.png" + } + ], + "regions": [ + "Targon" + ], + "regionRefs": [ + "Targon" + ], + "attack": 2, + "cost": 3, + "health": 2, + "description": "Play: If you Behold a Celestial card, grant an ally +1|+1 and SpellShield.", + "descriptionRaw": "Play: If you Behold a Celestial card, grant an ally +1|+1 and SpellShield.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"...and then a sparklefly is like stardust that falls down to the ground and then flies back up and they're amazing and I saw one last night that was so pretty and I'm hungry and it flew up all the way to the STARS and then...\"", + "artistName": "Dao Le", + "name": "Giddy Sparkleologist", + "cardCode": "03MT062", + "keywords": [], + "keywordRefs": [], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "RARE", + "rarityRef": "Rare", + "subtypes": [], + "supertype": "", + "type": "Unit", + "collectible": true, + "set": "Set3" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set3/en_us/img/cards/03MT082.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set3/en_us/img/cards/03MT082-full.png" + } + ], + "regions": [ + "Targon" + ], + "regionRefs": [ + "Targon" + ], + "attack": 0, + "cost": 5, + "health": 0, + "description": "Give allies +2|+2 this round.\r\nDaybreak: Activate all ally Daybreak effects at once.", + "descriptionRaw": "Give allies +2|+2 this round.\r\nDaybreak: Activate all ally Daybreak effects at once.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"We rise with the dawn! March into the light!\" - Leona", + "artistName": "Kudos Productions", + "name": "Morning Light", + "cardCode": "03MT082", + "keywords": [ + "Slow" + ], + "keywordRefs": [ + "Slow" + ], + "spellSpeed": "Slow", + "spellSpeedRef": "Slow", + "rarity": "RARE", + "rarityRef": "Rare", + "subtypes": [], + "supertype": "", + "type": "Spell", + "collectible": true, + "set": "Set3" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set3/en_us/img/cards/03MT047.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set3/en_us/img/cards/03MT047-full.png" + } + ], + "regions": [ + "Targon" + ], + "regionRefs": [ + "Targon" + ], + "attack": 5, + "cost": 6, + "health": 3, + "description": "Nightfall: Give me and an ally Elusive this round.", + "descriptionRaw": "Nightfall: Give me and an ally Elusive this round.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "The Lunari waited for nightfall and the safety it assured. The path ahead seemed deserted, but Cygnus knew the Solari camp lay just beyond. He gestured, and the others quietly fell in line behind him.", + "artistName": "JiHun Lee", + "name": "Cygnus the Moonstalker", + "cardCode": "03MT047", + "keywords": [], + "keywordRefs": [], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "EPIC", + "rarityRef": "Epic", + "subtypes": [], + "supertype": "", + "type": "Unit", + "collectible": true, + "set": "Set3" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set3/en_us/img/cards/03MT038.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set3/en_us/img/cards/03MT038-full.png" + } + ], + "regions": [ + "Targon" + ], + "regionRefs": [ + "Targon" + ], + "attack": 4, + "cost": 4, + "health": 4, + "description": "", + "descriptionRaw": "", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "It was the children of Targon who first befriended the younger, more peaceful dragons. Perhaps these juvenile creatures could sense the children's innocent curiosity, and chose, instead of causing them harm, to offer them protection. ", + "artistName": "Aron Elekes", + "name": "Whiteflame Protector", + "cardCode": "03MT038", + "keywords": [ + "Fury" + ], + "keywordRefs": [ + "Fury" + ], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "COMMON", + "rarityRef": "Common", + "subtypes": [ + "DRAGON" + ], + "supertype": "", + "type": "Unit", + "collectible": true, + "set": "Set3" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set3/en_us/img/cards/03MT081.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set3/en_us/img/cards/03MT081-full.png" + } + ], + "regions": [ + "Targon" + ], + "regionRefs": [ + "Targon" + ], + "attack": 4, + "cost": 5, + "health": 5, + "description": "Support: Grant my supported ally +2|+2. If it has Support, grant its supported ally +2|+2 and continue for each supported ally in succession.", + "descriptionRaw": "Support: Grant my supported ally +2|+2. If it has Support, grant its supported ally +2|+2 and continue for each supported ally in succession.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "Every person who braves Mount Targon has their reason to climb. Some do it to prove themselves in the eyes of their peers. Others, to prove something to themselves.", + "artistName": "SIXMOREVODKA", + "name": "Mountain Sojourners", + "cardCode": "03MT081", + "keywords": [ + "Support" + ], + "keywordRefs": [ + "Support" + ], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "EPIC", + "rarityRef": "Epic", + "subtypes": [], + "supertype": "", + "type": "Unit", + "collectible": true, + "set": "Set3" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set3/en_us/img/cards/03MT007.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set3/en_us/img/cards/03MT007-full.png" + } + ], + "regions": [ + "Targon" + ], + "regionRefs": [ + "Targon" + ], + "attack": 1, + "cost": 3, + "health": 2, + "description": "", + "descriptionRaw": "", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"Like any fledgling, young stellacorns must eventually take their first faltering flight. In this, they are just like other stars in the night sky, for they fall just as readily. Luckily, we are here to catch them, and when they are ready, return them.\" - Lidari, Keeper of the Stars", + "artistName": "SIXMOREVODKA", + "name": "Fledgling Stellacorn", + "cardCode": "03MT007", + "keywords": [ + "Lifesteal", + "SpellShield" + ], + "keywordRefs": [ + "Lifesteal", + "SpellShield" + ], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "COMMON", + "rarityRef": "Common", + "subtypes": [], + "supertype": "", + "type": "Unit", + "collectible": true, + "set": "Set3" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set3/en_us/img/cards/03MT220T1.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set3/en_us/img/cards/03MT220T1-full.png" + } + ], + "regions": [ + "Targon" + ], + "regionRefs": [ + "Targon" + ], + "attack": 0, + "cost": 0, + "health": 0, + "description": "Stun an enemy. If it's a follower, Stun it again at the next Round Start.", + "descriptionRaw": "Stun an enemy. If it's a follower, Stun it again at the next Round Start.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "The Solari did not believe that another light could blind--a lesson the Lunari would readily teach.", + "artistName": "Kudos Productions", + "name": "Sky Charge", + "cardCode": "03MT220T1", + "keywords": [ + "Skill" + ], + "keywordRefs": [ + "Skill" + ], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "COMMON", + "rarityRef": "Common", + "subtypes": [], + "supertype": "", + "type": "Ability", + "collectible": false, + "set": "Set3" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set3/en_us/img/cards/03MT216.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set3/en_us/img/cards/03MT216-full.png" + } + ], + "regions": [ + "Targon" + ], + "regionRefs": [ + "Targon" + ], + "attack": 3, + "cost": 2, + "health": 1, + "description": "When I'm summoned, refill 2 spell mana if you Behold a Nightfall card.", + "descriptionRaw": "When I'm summoned, refill 2 spell mana if you Behold a Nightfall card.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"Mother Moon, allow me to remember,\nThat though I stand in solitude,\nYour children dance above,\nAnd I am not alone.\"\n- Lunari Prayer", + "artistName": "Kudos Productions", + "name": "The Sky Shadows", + "cardCode": "03MT216", + "keywords": [], + "keywordRefs": [], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "COMMON", + "rarityRef": "Common", + "subtypes": [], + "supertype": "", + "type": "Unit", + "collectible": true, + "set": "Set3" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set3/en_us/img/cards/03MT026.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set3/en_us/img/cards/03MT026-full.png" + } + ], + "regions": [ + "Targon" + ], + "regionRefs": [ + "Targon" + ], + "attack": 5, + "cost": 5, + "health": 6, + "description": "Daybreak: Create a random Daybreak card in hand.\r\nIt's always Day for us.", + "descriptionRaw": "Daybreak: Create a random Daybreak card in hand.\r\nIt's always Day for us.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"Keep your faith, Ra-Horak, and our light shall never falter!\"", + "artistName": "JiHun Lee", + "name": "Rahvun, Daylight's Spear", + "cardCode": "03MT026", + "keywords": [ + "Missing Translation" + ], + "keywordRefs": [ + "AuraVisualFakeKeyword" + ], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "RARE", + "rarityRef": "Rare", + "subtypes": [], + "supertype": "", + "type": "Unit", + "collectible": true, + "set": "Set3" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set3/en_us/img/cards/03MT093.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set3/en_us/img/cards/03MT093-full.png" + } + ], + "regions": [ + "Targon" + ], + "regionRefs": [ + "Targon" + ], + "attack": 0, + "cost": 3, + "health": 0, + "description": "Deal 5 to an enemy that attacked this round or is Stunned.", + "descriptionRaw": "Deal 5 to an enemy that attacked this round or is Stunned.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"KaBOOMey!\" - Zoe", + "artistName": "Kudos Productions", + "name": "Paddle Star", + "cardCode": "03MT093", + "keywords": [ + "Slow" + ], + "keywordRefs": [ + "Slow" + ], + "spellSpeed": "Slow", + "spellSpeedRef": "Slow", + "rarity": "COMMON", + "rarityRef": "Common", + "subtypes": [], + "supertype": "", + "type": "Spell", + "collectible": true, + "set": "Set3" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set3/en_us/img/cards/03MT110.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set3/en_us/img/cards/03MT110-full.png" + } + ], + "regions": [ + "Targon" + ], + "regionRefs": [ + "Targon" + ], + "attack": 0, + "cost": 5, + "health": 0, + "description": "For the rest of the game, allied buffs (except Barrier) are permanent. Draw 1.", + "descriptionRaw": "For the rest of the game, allied buffs (except Barrier) are permanent. Draw 1.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"You know I mean everything that I say
When you see me coming get out of the way
I came to slay I came to slay
Back and I’m better and ready to stay.\"
- Kai'Sa, 'THE BADDEST'", + "artistName": "Kudos Productions", + "name": "Out Of The Way", + "cardCode": "03MT110", + "keywords": [ + "Slow" + ], + "keywordRefs": [ + "Slow" + ], + "spellSpeed": "Slow", + "spellSpeedRef": "Slow", + "rarity": "EPIC", + "rarityRef": "Epic", + "subtypes": [], + "supertype": "", + "type": "Spell", + "collectible": true, + "set": "Set3" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set3/en_us/img/cards/03MT003.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set3/en_us/img/cards/03MT003-full.png" + } + ], + "regions": [ + "Targon" + ], + "regionRefs": [ + "Targon" + ], + "attack": 0, + "cost": 3, + "health": 0, + "description": "Draw 2 different Dragons or grant Dragon allies +1|+1 and Overwhelm.", + "descriptionRaw": "Draw 2 different Dragons or grant Dragon allies +1|+1 and Overwhelm.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"Their cry sounds like a raspy cat. If you ever hear it, you're to turn tail, and find the nearest guard. You hear? Because where there's dragon eggs, there's dragons.\" - Targonian forager", + "artistName": "Kudos Productions", + "name": "Dragon's Clutch", + "cardCode": "03MT003", + "keywords": [ + "Burst" + ], + "keywordRefs": [ + "Burst" + ], + "spellSpeed": "Burst", + "spellSpeedRef": "Burst", + "rarity": "RARE", + "rarityRef": "Rare", + "subtypes": [], + "supertype": "", + "type": "Spell", + "collectible": true, + "set": "Set3" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set3/en_us/img/cards/03MT030.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set3/en_us/img/cards/03MT030-full.png" + } + ], + "regions": [ + "Targon" + ], + "regionRefs": [ + "Targon" + ], + "attack": 3, + "cost": 4, + "health": 4, + "description": "When you heal a damaged ally, give it Elusive this round.", + "descriptionRaw": "When you heal a damaged ally, give it Elusive this round.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"Stars stay with us for only so long. Once they have been tended to, I return them to the sky in a sudden blaze of starlight... and flailing hooves.\"", + "artistName": "SIXMOREVODKA", + "name": "Stargazer", + "cardCode": "03MT030", + "keywords": [], + "keywordRefs": [], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "RARE", + "rarityRef": "Rare", + "subtypes": [], + "supertype": "", + "type": "Unit", + "collectible": true, + "set": "Set3" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set3/en_us/img/cards/03MT088.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set3/en_us/img/cards/03MT088-full.png" + } + ], + "regions": [ + "Targon" + ], + "regionRefs": [ + "Targon" + ], + "attack": 2, + "cost": 1, + "health": 2, + "description": "Daybreak: Give me +1|+1 this round.", + "descriptionRaw": "Daybreak: Give me +1|+1 this round.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "As the sun warmed him, he stood watch at the heretic's prison, ignoring the soft pleas that quickly turned to bitter silence.", + "artistName": "Wild Blue Studio", + "name": "Solari Soldier", + "cardCode": "03MT088", + "keywords": [], + "keywordRefs": [], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "COMMON", + "rarityRef": "Common", + "subtypes": [], + "supertype": "", + "type": "Unit", + "collectible": true, + "set": "Set3" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set3/en_us/img/cards/03MT089.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set3/en_us/img/cards/03MT089-full.png" + } + ], + "regions": [ + "Targon" + ], + "regionRefs": [ + "Targon" + ], + "attack": 3, + "cost": 3, + "health": 3, + "description": "Nightfall: Grant me +2|+0.", + "descriptionRaw": "Nightfall: Grant me +2|+0.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"Stoic guardian, the gentle touch of the full moon restores your strength. Awaken and safeguard us from those who would trespass upon this sacred place.\" - Crescent Guardian's inscription", + "artistName": "Aron Elekes", + "name": "Crescent Guardian", + "cardCode": "03MT089", + "keywords": [ + "Overwhelm" + ], + "keywordRefs": [ + "Overwhelm" + ], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "RARE", + "rarityRef": "Rare", + "subtypes": [], + "supertype": "", + "type": "Unit", + "collectible": true, + "set": "Set3" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set3/en_us/img/cards/03MT027.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set3/en_us/img/cards/03MT027-full.png" + } + ], + "regions": [ + "Targon" + ], + "regionRefs": [ + "Targon" + ], + "attack": 0, + "cost": 3, + "health": 0, + "description": "Grant an ally +1|+2. Give it Overwhelm this round.\r\nDaybreak: Draw a Zenith Blade.", + "descriptionRaw": "Grant an ally +1|+2. Give it Overwhelm this round.\r\nDaybreak: Draw a Zenith Blade.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"Let the sun imbue you with Her strength!\" - Solari Priest", + "artistName": "Kudos Productions", + "name": "Zenith Blade", + "cardCode": "03MT027", + "keywords": [ + "Slow" + ], + "keywordRefs": [ + "Slow" + ], + "spellSpeed": "Slow", + "spellSpeedRef": "Slow", + "rarity": "COMMON", + "rarityRef": "Common", + "subtypes": [], + "supertype": "", + "type": "Spell", + "collectible": true, + "set": "Set3" + }, + { + "associatedCards": [], + "associatedCardRefs": [ + "03MT018" + ], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set3/en_us/img/cards/03MT218.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set3/en_us/img/cards/03MT218-full.png" + } + ], + "regions": [ + "Targon" + ], + "regionRefs": [ + "Targon" + ], + "attack": 0, + "cost": 2, + "health": 0, + "description": "If you Behold The Messenger, grant Celestial allies everywhere +1|+1.", + "descriptionRaw": "If you Behold The Messenger, grant Celestial allies everywhere +1|+1.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"May the Messenger play,\nAnd with his joy,\nLight the stars.\"\n- Lunari Prayer", + "artistName": "Kudos Productions", + "name": "Starbone", + "cardCode": "03MT218", + "keywords": [ + "Burst" + ], + "keywordRefs": [ + "Burst" + ], + "spellSpeed": "Burst", + "spellSpeedRef": "Burst", + "rarity": "EPIC", + "rarityRef": "Epic", + "subtypes": [], + "supertype": "", + "type": "Spell", + "collectible": true, + "set": "Set3" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set3/en_us/img/cards/03MT084.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set3/en_us/img/cards/03MT084-full.png" + } + ], + "regions": [ + "Targon" + ], + "regionRefs": [ + "Targon" + ], + "attack": 0, + "cost": 5, + "health": 0, + "description": "Invoke a Celestial card that costs 7 or more, then heal an ally or your Nexus 4.", + "descriptionRaw": "Invoke a Celestial card that costs 7 or more, then heal an ally or your Nexus 4.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"Look to the stars. If you're lucky, I'll look back.\" - Aurelion Sol", + "artistName": "Kudos Productions", + "name": "Starshaping", + "cardCode": "03MT084", + "keywords": [ + "Burst" + ], + "keywordRefs": [ + "Burst" + ], + "spellSpeed": "Burst", + "spellSpeedRef": "Burst", + "rarity": "COMMON", + "rarityRef": "Common", + "subtypes": [], + "supertype": "", + "type": "Spell", + "collectible": true, + "set": "Set3" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set3/en_us/img/cards/03MT016.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set3/en_us/img/cards/03MT016-full.png" + } + ], + "regions": [ + "Targon" + ], + "regionRefs": [ + "Targon" + ], + "attack": 2, + "cost": 2, + "health": 3, + "description": "", + "descriptionRaw": "", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"Aww, big Stomper don't wanna go through the wittle portal? That's okay, we can-- HAHAHAHA! Just kidding. OUTYOUGO!\" - Zoe", + "artistName": "SIXMOREVODKA", + "name": "Startled Stomper", + "cardCode": "03MT016", + "keywords": [ + "Overwhelm" + ], + "keywordRefs": [ + "Overwhelm" + ], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "COMMON", + "rarityRef": "Common", + "subtypes": [], + "supertype": "", + "type": "Unit", + "collectible": true, + "set": "Set3" + }, + { + "associatedCards": [], + "associatedCardRefs": [ + "03MT093" + ], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set3/en_us/img/cards/03MT074.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set3/en_us/img/cards/03MT074-full.png" + } + ], + "regions": [ + "Targon" + ], + "regionRefs": [ + "Targon" + ], + "attack": 0, + "cost": 2, + "health": 0, + "description": "Stun an enemy. Create a Fleeting Paddle Star in hand.", + "descriptionRaw": "Stun an enemy. Create a Fleeting Paddle Star in hand.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"Naptime for you! One sparklefly, twoooo sparklefly, thre-- Hey, what'sthatoverthere?!\" - Zoe", + "artistName": "Kudos Productions", + "name": "Sleepy Trouble Bubble", + "cardCode": "03MT074", + "keywords": [ + "Slow" + ], + "keywordRefs": [ + "Slow" + ], + "spellSpeed": "Slow", + "spellSpeedRef": "Slow", + "rarity": "RARE", + "rarityRef": "Rare", + "subtypes": [], + "supertype": "", + "type": "Spell", + "collectible": true, + "set": "Set3" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set3/en_us/img/cards/03MT035.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set3/en_us/img/cards/03MT035-full.png" + } + ], + "regions": [ + "Targon" + ], + "regionRefs": [ + "Targon" + ], + "attack": 0, + "cost": 2, + "health": 0, + "description": "Give an ally +1|+1 this round.\r\nNightfall: Draw 1.", + "descriptionRaw": "Give an ally +1|+1 this round.\r\nNightfall: Draw 1.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"Under cover of night, watched over by a pale moon.\" - Diana", + "artistName": "Kudos Productions", + "name": "Pale Cascade", + "cardCode": "03MT035", + "keywords": [ + "Burst" + ], + "keywordRefs": [ + "Burst" + ], + "spellSpeed": "Burst", + "spellSpeedRef": "Burst", + "rarity": "COMMON", + "rarityRef": "Common", + "subtypes": [], + "supertype": "", + "type": "Spell", + "collectible": true, + "set": "Set3" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set3/en_us/img/cards/03MT003T1.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set3/en_us/img/cards/03MT003T1-full.png" + } + ], + "regions": [ + "Targon" + ], + "regionRefs": [ + "Targon" + ], + "attack": 0, + "cost": 3, + "health": 0, + "description": "Draw 2 different Dragons.", + "descriptionRaw": "Draw 2 different Dragons.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "Dragon egg (Screeching Dragon, Draco murmurationis)\nNotes: Shell weakened on last turning. Increased movement inside. Cracks on surface superficial?\nScribbled Notes: EGG HATCHING!\n- Notes of Anden Mayne, Egghead Researcher", + "artistName": "Kudos Productions", + "name": "Hatched Egg", + "cardCode": "03MT003T1", + "keywords": [ + "Burst" + ], + "keywordRefs": [ + "Burst" + ], + "spellSpeed": "Burst", + "spellSpeedRef": "Burst", + "rarity": "None", + "rarityRef": "None", + "subtypes": [], + "supertype": "", + "type": "Spell", + "collectible": false, + "set": "Set3" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set3/en_us/img/cards/03MT003T2.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set3/en_us/img/cards/03MT003T2-full.png" + } + ], + "regions": [ + "Targon" + ], + "regionRefs": [ + "Targon" + ], + "attack": 0, + "cost": 3, + "health": 0, + "description": "Grant Dragon allies +1|+1 and Overwhelm.", + "descriptionRaw": "Grant Dragon allies +1|+1 and Overwhelm.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "Dragon egg (Screeching Dragon, Draco murmurationis)\nNotes: Shell weakened on last turning. Increased movement inside. Cracks on surface superficial?\nScribbled Notes: EGG HATCHING!\n- Notes of Anden Mayne, Egghead Researcher", + "artistName": "Kudos Productions", + "name": "Crushed Egg", + "cardCode": "03MT003T2", + "keywords": [ + "Burst" + ], + "keywordRefs": [ + "Burst" + ], + "spellSpeed": "Burst", + "spellSpeedRef": "Burst", + "rarity": "None", + "rarityRef": "None", + "subtypes": [], + "supertype": "", + "type": "Spell", + "collectible": false, + "set": "Set3" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set3/en_us/img/cards/03MT036.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set3/en_us/img/cards/03MT036-full.png" + } + ], + "regions": [ + "Targon" + ], + "regionRefs": [ + "Targon" + ], + "attack": 0, + "cost": 5, + "health": 0, + "description": "Grant an ally +3|+3.", + "descriptionRaw": "Grant an ally +3|+3.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"A little something from Targon.\" - Taric", + "artistName": "Max Grecke", + "name": "Blessing of Targon", + "cardCode": "03MT036", + "keywords": [ + "Burst" + ], + "keywordRefs": [ + "Burst" + ], + "spellSpeed": "Burst", + "spellSpeedRef": "Burst", + "rarity": "RARE", + "rarityRef": "Rare", + "subtypes": [], + "supertype": "", + "type": "Spell", + "collectible": true, + "set": "Set3" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set3/en_us/img/cards/03MT039.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set3/en_us/img/cards/03MT039-full.png" + } + ], + "regions": [ + "Targon" + ], + "regionRefs": [ + "Targon" + ], + "attack": 1, + "cost": 1, + "health": 1, + "description": "", + "descriptionRaw": "", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "In space, no one can hear you squee.", + "artistName": "Dao Le", + "name": "Porofly", + "cardCode": "03MT039", + "keywords": [ + "SpellShield" + ], + "keywordRefs": [ + "SpellShield" + ], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "COMMON", + "rarityRef": "Common", + "subtypes": [ + "PORO" + ], + "supertype": "", + "type": "Unit", + "collectible": true, + "set": "Set3" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set3/en_us/img/cards/03PZ019.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set3/en_us/img/cards/03PZ019-full.png" + } + ], + "regions": [ + "Piltover & Zaun" + ], + "regionRefs": [ + "PiltoverZaun" + ], + "attack": 2, + "cost": 2, + "health": 3, + "description": "While in hand, I have a random keyword that changes each round. When I'm summoned, grant me this keyword.", + "descriptionRaw": "While in hand, I have a random keyword that changes each round. When I'm summoned, grant me this keyword.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "It's not quite as cuddly as the real thing, but it IS just as cute.", + "artistName": "Dao Le", + "name": "Patched Porobot", + "cardCode": "03PZ019", + "keywords": [], + "keywordRefs": [], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "RARE", + "rarityRef": "Rare", + "subtypes": [ + "PORO" + ], + "supertype": "", + "type": "Unit", + "collectible": true, + "set": "Set3" + }, + { + "associatedCards": [], + "associatedCardRefs": [ + "03PZ016" + ], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set3/en_us/img/cards/03PZ005.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set3/en_us/img/cards/03PZ005-full.png" + } + ], + "regions": [ + "Piltover & Zaun" + ], + "regionRefs": [ + "PiltoverZaun" + ], + "attack": 0, + "cost": 2, + "health": 3, + "description": "Round Start: Create an Ignition in hand.", + "descriptionRaw": "Round Start: Create an Ignition in hand.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "Subject requested that we keep only his mind intact, stating \"That's where I've stored all my grudges.\"\n- Augmentor's log, entry 1011", + "artistName": "SIXMOREVODKA", + "name": "Ballistic Bot", + "cardCode": "03PZ005", + "keywords": [ + "Augment" + ], + "keywordRefs": [ + "Augment" + ], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "COMMON", + "rarityRef": "Common", + "subtypes": [], + "supertype": "", + "type": "Unit", + "collectible": true, + "set": "Set3" + }, + { + "associatedCards": [], + "associatedCardRefs": [ + "03PZ004T1", + "03PZ004T2" + ], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set3/en_us/img/cards/03PZ004.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set3/en_us/img/cards/03PZ004-full.png" + } + ], + "regions": [ + "Piltover & Zaun" + ], + "regionRefs": [ + "PiltoverZaun" + ], + "attack": 0, + "cost": 1, + "health": 0, + "description": "Deal 1 to a unit. Create a Death Ray - Mk 2 in the top 3 cards of your deck.", + "descriptionRaw": "Deal 1 to a unit. Create a Death Ray - Mk 2 in the top 3 cards of your deck.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"Today, I have successfully demonstrated that radiant energy can be focused into a single powerful beam! With the right improvements, this ray could be a tool of unmatched precision, but there is still much to do.\"\n- Viktor's design annotations", + "artistName": "Max Grecke", + "name": "Death Ray - Mk 1", + "cardCode": "03PZ004", + "keywords": [ + "Fast" + ], + "keywordRefs": [ + "Fast" + ], + "spellSpeed": "Fast", + "spellSpeedRef": "Fast", + "rarity": "RARE", + "rarityRef": "Rare", + "subtypes": [], + "supertype": "", + "type": "Spell", + "collectible": true, + "set": "Set3" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set3/en_us/img/cards/03PZ004T2.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set3/en_us/img/cards/03PZ004T2-full.png" + } + ], + "regions": [ + "Piltover & Zaun" + ], + "regionRefs": [ + "PiltoverZaun" + ], + "attack": 0, + "cost": 3, + "health": 0, + "description": "Deal 3 to a unit.", + "descriptionRaw": "Deal 3 to a unit.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"The beam melts flesh and metal alike with exceptional speed! I have since eagerly integrated it onto my machine body. To see, feel, and dissect the world with such CLARITY... This is the great potential of the human mind unburdened by flesh! A truly glorious evolution!\" \n- Viktor's design annotations", + "artistName": "Max Grecke", + "name": "Death Ray - Mk 3", + "cardCode": "03PZ004T2", + "keywords": [ + "Fast" + ], + "keywordRefs": [ + "Fast" + ], + "spellSpeed": "Fast", + "spellSpeedRef": "Fast", + "rarity": "None", + "rarityRef": "None", + "subtypes": [], + "supertype": "", + "type": "Spell", + "collectible": false, + "set": "Set3" + }, + { + "associatedCards": [], + "associatedCardRefs": [ + "03PZ004T2" + ], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set3/en_us/img/cards/03PZ004T1.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set3/en_us/img/cards/03PZ004T1-full.png" + } + ], + "regions": [ + "Piltover & Zaun" + ], + "regionRefs": [ + "PiltoverZaun" + ], + "attack": 0, + "cost": 2, + "health": 0, + "description": "Deal 2 to a unit. Create a Death Ray - Mk 3 in the top 3 cards of your deck.", + "descriptionRaw": "Deal 2 to a unit. Create a Death Ray - Mk 3 in the top 3 cards of your deck.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"Altered beam transmission medium, adjusted lenses to optimal focal distances, internal mirrors polished and positioned. Intensity increased tenfold. But it must improve. I MUST IMPROVE!\"\n- Viktor's design annotations", + "artistName": "Max Grecke", + "name": "Death Ray - Mk 2", + "cardCode": "03PZ004T1", + "keywords": [ + "Fast" + ], + "keywordRefs": [ + "Fast" + ], + "spellSpeed": "Fast", + "spellSpeedRef": "Fast", + "rarity": "None", + "rarityRef": "None", + "subtypes": [], + "supertype": "", + "type": "Spell", + "collectible": false, + "set": "Set3" + }, + { + "associatedCards": [], + "associatedCardRefs": [ + "03PZ003T1", + "03PZ003T15", + "03PZ004T1", + "03PZ004T2", + "03PZ003T11" + ], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set3/en_us/img/cards/03PZ003.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set3/en_us/img/cards/03PZ003-full.png" + } + ], + "regions": [ + "Piltover & Zaun" + ], + "regionRefs": [ + "PiltoverZaun" + ], + "attack": 2, + "cost": 4, + "health": 4, + "description": "When I'm summoned or Round Start: Create a Hex Core Upgrade in hand.", + "descriptionRaw": "When I'm summoned or Round Start: Create a Hex Core Upgrade in hand.", + "levelupDescription": "You've played 7+ created cards.", + "levelupDescriptionRaw": "You've played 7+ created cards.", + "flavorText": "\"Zaun, you have seen your share of tragedies, and the time has come for change. And, as with all great advancements, it must start within you.\"", + "artistName": "SIXMOREVODKA", + "name": "Viktor", + "cardCode": "03PZ003", + "keywords": [ + "Augment" + ], + "keywordRefs": [ + "Augment" + ], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "Champion", + "rarityRef": "Champion", + "subtypes": [], + "supertype": "Champion", + "type": "Unit", + "collectible": true, + "set": "Set3" + }, + { + "associatedCards": [], + "associatedCardRefs": [ + "03PZ003", + "03PZ003T15", + "03PZ004T1", + "03PZ004T2", + "03PZ003T11" + ], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set3/en_us/img/cards/03PZ003T1.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set3/en_us/img/cards/03PZ003T1-full.png" + } + ], + "regions": [ + "Piltover & Zaun" + ], + "regionRefs": [ + "PiltoverZaun" + ], + "attack": 3, + "cost": 4, + "health": 5, + "description": "Your created cards cost 1 less.\r\nWhen I'm summoned or Round Start: Create a Hex Core Upgrade in hand.", + "descriptionRaw": "Your created cards cost 1 less.\r\nWhen I'm summoned or Round Start: Create a Hex Core Upgrade in hand.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"Ah, Piltover. As a boy, I looked up to you, the shining 'City of Progress'. But as a man, I see its corrupt foundations, built atop the suffering of our home, Zaun. Today, we herald a new era of Zaunite innovation--and you will be the first to witness our rise!\"", + "artistName": "SIXMOREVODKA", + "name": "Viktor", + "cardCode": "03PZ003T1", + "keywords": [ + "Augment", + "Missing Translation" + ], + "keywordRefs": [ + "Augment", + "AuraVisualFakeKeyword" + ], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "None", + "rarityRef": "None", + "subtypes": [], + "supertype": "Champion", + "type": "Unit", + "collectible": false, + "set": "Set3" + }, + { + "associatedCards": [], + "associatedCardRefs": [ + "03PZ004T1", + "03PZ004T2", + "03PZ003T1", + "03PZ003" + ], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set3/en_us/img/cards/03PZ003T15.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set3/en_us/img/cards/03PZ003T15-full.png" + } + ], + "regions": [ + "Piltover & Zaun" + ], + "regionRefs": [ + "PiltoverZaun" + ], + "attack": 0, + "cost": 1, + "health": 0, + "description": "Deal 1 to a unit. Create a Death Ray - Mk 2 in the top 3 cards of your deck.\r\nCreate a Viktor in your deck.", + "descriptionRaw": "Deal 1 to a unit. Create a Death Ray - Mk 2 in the top 3 cards of your deck.\r\nCreate a Viktor in your deck.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"Today, I have successfully demonstrated that radiant energy can be focused into a single powerful beam! With the right improvements, this ray could be a tool of unmatched precision, but there is still much to do.\"\n- Viktor's design annotations", + "artistName": "Max Grecke", + "name": "Viktor's Death Ray - Mk 1", + "cardCode": "03PZ003T15", + "keywords": [ + "Fast" + ], + "keywordRefs": [ + "Fast" + ], + "spellSpeed": "Fast", + "spellSpeedRef": "Fast", + "rarity": "None", + "rarityRef": "None", + "subtypes": [], + "supertype": "Champion", + "type": "Spell", + "collectible": false, + "set": "Set3" + }, + { + "associatedCards": [], + "associatedCardRefs": [ + "03PZ003" + ], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set3/en_us/img/cards/03PZ003T11.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set3/en_us/img/cards/03PZ003T11-full.png" + } + ], + "regions": [ + "Piltover & Zaun" + ], + "regionRefs": [ + "PiltoverZaun" + ], + "attack": 0, + "cost": 0, + "health": 0, + "description": "Grant Viktor a random keyword.", + "descriptionRaw": "Grant Viktor a random keyword.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "Humanity is destined to break free from the confines of flesh. We must become more. We must augment. We must evolve!\" - Viktor", + "artistName": "Kudos Productions", + "name": "Hex Core Upgrade", + "cardCode": "03PZ003T11", + "keywords": [ + "Slow", + "Fleeting" + ], + "keywordRefs": [ + "Slow", + "Fleeting" + ], + "spellSpeed": "Slow", + "spellSpeedRef": "Slow", + "rarity": "None", + "rarityRef": "None", + "subtypes": [], + "supertype": "", + "type": "Spell", + "collectible": false, + "set": "Set3" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set3/en_us/img/cards/03PZ010.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set3/en_us/img/cards/03PZ010-full.png" + } + ], + "regions": [ + "Piltover & Zaun" + ], + "regionRefs": [ + "PiltoverZaun" + ], + "attack": 3, + "cost": 5, + "health": 4, + "description": "Attack: Grant me all keywords on allies.", + "descriptionRaw": "Attack: Grant me all keywords on allies.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"I'm just like you, only better.\"", + "artistName": "SIXMOREVODKA", + "name": "Mechanized Mimic", + "cardCode": "03PZ010", + "keywords": [ + "Augment" + ], + "keywordRefs": [ + "Augment" + ], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "EPIC", + "rarityRef": "Epic", + "subtypes": [], + "supertype": "", + "type": "Unit", + "collectible": true, + "set": "Set3" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set3/en_us/img/cards/03PZ022.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set3/en_us/img/cards/03PZ022-full.png" + } + ], + "regions": [ + "Piltover & Zaun" + ], + "regionRefs": [ + "PiltoverZaun" + ], + "attack": 0, + "cost": 8, + "health": 0, + "description": "Grow all allies' Power and Health to the highest Power or Health among allies.\r\nGrant all allies allied keywords.", + "descriptionRaw": "Grow all allies' Power and Health to the highest Power or Health among allies.\r\nGrant all allies allied keywords.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"I know I know\nYou want some more\nIf you ready let’s go\nGiving it all\"\n- Seraphine, 'MORE'", + "artistName": "Kudos Productions", + "name": "Give It All", + "cardCode": "03PZ022", + "keywords": [ + "Slow" + ], + "keywordRefs": [ + "Slow" + ], + "spellSpeed": "Slow", + "spellSpeedRef": "Slow", + "rarity": "EPIC", + "rarityRef": "Epic", + "subtypes": [], + "supertype": "", + "type": "Spell", + "collectible": true, + "set": "Set3" + }, + { + "associatedCards": [], + "associatedCardRefs": [ + "03PZ012", + "03PZ005", + "03PZ002" + ], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set3/en_us/img/cards/03PZ014.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set3/en_us/img/cards/03PZ014-full.png" + } + ], + "regions": [ + "Piltover & Zaun" + ], + "regionRefs": [ + "PiltoverZaun" + ], + "attack": 0, + "cost": 2, + "health": 0, + "description": "Create an Armed Gearhead, Ballistic Bot, or Nyandroid in hand and grant it +1|+1.", + "descriptionRaw": "Create an Armed Gearhead, Ballistic Bot, or Nyandroid in hand and grant it +1|+1.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"Rationality and choice separate humanity from its base animal instincts.\" - Viktor", + "artistName": "Kudos Productions", + "name": "Calculated Creations", + "cardCode": "03PZ014", + "keywords": [ + "Burst" + ], + "keywordRefs": [ + "Burst" + ], + "spellSpeed": "Burst", + "spellSpeedRef": "Burst", + "rarity": "COMMON", + "rarityRef": "Common", + "subtypes": [], + "supertype": "", + "type": "Spell", + "collectible": true, + "set": "Set3" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set3/en_us/img/cards/03PZ013.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set3/en_us/img/cards/03PZ013-full.png" + } + ], + "regions": [ + "Piltover & Zaun" + ], + "regionRefs": [ + "PiltoverZaun" + ], + "attack": 0, + "cost": 2, + "health": 0, + "description": "Pick a follower. Create a copy of it in hand with +1|+1.", + "descriptionRaw": "Pick a follower. Create a copy of it in hand with +1|+1.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"Self-improvement is a game where you are the hero and the villain. You will struggle. You may even think you've won. But in the end, you will always be left standing in your own way.\" - Mechanized Mimic", + "artistName": "Kudos Productions", + "name": "Iterative Improvement", + "cardCode": "03PZ013", + "keywords": [ + "Burst" + ], + "keywordRefs": [ + "Burst" + ], + "spellSpeed": "Burst", + "spellSpeedRef": "Burst", + "rarity": "COMMON", + "rarityRef": "Common", + "subtypes": [], + "supertype": "", + "type": "Spell", + "collectible": true, + "set": "Set3" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set3/en_us/img/cards/03PZ025.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set3/en_us/img/cards/03PZ025-full.png" + } + ], + "regions": [ + "Piltover & Zaun" + ], + "regionRefs": [ + "PiltoverZaun" + ], + "attack": 0, + "cost": 1, + "health": 0, + "description": "Remove Fleeting from all cards in hand. When I'm discarded, draw 1 Fleeting.", + "descriptionRaw": "Remove Fleeting from all cards in hand. When I'm discarded, draw 1 Fleeting.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"It's simple stuff, really. I replaced the steel frame with a more durable alloy I invented, and rerouted the circuitry away from the hinges to stop the systems from shorting out. Easy peasy.\" - Chief Mechanist Zevi", + "artistName": "Kudos Productions", + "name": "Stress Testing", + "cardCode": "03PZ025", + "keywords": [ + "Burst" + ], + "keywordRefs": [ + "Burst" + ], + "spellSpeed": "Burst", + "spellSpeedRef": "Burst", + "rarity": "RARE", + "rarityRef": "Rare", + "subtypes": [], + "supertype": "", + "type": "Spell", + "collectible": true, + "set": "Set3" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set3/en_us/img/cards/03PZ012.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set3/en_us/img/cards/03PZ012-full.png" + } + ], + "regions": [ + "Piltover & Zaun" + ], + "regionRefs": [ + "PiltoverZaun" + ], + "attack": 1, + "cost": 1, + "health": 1, + "description": "", + "descriptionRaw": "", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"Alright! New arm! Always wanted one of those. What've we got next? Gravwheels for legs? Electrobelts? METAL TEETH? Actually, leave my face. I like my face.\"", + "artistName": "SIXMOREVODKA", + "name": "Armed Gearhead", + "cardCode": "03PZ012", + "keywords": [ + "Augment", + "Quick Attack" + ], + "keywordRefs": [ + "Augment", + "QuickStrike" + ], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "COMMON", + "rarityRef": "Common", + "subtypes": [], + "supertype": "", + "type": "Unit", + "collectible": true, + "set": "Set3" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set3/en_us/img/cards/03PZ020.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set3/en_us/img/cards/03PZ020-full.png" + } + ], + "regions": [ + "Piltover & Zaun" + ], + "regionRefs": [ + "PiltoverZaun" + ], + "attack": 0, + "cost": 3, + "health": 0, + "description": "Round Start: ALL players draw 1.", + "descriptionRaw": "Round Start: ALL players draw 1.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"Let them say what they will about my methods. They cannot deny progress--the light of my knowledge is shining like a beacon through the darkness of ignorance!\" - Viktor", + "artistName": "SIXMOREVODKA", + "name": "Hexcore Foundry", + "cardCode": "03PZ020", + "keywords": [ + "Landmark" + ], + "keywordRefs": [ + "LandmarkVisualOnly" + ], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "RARE", + "rarityRef": "Rare", + "subtypes": [], + "supertype": "", + "type": "Landmark", + "collectible": true, + "set": "Set3" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set3/en_us/img/cards/03PZ016.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set3/en_us/img/cards/03PZ016-full.png" + } + ], + "regions": [ + "Piltover & Zaun" + ], + "regionRefs": [ + "PiltoverZaun" + ], + "attack": 0, + "cost": 1, + "health": 0, + "description": "Deal 1 to the enemy Nexus.", + "descriptionRaw": "Deal 1 to the enemy Nexus.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"If they do not choose to add metal to their bodies, I will deliver metal to them instead. That was a humorous remark. Ha.\"\n- Ballistic Bot", + "artistName": "Kudos Productions", + "name": "Ignition", + "cardCode": "03PZ016", + "keywords": [ + "Slow", + "Fleeting" + ], + "keywordRefs": [ + "Slow", + "Fleeting" + ], + "spellSpeed": "Slow", + "spellSpeedRef": "Slow", + "rarity": "None", + "rarityRef": "None", + "subtypes": [], + "supertype": "", + "type": "Spell", + "collectible": false, + "set": "Set3" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set3/en_us/img/cards/03PZ002.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set3/en_us/img/cards/03PZ002-full.png" + } + ], + "regions": [ + "Piltover & Zaun" + ], + "regionRefs": [ + "PiltoverZaun" + ], + "attack": 1, + "cost": 3, + "health": 3, + "description": "", + "descriptionRaw": "", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"I clawed my way through years of Piltovan academia only to have my technologies deemed 'too dangerous' and my very presence dismissed as 'too cute'! Meow to Zaun, where I know at least one great mind shares my ambitions...\"", + "artistName": "SIXMOREVODKA", + "name": "Nyandroid", + "cardCode": "03PZ002", + "keywords": [ + "Augment", + "Elusive" + ], + "keywordRefs": [ + "Augment", + "Elusive" + ], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "RARE", + "rarityRef": "Rare", + "subtypes": [], + "supertype": "", + "type": "Unit", + "collectible": true, + "set": "Set3" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set3/en_us/img/cards/03PZ011.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set3/en_us/img/cards/03PZ011-full.png" + } + ], + "regions": [ + "Piltover & Zaun" + ], + "regionRefs": [ + "PiltoverZaun" + ], + "attack": 0, + "cost": 3, + "health": 0, + "description": "Deal 3 to a unit or destroy a landmark.", + "descriptionRaw": "Deal 3 to a unit or destroy a landmark.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"This ray of light will guide our march to Piltover. Nothing will stand in the way of our Glorious Evolution!\" - Viktor", + "artistName": "Kudos Productions", + "name": "Aftershock", + "cardCode": "03PZ011", + "keywords": [ + "Slow" + ], + "keywordRefs": [ + "Slow" + ], + "spellSpeed": "Slow", + "spellSpeedRef": "Slow", + "rarity": "COMMON", + "rarityRef": "Common", + "subtypes": [], + "supertype": "", + "type": "Spell", + "collectible": true, + "set": "Set3" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set3/en_us/img/cards/03PZ017.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set3/en_us/img/cards/03PZ017-full.png" + } + ], + "regions": [ + "Piltover & Zaun" + ], + "regionRefs": [ + "PiltoverZaun" + ], + "attack": 0, + "cost": 5, + "health": 0, + "description": "Deal 1 to a unit. Summon a random 1 cost follower. While I'm in hand, increase both by 1 when you play a 3 cost card.", + "descriptionRaw": "Deal 1 to a unit. Summon a random 1 cost follower. While I'm in hand, increase both by 1 when you play a 3 cost card.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"...and in one, two, and THREE!!! Oh. Oh, my word... Yet another unforeseen outcome?!\" - Heimerdinger", + "artistName": "Kudos Productions", + "name": "Tri-beam Improbulator", + "cardCode": "03PZ017", + "keywords": [ + "Slow" + ], + "keywordRefs": [ + "Slow" + ], + "spellSpeed": "Slow", + "spellSpeedRef": "Slow", + "rarity": "EPIC", + "rarityRef": "Epic", + "subtypes": [], + "supertype": "", + "type": "Spell", + "collectible": true, + "set": "Set3" + }, + { + "associatedCards": [], + "associatedCardRefs": [ + "01PZ020" + ], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set3/en_us/img/cards/03PZ018.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set3/en_us/img/cards/03PZ018-full.png" + } + ], + "regions": [ + "Piltover & Zaun" + ], + "regionRefs": [ + "PiltoverZaun" + ], + "attack": 0, + "cost": 0, + "health": 0, + "description": "To play, discard 1.\r\nCreate 2 Daring Poros in hand.", + "descriptionRaw": "To play, discard 1.\r\nCreate 2 Daring Poros in hand.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "Two downy shapes arced gracefully over the adoring crowd, leaving a cloud of fluff and the faint scent of baked goods in their wake.", + "artistName": "Kudos Productions", + "name": "Poro Cannon", + "cardCode": "03PZ018", + "keywords": [ + "Burst" + ], + "keywordRefs": [ + "Burst" + ], + "spellSpeed": "Burst", + "spellSpeedRef": "Burst", + "rarity": "COMMON", + "rarityRef": "Common", + "subtypes": [], + "supertype": "", + "type": "Spell", + "collectible": true, + "set": "Set3" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set3/en_us/img/cards/03SI004.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set3/en_us/img/cards/03SI004-full.png" + } + ], + "regions": [ + "Shadow Isles" + ], + "regionRefs": [ + "ShadowIsles" + ], + "attack": 0, + "cost": 3, + "health": 0, + "description": "Pick a follower from the top 4 cards in your deck.\r\nDraw it, place the rest into your deck, then create an exact Ephemeral copy in hand.", + "descriptionRaw": "Pick a follower from the top 4 cards in your deck.\r\nDraw it, place the rest into your deck, then create an exact Ephemeral copy in hand.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"Go... surround them...\" - Nocturne", + "artistName": "Kudos Productions", + "name": "Stalking Shadows", + "cardCode": "03SI004", + "keywords": [ + "Burst" + ], + "keywordRefs": [ + "Burst" + ], + "spellSpeed": "Burst", + "spellSpeedRef": "Burst", + "rarity": "RARE", + "rarityRef": "Rare", + "subtypes": [], + "supertype": "", + "type": "Spell", + "collectible": true, + "set": "Set3" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set3/en_us/img/cards/03SI001.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set3/en_us/img/cards/03SI001-full.png" + } + ], + "regions": [ + "Shadow Isles" + ], + "regionRefs": [ + "ShadowIsles" + ], + "attack": 2, + "cost": 2, + "health": 2, + "description": "Nightfall: Create a copy of me in hand.", + "descriptionRaw": "Nightfall: Create a copy of me in hand.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"It was just a pair of eyes at first, and a lone voice chittering in the shadows. More every time I looked back. Angrier. Louder. Soon as I saw the Tooth, I ran.\" - Whale's Tooth looter", + "artistName": "SIXMOREVODKA", + "name": "Evershade Stalker", + "cardCode": "03SI001", + "keywords": [ + "Ephemeral", + "Fearsome", + "Can't Block" + ], + "keywordRefs": [ + "Ephemeral", + "Fearsome", + "CantBlock" + ], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "EPIC", + "rarityRef": "Epic", + "subtypes": [], + "supertype": "", + "type": "Unit", + "collectible": true, + "set": "Set3" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set3/en_us/img/cards/03SI018.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set3/en_us/img/cards/03SI018-full.png" + } + ], + "regions": [ + "Shadow Isles" + ], + "regionRefs": [ + "ShadowIsles" + ], + "attack": 0, + "cost": 3, + "health": 0, + "description": "Kill an ally with Last Breath to summon a follower from your deck that costs 1 more.", + "descriptionRaw": "Kill an ally with Last Breath to summon a follower from your deck that costs 1 more.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"SUPPAH TIIIIME!\" - Ravenous Butcher", + "artistName": "Kudos Productions", + "name": "Gluttony", + "cardCode": "03SI018", + "keywords": [ + "Fast" + ], + "keywordRefs": [ + "Fast" + ], + "spellSpeed": "Fast", + "spellSpeedRef": "Fast", + "rarity": "RARE", + "rarityRef": "Rare", + "subtypes": [], + "supertype": "", + "type": "Spell", + "collectible": true, + "set": "Set3" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set3/en_us/img/cards/03SI012.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set3/en_us/img/cards/03SI012-full.png" + } + ], + "regions": [ + "Shadow Isles" + ], + "regionRefs": [ + "ShadowIsles" + ], + "attack": 0, + "cost": 3, + "health": 0, + "description": "Obliterate all units that were summoned, but not played, this round.", + "descriptionRaw": "Obliterate all units that were summoned, but not played, this round.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"Of course, death is present in Demacia. We see it take our loved ones and know that, someday, it will come for us. But on these isles... I can almost taste death. I feel it in my lungs as I breathe, I hear it whisper in my ear. It is not some abstract notion. It sits with me here. Now. And it will have us all.\"\n- Notes of Jens Tommen, historian", + "artistName": "Kudos Productions", + "name": "Passage Unearned", + "cardCode": "03SI012", + "keywords": [ + "Fast" + ], + "keywordRefs": [ + "Fast" + ], + "spellSpeed": "Fast", + "spellSpeedRef": "Fast", + "rarity": "RARE", + "rarityRef": "Rare", + "subtypes": [], + "supertype": "", + "type": "Spell", + "collectible": true, + "set": "Set3" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set3/en_us/img/cards/03SI014.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set3/en_us/img/cards/03SI014-full.png" + } + ], + "regions": [ + "Shadow Isles" + ], + "regionRefs": [ + "ShadowIsles" + ], + "attack": 0, + "cost": 4, + "health": 0, + "description": "Grant ALL allies in deck and hand +2|+2 and Ephemeral.", + "descriptionRaw": "Grant ALL allies in deck and hand +2|+2 and Ephemeral.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"Mind or body, I fear that the nightmares of the Shadow Isles will break us all eventually, and insanity will reign forever.\"\n- Notes of Jens Tommen, historian", + "artistName": "Kudos Productions", + "name": "Encroaching Shadows", + "cardCode": "03SI014", + "keywords": [ + "Burst" + ], + "keywordRefs": [ + "Burst" + ], + "spellSpeed": "Burst", + "spellSpeedRef": "Burst", + "rarity": "EPIC", + "rarityRef": "Epic", + "subtypes": [], + "supertype": "", + "type": "Spell", + "collectible": true, + "set": "Set3" + }, + { + "associatedCards": [], + "associatedCardRefs": [ + "03SI016T1" + ], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set3/en_us/img/cards/03SI016.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set3/en_us/img/cards/03SI016-full.png" + } + ], + "regions": [ + "Shadow Isles" + ], + "regionRefs": [ + "ShadowIsles" + ], + "attack": 0, + "cost": 1, + "health": 0, + "description": "Drain 1 from a unit.\r\nCreate 2 copies of Go Hard in your deck. Every third time this happens, transform all copies of me everywhere into Pack Your Bags. ", + "descriptionRaw": "Drain 1 from a unit.\r\nCreate 2 copies of Go Hard in your deck. Every third time this happens, transform all copies of me everywhere into Pack Your Bags. ", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"We go hard, 'til we get it, get it\nWe go hard, we so in it, in it\nWe Pop Stars (Pop Stars), only winning, winning now\nAin't nobody bringing us down, down, down, down\"\n- Evelynn, 'POP/STARS'", + "artistName": "Kudos Productions", + "name": "Go Hard", + "cardCode": "03SI016", + "keywords": [ + "Slow" + ], + "keywordRefs": [ + "Slow" + ], + "spellSpeed": "Slow", + "spellSpeedRef": "Slow", + "rarity": "EPIC", + "rarityRef": "Epic", + "subtypes": [], + "supertype": "", + "type": "Spell", + "collectible": true, + "set": "Set3" + }, + { + "associatedCards": [], + "associatedCardRefs": [ + "03SI016" + ], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set3/en_us/img/cards/03SI016T1.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set3/en_us/img/cards/03SI016T1-full.png" + } + ], + "regions": [ + "Shadow Isles" + ], + "regionRefs": [ + "ShadowIsles" + ], + "attack": 0, + "cost": 5, + "health": 0, + "description": "Deal 5 to all enemies and the enemy Nexus. Transform all copies of me everywhere back to Go Hard.", + "descriptionRaw": "Deal 5 to all enemies and the enemy Nexus. Transform all copies of me everywhere back to Go Hard.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"Sorry for the bad news sorry I’m so bad\nOnly took a minute for me to get all you had\nSorry for the bad news know it makes you sad\nI’ll be here for a minute baby you should pack your bags\"\n- Evelynn, 'THE BADDEST'", + "artistName": "Kudos Productions", + "name": "Pack Your Bags", + "cardCode": "03SI016T1", + "keywords": [ + "Slow" + ], + "keywordRefs": [ + "Slow" + ], + "spellSpeed": "Slow", + "spellSpeedRef": "Slow", + "rarity": "None", + "rarityRef": "None", + "subtypes": [], + "supertype": "", + "type": "Spell", + "collectible": false, + "set": "Set3" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set3/en_us/img/cards/03SI007.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set3/en_us/img/cards/03SI007-full.png" + } + ], + "regions": [ + "Shadow Isles" + ], + "regionRefs": [ + "ShadowIsles" + ], + "attack": 0, + "cost": 1, + "health": 0, + "description": "The next time you summon an ally this round, give it +1|+0 and SpellShield this round.", + "descriptionRaw": "The next time you summon an ally this round, give it +1|+0 and SpellShield this round.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"Soon as you step outside the Tooth, you'll feel 'em. Fingertips on your nape, light as rain. Them creatures don't budge when you come at 'em, neither. Ain't afraid of my blade or my torch. Nothin'. Awful things.\" - Whale's Tooth looter", + "artistName": "Kudos Productions", + "name": "Shroud of Darkness", + "cardCode": "03SI007", + "keywords": [ + "Burst" + ], + "keywordRefs": [ + "Burst" + ], + "spellSpeed": "Burst", + "spellSpeedRef": "Burst", + "rarity": "COMMON", + "rarityRef": "Common", + "subtypes": [], + "supertype": "", + "type": "Spell", + "collectible": true, + "set": "Set3" + }, + { + "associatedCards": [], + "associatedCardRefs": [ + "01SI014" + ], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set3/en_us/img/cards/03SI013.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set3/en_us/img/cards/03SI013-full.png" + } + ], + "regions": [ + "Shadow Isles" + ], + "regionRefs": [ + "ShadowIsles" + ], + "attack": 0, + "cost": 4, + "health": 0, + "description": "Summon a Mistwraith.", + "descriptionRaw": "Summon a Mistwraith.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "The mistwraiths move through planes unseen by mortal eyes, appear without warning, and inflict misery on all they encounter.", + "artistName": "Kudos Productions", + "name": "Risen Mists", + "cardCode": "03SI013", + "keywords": [ + "Burst" + ], + "keywordRefs": [ + "Burst" + ], + "spellSpeed": "Burst", + "spellSpeedRef": "Burst", + "rarity": "COMMON", + "rarityRef": "Common", + "subtypes": [], + "supertype": "", + "type": "Spell", + "collectible": true, + "set": "Set3" + }, + { + "associatedCards": [], + "associatedCardRefs": [ + "03SI005T3", + "03SI005T1" + ], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set3/en_us/img/cards/03SI005.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set3/en_us/img/cards/03SI005-full.png" + } + ], + "regions": [ + "Shadow Isles" + ], + "regionRefs": [ + "ShadowIsles" + ], + "attack": 5, + "cost": 4, + "health": 3, + "description": "Nightfall: Grant an enemy Vulnerable and give enemies -1|-0 this round.", + "descriptionRaw": "Nightfall: Grant an enemy Vulnerable and give enemies -1|-0 this round.", + "levelupDescription": "You've attacked with 5+ Nightfall allies.", + "levelupDescriptionRaw": "You've attacked with 5+ Nightfall allies.", + "flavorText": "\"It appears that, once enough souls have been shaken, it breaches our world. Only hope can send the monstrosity back to its realm... but hope died here long ago, on a queen's final breath, and with a king's eternal scream.\"\n- Notes of Jens Tommen, historian", + "artistName": "SIXMOREVODKA", + "name": "Nocturne", + "cardCode": "03SI005", + "keywords": [ + "Fearsome" + ], + "keywordRefs": [ + "Fearsome" + ], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "Champion", + "rarityRef": "Champion", + "subtypes": [], + "supertype": "Champion", + "type": "Unit", + "collectible": true, + "set": "Set3" + }, + { + "associatedCards": [], + "associatedCardRefs": [ + "03SI005", + "03SI005T1" + ], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set3/en_us/img/cards/03SI005T3.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set3/en_us/img/cards/03SI005T3-full.png" + } + ], + "regions": [ + "Shadow Isles" + ], + "regionRefs": [ + "ShadowIsles" + ], + "attack": 0, + "cost": 2, + "health": 0, + "description": "Drain 1 from anything. Create a Nocturne in your deck.\r\nNightfall: Create a random Nightfall card in hand.", + "descriptionRaw": "Drain 1 from anything. Create a Nocturne in your deck.\r\nNightfall: Create a random Nightfall card in hand.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"Every passing day saps my spirit, pulls from me the vigor that compelled me to find this place. The Whale's Tooth is full of haggard folk, seemingly lost to all endeavor, and I fear the longer I stay, the more like them I become.\"\n- Notes of Jens Tommen, historian", + "artistName": "Kudos Productions", + "name": "Nocturne's Unspeakable Horror", + "cardCode": "03SI005T3", + "keywords": [ + "Fast" + ], + "keywordRefs": [ + "Fast" + ], + "spellSpeed": "Fast", + "spellSpeedRef": "Fast", + "rarity": "None", + "rarityRef": "None", + "subtypes": [], + "supertype": "Champion", + "type": "Spell", + "collectible": false, + "set": "Set3" + }, + { + "associatedCards": [], + "associatedCardRefs": [ + "03SI005T3", + "03SI005" + ], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set3/en_us/img/cards/03SI005T1.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set3/en_us/img/cards/03SI005T1-full.png" + } + ], + "regions": [ + "Shadow Isles" + ], + "regionRefs": [ + "ShadowIsles" + ], + "attack": 6, + "cost": 4, + "health": 4, + "description": "Nightfall: Grant an enemy Vulnerable and give enemies -1|-0 this round.\r\nOther allies have Fearsome.\r\nWhen you summon a unit, give enemies -1|-0 this round.", + "descriptionRaw": "Nightfall: Grant an enemy Vulnerable and give enemies -1|-0 this round.\r\nOther allies have Fearsome.\r\nWhen you summon a unit, give enemies -1|-0 this round.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"My dreams grow more vivid with each passing night. I see a creature of pure evil, writhing in the dark, twisting its way toward me. Though I was to be stationed here for another week, I have just paid for transport to Fossbarrow this evening. Plainly, I cannot stand this place.\"\n- Notes of Jens Tommen, historian", + "artistName": "SIXMOREVODKA", + "name": "Nocturne", + "cardCode": "03SI005T1", + "keywords": [ + "Fearsome", + "Missing Translation" + ], + "keywordRefs": [ + "Fearsome", + "AuraVisualFakeKeyword" + ], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "None", + "rarityRef": "None", + "subtypes": [], + "supertype": "Champion", + "type": "Unit", + "collectible": false, + "set": "Set3" + }, + { + "associatedCards": [], + "associatedCardRefs": [ + "03SI006T1" + ], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set3/en_us/img/cards/03SI006.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set3/en_us/img/cards/03SI006-full.png" + } + ], + "regions": [ + "Shadow Isles" + ], + "regionRefs": [ + "ShadowIsles" + ], + "attack": 3, + "cost": 3, + "health": 2, + "description": "Nightfall: Drain 2 from the enemy Nexus.", + "descriptionRaw": "Nightfall: Drain 2 from the enemy Nexus.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "With each passing night, the travelers grew more weary. Their slumber was restless, and their dreams vivid. Sleep no longer gave respite, and instead pulled the life from their bones.", + "artistName": "SIXMOREVODKA", + "name": "Doombeast", + "cardCode": "03SI006", + "keywords": [], + "keywordRefs": [], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "COMMON", + "rarityRef": "Common", + "subtypes": [], + "supertype": "", + "type": "Unit", + "collectible": true, + "set": "Set3" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set3/en_us/img/cards/03SI015.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set3/en_us/img/cards/03SI015-full.png" + } + ], + "regions": [ + "Shadow Isles" + ], + "regionRefs": [ + "ShadowIsles" + ], + "attack": 1, + "cost": 0, + "health": 1, + "description": "Last Breath: Create 2 copies of me in the enemy deck.", + "descriptionRaw": "Last Breath: Create 2 copies of me in the enemy deck.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "Most of the spirits on the Shadow Isles are utterly terrifying and morbid creatures. A small handful are... well... just really, really annoying.", + "artistName": "SIXMOREVODKA", + "name": "Pesky Specter", + "cardCode": "03SI015", + "keywords": [ + "Ephemeral", + "Last Breath" + ], + "keywordRefs": [ + "Ephemeral", + "LastBreath" + ], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "COMMON", + "rarityRef": "Common", + "subtypes": [], + "supertype": "", + "type": "Unit", + "collectible": true, + "set": "Set3" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set3/en_us/img/cards/03SI006T1.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set3/en_us/img/cards/03SI006T1-full.png" + } + ], + "regions": [ + "Shadow Isles" + ], + "regionRefs": [ + "ShadowIsles" + ], + "attack": 0, + "cost": 0, + "health": 0, + "description": "Drain 2 from the enemy Nexus.", + "descriptionRaw": "Drain 2 from the enemy Nexus.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "What knows you better than your own mind? What can torment you more exquisitely than your own dreams?", + "artistName": "Kudos Productions", + "name": "Torment", + "cardCode": "03SI006T1", + "keywords": [ + "Skill" + ], + "keywordRefs": [ + "Skill" + ], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "None", + "rarityRef": "None", + "subtypes": [], + "supertype": "", + "type": "Ability", + "collectible": false, + "set": "Set3" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set3/en_us/img/cards/03SI003.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set3/en_us/img/cards/03SI003-full.png" + } + ], + "regions": [ + "Shadow Isles" + ], + "regionRefs": [ + "ShadowIsles" + ], + "attack": 2, + "cost": 1, + "health": 1, + "description": "Nightfall: Give me +2|+0 and Fearsome this round.", + "descriptionRaw": "Nightfall: Give me +2|+0 and Fearsome this round.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "As the sun melts into pitch, the terrors of this place wake, watch, and wait.", + "artistName": "SIXMOREVODKA", + "name": "Stygian Onlooker", + "cardCode": "03SI003", + "keywords": [], + "keywordRefs": [], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "COMMON", + "rarityRef": "Common", + "subtypes": [], + "supertype": "", + "type": "Unit", + "collectible": true, + "set": "Set3" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set3/en_us/img/cards/03SI002.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set3/en_us/img/cards/03SI002-full.png" + } + ], + "regions": [ + "Shadow Isles" + ], + "regionRefs": [ + "ShadowIsles" + ], + "attack": 0, + "cost": 2, + "health": 0, + "description": "Drain 1 from anything.\r\nNightfall: Create a random Nightfall card in hand.", + "descriptionRaw": "Drain 1 from anything.\r\nNightfall: Create a random Nightfall card in hand.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"Every passing day saps my spirit, pulls from me the vigor that compelled me to find this place. The Whale's Tooth is full of haggard folk, seemingly lost to all endeavor, and I fear the longer I stay, the more like them I become.\"\n- Notes of Jens Tommen, historian", + "artistName": "Kudos Productions", + "name": "Unspeakable Horror", + "cardCode": "03SI002", + "keywords": [ + "Fast" + ], + "keywordRefs": [ + "Fast" + ], + "spellSpeed": "Fast", + "spellSpeedRef": "Fast", + "rarity": "COMMON", + "rarityRef": "Common", + "subtypes": [], + "supertype": "", + "type": "Spell", + "collectible": true, + "set": "Set3" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set3/en_us/img/cards/03SI010.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set3/en_us/img/cards/03SI010-full.png" + } + ], + "regions": [ + "Shadow Isles" + ], + "regionRefs": [ + "ShadowIsles" + ], + "attack": 3, + "cost": 5, + "health": 5, + "description": "Nightfall: Grant me +1|+0 for each time we've activated Nightfall this game. ", + "descriptionRaw": "Nightfall: Grant me +1|+0 for each time we've activated Nightfall this game. ", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "With every setting sun, the night unfurls its dark wings, and blots out the day's last remnants of hope.", + "artistName": "SIXMOREVODKA", + "name": "Duskrider", + "cardCode": "03SI010", + "keywords": [ + "Fearsome" + ], + "keywordRefs": [ + "Fearsome" + ], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "RARE", + "rarityRef": "Rare", + "subtypes": [], + "supertype": "", + "type": "Unit", + "collectible": true, + "set": "Set3" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set3/en_us/img/cards/03IO025.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set3/en_us/img/cards/03IO025-full.png" + } + ], + "regions": [ + "Ionia" + ], + "regionRefs": [ + "Ionia" + ], + "attack": 0, + "cost": 4, + "health": 0, + "description": "Grant an ally +1|+0 and Quick Attack. If it already has it, grant it Double Attack instead.", + "descriptionRaw": "Grant an ally +1|+0 and Quick Attack. If it already has it, grant it Double Attack instead.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"Hit often, hit fast, and hit hard.\" - Horns of the Dragon", + "artistName": "Kudos Productions", + "name": "Flurry of Fists", + "cardCode": "03IO025", + "keywords": [ + "Burst" + ], + "keywordRefs": [ + "Burst" + ], + "spellSpeed": "Burst", + "spellSpeedRef": "Burst", + "rarity": "RARE", + "rarityRef": "Rare", + "subtypes": [], + "supertype": "", + "type": "Spell", + "collectible": true, + "set": "Set3" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set3/en_us/img/cards/03IO017.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set3/en_us/img/cards/03IO017-full.png" + } + ], + "regions": [ + "Ionia" + ], + "regionRefs": [ + "Ionia" + ], + "attack": 0, + "cost": 1, + "health": 2, + "description": "Support: Give my supported ally +2|+1 this round.", + "descriptionRaw": "Support: Give my supported ally +2|+1 this round.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"Pix is AWESOME, he's small and cool and wholesome,\nHis favorite things are possums, and he likes to... hrmhmhmhrmthrossom!\" - Lulu", + "artistName": "Dao Le", + "name": "Pix!", + "cardCode": "03IO017", + "keywords": [ + "Support" + ], + "keywordRefs": [ + "Support" + ], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "COMMON", + "rarityRef": "Common", + "subtypes": [ + "FAE" + ], + "supertype": "", + "type": "Unit", + "collectible": true, + "set": "Set3" + }, + { + "associatedCards": [], + "associatedCardRefs": [ + "03IO008T1" + ], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set3/en_us/img/cards/03IO008.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set3/en_us/img/cards/03IO008-full.png" + } + ], + "regions": [ + "Ionia" + ], + "regionRefs": [ + "Ionia" + ], + "attack": 0, + "cost": 4, + "health": 0, + "description": "Transform a follower into a 1|1 Squirrel and Silence it this round.", + "descriptionRaw": "Transform a follower into a 1|1 Squirrel and Silence it this round.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"Adoribus!\" - Lulu", + "artistName": "Kudos Productions", + "name": "Whimsy!", + "cardCode": "03IO008", + "keywords": [ + "Burst" + ], + "keywordRefs": [ + "Burst" + ], + "spellSpeed": "Burst", + "spellSpeedRef": "Burst", + "rarity": "COMMON", + "rarityRef": "Common", + "subtypes": [], + "supertype": "", + "type": "Spell", + "collectible": true, + "set": "Set3" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set3/en_us/img/cards/03IO008T1.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set3/en_us/img/cards/03IO008T1-full.png" + } + ], + "regions": [ + "Ionia" + ], + "regionRefs": [ + "Ionia" + ], + "attack": 1, + "cost": 1, + "health": 1, + "description": "", + "descriptionRaw": "", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "A fae flash knocked him to the floor! Newly keen ears heard a yordle's fading laughter, and he looked down to see furry paws, attached to furry arms...", + "artistName": "Dao Le", + "name": "Squirrel", + "cardCode": "03IO008T1", + "keywords": [], + "keywordRefs": [], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "None", + "rarityRef": "None", + "subtypes": [ + "FAE" + ], + "supertype": "", + "type": "Unit", + "collectible": false, + "set": "Set3" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set3/en_us/img/cards/03IO001.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set3/en_us/img/cards/03IO001-full.png" + } + ], + "regions": [ + "Ionia" + ], + "regionRefs": [ + "Ionia" + ], + "attack": 1, + "cost": 1, + "health": 2, + "description": "When I'm supported, grant me +2|+0.", + "descriptionRaw": "When I'm supported, grant me +2|+0.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "Everyone wants a familiar, but no one's prepared for the responsibility. You've gotta take them on walkies, make sure they're eating a balanced diet... house-train them. It's a lot of work.", + "artistName": "SIXMOREVODKA", + "name": "Flower Child", + "cardCode": "03IO001", + "keywords": [], + "keywordRefs": [], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "COMMON", + "rarityRef": "Common", + "subtypes": [ + "FAE" + ], + "supertype": "", + "type": "Unit", + "collectible": true, + "set": "Set3" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set3/en_us/img/cards/03IO019.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set3/en_us/img/cards/03IO019-full.png" + } + ], + "regions": [ + "Ionia" + ], + "regionRefs": [ + "Ionia" + ], + "attack": 0, + "cost": 10, + "health": 0, + "description": "Pick an ally. Recall ALL other units and landmarks.", + "descriptionRaw": "Pick an ally. Recall ALL other units and landmarks.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"I walk my path alone.\" - Solitary Monk", + "artistName": "Kudos Productions", + "name": "Singular Will", + "cardCode": "03IO019", + "keywords": [ + "Slow" + ], + "keywordRefs": [ + "Slow" + ], + "spellSpeed": "Slow", + "spellSpeedRef": "Slow", + "rarity": "EPIC", + "rarityRef": "Epic", + "subtypes": [], + "supertype": "", + "type": "Spell", + "collectible": true, + "set": "Set3" + }, + { + "associatedCards": [], + "associatedCardRefs": [ + "03IO002T1", + "03IO002T5", + "03IO008T1", + "03IO002T4" + ], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set3/en_us/img/cards/03IO002.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set3/en_us/img/cards/03IO002-full.png" + } + ], + "regions": [ + "Ionia", + "Bandle City" + ], + "regionRefs": [ + "Ionia", + "BandleCity" + ], + "attack": 3, + "cost": 3, + "health": 3, + "description": "Support: My supported ally grows up to 4|4 this round.", + "descriptionRaw": "Support: My supported ally grows up to 4|4 this round.", + "levelupDescription": "Allies have been supported 3+ times.", + "levelupDescriptionRaw": "Allies have been supported 3+ times.", + "flavorText": "\"Don't you worry, Pix! We're gonna get outta the Glade, and we're gonna adoribus ALL THE THINGS! Are you ready?!\"", + "artistName": "SIXMOREVODKA", + "name": "Lulu", + "cardCode": "03IO002", + "keywords": [ + "Support" + ], + "keywordRefs": [ + "Support" + ], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "Champion", + "rarityRef": "Champion", + "subtypes": [ + "YORDLE" + ], + "supertype": "Champion", + "type": "Unit", + "collectible": true, + "set": "Set3" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set3/en_us/img/cards/03IO002T4.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set3/en_us/img/cards/03IO002T4-full.png" + } + ], + "regions": [ + "Ionia" + ], + "regionRefs": [ + "Ionia" + ], + "attack": 0, + "cost": 1, + "health": 0, + "description": "Give an ally Barrier or an enemy Vulnerable this round.", + "descriptionRaw": "Give an ally Barrier or an enemy Vulnerable this round.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "Pix protec... or Pix attac...? ", + "artistName": "Kudos Productions", + "name": "Help, Pix!", + "cardCode": "03IO002T4", + "keywords": [ + "Focus", + "Fleeting" + ], + "keywordRefs": [ + "Focus", + "Fleeting" + ], + "spellSpeed": "Burst", + "spellSpeedRef": "Burst", + "rarity": "None", + "rarityRef": "None", + "subtypes": [], + "supertype": "", + "type": "Spell", + "collectible": false, + "set": "Set3" + }, + { + "associatedCards": [], + "associatedCardRefs": [ + "03IO008T1", + "03IO002", + "03IO002T1" + ], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set3/en_us/img/cards/03IO002T5.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set3/en_us/img/cards/03IO002T5-full.png" + } + ], + "regions": [ + "Ionia" + ], + "regionRefs": [ + "Ionia" + ], + "attack": 0, + "cost": 4, + "health": 0, + "description": "Transform a follower into a 1|1 Squirrel and Silence it this round. Create a Lulu in your deck.", + "descriptionRaw": "Transform a follower into a 1|1 Squirrel and Silence it this round. Create a Lulu in your deck.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"Adoribus!\" - Lulu", + "artistName": "Kudos Productions", + "name": "Lulu's Whimsy!", + "cardCode": "03IO002T5", + "keywords": [ + "Burst" + ], + "keywordRefs": [ + "Burst" + ], + "spellSpeed": "Burst", + "spellSpeedRef": "Burst", + "rarity": "None", + "rarityRef": "None", + "subtypes": [], + "supertype": "Champion", + "type": "Spell", + "collectible": false, + "set": "Set3" + }, + { + "associatedCards": [], + "associatedCardRefs": [ + "03IO002T5", + "03IO002", + "03IO008T1", + "03IO002T4" + ], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set3/en_us/img/cards/03IO002T1.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set3/en_us/img/cards/03IO002T1-full.png" + } + ], + "regions": [ + "Ionia", + "Bandle City" + ], + "regionRefs": [ + "Ionia", + "BandleCity" + ], + "attack": 4, + "cost": 3, + "health": 4, + "description": "Round Start: Create a Fleeting Help, Pix! in hand.\r\nSupport: My supported ally grows up to 5|5 this round.", + "descriptionRaw": "Round Start: Create a Fleeting Help, Pix! in hand.\r\nSupport: My supported ally grows up to 5|5 this round.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"Oooh! Look, Pix! It's a whole different world out here! Now let's give it lots of colors!\"", + "artistName": "SIXMOREVODKA", + "name": "Lulu", + "cardCode": "03IO002T1", + "keywords": [ + "Support" + ], + "keywordRefs": [ + "Support" + ], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "None", + "rarityRef": "None", + "subtypes": [ + "YORDLE" + ], + "supertype": "Champion", + "type": "Unit", + "collectible": false, + "set": "Set3" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set3/en_us/img/cards/03IO011.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set3/en_us/img/cards/03IO011-full.png" + } + ], + "regions": [ + "Ionia" + ], + "regionRefs": [ + "Ionia" + ], + "attack": 3, + "cost": 4, + "health": 4, + "description": "Strike: Double my Power.", + "descriptionRaw": "Strike: Double my Power.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "His secret is acorn powder shakes, four times a day.", + "artistName": "Dao Le", + "name": "Swole Squirrel", + "cardCode": "03IO011", + "keywords": [], + "keywordRefs": [], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "RARE", + "rarityRef": "Rare", + "subtypes": [ + "FAE" + ], + "supertype": "", + "type": "Unit", + "collectible": true, + "set": "Set3" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set3/en_us/img/cards/03IO009.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set3/en_us/img/cards/03IO009-full.png" + } + ], + "regions": [ + "Ionia" + ], + "regionRefs": [ + "Ionia" + ], + "attack": 4, + "cost": 3, + "health": 2, + "description": "", + "descriptionRaw": "", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "Energy: 104kJ (25 kcal), Carbohydrates: 5.88g, Sugars: 3.53g, Dietary Fiber: 3g, Fat: 0.18g, Protein: 0.98g, Water: 92g...", + "artistName": "Dao Le", + "name": "Tasty Faefolk", + "cardCode": "03IO009", + "keywords": [ + "Lifesteal" + ], + "keywordRefs": [ + "Lifesteal" + ], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "COMMON", + "rarityRef": "Common", + "subtypes": [ + "FAE" + ], + "supertype": "", + "type": "Unit", + "collectible": true, + "set": "Set3" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set3/en_us/img/cards/03IO003.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set3/en_us/img/cards/03IO003-full.png" + } + ], + "regions": [ + "Ionia" + ], + "regionRefs": [ + "Ionia" + ], + "attack": 3, + "cost": 4, + "health": 4, + "description": "Play: Grant an ally Elusive.", + "descriptionRaw": "Play: Grant an ally Elusive.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"Shh! This way! We've gotta make a sharp left after the walking treehouse, then go straight past the talking flowers. Lu, you listening to me? Lu? Lu! LULU! Do. NOT. Feed them. Do not do that.\"", + "artistName": "Dao Le", + "name": "Fae Guide", + "cardCode": "03IO003", + "keywords": [], + "keywordRefs": [], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "RARE", + "rarityRef": "Rare", + "subtypes": [ + "YORDLE" + ], + "supertype": "", + "type": "Unit", + "collectible": true, + "set": "Set3" + }, + { + "associatedCards": [], + "associatedCardRefs": [ + "03IO007T1" + ], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set3/en_us/img/cards/03IO007.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set3/en_us/img/cards/03IO007-full.png" + } + ], + "regions": [ + "Ionia" + ], + "regionRefs": [ + "Ionia" + ], + "attack": 0, + "cost": 3, + "health": 3, + "description": "Support: Create an attacking Mumblesprite with my supported ally's stats.", + "descriptionRaw": "Support: Create an attacking Mumblesprite with my supported ally's stats.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "You're supposed to follow your dreams, not manifest them through inadvertent muttered conjuration as you sleep-float through an ancient magical forest. I mean SHEESH.", + "artistName": "SIXMOREVODKA", + "name": "Trevor Snoozebottom", + "cardCode": "03IO007", + "keywords": [ + "Support" + ], + "keywordRefs": [ + "Support" + ], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "EPIC", + "rarityRef": "Epic", + "subtypes": [ + "YORDLE" + ], + "supertype": "", + "type": "Unit", + "collectible": true, + "set": "Set3" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set3/en_us/img/cards/03IO007T1.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set3/en_us/img/cards/03IO007T1-full.png" + } + ], + "regions": [ + "Ionia" + ], + "regionRefs": [ + "Ionia" + ], + "attack": 0, + "cost": 3, + "health": 1, + "description": "", + "descriptionRaw": "", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "Another mumblesprite burst out, its eyes full of devilish mischief. \"No more cheese for Trevor!\" Bri announced. The others all nodded.", + "artistName": "SIXMOREVODKA", + "name": "Mumblesprite", + "cardCode": "03IO007T1", + "keywords": [ + "Elusive", + "Ephemeral" + ], + "keywordRefs": [ + "Elusive", + "Ephemeral" + ], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "None", + "rarityRef": "None", + "subtypes": [ + "FAE" + ], + "supertype": "", + "type": "Unit", + "collectible": false, + "set": "Set3" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set3/en_us/img/cards/03IO010.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set3/en_us/img/cards/03IO010-full.png" + } + ], + "regions": [ + "Ionia" + ], + "regionRefs": [ + "Ionia" + ], + "attack": 1, + "cost": 2, + "health": 1, + "description": "Support: Give my supported ally Quick Attack and +1|+0 this round.", + "descriptionRaw": "Support: Give my supported ally Quick Attack and +1|+0 this round.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "Sir Ribery Montague left home hoping to complete some great quest or curry favor with a notable house. But fate led him to a hidden bandlewood, where young Bri quickly transformed Sir Ribery into a frog, and yanked him off on HER adventures. Poor Rib!", + "artistName": "Dao Le", + "name": "Young Witch", + "cardCode": "03IO010", + "keywords": [ + "Elusive", + "Support" + ], + "keywordRefs": [ + "Elusive", + "Support" + ], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "COMMON", + "rarityRef": "Common", + "subtypes": [], + "supertype": "", + "type": "Unit", + "collectible": true, + "set": "Set3" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set3/en_us/img/cards/03IO020.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set3/en_us/img/cards/03IO020-full.png" + } + ], + "regions": [ + "Ionia" + ], + "regionRefs": [ + "Ionia" + ], + "attack": 0, + "cost": 2, + "health": 0, + "description": "Stop a Fast or Slow spell that costs 3 or less.", + "descriptionRaw": "Stop a Fast or Slow spell that costs 3 or less.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"Don't do that, you silly smufflefloof! You might hurt the antylopes!\" - Lulu", + "artistName": "Kudos Productions", + "name": "Nopeify!", + "cardCode": "03IO020", + "keywords": [ + "Fast" + ], + "keywordRefs": [ + "Fast" + ], + "spellSpeed": "Fast", + "spellSpeedRef": "Fast", + "rarity": "RARE", + "rarityRef": "Rare", + "subtypes": [], + "supertype": "", + "type": "Spell", + "collectible": true, + "set": "Set3" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set3/en_us/img/cards/03IO022.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set3/en_us/img/cards/03IO022-full.png" + } + ], + "regions": [ + "Ionia" + ], + "regionRefs": [ + "Ionia" + ], + "attack": 0, + "cost": 5, + "health": 0, + "description": "Recall an ally to summon an exact Ephemeral copy in its place. Reduce its cost to 0 this round.", + "descriptionRaw": "Recall an ally to summon an exact Ephemeral copy in its place. Reduce its cost to 0 this round.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"More\nKnow I got it,\nSo here you go,\nYou look like you could use some more.\"\n- Akali, 'MORE'", + "artistName": "Kudos Productions", + "name": "Go Get It", + "cardCode": "03IO022", + "keywords": [ + "Fast" + ], + "keywordRefs": [ + "Fast" + ], + "spellSpeed": "Fast", + "spellSpeedRef": "Fast", + "rarity": "EPIC", + "rarityRef": "Epic", + "subtypes": [], + "supertype": "", + "type": "Spell", + "collectible": true, + "set": "Set3" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set3/en_us/img/cards/03IO018.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set3/en_us/img/cards/03IO018-full.png" + } + ], + "regions": [ + "Ionia" + ], + "regionRefs": [ + "Ionia" + ], + "attack": 3, + "cost": 3, + "health": 2, + "description": "When I'm supported, give me +0|+3 this round.\r\nSupport: Give my supported ally +3|+0 this round.", + "descriptionRaw": "When I'm supported, give me +0|+3 this round.\r\nSupport: Give my supported ally +3|+0 this round.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "The purple faefolk are sweet little creatures, and cared for by all those who encounter them. Well, almost all.", + "artistName": "Dao Le", + "name": "Fuzzy Caretaker", + "cardCode": "03IO018", + "keywords": [ + "Support" + ], + "keywordRefs": [ + "Support" + ], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "RARE", + "rarityRef": "Rare", + "subtypes": [ + "YORDLE" + ], + "supertype": "", + "type": "Unit", + "collectible": true, + "set": "Set3" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set3/en_us/img/cards/03DE008.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set3/en_us/img/cards/03DE008-full.png" + } + ], + "regions": [ + "Demacia" + ], + "regionRefs": [ + "Demacia" + ], + "attack": 3, + "cost": 2, + "health": 2, + "description": "When I'm summoned, if you Behold a Dragon, grant me Challenger.", + "descriptionRaw": "When I'm summoned, if you Behold a Dragon, grant me Challenger.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"When I lost my comrades in arms at Wrenwall, I thought I had also lost my resolve... but it turns out there is nothing that a fight can't stir up in an old soldier.\"", + "artistName": "SIXMOREVODKA", + "name": "Dragonguard Lieutenant", + "cardCode": "03DE008", + "keywords": [], + "keywordRefs": [], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "COMMON", + "rarityRef": "Common", + "subtypes": [], + "supertype": "", + "type": "Unit", + "collectible": true, + "set": "Set3" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set3/en_us/img/cards/03DE001.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set3/en_us/img/cards/03DE001-full.png" + } + ], + "regions": [ + "Demacia" + ], + "regionRefs": [ + "Demacia" + ], + "attack": 0, + "cost": 2, + "health": 0, + "description": "Grant an ally Challenger.", + "descriptionRaw": "Grant an ally Challenger.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"None shall escape us!\" - Shyvana", + "artistName": "Kudos Productions", + "name": "Confront", + "cardCode": "03DE001", + "keywords": [ + "Burst" + ], + "keywordRefs": [ + "Burst" + ], + "spellSpeed": "Burst", + "spellSpeedRef": "Burst", + "rarity": "COMMON", + "rarityRef": "Common", + "subtypes": [], + "supertype": "", + "type": "Spell", + "collectible": true, + "set": "Set3" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set3/en_us/img/cards/03DE015.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set3/en_us/img/cards/03DE015-full.png" + } + ], + "regions": [ + "Demacia" + ], + "regionRefs": [ + "Demacia" + ], + "attack": 1, + "cost": 2, + "health": 3, + "description": "ALL spells cost 1 more.", + "descriptionRaw": "ALL spells cost 1 more.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "What begins as a shapeless, rough-hewn block of petricite quickly becomes something more under the clever hands of its sculptor. That is when a piece truly starts to come to life.", + "artistName": "SIXMOREVODKA", + "name": "Stony Suppressor", + "cardCode": "03DE015", + "keywords": [ + "Missing Translation" + ], + "keywordRefs": [ + "AuraVisualFakeKeyword" + ], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "RARE", + "rarityRef": "Rare", + "subtypes": [], + "supertype": "", + "type": "Unit", + "collectible": true, + "set": "Set3" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set3/en_us/img/cards/03DE006.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set3/en_us/img/cards/03DE006-full.png" + } + ], + "regions": [ + "Demacia" + ], + "regionRefs": [ + "Demacia" + ], + "attack": 4, + "cost": 5, + "health": 5, + "description": "", + "descriptionRaw": "", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "All creatures are fiercely protective of their young, but few are as well equipped to deal with would-be threats as a dragon.", + "artistName": "SIXMOREVODKA", + "name": "Screeching Dragon", + "cardCode": "03DE006", + "keywords": [ + "Challenger", + "Fury" + ], + "keywordRefs": [ + "Challenger", + "Fury" + ], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "COMMON", + "rarityRef": "Common", + "subtypes": [ + "DRAGON" + ], + "supertype": "", + "type": "Unit", + "collectible": true, + "set": "Set3" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set3/en_us/img/cards/03DE025.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set3/en_us/img/cards/03DE025-full.png" + } + ], + "regions": [ + "Demacia" + ], + "regionRefs": [ + "Demacia" + ], + "attack": 0, + "cost": 6, + "health": 0, + "description": "An ally with Fury strikes the 2 weakest enemies one after another.\r\n", + "descriptionRaw": "An ally with Fury strikes the 2 weakest enemies one after another.\r\n", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "For centuries, the Demacians only knew of a dragon's fury through legend. Wrenwall changed that.", + "artistName": "Kudos Productions", + "name": "Molten Breath", + "cardCode": "03DE025", + "keywords": [ + "Slow" + ], + "keywordRefs": [ + "Slow" + ], + "spellSpeed": "Slow", + "spellSpeedRef": "Slow", + "rarity": "RARE", + "rarityRef": "Rare", + "subtypes": [], + "supertype": "", + "type": "Spell", + "collectible": true, + "set": "Set3" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set3/en_us/img/cards/03DE002.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set3/en_us/img/cards/03DE002-full.png" + } + ], + "regions": [ + "Demacia" + ], + "regionRefs": [ + "Demacia" + ], + "attack": 0, + "cost": 3, + "health": 0, + "description": "An ally and an enemy strike each other. Then, if the ally is a Dragon, heal it 2.", + "descriptionRaw": "An ally and an enemy strike each other. Then, if the ally is a Dragon, heal it 2.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "When knight and dragon separated, panting and wounded, the latter seemed reinvigorated. It smelled blood, and was eager for more.", + "artistName": "Kudos Productions", + "name": "Strafing Strike", + "cardCode": "03DE002", + "keywords": [ + "Fast" + ], + "keywordRefs": [ + "Fast" + ], + "spellSpeed": "Fast", + "spellSpeedRef": "Fast", + "rarity": "RARE", + "rarityRef": "Rare", + "subtypes": [], + "supertype": "", + "type": "Spell", + "collectible": true, + "set": "Set3" + }, + { + "associatedCards": [], + "associatedCardRefs": [ + "03DE002", + "03DE011T2", + "03DE011T1" + ], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set3/en_us/img/cards/03DE011.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set3/en_us/img/cards/03DE011-full.png" + } + ], + "regions": [ + "Demacia" + ], + "regionRefs": [ + "Demacia" + ], + "attack": 3, + "cost": 4, + "health": 4, + "description": "Attack: Give me +1|+1 this round.", + "descriptionRaw": "Attack: Give me +1|+1 this round.", + "levelupDescription": "I've seen Dragon allies deal 12+ damage.", + "levelupDescriptionRaw": "I've seen Dragon allies deal 12+ damage.", + "flavorText": "\"On the one hand, she is, by her very nature, our most hated foe, her kind having historically brought only anguish to Demacia. On the other, she is trusted by the Prince, and seems to have all the makings of a determined soldier and valuable ally. I only hope that she does not betray the trust we have placed in her.\"\n- Page from Lieutenant Jerik's account on Wrenwall", + "artistName": "SIXMOREVODKA", + "name": "Shyvana", + "cardCode": "03DE011", + "keywords": [ + "Fury" + ], + "keywordRefs": [ + "Fury" + ], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "Champion", + "rarityRef": "Champion", + "subtypes": [ + "DRAGON" + ], + "supertype": "Champion", + "type": "Unit", + "collectible": true, + "set": "Set3" + }, + { + "associatedCards": [], + "associatedCardRefs": [ + "03DE002", + "03DE011T2", + "03DE011" + ], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set3/en_us/img/cards/03DE011T1.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set3/en_us/img/cards/03DE011T1-full.png" + } + ], + "regions": [ + "Demacia" + ], + "regionRefs": [ + "Demacia" + ], + "attack": 4, + "cost": 4, + "health": 5, + "description": "Attack: Give me +2|+2 this round and create a Fleeting Strafing Strike in hand.", + "descriptionRaw": "Attack: Give me +2|+2 this round and create a Fleeting Strafing Strike in hand.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"The first time I witnessed her transformation, I beheld her with revulsion. There was Yvva, replete in fire and fury! If only I had known then what I know now--that she would become our sister in arms, an exemplary soldier... and my dear, dear friend.\"\n- Page from Lieutenant Jerik's account on Wrenwall", + "artistName": "SIXMOREVODKA", + "name": "Dragon Shyvana", + "cardCode": "03DE011T1", + "keywords": [ + "Fury" + ], + "keywordRefs": [ + "Fury" + ], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "None", + "rarityRef": "None", + "subtypes": [ + "DRAGON" + ], + "supertype": "Champion", + "type": "Unit", + "collectible": false, + "set": "Set3" + }, + { + "associatedCards": [], + "associatedCardRefs": [ + "03DE011", + "03DE011T1" + ], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set3/en_us/img/cards/03DE011T2.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set3/en_us/img/cards/03DE011T2-full.png" + } + ], + "regions": [ + "Demacia" + ], + "regionRefs": [ + "Demacia" + ], + "attack": 0, + "cost": 2, + "health": 0, + "description": "Grant an ally Challenger.\r\nCreate a Shyvana in your deck.", + "descriptionRaw": "Grant an ally Challenger.\r\nCreate a Shyvana in your deck.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"None shall escape us!\" - Shyvana", + "artistName": "Kudos Productions", + "name": "Shyvana's Confront", + "cardCode": "03DE011T2", + "keywords": [ + "Burst" + ], + "keywordRefs": [ + "Burst" + ], + "spellSpeed": "Burst", + "spellSpeedRef": "Burst", + "rarity": "None", + "rarityRef": "None", + "subtypes": [], + "supertype": "Champion", + "type": "Spell", + "collectible": false, + "set": "Set3" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set3/en_us/img/cards/03DE003.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set3/en_us/img/cards/03DE003-full.png" + } + ], + "regions": [ + "Demacia" + ], + "regionRefs": [ + "Demacia" + ], + "attack": 3, + "cost": 6, + "health": 5, + "description": "When I'm summoned, if you Behold a Dragon, Rally.", + "descriptionRaw": "When I'm summoned, if you Behold a Dragon, Rally.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"There in the distance! Is that...?\"\n\"Looks like it.\"\n\"How can you be sure?\"\n\"Oh, there's no mistaking them. Cover your ears. This will be loud.\" - Anden and Yessenia", + "artistName": "SIXMOREVODKA", + "name": "Dragonguard Lookout", + "cardCode": "03DE003", + "keywords": [], + "keywordRefs": [], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "RARE", + "rarityRef": "Rare", + "subtypes": [], + "supertype": "", + "type": "Unit", + "collectible": true, + "set": "Set3" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set3/en_us/img/cards/03DE013.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set3/en_us/img/cards/03DE013-full.png" + } + ], + "regions": [ + "Demacia" + ], + "regionRefs": [ + "Demacia" + ], + "attack": 6, + "cost": 7, + "health": 6, + "description": "", + "descriptionRaw": "", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"Careful, soldiers! If we tread carefully and don't disturb the nest, we can keep the mother dragon on the defensive. If we rile her up any further... Well, you'll want to be ready to run.\" - Anden Mayne, Egghead Researcher", + "artistName": "SIXMOREVODKA", + "name": "Stalking Broodmother", + "cardCode": "03DE013", + "keywords": [ + "Fury", + "Scout" + ], + "keywordRefs": [ + "Fury", + "Scout" + ], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "COMMON", + "rarityRef": "Common", + "subtypes": [ + "DRAGON" + ], + "supertype": "", + "type": "Unit", + "collectible": true, + "set": "Set3" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set3/en_us/img/cards/03DE005.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set3/en_us/img/cards/03DE005-full.png" + } + ], + "regions": [ + "Demacia" + ], + "regionRefs": [ + "Demacia" + ], + "attack": 1, + "cost": 2, + "health": 3, + "description": "When I'm summoned, create a random Dragon in hand.", + "descriptionRaw": "When I'm summoned, create a random Dragon in hand.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "Dragon Egg (Screeching Dragon, Draco Murmurationis) \nLocation: Recovered by researcher Anden Mayne on Expedition. \nNotes: Gestation period unknown. Incubation continued. Recent movement observed within shell. Egg responds to heat, light, hammer. Current studies inconclusive. \n- Notes of Anden Mayne, Egghead Researcher", + "artistName": "SIXMOREVODKA", + "name": "Egghead Researcher", + "cardCode": "03DE005", + "keywords": [], + "keywordRefs": [], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "COMMON", + "rarityRef": "Common", + "subtypes": [], + "supertype": "", + "type": "Unit", + "collectible": true, + "set": "Set3" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set3/en_us/img/cards/03DE007.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set3/en_us/img/cards/03DE007-full.png" + } + ], + "regions": [ + "Demacia" + ], + "regionRefs": [ + "Demacia" + ], + "attack": 9, + "cost": 9, + "health": 6, + "description": "When I'm summoned, grant other Dragon allies everywhere +2|+2.", + "descriptionRaw": "When I'm summoned, grant other Dragon allies everywhere +2|+2.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "When Demacia underwent a sudden spate of dragon attacks, Shyvana knew that Kadregrin the Infernal was to blame. Other dragons, inspired by his bold nature and powerful flame, drove the Demacians to fear. ", + "artistName": "SIXMOREVODKA", + "name": "Kadregrin the Infernal", + "cardCode": "03DE007", + "keywords": [ + "Fury" + ], + "keywordRefs": [ + "Fury" + ], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "EPIC", + "rarityRef": "Epic", + "subtypes": [ + "DRAGON" + ], + "supertype": "", + "type": "Unit", + "collectible": true, + "set": "Set3" + }, + { + "associatedCards": [], + "associatedCardRefs": [ + "01DE016" + ], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set3/en_us/img/cards/03DE012.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set3/en_us/img/cards/03DE012-full.png" + } + ], + "regions": [ + "Demacia" + ], + "regionRefs": [ + "Demacia" + ], + "attack": 0, + "cost": 8, + "health": 0, + "description": "When you summon an Elite, reduce my cost by 1.\r\nFor each ally that died this round, summon a Dauntless Vanguard.", + "descriptionRaw": "When you summon an Elite, reduce my cost by 1.\r\nFor each ally that died this round, summon a Dauntless Vanguard.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"If a soldier falls, another must take their place. Our banner must never fall.\" - Garen", + "artistName": "Kudos Productions", + "name": "For The Fallen", + "cardCode": "03DE012", + "keywords": [ + "Slow" + ], + "keywordRefs": [ + "Slow" + ], + "spellSpeed": "Slow", + "spellSpeedRef": "Slow", + "rarity": "EPIC", + "rarityRef": "Epic", + "subtypes": [], + "supertype": "", + "type": "Spell", + "collectible": true, + "set": "Set3" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set3/en_us/img/cards/03DE014.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set3/en_us/img/cards/03DE014-full.png" + } + ], + "regions": [ + "Demacia" + ], + "regionRefs": [ + "Demacia" + ], + "attack": 0, + "cost": 2, + "health": 0, + "description": "Give an ally +1|+2 and \"I can block units with Elusive\" this round.", + "descriptionRaw": "Give an ally +1|+2 and \"I can block units with Elusive\" this round.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "Any who would dare breach Demacia's walls will find a full company awaiting them--forewarned and heavily armed.", + "artistName": "Kudos Productions", + "name": "Sharpsight", + "cardCode": "03DE014", + "keywords": [ + "Burst" + ], + "keywordRefs": [ + "Burst" + ], + "spellSpeed": "Burst", + "spellSpeedRef": "Burst", + "rarity": "COMMON", + "rarityRef": "Common", + "subtypes": [], + "supertype": "", + "type": "Spell", + "collectible": true, + "set": "Set3" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set3/en_us/img/cards/03FR020.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set3/en_us/img/cards/03FR020-full.png" + } + ], + "regions": [ + "Freljord" + ], + "regionRefs": [ + "Freljord" + ], + "attack": 0, + "cost": 3, + "health": 0, + "description": "When an ally survives damage, grant it +1|+0 and Tough.", + "descriptionRaw": "When an ally survives damage, grant it +1|+0 and Tough.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "There are many places of honor among the Winter's Claw, but one of the greatest is The Scargrounds, where damaged war vessels that have returned from raids are repurposed as gathering halls for warriors and their kin. These ships embody the tribe that built them--resilient and adaptable.", + "artistName": "SIXMOREVODKA", + "name": "The Scargrounds", + "cardCode": "03FR020", + "keywords": [ + "Landmark" + ], + "keywordRefs": [ + "LandmarkVisualOnly" + ], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "EPIC", + "rarityRef": "Epic", + "subtypes": [], + "supertype": "", + "type": "Landmark", + "collectible": true, + "set": "Set3" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set3/en_us/img/cards/03FR007.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set3/en_us/img/cards/03FR007-full.png" + } + ], + "regions": [ + "Freljord" + ], + "regionRefs": [ + "Freljord" + ], + "attack": 1, + "cost": 2, + "health": 3, + "description": "When I'm summoned, if you Behold an 8+ cost card, grant me +3|+0.", + "descriptionRaw": "When I'm summoned, if you Behold an 8+ cost card, grant me +3|+0.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "The scout knelt by a tattered edge of cloth hidden in the snow, where the scent of human sweat and fire smoke lingered in the cold air.\nHe pulled the material free and saw at one end, a talisman dangled, dull under the stormy sky. Avarosan. ", + "artistName": "Wild Blue Studio", + "name": "Troll Scavenger", + "cardCode": "03FR007", + "keywords": [], + "keywordRefs": [], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "COMMON", + "rarityRef": "Common", + "subtypes": [], + "supertype": "", + "type": "Unit", + "collectible": true, + "set": "Set3" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set3/en_us/img/cards/03FR004.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set3/en_us/img/cards/03FR004-full.png" + } + ], + "regions": [ + "Freljord" + ], + "regionRefs": [ + "Freljord" + ], + "attack": 0, + "cost": 7, + "health": 0, + "description": "Pick a unit in your hand to reveal. Heal your Nexus equal to its Power.\r\nEnlightened: Reduce its cost to 0.", + "descriptionRaw": "Pick a unit in your hand to reveal. Heal your Nexus equal to its Power.\r\nEnlightened: Reduce its cost to 0.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"Fully grown trolls have thick hides and dense bones that heal quickly, making them terrible, tenacious foes. Cut them down quickly, lest they recover to fight again another day.\" - Avarosan Marksman", + "artistName": "Kudos Productions", + "name": "Revitalizing Roar", + "cardCode": "03FR004", + "keywords": [ + "Slow" + ], + "keywordRefs": [ + "Slow" + ], + "spellSpeed": "Slow", + "spellSpeedRef": "Slow", + "rarity": "RARE", + "rarityRef": "Rare", + "subtypes": [], + "supertype": "", + "type": "Spell", + "collectible": true, + "set": "Set3" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set3/en_us/img/cards/03FR017.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set3/en_us/img/cards/03FR017-full.png" + } + ], + "regions": [ + "Freljord" + ], + "regionRefs": [ + "Freljord" + ], + "attack": 5, + "cost": 6, + "health": 5, + "description": "Play: If you Behold an 8+ cost card, grant an ally Overwhelm and Regeneration.", + "descriptionRaw": "Play: If you Behold an 8+ cost card, grant an ally Overwhelm and Regeneration.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "It is said that very few trolls are taught the chants of the Old Ones, and that those who know them can call on their forebears to imbue their brethren with exceptional strength.", + "artistName": "Kudos Productions", + "name": "Augur of the Old Ones", + "cardCode": "03FR017", + "keywords": [ + "Overwhelm", + "Regeneration" + ], + "keywordRefs": [ + "Overwhelm", + "Regeneration" + ], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "RARE", + "rarityRef": "Rare", + "subtypes": [], + "supertype": "", + "type": "Unit", + "collectible": true, + "set": "Set3" + }, + { + "associatedCards": [], + "associatedCardRefs": [ + "03FR006T1", + "03FR006T3", + "03FR006T2" + ], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set3/en_us/img/cards/03FR006.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set3/en_us/img/cards/03FR006-full.png" + } + ], + "regions": [ + "Freljord" + ], + "regionRefs": [ + "Freljord" + ], + "attack": 4, + "cost": 5, + "health": 6, + "description": "When I'm summoned, create an Ice Pillar in hand.", + "descriptionRaw": "When I'm summoned, create an Ice Pillar in hand.", + "levelupDescription": "I've seen you play Ice Pillar.", + "levelupDescriptionRaw": "I've seen you play Ice Pillar.", + "flavorText": "One by one, torches lit along the pass, throwing the scene into sharp relief. There were dozens of trolls, maybe hundreds, each one hulking, massive, and deadly.\n\"I'll ask one more time,\" Trundle snarled, hefting Boneshiver over one shoulder. \"Are you gonna give up, or am I gonna have to break your skulls?\"", + "artistName": "SIXMOREVODKA", + "name": "Trundle", + "cardCode": "03FR006", + "keywords": [ + "Regeneration" + ], + "keywordRefs": [ + "Regeneration" + ], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "Champion", + "rarityRef": "Champion", + "subtypes": [], + "supertype": "Champion", + "type": "Unit", + "collectible": true, + "set": "Set3" + }, + { + "associatedCards": [], + "associatedCardRefs": [ + "03FR006T1", + "03FR006T3", + "03FR006" + ], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set3/en_us/img/cards/03FR006T2.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set3/en_us/img/cards/03FR006T2-full.png" + } + ], + "regions": [ + "Freljord" + ], + "regionRefs": [ + "Freljord" + ], + "attack": 5, + "cost": 5, + "health": 7, + "description": "When I'm summoned, create an Ice Pillar in hand.\r\nAttack: Grant me +1|+0 for each 8+ cost card you Behold.", + "descriptionRaw": "When I'm summoned, create an Ice Pillar in hand.\r\nAttack: Grant me +1|+0 for each 8+ cost card you Behold.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "The Avarosans refused. Trundle gestured, and, like an avalanche, the trolls descended with such momentum that it carried them on for miles afterward, deep into the Avarosan tribelands, battering and breaking everything in their path without reserve.", + "artistName": "SIXMOREVODKA", + "name": "Trundle", + "cardCode": "03FR006T2", + "keywords": [ + "Overwhelm", + "Regeneration" + ], + "keywordRefs": [ + "Overwhelm", + "Regeneration" + ], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "None", + "rarityRef": "None", + "subtypes": [], + "supertype": "Champion", + "type": "Unit", + "collectible": false, + "set": "Set3" + }, + { + "associatedCards": [], + "associatedCardRefs": [ + "03FR006T1", + "03FR006", + "03FR006T2" + ], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set3/en_us/img/cards/03FR006T3.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set3/en_us/img/cards/03FR006T3-full.png" + } + ], + "regions": [ + "Freljord" + ], + "regionRefs": [ + "Freljord" + ], + "attack": 0, + "cost": 8, + "health": 0, + "description": "Give ALL units -3|-0 this round. Deal 3 to ALL units.\r\nCreate a Trundle in your deck.", + "descriptionRaw": "Give ALL units -3|-0 this round. Deal 3 to ALL units.\r\nCreate a Trundle in your deck.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"Bury 'em alive!\" - Trundle", + "artistName": "Kudos Productions", + "name": "Trundle's Icequake", + "cardCode": "03FR006T3", + "keywords": [ + "Slow" + ], + "keywordRefs": [ + "Slow" + ], + "spellSpeed": "Slow", + "spellSpeedRef": "Slow", + "rarity": "None", + "rarityRef": "None", + "subtypes": [], + "supertype": "Champion", + "type": "Spell", + "collectible": false, + "set": "Set3" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set3/en_us/img/cards/03FR006T1.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set3/en_us/img/cards/03FR006T1-full.png" + } + ], + "regions": [ + "Freljord" + ], + "regionRefs": [ + "Freljord" + ], + "attack": 0, + "cost": 8, + "health": 6, + "description": "Play: Refill 8 mana.\r\nPlay and Round Start: Give the strongest enemy Vulnerable this round.", + "descriptionRaw": "Play: Refill 8 mana.\r\nPlay and Round Start: Give the strongest enemy Vulnerable this round.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"Haha! You didn't see that coming!\" - Trundle", + "artistName": "Kudos Productions", + "name": "Ice Pillar", + "cardCode": "03FR006T1", + "keywords": [ + "Vulnerable" + ], + "keywordRefs": [ + "Vulnerable" + ], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "None", + "rarityRef": "None", + "subtypes": [], + "supertype": "", + "type": "Unit", + "collectible": false, + "set": "Set3" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set3/en_us/img/cards/03FR008.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set3/en_us/img/cards/03FR008-full.png" + } + ], + "regions": [ + "Freljord" + ], + "regionRefs": [ + "Freljord" + ], + "attack": 0, + "cost": 8, + "health": 0, + "description": "Give ALL units -3|-0 this round. Deal 3 to ALL units.", + "descriptionRaw": "Give ALL units -3|-0 this round. Deal 3 to ALL units.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"Bury 'em alive!\" - Trundle", + "artistName": "Kudos Productions", + "name": "Icequake ", + "cardCode": "03FR008", + "keywords": [ + "Slow" + ], + "keywordRefs": [ + "Slow" + ], + "spellSpeed": "Slow", + "spellSpeedRef": "Slow", + "rarity": "EPIC", + "rarityRef": "Epic", + "subtypes": [], + "supertype": "", + "type": "Spell", + "collectible": true, + "set": "Set3" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set3/en_us/img/cards/03FR002.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set3/en_us/img/cards/03FR002-full.png" + } + ], + "regions": [ + "Freljord" + ], + "regionRefs": [ + "Freljord" + ], + "attack": 0, + "cost": 2, + "health": 0, + "description": "Give an ally +0|+2 to give an enemy -2|-0 this round.", + "descriptionRaw": "Give an ally +0|+2 to give an enemy -2|-0 this round.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "Troll chants are highly varied. They differ from group to group, and are often incomprehensible. They are all, however, terrifying to witness. ", + "artistName": "Kudos Productions", + "name": "Troll Chant", + "cardCode": "03FR002", + "keywords": [ + "Burst" + ], + "keywordRefs": [ + "Burst" + ], + "spellSpeed": "Burst", + "spellSpeedRef": "Burst", + "rarity": "COMMON", + "rarityRef": "Common", + "subtypes": [], + "supertype": "", + "type": "Spell", + "collectible": true, + "set": "Set3" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set3/en_us/img/cards/03FR011.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set3/en_us/img/cards/03FR011-full.png" + } + ], + "regions": [ + "Freljord" + ], + "regionRefs": [ + "Freljord" + ], + "attack": 7, + "cost": 8, + "health": 7, + "description": "", + "descriptionRaw": "", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "They felt it before they heard it, the ground trembling beneath their feet, but it quickly became audible, like distant thunder drawing closer.\nMeyrick lifted his head, eyes wide, listening.\n\"What is it?\" Anya whispered urgently, drawing her bow, but Meyrick was already sprinting back toward the path. \n\"RUN!\"", + "artistName": "MAR Studio", + "name": "Uzgar the Ancient", + "cardCode": "03FR011", + "keywords": [ + "Challenger", + "Regeneration" + ], + "keywordRefs": [ + "Challenger", + "Regeneration" + ], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "RARE", + "rarityRef": "Rare", + "subtypes": [], + "supertype": "", + "type": "Unit", + "collectible": true, + "set": "Set3" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set3/en_us/img/cards/03FR005.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set3/en_us/img/cards/03FR005-full.png" + } + ], + "regions": [ + "Freljord" + ], + "regionRefs": [ + "Freljord" + ], + "attack": 3, + "cost": 4, + "health": 5, + "description": "When I'm summoned, if you Behold an 8+ cost card, grant me Regeneration.", + "descriptionRaw": "When I'm summoned, if you Behold an 8+ cost card, grant me Regeneration.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "Once they were among the Avarosan huts, they called Hgar forward. With a laugh, she raised Snowsunder, ready to use the weapon to batter the wooden homes into little more than splinters.", + "artistName": "MAR Studio", + "name": "Troll Ravager", + "cardCode": "03FR005", + "keywords": [], + "keywordRefs": [], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "COMMON", + "rarityRef": "Common", + "subtypes": [], + "supertype": "", + "type": "Unit", + "collectible": true, + "set": "Set3" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set3/en_us/img/cards/03FR018.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set3/en_us/img/cards/03FR018-full.png" + } + ], + "regions": [ + "Freljord" + ], + "regionRefs": [ + "Freljord" + ], + "attack": 0, + "cost": 3, + "health": 0, + "description": "For the top 4 cards in your deck, draw each Yeti, Poro, and Elnuk. Then place the rest into your deck.", + "descriptionRaw": "For the top 4 cards in your deck, draw each Yeti, Poro, and Elnuk. Then place the rest into your deck.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"...an' then a BIIIIG HUUUGE ELNUK came FLYIN' out of the trees with a teeny lil' poro on his back an' there was a FRIENDLY YETI as well because he wanted to play with his friends an' they all ran down the mountain goin' RAAAAAWRRRR an' then...\" - Ingvar the Younger", + "artistName": "Kudos Productions", + "name": "Call the Wild", + "cardCode": "03FR018", + "keywords": [ + "Burst" + ], + "keywordRefs": [ + "Burst" + ], + "spellSpeed": "Burst", + "spellSpeedRef": "Burst", + "rarity": "COMMON", + "rarityRef": "Common", + "subtypes": [], + "supertype": "", + "type": "Spell", + "collectible": true, + "set": "Set3" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set3/en_us/img/cards/03FR010.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set3/en_us/img/cards/03FR010-full.png" + } + ], + "regions": [ + "Freljord" + ], + "regionRefs": [ + "Freljord" + ], + "attack": 0, + "cost": 2, + "health": 3, + "description": "Round Start: If you Behold an 8+ cost card, get an extra mana gem this round.", + "descriptionRaw": "Round Start: If you Behold an 8+ cost card, get an extra mana gem this round.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"Rise, Old Ones, rise,\nRule of ice, break the sky.\nRise, Old Ones, rise,\nBring us strength, them demise.\"\n- Troll chant", + "artistName": "Wild Blue Studio", + "name": "Faces of the Old Ones", + "cardCode": "03FR010", + "keywords": [], + "keywordRefs": [], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "COMMON", + "rarityRef": "Common", + "subtypes": [], + "supertype": "", + "type": "Unit", + "collectible": true, + "set": "Set3" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set3/en_us/img/cards/03FR019.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set3/en_us/img/cards/03FR019-full.png" + } + ], + "regions": [ + "Freljord" + ], + "regionRefs": [ + "Freljord" + ], + "attack": 0, + "cost": 8, + "health": 0, + "description": "Get 2 empty mana gems.\r\nFor the top 5 cards in your deck, draw each card that costs 8+. Then place the rest into your deck.", + "descriptionRaw": "Get 2 empty mana gems.\r\nFor the top 5 cards in your deck, draw each card that costs 8+. Then place the rest into your deck.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "For generations, Avarosan settlers heard strange, inexplicable sounds within the tumult of winter storms. Eventually, when they ventured much farther north, they finally discovered the source--ancient troll monoliths whispering in long-lost tongues as the wind swept through their yawning maws.", + "artistName": "Kudos Productions", + "name": "Voices of the Old Ones", + "cardCode": "03FR019", + "keywords": [ + "Burst" + ], + "keywordRefs": [ + "Burst" + ], + "spellSpeed": "Burst", + "spellSpeedRef": "Burst", + "rarity": "COMMON", + "rarityRef": "Common", + "subtypes": [], + "supertype": "", + "type": "Spell", + "collectible": true, + "set": "Set3" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set3/en_us/img/cards/03FR025.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set3/en_us/img/cards/03FR025-full.png" + } + ], + "regions": [ + "Freljord" + ], + "regionRefs": [ + "Freljord" + ], + "attack": 0, + "cost": 2, + "health": 0, + "description": "Grant an ally Regeneration. If they already have it, grant them +2|+2 instead.", + "descriptionRaw": "Grant an ally Regeneration. If they already have it, grant them +2|+2 instead.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "Pity those who see the promise of victory in a troll's blood.", + "artistName": "Kudos Productions", + "name": "Troll Gifts", + "cardCode": "03FR025", + "keywords": [ + "Burst" + ], + "keywordRefs": [ + "Burst" + ], + "spellSpeed": "Burst", + "spellSpeedRef": "Burst", + "rarity": "RARE", + "rarityRef": "Rare", + "subtypes": [], + "supertype": "", + "type": "Spell", + "collectible": true, + "set": "Set3" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set3/en_us/img/cards/03FR022.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set3/en_us/img/cards/03FR022-full.png" + } + ], + "regions": [ + "Freljord" + ], + "regionRefs": [ + "Freljord" + ], + "attack": 0, + "cost": 12, + "health": 0, + "description": "Summon 2 different, random champions from your hand and deck. Grow their stats up to 10|10.", + "descriptionRaw": "Summon 2 different, random champions from your hand and deck. Grow their stats up to 10|10.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"We got it all in our hands now\nSo can you handle what we're all about?\"\n- Ahri, 'POP/STARS'", + "artistName": "Kudos Productions", + "name": "Feel The Rush", + "cardCode": "03FR022", + "keywords": [ + "Slow" + ], + "keywordRefs": [ + "Slow" + ], + "spellSpeed": "Slow", + "spellSpeedRef": "Slow", + "rarity": "EPIC", + "rarityRef": "Epic", + "subtypes": [], + "supertype": "", + "type": "Spell", + "collectible": true, + "set": "Set3" + } +] \ No newline at end of file diff --git a/data/set3-en_us/metadata.json b/data/set3-en_us/metadata.json new file mode 100644 index 0000000..73ddb2d --- /dev/null +++ b/data/set3-en_us/metadata.json @@ -0,0 +1,5 @@ +{ + "locales": [ + "en_us" + ] +} \ No newline at end of file diff --git a/data/set4-en_us/COPYRIGHT b/data/set4-en_us/COPYRIGHT new file mode 100644 index 0000000..095081a --- /dev/null +++ b/data/set4-en_us/COPYRIGHT @@ -0,0 +1 @@ +Copyright Riot Games, Inc. 2019 \ No newline at end of file diff --git a/data/set4-en_us/README.md b/data/set4-en_us/README.md new file mode 100644 index 0000000..378a7b6 --- /dev/null +++ b/data/set4-en_us/README.md @@ -0,0 +1,40 @@ +metadata.json +{ + "locales": ["{string}", ...], + "clientHash": "{string}" + "gameplayDataHash": "{string}", + "timestamp": "{YYYYMMDDhhmm}", + "patchlineRef": "{string}" +} + +cards.json +[ + { + "id": "{cardCode}", + "idComponents": + { + "set": "setNumber", + "region": + { + "id": "{shortRegionCode}", + "name": "{regionName}" + } + } + "name": "{name}", + "type": "{type}", + "subType": "{subType}", + "superType": "{superType}", + "description": "{description}", + "keywords": [], + "associatedCards": [{cardCode}, ...] + "health": "{health}", + "attack": "{attack}", + "cost": "{cost}", + "assets": + { + "gameAbsolutePath": "http://{cdn}/{bundleName}/set1/en_us/img/card/game/{cardCode}.png" + } + + }, + {...} +] diff --git a/data/set4-en_us/en_us/data/set4-en_us.json b/data/set4-en_us/en_us/data/set4-en_us.json new file mode 100644 index 0000000..09bab08 --- /dev/null +++ b/data/set4-en_us/en_us/data/set4-en_us.json @@ -0,0 +1,14914 @@ +[ + { + "associatedCards": [], + "associatedCardRefs": [ + "04PZ001T3", + "04PZ001T2", + "04PZ007", + "04PZ001T4", + "04PZ011T1" + ], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set4/en_us/img/cards/04PZ001.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set4/en_us/img/cards/04PZ001-full.png" + } + ], + "regions": [ + "Piltover & Zaun" + ], + "regionRefs": [ + "PiltoverZaun" + ], + "attack": 4, + "cost": 4, + "health": 2, + "description": "Strike: Create a Fleeting Time Trick in hand.", + "descriptionRaw": "Strike: Create a Fleeting Time Trick in hand.", + "levelupDescription": "You've Predicted 4+ times. When I level up, create 3 Chronobreaks in your deck.", + "levelupDescriptionRaw": "You've Predicted 4+ times. When I level up, create 3 Chronobreaks in your deck.", + "flavorText": "It's not about how much time you have, it's about how you spend it.", + "artistName": "SIXMOREVODKA", + "name": "Ekko", + "cardCode": "04PZ001", + "keywords": [ + "Quick Attack" + ], + "keywordRefs": [ + "QuickStrike" + ], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "Champion", + "rarityRef": "Champion", + "subtypes": [], + "supertype": "Champion", + "type": "Unit", + "collectible": true, + "set": "Set4" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set4/en_us/img/cards/04PZ001T4.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set4/en_us/img/cards/04PZ001T4-full.png" + } + ], + "regions": [ + "Piltover & Zaun" + ], + "regionRefs": [ + "PiltoverZaun" + ], + "attack": 0, + "cost": 3, + "health": 0, + "description": "Revive all allies that died this round, then Rally. ", + "descriptionRaw": "Revive all allies that died this round, then Rally. ", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"Once more, for the first time.\" - Ekko", + "artistName": "Kudos Productions", + "name": "Chronobreak", + "cardCode": "04PZ001T4", + "keywords": [ + "Slow" + ], + "keywordRefs": [ + "Slow" + ], + "spellSpeed": "Slow", + "spellSpeedRef": "Slow", + "rarity": "None", + "rarityRef": "None", + "subtypes": [], + "supertype": "", + "type": "Spell", + "collectible": false, + "set": "Set4" + }, + { + "associatedCards": [], + "associatedCardRefs": [ + "04PZ011T1", + "04PZ001", + "04PZ001T3" + ], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set4/en_us/img/cards/04PZ001T2.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set4/en_us/img/cards/04PZ001T2-full.png" + } + ], + "regions": [ + "Piltover & Zaun" + ], + "regionRefs": [ + "PiltoverZaun" + ], + "attack": 0, + "cost": 2, + "health": 0, + "description": "Draw 1.\r\nCreate a Parallel Convergence in your deck.\r\nCreate an Ekko in your deck.", + "descriptionRaw": "Draw 1.\r\nCreate a Parallel Convergence in your deck.\r\nCreate an Ekko in your deck.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"Splitting the timelines...\" - Ekko", + "artistName": "Kudos Productions", + "name": "Ekko's Called Shot", + "cardCode": "04PZ001T2", + "keywords": [ + "Slow" + ], + "keywordRefs": [ + "Slow" + ], + "spellSpeed": "Slow", + "spellSpeedRef": "Slow", + "rarity": "None", + "rarityRef": "None", + "subtypes": [], + "supertype": "Champion", + "type": "Spell", + "collectible": false, + "set": "Set4" + }, + { + "associatedCards": [], + "associatedCardRefs": [ + "04PZ001", + "04PZ001T2", + "04PZ007", + "04PZ001T4", + "04PZ011T1" + ], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set4/en_us/img/cards/04PZ001T3.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set4/en_us/img/cards/04PZ001T3-full.png" + } + ], + "regions": [ + "Piltover & Zaun" + ], + "regionRefs": [ + "PiltoverZaun" + ], + "attack": 5, + "cost": 4, + "health": 3, + "description": "Strike: Create a Fleeting 0 cost Time Trick in hand.", + "descriptionRaw": "Strike: Create a Fleeting 0 cost Time Trick in hand.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "Ekko can't fix everyone's mistakes, but that'll never stop him from trying again, and again, and again, and...", + "artistName": "SIXMOREVODKA", + "name": "Ekko", + "cardCode": "04PZ001T3", + "keywords": [ + "Quick Attack" + ], + "keywordRefs": [ + "QuickStrike" + ], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "None", + "rarityRef": "None", + "subtypes": [], + "supertype": "Champion", + "type": "Unit", + "collectible": false, + "set": "Set4" + }, + { + "associatedCards": [], + "associatedCardRefs": [ + "04PZ005T1", + "04PZ005T2" + ], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set4/en_us/img/cards/04PZ005.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set4/en_us/img/cards/04PZ005-full.png" + } + ], + "regions": [ + "Piltover & Zaun" + ], + "regionRefs": [ + "PiltoverZaun" + ], + "attack": 1, + "cost": 2, + "health": 2, + "description": "When you summon another Chirean Sumpworker, Obliterate me and transform allied Chirean Sumpworkers everywhere into Sumpworks Posses.", + "descriptionRaw": "When you summon another Chirean Sumpworker, Obliterate me and transform allied Chirean Sumpworkers everywhere into Sumpworks Posses.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "The first Zaunite miners to discover the chirean thought them timid, simple creatures. But as the years passed, and as they grew comfortable with humans, they slowly revealed their close societal bonds, and their seemingly native understanding of technology.", + "artistName": "Dao Le", + "name": "Chirean Sumpworker", + "cardCode": "04PZ005", + "keywords": [ + "Elusive" + ], + "keywordRefs": [ + "Elusive" + ], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "COMMON", + "rarityRef": "Common", + "subtypes": [], + "supertype": "", + "type": "Unit", + "collectible": true, + "set": "Set4" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set4/en_us/img/cards/04PZ005T2.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set4/en_us/img/cards/04PZ005T2-full.png" + } + ], + "regions": [ + "Piltover & Zaun" + ], + "regionRefs": [ + "PiltoverZaun" + ], + "attack": 0, + "cost": 0, + "health": 0, + "description": "Deal 1 to enemies and the enemy Nexus.", + "descriptionRaw": "Deal 1 to enemies and the enemy Nexus.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "It takes a lot to upset a group of chirean, but when they get mad, everyone's gonna know about it.", + "artistName": "Kudos Productions", + "name": "Circuit Breaker", + "cardCode": "04PZ005T2", + "keywords": [ + "Skill" + ], + "keywordRefs": [ + "Skill" + ], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "None", + "rarityRef": "None", + "subtypes": [], + "supertype": "", + "type": "Ability", + "collectible": false, + "set": "Set4" + }, + { + "associatedCards": [], + "associatedCardRefs": [ + "04PZ005T2", + "04PZ005" + ], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set4/en_us/img/cards/04PZ005T1.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set4/en_us/img/cards/04PZ005T1-full.png" + } + ], + "regions": [ + "Piltover & Zaun" + ], + "regionRefs": [ + "PiltoverZaun" + ], + "attack": 4, + "cost": 2, + "health": 2, + "description": "Attack: Deal 1 to enemies and the enemy Nexus.", + "descriptionRaw": "Attack: Deal 1 to enemies and the enemy Nexus.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"They're sweet enough on their own, sure, but get a bunch of 'em together, and before you know it, they've built some madcap machine and are off knockin' down some part of the Lanes.\" - Zaunite machinist", + "artistName": "Dao Le", + "name": "Sumpworks Posse", + "cardCode": "04PZ005T1", + "keywords": [ + "Elusive" + ], + "keywordRefs": [ + "Elusive" + ], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "None", + "rarityRef": "None", + "subtypes": [], + "supertype": "", + "type": "Unit", + "collectible": false, + "set": "Set4" + }, + { + "associatedCards": [], + "associatedCardRefs": [ + "01PZ056T1", + "01PZ056T4", + "01PZ056T7", + "01PZ056T8", + "01PZ056T9", + "01PZ056T2", + "01PZ056T6", + "01PZ056T5", + "01PZ015" + ], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set4/en_us/img/cards/04PZ014.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set4/en_us/img/cards/04PZ014-full.png" + } + ], + "regions": [ + "Piltover & Zaun" + ], + "regionRefs": [ + "PiltoverZaun" + ], + "attack": 0, + "cost": 0, + "health": 0, + "description": "To play, spend all your mana. Summon random Turrets whose total cost equals the mana spent.", + "descriptionRaw": "To play, spend all your mana. Summon random Turrets whose total cost equals the mana spent.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"Not enough resources?! I built my first mechanized contraption with discarded clockwork parts and a rusted thermal capacitor. One must do what one can with what one has!\" - Heimerdinger", + "artistName": "Kudos Productions", + "name": "Production Surge", + "cardCode": "04PZ014", + "keywords": [ + "Slow" + ], + "keywordRefs": [ + "Slow" + ], + "spellSpeed": "Slow", + "spellSpeedRef": "Slow", + "rarity": "RARE", + "rarityRef": "Rare", + "subtypes": [], + "supertype": "", + "type": "Spell", + "collectible": true, + "set": "Set4" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set4/en_us/img/cards/04PZ003.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set4/en_us/img/cards/04PZ003-full.png" + } + ], + "regions": [ + "Piltover & Zaun" + ], + "regionRefs": [ + "PiltoverZaun" + ], + "attack": 0, + "cost": 2, + "health": 0, + "description": "To play, discard 1.\r\nDeal 1 to an enemy or the enemy Nexus, then deal 1 to another.", + "descriptionRaw": "To play, discard 1.\r\nDeal 1 to an enemy or the enemy Nexus, then deal 1 to another.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"Look out!\" - Ekko", + "artistName": "Kudos Productions", + "name": "Timewinder", + "cardCode": "04PZ003", + "keywords": [ + "Fast" + ], + "keywordRefs": [ + "Fast" + ], + "spellSpeed": "Fast", + "spellSpeedRef": "Fast", + "rarity": "COMMON", + "rarityRef": "Common", + "subtypes": [], + "supertype": "", + "type": "Spell", + "collectible": true, + "set": "Set4" + }, + { + "associatedCards": [], + "associatedCardRefs": [ + "04PZ011T1" + ], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set4/en_us/img/cards/04PZ011.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set4/en_us/img/cards/04PZ011-full.png" + } + ], + "regions": [ + "Piltover & Zaun" + ], + "regionRefs": [ + "PiltoverZaun" + ], + "attack": 0, + "cost": 2, + "health": 0, + "description": "Draw 1.\r\nCreate a Parallel Convergence in your deck.", + "descriptionRaw": "Draw 1.\r\nCreate a Parallel Convergence in your deck.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"Splitting the timelines...\" - Ekko", + "artistName": "Kudos Productions", + "name": "Called Shot", + "cardCode": "04PZ011", + "keywords": [ + "Slow" + ], + "keywordRefs": [ + "Slow" + ], + "spellSpeed": "Slow", + "spellSpeedRef": "Slow", + "rarity": "EPIC", + "rarityRef": "Epic", + "subtypes": [], + "supertype": "", + "type": "Spell", + "collectible": true, + "set": "Set4" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set4/en_us/img/cards/04PZ011T1.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set4/en_us/img/cards/04PZ011T1-full.png" + } + ], + "regions": [ + "Piltover & Zaun" + ], + "regionRefs": [ + "PiltoverZaun" + ], + "attack": 0, + "cost": 4, + "health": 0, + "description": "Start a free attack with an exact Ephemeral copy of each ally.", + "descriptionRaw": "Start a free attack with an exact Ephemeral copy of each ally.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"Converging!\" - Ekko", + "artistName": "Kudos Productions", + "name": "Parallel Convergence", + "cardCode": "04PZ011T1", + "keywords": [ + "Slow" + ], + "keywordRefs": [ + "Slow" + ], + "spellSpeed": "Slow", + "spellSpeedRef": "Slow", + "rarity": "None", + "rarityRef": "None", + "subtypes": [], + "supertype": "", + "type": "Spell", + "collectible": false, + "set": "Set4" + }, + { + "associatedCards": [], + "associatedCardRefs": [ + "04PZ002T1" + ], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set4/en_us/img/cards/04PZ002.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set4/en_us/img/cards/04PZ002-full.png" + } + ], + "regions": [ + "Piltover & Zaun" + ], + "regionRefs": [ + "PiltoverZaun" + ], + "attack": 2, + "cost": 1, + "health": 1, + "description": "When I'm summoned, create a Hexite Crystal in the bottom 10 cards of your deck.", + "descriptionRaw": "When I'm summoned, create a Hexite Crystal in the bottom 10 cards of your deck.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"BUT MY PLAAAANNN--MEEEOOOOOW!\"", + "artistName": "Dao Le", + "name": "Fallen Feline", + "cardCode": "04PZ002", + "keywords": [], + "keywordRefs": [], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "RARE", + "rarityRef": "Rare", + "subtypes": [], + "supertype": "", + "type": "Unit", + "collectible": true, + "set": "Set4" + }, + { + "associatedCards": [], + "associatedCardRefs": [ + "04PZ020T1" + ], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set4/en_us/img/cards/04PZ020.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set4/en_us/img/cards/04PZ020-full.png" + } + ], + "regions": [ + "Piltover & Zaun" + ], + "regionRefs": [ + "PiltoverZaun" + ], + "attack": 4, + "cost": 4, + "health": 3, + "description": "Play: Swap my stats with another unit.", + "descriptionRaw": "Play: Swap my stats with another unit.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"A new slotbot? Didn't they shut down the plant that made these years ago?\"\n\"I thought so. Something about 'rolling bombs' and 'unintended conflagration.\"\n\"Huh.\"\n\"...Wanna play?\"\n\"Absolutely yes.\"\n- Zaunite patrons", + "artistName": "Kudos Productions", + "name": "Defective Swapbot", + "cardCode": "04PZ020", + "keywords": [], + "keywordRefs": [], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "RARE", + "rarityRef": "Rare", + "subtypes": [], + "supertype": "", + "type": "Unit", + "collectible": true, + "set": "Set4" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set4/en_us/img/cards/04PZ013.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set4/en_us/img/cards/04PZ013-full.png" + } + ], + "regions": [ + "Piltover & Zaun" + ], + "regionRefs": [ + "PiltoverZaun" + ], + "attack": 3, + "cost": 3, + "health": 4, + "description": "When I'm summoned, create a random Elnuk in the top 6 cards of your deck.", + "descriptionRaw": "When I'm summoned, create a random Elnuk in the top 6 cards of your deck.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"OKAY, LITTLE BUDDY, YOU JUST SIT STILL WHILE I FLIP THIS SWITCHAROO OVER HEEERE AND BOOM! HA! ELNUKS FOREVER! We're totally gonna need more grass. And room.\" - Practical Perfectionist", + "artistName": "Dao Le", + "name": "Volunteer Elnuk", + "cardCode": "04PZ013", + "keywords": [], + "keywordRefs": [], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "RARE", + "rarityRef": "Rare", + "subtypes": [ + "ELNUK" + ], + "supertype": "", + "type": "Unit", + "collectible": true, + "set": "Set4" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set4/en_us/img/cards/04PZ002T1.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set4/en_us/img/cards/04PZ002T1-full.png" + } + ], + "regions": [ + "Piltover & Zaun" + ], + "regionRefs": [ + "PiltoverZaun" + ], + "attack": 0, + "cost": 2, + "health": 0, + "description": "If you see me in a Prediction, draw me.\r\nDeal 2 to enemies and the enemy Nexus.", + "descriptionRaw": "If you see me in a Prediction, draw me.\r\nDeal 2 to enemies and the enemy Nexus.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"Strange how such a small thing could change the world so fundamentally. Strange, too, how that cat seems so intent on getting his paws on a sample. I suspect he enjoys the way light bounces through the crystal!\" - Hextech researcher", + "artistName": "Kudos Productions", + "name": "Hexite Crystal", + "cardCode": "04PZ002T1", + "keywords": [ + "Fast" + ], + "keywordRefs": [ + "Fast" + ], + "spellSpeed": "Fast", + "spellSpeedRef": "Fast", + "rarity": "None", + "rarityRef": "None", + "subtypes": [], + "supertype": "", + "type": "Spell", + "collectible": false, + "set": "Set4" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set4/en_us/img/cards/04PZ010.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set4/en_us/img/cards/04PZ010-full.png" + } + ], + "regions": [ + "Piltover & Zaun" + ], + "regionRefs": [ + "PiltoverZaun" + ], + "attack": 0, + "cost": 1, + "health": 0, + "description": "For the rest of the game, the first time you play a follower each round, pick 1 of 3 followers with the same cost to transform it into.", + "descriptionRaw": "For the rest of the game, the first time you play a follower each round, pick 1 of 3 followers with the same cost to transform it into.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"We're playing by MY rules.\" - Ekko", + "artistName": "Kudos Productions", + "name": "Concurrent Timelines", + "cardCode": "04PZ010", + "keywords": [ + "Slow" + ], + "keywordRefs": [ + "Slow" + ], + "spellSpeed": "Slow", + "spellSpeedRef": "Slow", + "rarity": "EPIC", + "rarityRef": "Epic", + "subtypes": [], + "supertype": "", + "type": "Spell", + "collectible": true, + "set": "Set4" + }, + { + "associatedCards": [], + "associatedCardRefs": [ + "01PZ012" + ], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set4/en_us/img/cards/04PZ016.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set4/en_us/img/cards/04PZ016-full.png" + } + ], + "regions": [ + "Piltover & Zaun" + ], + "regionRefs": [ + "PiltoverZaun" + ], + "attack": 3, + "cost": 2, + "health": 1, + "description": "When I'm summoned, create a Flame Chompers! in hand.", + "descriptionRaw": "When I'm summoned, create a Flame Chompers! in hand.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "Jinx had a more conventional supplier once, but the two of them had a small falling out. By which we mean, the supplier fell out of a window. By which we mean, the supplier was blown out of a window. By Jinx.", + "artistName": "Kudos Production", + "name": "Boom Baboon", + "cardCode": "04PZ016", + "keywords": [], + "keywordRefs": [], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "COMMON", + "rarityRef": "Common", + "subtypes": [], + "supertype": "", + "type": "Unit", + "collectible": true, + "set": "Set4" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set4/en_us/img/cards/04PZ007.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set4/en_us/img/cards/04PZ007-full.png" + } + ], + "regions": [ + "Piltover & Zaun" + ], + "regionRefs": [ + "PiltoverZaun" + ], + "attack": 0, + "cost": 2, + "health": 0, + "description": "Predict, then draw 1.", + "descriptionRaw": "Predict, then draw 1.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"The future's what I make it...\" - Ekko", + "artistName": "Kudos Productions", + "name": "Time Trick", + "cardCode": "04PZ007", + "keywords": [ + "Burst" + ], + "keywordRefs": [ + "Burst" + ], + "spellSpeed": "Burst", + "spellSpeedRef": "Burst", + "rarity": "COMMON", + "rarityRef": "Common", + "subtypes": [], + "supertype": "", + "type": "Spell", + "collectible": true, + "set": "Set4" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set4/en_us/img/cards/04PZ012.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set4/en_us/img/cards/04PZ012-full.png" + } + ], + "regions": [ + "Piltover & Zaun" + ], + "regionRefs": [ + "PiltoverZaun" + ], + "attack": 4, + "cost": 3, + "health": 2, + "description": "Play: Predict. Create 3 copies of the chosen card in your deck.", + "descriptionRaw": "Play: Predict. Create 3 copies of the chosen card in your deck.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"Kay's awesome. She's got that whole 'practice makes perfect' mentality, you know? And boyyy does she practice.\" - Shomi", + "artistName": "Dao Le", + "name": "Practical Perfectionist", + "cardCode": "04PZ012", + "keywords": [], + "keywordRefs": [], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "RARE", + "rarityRef": "Rare", + "subtypes": [], + "supertype": "", + "type": "Unit", + "collectible": true, + "set": "Set4" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set4/en_us/img/cards/04PZ020T1.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set4/en_us/img/cards/04PZ020T1-full.png" + } + ], + "regions": [ + "Piltover & Zaun" + ], + "regionRefs": [ + "PiltoverZaun" + ], + "attack": 0, + "cost": 0, + "health": 0, + "description": "Swap my Power and Health with that of another unit.", + "descriptionRaw": "Swap my Power and Health with that of another unit.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"Dealer's choice!\" - Defective Swapbot", + "artistName": "Kudos Productions", + "name": "Swapbot's Swap", + "cardCode": "04PZ020T1", + "keywords": [ + "Skill" + ], + "keywordRefs": [ + "Skill" + ], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "COMMON", + "rarityRef": "Common", + "subtypes": [], + "supertype": "", + "type": "Ability", + "collectible": false, + "set": "Set4" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set4/en_us/img/cards/04PZ017.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set4/en_us/img/cards/04PZ017-full.png" + } + ], + "regions": [ + "Piltover & Zaun" + ], + "regionRefs": [ + "PiltoverZaun" + ], + "attack": 0, + "cost": 10, + "health": 0, + "description": "Your cards have -1 cost, Augment, are created by Glorious Evolution, and are now Tech.", + "descriptionRaw": "Your cards have -1 cost, Augment, are created by Glorious Evolution, and are now Tech.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"Progress is everything. I will bring the future to this city, whether it is ready or not.\" - Viktor", + "artistName": "Kudos Productions", + "name": "Glorious Evolution", + "cardCode": "04PZ017", + "keywords": [ + "Slow" + ], + "keywordRefs": [ + "Slow" + ], + "spellSpeed": "Slow", + "spellSpeedRef": "Slow", + "rarity": "EPIC", + "rarityRef": "Epic", + "subtypes": [], + "supertype": "", + "type": "Spell", + "collectible": true, + "set": "Set4" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set4/en_us/img/cards/04PZ015.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set4/en_us/img/cards/04PZ015-full.png" + } + ], + "regions": [ + "Piltover & Zaun" + ], + "regionRefs": [ + "PiltoverZaun" + ], + "attack": 1, + "cost": 1, + "health": 3, + "description": "When you summon a Tech, we share keywords.", + "descriptionRaw": "When you summon a Tech, we share keywords.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"Ah yes! The Adaptatron 3000! Adaptable, inventive, AND quite the looker! If the fellow could speak, I'm sure we'd have MUCH to share with each other.\" - Heimerdinger", + "artistName": "Kudos Productions", + "name": "Adaptatron 3000", + "cardCode": "04PZ015", + "keywords": [], + "keywordRefs": [], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "EPIC", + "rarityRef": "Epic", + "subtypes": [ + "TECH" + ], + "supertype": "", + "type": "Unit", + "collectible": true, + "set": "Set4" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set4/en_us/img/cards/04PZ004.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set4/en_us/img/cards/04PZ004-full.png" + } + ], + "regions": [ + "Piltover & Zaun" + ], + "regionRefs": [ + "PiltoverZaun" + ], + "attack": 1, + "cost": 1, + "health": 3, + "description": "If you see me in a Prediction, summon me.", + "descriptionRaw": "If you see me in a Prediction, summon me.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"Ahh, Shomi's a GENIUS with that hoverboard. I once saw them switch a sumpgrinder into a bottomboard backslide, then catch air with a three-point triple dip! Or something. Look, the point is, they're awesome, okay?\" - Practical Perfectionist", + "artistName": "Dao Le", + "name": "Dropboarder", + "cardCode": "04PZ004", + "keywords": [], + "keywordRefs": [], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "COMMON", + "rarityRef": "Common", + "subtypes": [], + "supertype": "", + "type": "Unit", + "collectible": true, + "set": "Set4" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set4/en_us/img/cards/04BW002.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set4/en_us/img/cards/04BW002-full.png" + } + ], + "regions": [ + "Bilgewater" + ], + "regionRefs": [ + "Bilgewater" + ], + "attack": 0, + "cost": 2, + "health": 0, + "description": "An ally strikes an enemy, then moves to the top of your deck.", + "descriptionRaw": "An ally strikes an enemy, then moves to the top of your deck.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"Little parting gift...\" - Pyke", + "artistName": "Kudos Productions", + "name": "Bone Skewer", + "cardCode": "04BW002", + "keywords": [ + "Fast" + ], + "keywordRefs": [ + "Fast" + ], + "spellSpeed": "Fast", + "spellSpeedRef": "Fast", + "rarity": "EPIC", + "rarityRef": "Epic", + "subtypes": [], + "supertype": "", + "type": "Spell", + "collectible": true, + "set": "Set4" + }, + { + "associatedCards": [], + "associatedCardRefs": [ + "04BW007T1" + ], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set4/en_us/img/cards/04BW007.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set4/en_us/img/cards/04BW007-full.png" + } + ], + "regions": [ + "Bilgewater" + ], + "regionRefs": [ + "Bilgewater" + ], + "attack": 2, + "cost": 8, + "health": 7, + "description": "Play: Each Lurker ally strikes a random enemy.", + "descriptionRaw": "Play: Each Lurker ally strikes a random enemy.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"Ain't nothin' like a jaull-fish to show you who you can trust, and who you can kill.\" - Pyke", + "artistName": "MAR Studio", + "name": "Jaull-fish", + "cardCode": "04BW007", + "keywords": [ + "Lurk" + ], + "keywordRefs": [ + "Lurker" + ], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "EPIC", + "rarityRef": "Epic", + "subtypes": [ + "LURKER" + ], + "supertype": "", + "type": "Unit", + "collectible": true, + "set": "Set4" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set4/en_us/img/cards/04BW001.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set4/en_us/img/cards/04BW001-full.png" + } + ], + "regions": [ + "Bilgewater" + ], + "regionRefs": [ + "Bilgewater" + ], + "attack": 1, + "cost": 2, + "health": 2, + "description": "Play: Grant an enemy Vulnerable.", + "descriptionRaw": "Play: Grant an enemy Vulnerable.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "When a hammersnout breaks a ship's keel, it seems to do it for sheer entertainment. They rarely devour the crew they stranded, instead leaving a feast for the creatures that follow.", + "artistName": "JiHun Lee", + "name": "Redfin Hammersnout", + "cardCode": "04BW001", + "keywords": [ + "Lurk" + ], + "keywordRefs": [ + "Lurker" + ], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "COMMON", + "rarityRef": "Common", + "subtypes": [ + "LURKER" + ], + "supertype": "", + "type": "Unit", + "collectible": true, + "set": "Set4" + }, + { + "associatedCards": [], + "associatedCardRefs": [ + "04BW005T2", + "04BW005T1", + "04BW005T3" + ], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set4/en_us/img/cards/04BW005.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set4/en_us/img/cards/04BW005-full.png" + } + ], + "regions": [ + "Bilgewater" + ], + "regionRefs": [ + "Bilgewater" + ], + "attack": 1, + "cost": 4, + "health": 3, + "description": "When I Lurk, transform me into Death From Below.", + "descriptionRaw": "When I Lurk, transform me into Death From Below.", + "levelupDescription": "Allied Pykes have dealt 15+ damage.", + "levelupDescriptionRaw": "Allied Pykes have dealt 15+ damage.", + "flavorText": "\"...the visions are back again. I see his desperate eyes looking up at me whilst the jaull-fish closed its maw around him. We tried pulling, but the ship was too small, and the beast too big. I had no choice. I had to cut his line. I had to.\"\n- Blood-soaked letter", + "artistName": "SIXMOREVODKA", + "name": "Pyke", + "cardCode": "04BW005", + "keywords": [ + "Lurk", + "Quick Attack" + ], + "keywordRefs": [ + "Lurker", + "QuickStrike" + ], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "Champion", + "rarityRef": "Champion", + "subtypes": [ + "LURKER" + ], + "supertype": "Champion", + "type": "Unit", + "collectible": true, + "set": "Set4" + }, + { + "associatedCards": [], + "associatedCardRefs": [ + "04BW005" + ], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set4/en_us/img/cards/04BW005T3.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set4/en_us/img/cards/04BW005T3-full.png" + } + ], + "regions": [ + "Bilgewater" + ], + "regionRefs": [ + "Bilgewater" + ], + "attack": 0, + "cost": 4, + "health": 0, + "description": "Summon Pyke striking an enemy.", + "descriptionRaw": "Summon Pyke striking an enemy.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"Breach!\" - Pyke", + "artistName": "Kudos Productions", + "name": "Death From Below", + "cardCode": "04BW005T3", + "keywords": [ + "Fast", + "Lurk" + ], + "keywordRefs": [ + "Fast", + "Lurker" + ], + "spellSpeed": "Fast", + "spellSpeedRef": "Fast", + "rarity": "None", + "rarityRef": "None", + "subtypes": [ + "LURKER" + ], + "supertype": "Champion", + "type": "Spell", + "collectible": false, + "set": "Set4" + }, + { + "associatedCards": [], + "associatedCardRefs": [ + "04BW005", + "04BW005T1", + "04BW005T3" + ], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set4/en_us/img/cards/04BW005T2.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set4/en_us/img/cards/04BW005T2-full.png" + } + ], + "regions": [ + "Bilgewater" + ], + "regionRefs": [ + "Bilgewater" + ], + "attack": 2, + "cost": 4, + "health": 4, + "description": "When I Lurk, transform me into Death From Below.\r\nWhen I kill an enemy, I strike the weakest enemy.", + "descriptionRaw": "When I Lurk, transform me into Death From Below.\r\nWhen I kill an enemy, I strike the weakest enemy.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "First he came for his old crew, then other captains, then cheaters, gamblers, and drunkards. Pyke's craving for revenge slowly gave way to a newfound lust for murder. Now, instead of only listing those who once wronged him, his growing manifest only illustrates what Pyke has become.", + "artistName": "SIXMOREVODKA", + "name": "Pyke", + "cardCode": "04BW005T2", + "keywords": [ + "Lurk", + "Quick Attack" + ], + "keywordRefs": [ + "Lurker", + "QuickStrike" + ], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "None", + "rarityRef": "None", + "subtypes": [ + "LURKER" + ], + "supertype": "Champion", + "type": "Unit", + "collectible": false, + "set": "Set4" + }, + { + "associatedCards": [], + "associatedCardRefs": [ + "04BW005", + "04BW005T2" + ], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set4/en_us/img/cards/04BW005T1.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set4/en_us/img/cards/04BW005T1-full.png" + } + ], + "regions": [ + "Bilgewater" + ], + "regionRefs": [ + "Bilgewater" + ], + "attack": 0, + "cost": 2, + "health": 0, + "description": "An ally strikes an enemy, then moves to the top of your deck.\r\nCreate a Pyke in your deck.", + "descriptionRaw": "An ally strikes an enemy, then moves to the top of your deck.\r\nCreate a Pyke in your deck.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"Little parting gift...\" - Pyke", + "artistName": "Kudos Productions", + "name": "Pyke's Bone Skewer", + "cardCode": "04BW005T1", + "keywords": [ + "Fast" + ], + "keywordRefs": [ + "Fast" + ], + "spellSpeed": "Fast", + "spellSpeedRef": "Fast", + "rarity": "None", + "rarityRef": "None", + "subtypes": [], + "supertype": "Champion", + "type": "Spell", + "collectible": false, + "set": "Set4" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set4/en_us/img/cards/04BW010.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set4/en_us/img/cards/04BW010-full.png" + } + ], + "regions": [ + "Bilgewater" + ], + "regionRefs": [ + "Bilgewater" + ], + "attack": 0, + "cost": 6, + "health": 0, + "description": "Deal 5 to a unit.\r\nPlunder: I cost 2 less.", + "descriptionRaw": "Deal 5 to a unit.\r\nPlunder: I cost 2 less.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"The beast's been stuck already, lads! Now stick it again 'til it stops thrashin' and the waters've lost their blue!\" - Jagged Taskmaster", + "artistName": "Kudos Productions", + "name": "Monster Harpoon", + "cardCode": "04BW010", + "keywords": [ + "Fast", + "Plunder" + ], + "keywordRefs": [ + "Fast", + "Plunder" + ], + "spellSpeed": "Fast", + "spellSpeedRef": "Fast", + "rarity": "COMMON", + "rarityRef": "Common", + "subtypes": [], + "supertype": "", + "type": "Spell", + "collectible": true, + "set": "Set4" + }, + { + "associatedCards": [], + "associatedCardRefs": [ + "02BW032T1", + "04BW014T1" + ], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set4/en_us/img/cards/04BW014.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set4/en_us/img/cards/04BW014-full.png" + } + ], + "regions": [ + "Bilgewater" + ], + "regionRefs": [ + "Bilgewater" + ], + "attack": 0, + "cost": 2, + "health": 0, + "description": "Summon a Powder Keg.\r\nCreate a Knock 'Em Down in hand.", + "descriptionRaw": "Summon a Powder Keg.\r\nCreate a Knock 'Em Down in hand.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"Done as you asked, Cap'n. Give 'er a little spark and she'll kick back alright.\" - Dreadway Deckhand", + "artistName": "Kudos Productions", + "name": "Line 'Em Up", + "cardCode": "04BW014", + "keywords": [ + "Burst" + ], + "keywordRefs": [ + "Burst" + ], + "spellSpeed": "Burst", + "spellSpeedRef": "Burst", + "rarity": "COMMON", + "rarityRef": "Common", + "subtypes": [], + "supertype": "", + "type": "Spell", + "collectible": true, + "set": "Set4" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set4/en_us/img/cards/04BW011.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set4/en_us/img/cards/04BW011-full.png" + } + ], + "regions": [ + "Bilgewater" + ], + "regionRefs": [ + "Bilgewater" + ], + "attack": 0, + "cost": 4, + "health": 0, + "description": "For the rest of the round, when you damage the enemy Nexus, Nab 1.", + "descriptionRaw": "For the rest of the round, when you damage the enemy Nexus, Nab 1.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"So, what are you willin' to wager, friend?\" - Tahm Kench", + "artistName": "Kudos Productions", + "name": "Loaded Dice", + "cardCode": "04BW011", + "keywords": [ + "Slow" + ], + "keywordRefs": [ + "Slow" + ], + "spellSpeed": "Slow", + "spellSpeedRef": "Slow", + "rarity": "EPIC", + "rarityRef": "Epic", + "subtypes": [], + "supertype": "", + "type": "Spell", + "collectible": true, + "set": "Set4" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set4/en_us/img/cards/04BW015.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set4/en_us/img/cards/04BW015-full.png" + } + ], + "regions": [ + "Bilgewater" + ], + "regionRefs": [ + "Bilgewater" + ], + "attack": 1, + "cost": 1, + "health": 2, + "description": "", + "descriptionRaw": "", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"Might not look much, aye, but they're eager for blood. And if you let 'em at you, they'll know where to find it when they're bigger. Best wear yer gloves.\" - Jaull Hunters", + "artistName": "Kudos Productions", + "name": "Sharkling", + "cardCode": "04BW015", + "keywords": [ + "Lurk" + ], + "keywordRefs": [ + "Lurker" + ], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "COMMON", + "rarityRef": "Common", + "subtypes": [ + "LURKER" + ], + "supertype": "", + "type": "Unit", + "collectible": true, + "set": "Set4" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set4/en_us/img/cards/04BW003.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set4/en_us/img/cards/04BW003-full.png" + } + ], + "regions": [ + "Bilgewater" + ], + "regionRefs": [ + "Bilgewater" + ], + "attack": 0, + "cost": 2, + "health": 2, + "description": "Play: I start a free attack.", + "descriptionRaw": "Play: I start a free attack.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"Drip, drop, drip, drop, the blood splashes down,\nSwim, swim, comes the swarm, better now to drown,\nSnip, snap, go the teeth, and we all scream,\nTo the deep, off we sleep, for forever dreams!\"\n- Bilgewater nursery rhyme", + "artistName": "JiHun Lee", + "name": "Snapjaw Swarm", + "cardCode": "04BW003", + "keywords": [ + "Lurk" + ], + "keywordRefs": [ + "Lurker" + ], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "COMMON", + "rarityRef": "Common", + "subtypes": [ + "LURKER" + ], + "supertype": "", + "type": "Unit", + "collectible": true, + "set": "Set4" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set4/en_us/img/cards/04BW009.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set4/en_us/img/cards/04BW009-full.png" + } + ], + "regions": [ + "Bilgewater" + ], + "regionRefs": [ + "Bilgewater" + ], + "attack": 0, + "cost": 1, + "health": 0, + "description": "When allies attack, before Lurk tries to activate, obliterate the top card of your deck if it doesn't have Lurk.", + "descriptionRaw": "When allies attack, before Lurk tries to activate, obliterate the top card of your deck if it doesn't have Lurk.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "Bilgewater's more treacherous coves soon became home to all manner of sea beasts. There they lie, waiting for the next foolhardy crew to ignore the harbormaster's warnings.", + "artistName": "MAR Studio", + "name": "Ripper's Bay", + "cardCode": "04BW009", + "keywords": [ + "Lurk", + "Landmark" + ], + "keywordRefs": [ + "Lurker", + "LandmarkVisualOnly" + ], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "RARE", + "rarityRef": "Rare", + "subtypes": [], + "supertype": "", + "type": "Landmark", + "collectible": true, + "set": "Set4" + }, + { + "associatedCards": [], + "associatedCardRefs": [ + "02BW030T4", + "02BW030T1", + "02BW030T3", + "02BW030T2" + ], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set4/en_us/img/cards/04BW008.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set4/en_us/img/cards/04BW008-full.png" + } + ], + "regions": [ + "Bilgewater" + ], + "regionRefs": [ + "Bilgewater" + ], + "attack": 0, + "cost": 4, + "health": 0, + "description": "Draw a Treasure. If there aren't any to draw, create 2 Treasures in your deck instead.", + "descriptionRaw": "Draw a Treasure. If there aren't any to draw, create 2 Treasures in your deck instead.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"We're rich!\" - Jagged Butcher", + "artistName": "Kudos Productions", + "name": "Lost Riches", + "cardCode": "04BW008", + "keywords": [ + "Burst" + ], + "keywordRefs": [ + "Burst" + ], + "spellSpeed": "Burst", + "spellSpeedRef": "Burst", + "rarity": "RARE", + "rarityRef": "Rare", + "subtypes": [], + "supertype": "", + "type": "Spell", + "collectible": true, + "set": "Set4" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set4/en_us/img/cards/04BW014T1.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set4/en_us/img/cards/04BW014T1-full.png" + } + ], + "regions": [ + "Bilgewater" + ], + "regionRefs": [ + "Bilgewater" + ], + "attack": 0, + "cost": 1, + "health": 0, + "description": "Deal 1 to anything.", + "descriptionRaw": "Deal 1 to anything.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"A little spark, eh? I've just the thing...\" - Gangplank", + "artistName": "Kudos Productions", + "name": "Knock 'Em Down", + "cardCode": "04BW014T1", + "keywords": [ + "Fleeting", + "Slow" + ], + "keywordRefs": [ + "Fleeting", + "Slow" + ], + "spellSpeed": "Slow", + "spellSpeedRef": "Slow", + "rarity": "None", + "rarityRef": "None", + "subtypes": [], + "supertype": "", + "type": "Spell", + "collectible": false, + "set": "Set4" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set4/en_us/img/cards/04BW013.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set4/en_us/img/cards/04BW013-full.png" + } + ], + "regions": [ + "Bilgewater" + ], + "regionRefs": [ + "Bilgewater" + ], + "attack": 0, + "cost": 5, + "health": 0, + "description": "When I count down, summon a random 1 cost follower.\r\nCountdown 2: Grant 1 cost allies +2|+1 and Fearsome.", + "descriptionRaw": "When I count down, summon a random 1 cost follower.\r\nCountdown 2: Grant 1 cost allies +2|+1 and Fearsome.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"Ye think ye've got what it takes to call yourself a Hook, do ye? We'll see, ye tyke. By the time we're done with ye, ye'll either be worth yer weight, or ye'll be weighed down below the waves, bait fer the beasts!\" - Petty Officer", + "artistName": "Kudos Productions", + "name": "Reaver's Row", + "cardCode": "04BW013", + "keywords": [ + "Countdown", + "Landmark" + ], + "keywordRefs": [ + "Countdown", + "LandmarkVisualOnly" + ], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "RARE", + "rarityRef": "Rare", + "subtypes": [], + "supertype": "", + "type": "Landmark", + "collectible": true, + "set": "Set4" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set4/en_us/img/cards/04BW007T1.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set4/en_us/img/cards/04BW007T1-full.png" + } + ], + "regions": [ + "Bilgewater" + ], + "regionRefs": [ + "Bilgewater" + ], + "attack": 0, + "cost": 0, + "health": 0, + "description": "Each Lurker ally strikes a random enemy.", + "descriptionRaw": "Each Lurker ally strikes a random enemy.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"They hurt. I know.\" - Pyke", + "artistName": "Kudos Productions", + "name": "Frenzied Feast", + "cardCode": "04BW007T1", + "keywords": [ + "Skill" + ], + "keywordRefs": [ + "Skill" + ], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "None", + "rarityRef": "None", + "subtypes": [], + "supertype": "", + "type": "Ability", + "collectible": false, + "set": "Set4" + }, + { + "associatedCards": [], + "associatedCardRefs": [ + "04BW003" + ], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set4/en_us/img/cards/04BW004.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set4/en_us/img/cards/04BW004-full.png" + } + ], + "regions": [ + "Bilgewater" + ], + "regionRefs": [ + "Bilgewater" + ], + "attack": 0, + "cost": 1, + "health": 0, + "description": "Create a Snapjaw Swarm on top of your deck.", + "descriptionRaw": "Create a Snapjaw Swarm on top of your deck.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"If it were up ta me, I'd have a jaull-fish take me afore them bloody things. Sooner go fast than be left screamin' fer me mates to stick me while I'm eaten alive.\" - Jagged Butcher", + "artistName": "Kudos Productions", + "name": "Bloodbait", + "cardCode": "04BW004", + "keywords": [ + "Burst", + "Lurk" + ], + "keywordRefs": [ + "Burst", + "Lurker" + ], + "spellSpeed": "Burst", + "spellSpeedRef": "Burst", + "rarity": "COMMON", + "rarityRef": "Common", + "subtypes": [], + "supertype": "", + "type": "Spell", + "collectible": true, + "set": "Set4" + }, + { + "associatedCards": [], + "associatedCardRefs": [ + "02BW028T1" + ], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set4/en_us/img/cards/04BW016.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set4/en_us/img/cards/04BW016-full.png" + } + ], + "regions": [ + "Bilgewater" + ], + "regionRefs": [ + "Bilgewater" + ], + "attack": 4, + "cost": 5, + "health": 4, + "description": "Play: Play Cannon Barrage on randomly targeted enemies for each card you've drawn this round, up to 6 times. ", + "descriptionRaw": "Play: Play Cannon Barrage on randomly targeted enemies for each card you've drawn this round, up to 6 times. ", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"...Rex?\" - Petty Officer", + "artistName": "Kudos Productions", + "name": "Ruined Rex", + "cardCode": "04BW016", + "keywords": [], + "keywordRefs": [], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "RARE", + "rarityRef": "Rare", + "subtypes": [], + "supertype": "", + "type": "Unit", + "collectible": true, + "set": "Set4" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set4/en_us/img/cards/04BW006.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set4/en_us/img/cards/04BW006-full.png" + } + ], + "regions": [ + "Bilgewater" + ], + "regionRefs": [ + "Bilgewater" + ], + "attack": 0, + "cost": 0, + "health": 0, + "description": "Grant an enemy Vulnerable. If it's already Vulnerable, the strongest ally starts a free attack Challenging it.", + "descriptionRaw": "Grant an enemy Vulnerable. If it's already Vulnerable, the strongest ally starts a free attack Challenging it.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"You've got a name, and I've got a list.\" - Pyke", + "artistName": "Kudos Productions", + "name": "The List", + "cardCode": "04BW006", + "keywords": [ + "Slow" + ], + "keywordRefs": [ + "Slow" + ], + "spellSpeed": "Slow", + "spellSpeedRef": "Slow", + "rarity": "RARE", + "rarityRef": "Rare", + "subtypes": [], + "supertype": "", + "type": "Spell", + "collectible": true, + "set": "Set4" + }, + { + "associatedCards": [], + "associatedCardRefs": [ + "04IO010" + ], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set4/en_us/img/cards/04IO008.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set4/en_us/img/cards/04IO008-full.png" + } + ], + "regions": [ + "Ionia" + ], + "regionRefs": [ + "Ionia" + ], + "attack": 0, + "cost": 4, + "health": 0, + "description": "Recall a unit.\r\nBlade Dance 1.", + "descriptionRaw": "Recall a unit.\r\nBlade Dance 1.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"Fall back! It's time for another to take center stage!\" - Zinneia, Steel Crescendo", + "artistName": "Kudos Productions", + "name": "Defiant Dance", + "cardCode": "04IO008", + "keywords": [ + "Slow" + ], + "keywordRefs": [ + "Slow" + ], + "spellSpeed": "Slow", + "spellSpeedRef": "Slow", + "rarity": "COMMON", + "rarityRef": "Common", + "subtypes": [], + "supertype": "", + "type": "Spell", + "collectible": true, + "set": "Set4" + }, + { + "associatedCards": [], + "associatedCardRefs": [ + "04IO005T2", + "04IO005T1", + "04IO005T5", + "04IO005T4", + "04IO010" + ], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set4/en_us/img/cards/04IO005.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set4/en_us/img/cards/04IO005-full.png" + } + ], + "regions": [ + "Ionia" + ], + "regionRefs": [ + "Ionia" + ], + "attack": 3, + "cost": 3, + "health": 2, + "description": "When I'm summoned or Round Start: If you have the attack token, create a Flawless Duet in hand.", + "descriptionRaw": "When I'm summoned or Round Start: If you have the attack token, create a Flawless Duet in hand.", + "levelupDescription": "14+ allies have attacked.", + "levelupDescriptionRaw": "14+ allies have attacked.", + "flavorText": "\"Once we studied art and beauty, and our hearts soared. But when they broke our walls and spilled our blood, we fell back down to earth...\"", + "artistName": "SIXMOREVODKA", + "name": "Irelia", + "cardCode": "04IO005", + "keywords": [ + "Quick Attack", + "Attune" + ], + "keywordRefs": [ + "QuickStrike", + "Attune" + ], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "Champion", + "rarityRef": "Champion", + "subtypes": [], + "supertype": "Champion", + "type": "Unit", + "collectible": true, + "set": "Set4" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set4/en_us/img/cards/04IO020.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set4/en_us/img/cards/04IO020-full.png" + } + ], + "regions": [ + "Ionia" + ], + "regionRefs": [ + "Ionia" + ], + "attack": 5, + "cost": 6, + "health": 6, + "description": "Play: Draw a Slow, Fast, or Burst spell.\r\nEnlightened: I have Elusive.", + "descriptionRaw": "Play: Draw a Slow, Fast, or Burst spell.\r\nEnlightened: I have Elusive.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "The strange and hauntingly beautiful sky-songs of the Cloud Drinkers kept some of the Black Mist at bay... but only for so long.", + "artistName": "Kudos Productions", + "name": "Scattered Pod", + "cardCode": "04IO020", + "keywords": [ + "Attune" + ], + "keywordRefs": [ + "Attune" + ], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "RARE", + "rarityRef": "Rare", + "subtypes": [], + "supertype": "", + "type": "Unit", + "collectible": true, + "set": "Set4" + }, + { + "associatedCards": [], + "associatedCardRefs": [ + "04IO005" + ], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set4/en_us/img/cards/04IO005T4.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set4/en_us/img/cards/04IO005T4-full.png" + } + ], + "regions": [ + "Ionia" + ], + "regionRefs": [ + "Ionia" + ], + "attack": 0, + "cost": 0, + "health": 0, + "description": "Swap Irelia with an ally.", + "descriptionRaw": "Swap Irelia with an ally.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"Follow my lead!\" - Irelia", + "artistName": "Kudos Productions", + "name": "Bladesurge", + "cardCode": "04IO005T4", + "keywords": [ + "Burst", + "Fleeting" + ], + "keywordRefs": [ + "Burst", + "Fleeting" + ], + "spellSpeed": "Burst", + "spellSpeedRef": "Burst", + "rarity": "None", + "rarityRef": "None", + "subtypes": [], + "supertype": "", + "type": "Spell", + "collectible": false, + "set": "Set4" + }, + { + "associatedCards": [], + "associatedCardRefs": [ + "04IO005", + "04IO005T2", + "04IO005T5", + "04IO005T4", + "04IO010" + ], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set4/en_us/img/cards/04IO005T1.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set4/en_us/img/cards/04IO005T1-full.png" + } + ], + "regions": [ + "Ionia" + ], + "regionRefs": [ + "Ionia" + ], + "attack": 0, + "cost": 7, + "health": 0, + "description": "Pick an ally to attack alongside the Blades, then Blade Dance 3.\r\nCreate an Irelia in your deck.", + "descriptionRaw": "Pick an ally to attack alongside the Blades, then Blade Dance 3.\r\nCreate an Irelia in your deck.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"Stop their retreat! The Noxians started this war, but we will end it.\" - Irelia", + "artistName": "Kudos Productions", + "name": "Irelia's Vanguard's Edge", + "cardCode": "04IO005T1", + "keywords": [ + "Slow" + ], + "keywordRefs": [ + "Slow" + ], + "spellSpeed": "Slow", + "spellSpeedRef": "Slow", + "rarity": "None", + "rarityRef": "None", + "subtypes": [], + "supertype": "Champion", + "type": "Spell", + "collectible": false, + "set": "Set4" + }, + { + "associatedCards": [], + "associatedCardRefs": [ + "04IO005", + "04IO005T1", + "04IO005T5", + "04IO005T4", + "04IO010" + ], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set4/en_us/img/cards/04IO005T2.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set4/en_us/img/cards/04IO005T2-full.png" + } + ], + "regions": [ + "Ionia" + ], + "regionRefs": [ + "Ionia" + ], + "attack": 4, + "cost": 3, + "health": 3, + "description": "When I'm summoned or Round Start: If you have the attack token, create a Flawless Duet in hand.\r\nWhen allies attack, create a Bladesurge in hand.", + "descriptionRaw": "When I'm summoned or Round Start: If you have the attack token, create a Flawless Duet in hand.\r\nWhen allies attack, create a Bladesurge in hand.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"...Though our hearts are heavy, we are full of purpose, and return to dance once more.\"", + "artistName": "SIXMOREVODKA", + "name": "Irelia", + "cardCode": "04IO005T2", + "keywords": [ + "Quick Attack", + "Attune" + ], + "keywordRefs": [ + "QuickStrike", + "Attune" + ], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "None", + "rarityRef": "None", + "subtypes": [], + "supertype": "Champion", + "type": "Unit", + "collectible": false, + "set": "Set4" + }, + { + "associatedCards": [], + "associatedCardRefs": [ + "04IO010" + ], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set4/en_us/img/cards/04IO005T5.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set4/en_us/img/cards/04IO005T5-full.png" + } + ], + "regions": [ + "Ionia" + ], + "regionRefs": [ + "Ionia" + ], + "attack": 0, + "cost": 2, + "health": 0, + "description": "Blade Dance 2.", + "descriptionRaw": "Blade Dance 2.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"There is no song more perfect than that of two voices entwined in harmony...\" - Blossoming Blade\n", + "artistName": "Kudos Productions", + "name": "Flawless Duet", + "cardCode": "04IO005T5", + "keywords": [ + "Fleeting", + "Slow" + ], + "keywordRefs": [ + "Fleeting", + "Slow" + ], + "spellSpeed": "Slow", + "spellSpeedRef": "Slow", + "rarity": "None", + "rarityRef": "None", + "subtypes": [], + "supertype": "", + "type": "Spell", + "collectible": false, + "set": "Set4" + }, + { + "associatedCards": [], + "associatedCardRefs": [ + "04IO010" + ], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set4/en_us/img/cards/04IO004.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set4/en_us/img/cards/04IO004-full.png" + } + ], + "regions": [ + "Ionia" + ], + "regionRefs": [ + "Ionia" + ], + "attack": 4, + "cost": 5, + "health": 3, + "description": "Play: Blade Dance 2.", + "descriptionRaw": "Play: Blade Dance 2.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"There are those who think a flower is a fragile, delicate thing. They forget how much strength it takes to hold fast to the humble earth and inspire hope with every bloom.\"\n- Zinneia, Steel Crescendo", + "artistName": "SIXMOREVODKA", + "name": "Blossoming Blade", + "cardCode": "04IO004", + "keywords": [], + "keywordRefs": [], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "COMMON", + "rarityRef": "Common", + "subtypes": [], + "supertype": "", + "type": "Unit", + "collectible": true, + "set": "Set4" + }, + { + "associatedCards": [], + "associatedCardRefs": [ + "04IO010" + ], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set4/en_us/img/cards/04IO003.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set4/en_us/img/cards/04IO003-full.png" + } + ], + "regions": [ + "Ionia" + ], + "regionRefs": [ + "Ionia" + ], + "attack": 0, + "cost": 7, + "health": 0, + "description": "Pick an ally to attack alongside the Blades, then Blade Dance 3.", + "descriptionRaw": "Pick an ally to attack alongside the Blades, then Blade Dance 3.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"Stop their retreat! The Noxians started this war, but we will end it.\" - Irelia", + "artistName": "Kudos Productions", + "name": "Vanguard's Edge", + "cardCode": "04IO003", + "keywords": [ + "Slow" + ], + "keywordRefs": [ + "Slow" + ], + "spellSpeed": "Slow", + "spellSpeedRef": "Slow", + "rarity": "RARE", + "rarityRef": "Rare", + "subtypes": [], + "supertype": "", + "type": "Spell", + "collectible": true, + "set": "Set4" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set4/en_us/img/cards/04IO015.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set4/en_us/img/cards/04IO015-full.png" + } + ], + "regions": [ + "Ionia" + ], + "regionRefs": [ + "Ionia" + ], + "attack": 1, + "cost": 1, + "health": 1, + "description": "When I'm Recalled, draw 1.", + "descriptionRaw": "When I'm Recalled, draw 1.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"Water is flexible, adaptive - it will take the form most needed in the moment, flowing forth or retreating from the shore.\" - Ionian monk", + "artistName": "Dao Le", + "name": "Dancing Droplet", + "cardCode": "04IO015", + "keywords": [ + "Elusive" + ], + "keywordRefs": [ + "Elusive" + ], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "COMMON", + "rarityRef": "Common", + "subtypes": [], + "supertype": "", + "type": "Unit", + "collectible": true, + "set": "Set4" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set4/en_us/img/cards/04IO014.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set4/en_us/img/cards/04IO014-full.png" + } + ], + "regions": [ + "Ionia" + ], + "regionRefs": [ + "Ionia" + ], + "attack": 1, + "cost": 1, + "health": 1, + "description": "When you summon an Ephemeral ally, give me +1|+0 this round.", + "descriptionRaw": "When you summon an Ephemeral ally, give me +1|+0 this round.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"You are smoke—a whisper on the wind. Your fists must join with the dark like shade to shadow. Now... again!\" - Mistress Shi", + "artistName": "Dao Le", + "name": "Shadow Apprentice", + "cardCode": "04IO014", + "keywords": [ + "Elusive" + ], + "keywordRefs": [ + "Elusive" + ], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "COMMON", + "rarityRef": "Common", + "subtypes": [], + "supertype": "", + "type": "Unit", + "collectible": true, + "set": "Set4" + }, + { + "associatedCards": [], + "associatedCardRefs": [ + "04IO010" + ], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set4/en_us/img/cards/04IO002.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set4/en_us/img/cards/04IO002-full.png" + } + ], + "regions": [ + "Ionia" + ], + "regionRefs": [ + "Ionia" + ], + "attack": 3, + "cost": 8, + "health": 5, + "description": "When you Blade Dance, I attack with the Blades.\r\nPlay: Blade Dance 1.", + "descriptionRaw": "When you Blade Dance, I attack with the Blades.\r\nPlay: Blade Dance 1.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"Gather round, my darlings. Today our feet will glide 'cross the ground that nourished us, with the movements our families taught us. We are children of Ionia, and today we dance for art, for freedom, for each other!\"", + "artistName": "SIXMOREVODKA", + "name": "Zinneia, Steel Crescendo", + "cardCode": "04IO002", + "keywords": [ + "Elusive" + ], + "keywordRefs": [ + "Elusive" + ], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "EPIC", + "rarityRef": "Epic", + "subtypes": [], + "supertype": "", + "type": "Unit", + "collectible": true, + "set": "Set4" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set4/en_us/img/cards/04IO010.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set4/en_us/img/cards/04IO010-full.png" + } + ], + "regions": [ + "Ionia" + ], + "regionRefs": [ + "Ionia" + ], + "attack": 1, + "cost": 1, + "health": 1, + "description": "Obliterate me when I leave combat.", + "descriptionRaw": "Obliterate me when I leave combat.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"Keep your skills sharp--it is not only the blade that strikes, but the hand behind it.\" - Irelia", + "artistName": "SIXMOREVODKA", + "name": "Blade", + "cardCode": "04IO010", + "keywords": [], + "keywordRefs": [], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "COMMON", + "rarityRef": "Common", + "subtypes": [], + "supertype": "", + "type": "Unit", + "collectible": false, + "set": "Set4" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set4/en_us/img/cards/04IO007.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set4/en_us/img/cards/04IO007-full.png" + } + ], + "regions": [ + "Ionia" + ], + "regionRefs": [ + "Ionia" + ], + "attack": 0, + "cost": 2, + "health": 0, + "description": "Swap 2 allies.", + "descriptionRaw": "Swap 2 allies.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"To dance is to move in harmony with the motions of all things.\" - Zinneia, Steel Crescendo", + "artistName": "Kudos Productions", + "name": "Syncopation", + "cardCode": "04IO007", + "keywords": [ + "Burst" + ], + "keywordRefs": [ + "Burst" + ], + "spellSpeed": "Burst", + "spellSpeedRef": "Burst", + "rarity": "RARE", + "rarityRef": "Rare", + "subtypes": [], + "supertype": "", + "type": "Spell", + "collectible": true, + "set": "Set4" + }, + { + "associatedCards": [], + "associatedCardRefs": [ + "04IO005T5", + "04IO010" + ], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set4/en_us/img/cards/04IO011.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set4/en_us/img/cards/04IO011-full.png" + } + ], + "regions": [ + "Ionia" + ], + "regionRefs": [ + "Ionia" + ], + "attack": 0, + "cost": 2, + "health": 0, + "description": "Recall an ally to create a Flawless Duet in hand.", + "descriptionRaw": "Recall an ally to create a Flawless Duet in hand.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"Our performance will be... unforgettable.\" - Zinneia, Steel Crescendo", + "artistName": "Kudos Productions", + "name": "Lead and Follow", + "cardCode": "04IO011", + "keywords": [ + "Fast" + ], + "keywordRefs": [ + "Fast" + ], + "spellSpeed": "Fast", + "spellSpeedRef": "Fast", + "rarity": "COMMON", + "rarityRef": "Common", + "subtypes": [], + "supertype": "", + "type": "Spell", + "collectible": true, + "set": "Set4" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set4/en_us/img/cards/04IO020T1.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set4/en_us/img/cards/04IO020T1-full.png" + } + ], + "regions": [ + "Ionia" + ], + "regionRefs": [ + "Ionia" + ], + "attack": 5, + "cost": 6, + "health": 6, + "description": "Play: Draw a Slow spell.\r\nEnlightened: I have Elusive.", + "descriptionRaw": "Play: Draw a Slow spell.\r\nEnlightened: I have Elusive.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"I know their songs. This is a song of mourning.\" - Ionian farmer", + "artistName": "Kudos Productions", + "name": "Scattered Pod", + "cardCode": "04IO020T1", + "keywords": [ + "Attune" + ], + "keywordRefs": [ + "Attune" + ], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "COMMON", + "rarityRef": "Common", + "subtypes": [], + "supertype": "", + "type": "Unit", + "collectible": false, + "set": "Set4" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set4/en_us/img/cards/04IO020T2.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set4/en_us/img/cards/04IO020T2-full.png" + } + ], + "regions": [ + "Ionia" + ], + "regionRefs": [ + "Ionia" + ], + "attack": 5, + "cost": 6, + "health": 6, + "description": "Play: Draw a Fast spell.\r\nEnlightened: I have Elusive.", + "descriptionRaw": "Play: Draw a Fast spell.\r\nEnlightened: I have Elusive.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"I know their songs. This is a song of mourning.\" - Ionian farmer", + "artistName": "Kudos Productions", + "name": "Scattered Pod", + "cardCode": "04IO020T2", + "keywords": [ + "Attune" + ], + "keywordRefs": [ + "Attune" + ], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "COMMON", + "rarityRef": "Common", + "subtypes": [], + "supertype": "", + "type": "Unit", + "collectible": false, + "set": "Set4" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set4/en_us/img/cards/04IO020T3.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set4/en_us/img/cards/04IO020T3-full.png" + } + ], + "regions": [ + "Ionia" + ], + "regionRefs": [ + "Ionia" + ], + "attack": 5, + "cost": 6, + "health": 6, + "description": "Play: Draw a Burst spell.\r\nEnlightened: I have Elusive.", + "descriptionRaw": "Play: Draw a Burst spell.\r\nEnlightened: I have Elusive.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"I know their songs. This is a song of mourning.\" - Ionian farmer", + "artistName": "Kudos Productions", + "name": "Scattered Pod", + "cardCode": "04IO020T3", + "keywords": [ + "Attune" + ], + "keywordRefs": [ + "Attune" + ], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "COMMON", + "rarityRef": "Common", + "subtypes": [], + "supertype": "", + "type": "Unit", + "collectible": false, + "set": "Set4" + }, + { + "associatedCards": [], + "associatedCardRefs": [ + "01IO032" + ], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set4/en_us/img/cards/04IO013.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set4/en_us/img/cards/04IO013-full.png" + } + ], + "regions": [ + "Ionia" + ], + "regionRefs": [ + "Ionia" + ], + "attack": 8, + "cost": 7, + "health": 6, + "description": "Play: Give an ally Barrier this round and draw a Shen.\r\nAllies with Barrier have Double Attack.", + "descriptionRaw": "Play: Give an ally Barrier this round and draw a Shen.\r\nAllies with Barrier have Double Attack.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"Just as we fight to protect the land, the land itself rises up to defend us. We draw strength from the earth's wrath and drive out our enemies. And so, balance remains.\" - Ionian Priest", + "artistName": "Kudos Productions", + "name": "Sacred Protector", + "cardCode": "04IO013", + "keywords": [ + "Missing Translation" + ], + "keywordRefs": [ + "AuraVisualFakeKeyword" + ], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "EPIC", + "rarityRef": "Epic", + "subtypes": [], + "supertype": "", + "type": "Unit", + "collectible": true, + "set": "Set4" + }, + { + "associatedCards": [], + "associatedCardRefs": [ + "01IO009T1" + ], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set4/en_us/img/cards/04IO012.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set4/en_us/img/cards/04IO012-full.png" + } + ], + "regions": [ + "Ionia" + ], + "regionRefs": [ + "Ionia" + ], + "attack": 0, + "cost": 5, + "health": 0, + "description": "Recall each ally and summon a Living Shadow in its place.", + "descriptionRaw": "Recall each ally and summon a Living Shadow in its place.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"Let them strike at shadows, where their weapons will find no purchase.\" - Zed", + "artistName": "Kudos Productions", + "name": "Shadows of the Past", + "cardCode": "04IO012", + "keywords": [ + "Fast" + ], + "keywordRefs": [ + "Fast" + ], + "spellSpeed": "Fast", + "spellSpeedRef": "Fast", + "rarity": "RARE", + "rarityRef": "Rare", + "subtypes": [], + "supertype": "", + "type": "Spell", + "collectible": true, + "set": "Set4" + }, + { + "associatedCards": [], + "associatedCardRefs": [ + "04IO010" + ], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set4/en_us/img/cards/04IO009.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set4/en_us/img/cards/04IO009-full.png" + } + ], + "regions": [ + "Ionia" + ], + "regionRefs": [ + "Ionia" + ], + "attack": 2, + "cost": 2, + "health": 1, + "description": "Play: Blade Dance 1.", + "descriptionRaw": "Play: Blade Dance 1.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"What a shame, boys! All that power and just no rhythm to match it? We can't ALL be stars, I guess...!\"", + "artistName": "SIXMOREVODKA", + "name": "Ribbon Dancer", + "cardCode": "04IO009", + "keywords": [], + "keywordRefs": [], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "RARE", + "rarityRef": "Rare", + "subtypes": [], + "supertype": "", + "type": "Unit", + "collectible": true, + "set": "Set4" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set4/en_us/img/cards/04IO001.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set4/en_us/img/cards/04IO001-full.png" + } + ], + "regions": [ + "Ionia" + ], + "regionRefs": [ + "Ionia" + ], + "attack": 1, + "cost": 4, + "health": 4, + "description": "Each round, once you've summoned 3 other allies, refill your spell mana and draw 1. ", + "descriptionRaw": "Each round, once you've summoned 3 other allies, refill your spell mana and draw 1. ", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "For some, music is a shared refuge from hardship and violence. For others, music is resistance.", + "artistName": "SIXMOREVODKA", + "name": "Field Musicians", + "cardCode": "04IO001", + "keywords": [ + "Attune" + ], + "keywordRefs": [ + "Attune" + ], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "EPIC", + "rarityRef": "Epic", + "subtypes": [], + "supertype": "", + "type": "Unit", + "collectible": true, + "set": "Set4" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set4/en_us/img/cards/04IO006.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set4/en_us/img/cards/04IO006-full.png" + } + ], + "regions": [ + "Ionia" + ], + "regionRefs": [ + "Ionia" + ], + "attack": 2, + "cost": 4, + "health": 6, + "description": "When you summon an ally, give me +2|+0 this round.", + "descriptionRaw": "When you summon an ally, give me +2|+0 this round.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "My dearest Kay, \nThey arrived this morning in a line of ships that broke the horizon and blotted out the sunrise. Their machines set fire to the Silver Plains, and now a thick smoke crawls through the summer air. We can stand by no longer. Rake or shovel, scythe or sword, today we must go to meet our destiny. \nKnow that I love you and our home more than I have words to write.\n- Charred letter\n", + "artistName": "SIXMOREVODKA", + "name": "Coastal Defender", + "cardCode": "04IO006", + "keywords": [], + "keywordRefs": [], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "COMMON", + "rarityRef": "Common", + "subtypes": [], + "supertype": "", + "type": "Unit", + "collectible": true, + "set": "Set4" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set4/en_us/img/cards/04SH100.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set4/en_us/img/cards/04SH100-full.png" + } + ], + "regions": [ + "Shurima" + ], + "regionRefs": [ + "Shurima" + ], + "attack": 0, + "cost": 2, + "health": 0, + "description": "To Play, place a card from your hand into your deck.\r\nPredict, then create an exact copy of the chosen card in hand.", + "descriptionRaw": "To Play, place a card from your hand into your deck.\r\nPredict, then create an exact copy of the chosen card in hand.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"The actions we take today plant seeds for future trees.\" - Tai, Aspiring Chronomancer", + "artistName": "Kudos Productions", + "name": "Careful Preparation", + "cardCode": "04SH100", + "keywords": [ + "Burst" + ], + "keywordRefs": [ + "Burst" + ], + "spellSpeed": "Burst", + "spellSpeedRef": "Burst", + "rarity": "COMMON", + "rarityRef": "Common", + "subtypes": [], + "supertype": "", + "type": "Spell", + "collectible": true, + "set": "Set4" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set4/en_us/img/cards/04SH070.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set4/en_us/img/cards/04SH070-full.png" + } + ], + "regions": [ + "Shurima" + ], + "regionRefs": [ + "Shurima" + ], + "attack": 0, + "cost": 2, + "health": 0, + "description": "Give an enemy follower -4|-0 this round.\r\nIf you have fewer mana gems than your opponent, kill it instead.", + "descriptionRaw": "Give an enemy follower -4|-0 this round.\r\nIf you have fewer mana gems than your opponent, kill it instead.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"The sun will shine again upon Shuriman lands.\" - Voice of the Risen", + "artistName": "Kudos Productions", + "name": "Unworthy", + "cardCode": "04SH070", + "keywords": [ + "Slow" + ], + "keywordRefs": [ + "Slow" + ], + "spellSpeed": "Slow", + "spellSpeedRef": "Slow", + "rarity": "EPIC", + "rarityRef": "Epic", + "subtypes": [], + "supertype": "", + "type": "Spell", + "collectible": true, + "set": "Set4" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set4/en_us/img/cards/04SH081.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set4/en_us/img/cards/04SH081-full.png" + } + ], + "regions": [ + "Shurima" + ], + "regionRefs": [ + "Shurima" + ], + "attack": 5, + "cost": 4, + "health": 3, + "description": "Play: Grant an enemy -1|-0 and Vulnerable.", + "descriptionRaw": "Play: Grant an enemy -1|-0 and Vulnerable.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "Each grain she spills takes a second from their lives, wearing away at them like wind.", + "artistName": "Kudos Productions", + "name": "Baccai Sandspinner", + "cardCode": "04SH081", + "keywords": [], + "keywordRefs": [], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "RARE", + "rarityRef": "Rare", + "subtypes": [], + "supertype": "", + "type": "Unit", + "collectible": true, + "set": "Set4" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set4/en_us/img/cards/04SH059T2.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set4/en_us/img/cards/04SH059T2-full.png" + } + ], + "regions": [ + "Shurima" + ], + "regionRefs": [ + "Shurima" + ], + "attack": 0, + "cost": 4, + "health": 0, + "description": "Destroy one of your mana gems to stop all enemy Fast spells, Slow spells, and Skills.", + "descriptionRaw": "Destroy one of your mana gems to stop all enemy Fast spells, Slow spells, and Skills.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "Analysis is a mainstay of chronomancy, as many actions must be halted to consider future solutions.", + "artistName": "Kudos Productions", + "name": "Rite of Negation", + "cardCode": "04SH059T2", + "keywords": [ + "Fast" + ], + "keywordRefs": [ + "Fast" + ], + "spellSpeed": "Fast", + "spellSpeedRef": "Fast", + "rarity": "None", + "rarityRef": "None", + "subtypes": [], + "supertype": "", + "type": "Spell", + "collectible": false, + "set": "Set4" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set4/en_us/img/cards/04SH059T1.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set4/en_us/img/cards/04SH059T1-full.png" + } + ], + "regions": [ + "Shurima" + ], + "regionRefs": [ + "Shurima" + ], + "attack": 0, + "cost": 4, + "health": 0, + "description": "Kill an ally to stop all enemy Fast spells, Slow spells, and Skills.", + "descriptionRaw": "Kill an ally to stop all enemy Fast spells, Slow spells, and Skills.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "Analysis is a mainstay of chronomancy, as many actions must be halted to consider future solutions.", + "artistName": "Kudos Productions", + "name": "Rite of Negation", + "cardCode": "04SH059T1", + "keywords": [ + "Fast" + ], + "keywordRefs": [ + "Fast" + ], + "spellSpeed": "Fast", + "spellSpeedRef": "Fast", + "rarity": "None", + "rarityRef": "None", + "subtypes": [], + "supertype": "", + "type": "Spell", + "collectible": false, + "set": "Set4" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set4/en_us/img/cards/04SH077.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set4/en_us/img/cards/04SH077-full.png" + } + ], + "regions": [ + "Shurima" + ], + "regionRefs": [ + "Shurima" + ], + "attack": 3, + "cost": 4, + "health": 4, + "description": "If you've leveled a champion, allies have +2|+0.", + "descriptionRaw": "If you've leveled a champion, allies have +2|+0.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"I saw her speak, long ago.\" The old soldier smiled, and for an instant, his granddaughter could picture it: Shurima, gold and gleaming, proud Azir standing over the city heralded by the Voice of the Risen. \"She stirred in us all a passion we thought long lost.\"", + "artistName": "Eunice", + "name": "Voice of the Risen", + "cardCode": "04SH077", + "keywords": [ + "Missing Translation" + ], + "keywordRefs": [ + "AuraVisualFakeKeyword" + ], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "EPIC", + "rarityRef": "Epic", + "subtypes": [], + "supertype": "", + "type": "Unit", + "collectible": true, + "set": "Set4" + }, + { + "associatedCards": [], + "associatedCardRefs": [ + "04SH019T1", + "04SH019T2" + ], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set4/en_us/img/cards/04SH019.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set4/en_us/img/cards/04SH019-full.png" + } + ], + "regions": [ + "Shurima" + ], + "regionRefs": [ + "Shurima" + ], + "attack": 3, + "cost": 3, + "health": 6, + "description": "When I Lurk or Attack: Grant Lurker allies everywhere +1|+0.\r\nRound End: Place me into your deck.", + "descriptionRaw": "When I Lurk or Attack: Grant Lurker allies everywhere +1|+0.\r\nRound End: Place me into your deck.", + "levelupDescription": "I've attacked with 10+ Power.", + "levelupDescriptionRaw": "I've attacked with 10+ Power.", + "flavorText": "\"Young Jhuraa was exploring, as is his way, and in a small hidden cave, discovered some ancient texts! We took them to a translator in Marrowmark, and the scrolls... they speak of an ancient terror who stalked our ancestors. A queen. A xer'sai queen!\" - Fezhaur, Vekauran elder", + "artistName": "SIXMOREVODKA", + "name": "Rek'Sai", + "cardCode": "04SH019", + "keywords": [ + "Lurk" + ], + "keywordRefs": [ + "Lurker" + ], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "Champion", + "rarityRef": "Champion", + "subtypes": [ + "LURKER" + ], + "supertype": "Champion", + "type": "Unit", + "collectible": true, + "set": "Set4" + }, + { + "associatedCards": [], + "associatedCardRefs": [ + "04SH019", + "04SH019T1" + ], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set4/en_us/img/cards/04SH019T2.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set4/en_us/img/cards/04SH019T2-full.png" + } + ], + "regions": [ + "Shurima" + ], + "regionRefs": [ + "Shurima" + ], + "attack": 0, + "cost": 2, + "health": 0, + "description": "To play, put a card from hand on top of your deck.\r\nCreate 2 random Lurkers in hand.\r\nCreate a Rek'Sai in your deck.", + "descriptionRaw": "To play, put a card from hand on top of your deck.\r\nCreate 2 random Lurkers in hand.\r\nCreate a Rek'Sai in your deck.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"May the sun shine, and may the xer'sai sleep.\"\n- Merchant's prayer", + "artistName": "Kudos Productions", + "name": "Rek'Sai's Call the Pack", + "cardCode": "04SH019T2", + "keywords": [ + "Burst", + "Lurk" + ], + "keywordRefs": [ + "Burst", + "Lurker" + ], + "spellSpeed": "Burst", + "spellSpeedRef": "Burst", + "rarity": "None", + "rarityRef": "None", + "subtypes": [], + "supertype": "Champion", + "type": "Spell", + "collectible": false, + "set": "Set4" + }, + { + "associatedCards": [], + "associatedCardRefs": [ + "04SH019", + "04SH019T2" + ], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set4/en_us/img/cards/04SH019T1.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set4/en_us/img/cards/04SH019T1-full.png" + } + ], + "regions": [ + "Shurima" + ], + "regionRefs": [ + "Shurima" + ], + "attack": 4, + "cost": 3, + "health": 7, + "description": "When I level up, create 3 random Lurkers in hand.\r\nWhen I Lurk or Attack: Grant Lurker allies everywhere +1|+0.", + "descriptionRaw": "When I level up, create 3 random Lurkers in hand.\r\nWhen I Lurk or Attack: Grant Lurker allies everywhere +1|+0.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"We have known of her terror for generations, but for our ancestors to know her, too? How old must she be? How many of our people has she butchered? The thought unsettles me greatly.\" - Fezhaur, Vekauran elder", + "artistName": "SIXMOREVODKA", + "name": "Rek'Sai", + "cardCode": "04SH019T1", + "keywords": [ + "Lurk", + "Overwhelm" + ], + "keywordRefs": [ + "Lurker", + "Overwhelm" + ], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "None", + "rarityRef": "None", + "subtypes": [ + "LURKER" + ], + "supertype": "Champion", + "type": "Unit", + "collectible": false, + "set": "Set4" + }, + { + "associatedCards": [], + "associatedCardRefs": [ + "04SH138T1" + ], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set4/en_us/img/cards/04SH138.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set4/en_us/img/cards/04SH138-full.png" + } + ], + "regions": [ + "Shurima" + ], + "regionRefs": [ + "Shurima" + ], + "attack": 0, + "cost": 2, + "health": 0, + "description": "Give an ally +2|+1 this round. If you have leveled a champion this game, create a The Absolver's Return in hand.", + "descriptionRaw": "Give an ally +2|+1 this round. If you have leveled a champion this game, create a The Absolver's Return in hand.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"Everyone told me not to use this. 'No one must wield such a powerful weapon,' they said.\" - Akshan", + "artistName": "Kudos Productions", + "name": "The Absolver", + "cardCode": "04SH138", + "keywords": [ + "Burst" + ], + "keywordRefs": [ + "Burst" + ], + "spellSpeed": "Burst", + "spellSpeedRef": "Burst", + "rarity": "COMMON", + "rarityRef": "Common", + "subtypes": [], + "supertype": "", + "type": "Spell", + "collectible": true, + "set": "Set4" + }, + { + "associatedCards": [], + "associatedCardRefs": [ + "04SH089T1", + "04SH090" + ], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set4/en_us/img/cards/04SH089.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set4/en_us/img/cards/04SH089-full.png" + } + ], + "regions": [ + "Shurima" + ], + "regionRefs": [ + "Shurima" + ], + "attack": 2, + "cost": 4, + "health": 4, + "description": "Play: Destroy a landmark. If it's allied, summon a Grumpy Rockbear.", + "descriptionRaw": "Play: Destroy a landmark. If it's allied, summon a Grumpy Rockbear.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"Kadira broke something today! Again! It was just a stone wall this time, but it looked old and was probably important to someone's ancestor. Her excuse is that walls are built better in Tereshni, but still! I am very cross.\"\n- Zaifa's diary", + "artistName": "Dao Le", + "name": "Desert Naturalist", + "cardCode": "04SH089", + "keywords": [], + "keywordRefs": [], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "RARE", + "rarityRef": "Rare", + "subtypes": [], + "supertype": "", + "type": "Unit", + "collectible": true, + "set": "Set4" + }, + { + "associatedCards": [], + "associatedCardRefs": [ + "04SH090", + "04SH089" + ], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set4/en_us/img/cards/04SH089T1.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set4/en_us/img/cards/04SH089T1-full.png" + } + ], + "regions": [ + "Shurima" + ], + "regionRefs": [ + "Shurima" + ], + "attack": 0, + "cost": 0, + "health": 0, + "description": "Destroy a landmark. If it's allied, summon a Grumpy Rockbear.", + "descriptionRaw": "Destroy a landmark. If it's allied, summon a Grumpy Rockbear.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"Kadira broke something today! Again! It was just a stone wall this time, but it looked old and was probably important to someone's ancestor. Her excuse is that walls are built better in Tereshni, but still! I am very cross.\"\n- Zaifa's diary", + "artistName": "Kudos Productions", + "name": "Teen Spirit", + "cardCode": "04SH089T1", + "keywords": [ + "Skill" + ], + "keywordRefs": [ + "Skill" + ], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "None", + "rarityRef": "None", + "subtypes": [], + "supertype": "", + "type": "Ability", + "collectible": false, + "set": "Set4" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set4/en_us/img/cards/04SH015.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set4/en_us/img/cards/04SH015-full.png" + } + ], + "regions": [ + "Shurima" + ], + "regionRefs": [ + "Shurima" + ], + "attack": 7, + "cost": 7, + "health": 7, + "description": "Attack: Give enemies -2|-0 this round.", + "descriptionRaw": "Attack: Give enemies -2|-0 this round.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"When this here croc was born, the others took bets on how long he'd live, assuming he was the runt of the litter and a freak to boot. Nobody thought to bet on him eatin' all his siblings. Heh.\"", + "artistName": "JiHun Lee", + "name": "Raz Bloodmane", + "cardCode": "04SH015", + "keywords": [ + "Fearsome" + ], + "keywordRefs": [ + "Fearsome" + ], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "EPIC", + "rarityRef": "Epic", + "subtypes": [], + "supertype": "", + "type": "Unit", + "collectible": true, + "set": "Set4" + }, + { + "associatedCards": [], + "associatedCardRefs": [ + "04SH003T1" + ], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set4/en_us/img/cards/04SH058.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set4/en_us/img/cards/04SH058-full.png" + } + ], + "regions": [ + "Shurima" + ], + "regionRefs": [ + "Shurima" + ], + "attack": 3, + "cost": 4, + "health": 5, + "description": "Attack: Summon an attacking Sand Soldier.", + "descriptionRaw": "Attack: Summon an attacking Sand Soldier.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "Few are taught the ways of the desert, and even fewer given the ability to command its sands as Azir can. To wield this power and know the secrets of the sands is a gift given only to Azir's most faithful and capable followers.", + "artistName": "Kudos Productions", + "name": "Sandcrafter", + "cardCode": "04SH058", + "keywords": [], + "keywordRefs": [], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "COMMON", + "rarityRef": "Common", + "subtypes": [], + "supertype": "", + "type": "Unit", + "collectible": true, + "set": "Set4" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set4/en_us/img/cards/04SH080.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set4/en_us/img/cards/04SH080-full.png" + } + ], + "regions": [ + "Shurima" + ], + "regionRefs": [ + "Shurima" + ], + "attack": 0, + "cost": 2, + "health": 0, + "description": "To play, put a card from hand on top of your deck.\r\nCreate 2 random Lurkers in hand.", + "descriptionRaw": "To play, put a card from hand on top of your deck.\r\nCreate 2 random Lurkers in hand.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"May the sun shine, and may the xer'sai sleep.\"\n- Merchant's prayer", + "artistName": "Kudos Productions", + "name": "Call the Pack", + "cardCode": "04SH080", + "keywords": [ + "Burst", + "Lurk" + ], + "keywordRefs": [ + "Burst", + "Lurker" + ], + "spellSpeed": "Burst", + "spellSpeedRef": "Burst", + "rarity": "COMMON", + "rarityRef": "Common", + "subtypes": [], + "supertype": "", + "type": "Spell", + "collectible": true, + "set": "Set4" + }, + { + "associatedCards": [], + "associatedCardRefs": [ + "04SH098" + ], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set4/en_us/img/cards/04SH035.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set4/en_us/img/cards/04SH035-full.png" + } + ], + "regions": [ + "Shurima" + ], + "regionRefs": [ + "Shurima" + ], + "attack": 0, + "cost": 2, + "health": 0, + "description": "Create a Lucky Find in hand.", + "descriptionRaw": "Create a Lucky Find in hand.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"Sure, I've had good days and bad days, just like anyone. In this line of work, the bad days can get real bad, and the good days can get real rich.\" - Sivir", + "artistName": "Kudos Productions", + "name": "Payday", + "cardCode": "04SH035", + "keywords": [ + "Focus" + ], + "keywordRefs": [ + "Focus" + ], + "spellSpeed": "Burst", + "spellSpeedRef": "Burst", + "rarity": "COMMON", + "rarityRef": "Common", + "subtypes": [], + "supertype": "", + "type": "Spell", + "collectible": true, + "set": "Set4" + }, + { + "associatedCards": [], + "associatedCardRefs": [ + "04SH014" + ], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set4/en_us/img/cards/04SH028.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set4/en_us/img/cards/04SH028-full.png" + } + ], + "regions": [ + "Shurima" + ], + "regionRefs": [ + "Shurima" + ], + "attack": 0, + "cost": 1, + "health": 0, + "description": "Play: Predict.\r\nCountdown 2: Summon a Clockling.", + "descriptionRaw": "Play: Predict.\r\nCountdown 2: Summon a Clockling.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "Though they might otherwise be thought of as lost to time, buried underneath years of sand, the automata were precisely placed, simply waiting to be awakened.", + "artistName": "Polar Engine", + "name": "Ancient Preparations", + "cardCode": "04SH028", + "keywords": [ + "Countdown", + "Landmark" + ], + "keywordRefs": [ + "Countdown", + "LandmarkVisualOnly" + ], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "COMMON", + "rarityRef": "Common", + "subtypes": [], + "supertype": "", + "type": "Landmark", + "collectible": true, + "set": "Set4" + }, + { + "associatedCards": [], + "associatedCardRefs": [ + "04SH118", + "04SH003T14" + ], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set4/en_us/img/cards/04SH054.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set4/en_us/img/cards/04SH054-full.png" + } + ], + "regions": [ + "Shurima" + ], + "regionRefs": [ + "Shurima" + ], + "attack": 2, + "cost": 1, + "health": 1, + "description": "When I'm summoned, create a Waking Sands in hand.", + "descriptionRaw": "When I'm summoned, create a Waking Sands in hand.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"Okay, Davu. You're gonna go in there, grab that... whatever it is, and you're going to make us rich. Me rich. You're going to make me rich. Got it? Also, if that's a trapped thing, I am real sorry in advance.\"", + "artistName": "Grafit Studio", + "name": "Treasure Seeker", + "cardCode": "04SH054", + "keywords": [], + "keywordRefs": [], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "COMMON", + "rarityRef": "Common", + "subtypes": [], + "supertype": "", + "type": "Unit", + "collectible": true, + "set": "Set4" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set4/en_us/img/cards/04SH002.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set4/en_us/img/cards/04SH002-full.png" + } + ], + "regions": [ + "Shurima" + ], + "regionRefs": [ + "Shurima" + ], + "attack": 1, + "cost": 1, + "health": 2, + "description": "When you slay a unit, grant me +1|+0.", + "descriptionRaw": "When you slay a unit, grant me +1|+0.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"The baccai all fled or were spared following their failed Ascension, and none have seen them since. Who knows how long they have hidden in those dark tombs, bearing the mark of their shame?\" - Scribe Kah'nir, History of the Ascended Host", + "artistName": "Kudos Productions", + "name": "Baccai Reaper", + "cardCode": "04SH002", + "keywords": [ + "Fearsome" + ], + "keywordRefs": [ + "Fearsome" + ], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "RARE", + "rarityRef": "Rare", + "subtypes": [], + "supertype": "", + "type": "Unit", + "collectible": true, + "set": "Set4" + }, + { + "associatedCards": [], + "associatedCardRefs": [ + "04SH090" + ], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set4/en_us/img/cards/04SH042.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set4/en_us/img/cards/04SH042-full.png" + } + ], + "regions": [ + "Shurima" + ], + "regionRefs": [ + "Shurima" + ], + "attack": 0, + "cost": 2, + "health": 0, + "description": "Countdown 3: Summon a Grumpy Rockbear.", + "descriptionRaw": "Countdown 3: Summon a Grumpy Rockbear.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"MY NAME IS ZAIFA AND I LIKE WRITING STUPID THINGS IN MY STUPID BOOK WHEN I THINK EVERYONE ELSE IS ASLEEP. EVEN SAMI.\"\n- Zaifa's diary", + "artistName": "Polar Engine", + "name": "Hibernating Rockbear", + "cardCode": "04SH042", + "keywords": [ + "Countdown", + "Landmark" + ], + "keywordRefs": [ + "Countdown", + "LandmarkVisualOnly" + ], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "COMMON", + "rarityRef": "Common", + "subtypes": [], + "supertype": "", + "type": "Landmark", + "collectible": true, + "set": "Set4" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set4/en_us/img/cards/04SH032.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set4/en_us/img/cards/04SH032-full.png" + } + ], + "regions": [ + "Shurima" + ], + "regionRefs": [ + "Shurima" + ], + "attack": 6, + "cost": 4, + "health": 4, + "description": "Reputation: I cost 3 and when I'm summoned, grant me Overwhelm. ", + "descriptionRaw": "Reputation: I cost 3 and when I'm summoned, grant me Overwhelm. ", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "The soldier struggled as he reached for his spear, but she leaned harder on his chest until he ceased, groaning. \"No, no,\" she admonished, showing her sharpened eyeteeth with a wicked smile. \"This is mine, now.\"", + "artistName": "JiHun Lee", + "name": "Callous Bonecrusher", + "cardCode": "04SH032", + "keywords": [], + "keywordRefs": [], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "COMMON", + "rarityRef": "Common", + "subtypes": [], + "supertype": "", + "type": "Unit", + "collectible": true, + "set": "Set4" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set4/en_us/img/cards/04SH055.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set4/en_us/img/cards/04SH055-full.png" + } + ], + "regions": [ + "Shurima" + ], + "regionRefs": [ + "Shurima" + ], + "attack": 6, + "cost": 5, + "health": 3, + "description": "", + "descriptionRaw": "", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "Before the vaults, Shurima's mercenaries and tomb robbers must learn to survive the desert's more overt threats. First, the unrelenting heat. Second, the multitude of raiders, hellbent on carnage.", + "artistName": "Grafit Studio", + "name": "Ruin Runner", + "cardCode": "04SH055", + "keywords": [ + "Overwhelm", + "SpellShield" + ], + "keywordRefs": [ + "Overwhelm", + "SpellShield" + ], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "COMMON", + "rarityRef": "Common", + "subtypes": [], + "supertype": "", + "type": "Unit", + "collectible": true, + "set": "Set4" + }, + { + "associatedCards": [], + "associatedCardRefs": [ + "04SH039T1", + "04SH039T2", + "04SH060T1" + ], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set4/en_us/img/cards/04SH039.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set4/en_us/img/cards/04SH039-full.png" + } + ], + "regions": [ + "Shurima" + ], + "regionRefs": [ + "Shurima" + ], + "attack": 1, + "cost": 2, + "health": 4, + "description": "Play: Create 4 Time Bombs in your deck, then Predict.", + "descriptionRaw": "Play: Create 4 Time Bombs in your deck, then Predict.", + "levelupDescription": "I've seen you destroy 2 allied Time Bombs.", + "levelupDescriptionRaw": "I've seen you destroy 2 allied Time Bombs.", + "flavorText": "Over many years, Zilean established a network of promising young mages from different times, all of whom were capable of seeing out his life's work should the unthinkable happen. Although a kind and encouraging mentor, deep sorrow creased his brow when he sought solitude, and there was a weariness in his eyes that only someone who has lived multiple lifetimes could hope to comprehend.", + "artistName": "SIXMOREVODKA", + "name": "Zilean", + "cardCode": "04SH039", + "keywords": [], + "keywordRefs": [], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "Champion", + "rarityRef": "Champion", + "subtypes": [], + "supertype": "Champion", + "type": "Unit", + "collectible": true, + "set": "Set4" + }, + { + "associatedCards": [], + "associatedCardRefs": [ + "04SH060T1" + ], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set4/en_us/img/cards/04SH060T1.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set4/en_us/img/cards/04SH060T1-full.png" + } + ], + "regions": [ + "Shurima" + ], + "regionRefs": [ + "Shurima" + ], + "attack": 0, + "cost": 2, + "health": 0, + "description": "When I'm summoned, draw 1 and advance other allied Time Bombs 1 round.\r\nCountdown 1: Deal 1 to enemies and the enemy Nexus.", + "descriptionRaw": "When I'm summoned, draw 1 and advance other allied Time Bombs 1 round.\r\nCountdown 1: Deal 1 to enemies and the enemy Nexus.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "Using time \"constructively\" can also mean \"destructively.\"", + "artistName": "Polar Engine", + "name": "Time Bomb", + "cardCode": "04SH060T1", + "keywords": [ + "Countdown", + "Landmark" + ], + "keywordRefs": [ + "Countdown", + "LandmarkVisualOnly" + ], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "None", + "rarityRef": "None", + "subtypes": [], + "supertype": "", + "type": "Landmark", + "collectible": false, + "set": "Set4" + }, + { + "associatedCards": [], + "associatedCardRefs": [ + "04SH039", + "04SH039T2", + "04SH039T1" + ], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set4/en_us/img/cards/04SH039T2.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set4/en_us/img/cards/04SH039T2-full.png" + } + ], + "regions": [ + "Shurima" + ], + "regionRefs": [ + "Shurima" + ], + "attack": 0, + "cost": 7, + "health": 0, + "description": "Give an allied Champion \"The next time I'd die this round, fully heal me and grant me +3|+3 instead\".\r\nCreate a Zilean in your deck.", + "descriptionRaw": "Give an allied Champion \"The next time I'd die this round, fully heal me and grant me +3|+3 instead\".\r\nCreate a Zilean in your deck.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"We cannot stop the inevitable... but we can postpone it.\" - Zilean", + "artistName": "Kudos Productions", + "name": "Zilean's Chronoshift", + "cardCode": "04SH039T2", + "keywords": [ + "Burst" + ], + "keywordRefs": [ + "Burst" + ], + "spellSpeed": "Burst", + "spellSpeedRef": "Burst", + "rarity": "None", + "rarityRef": "None", + "subtypes": [], + "supertype": "Champion", + "type": "Spell", + "collectible": false, + "set": "Set4" + }, + { + "associatedCards": [], + "associatedCardRefs": [ + "04SH039", + "04SH039T2", + "04SH060T1" + ], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set4/en_us/img/cards/04SH039T1.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set4/en_us/img/cards/04SH039T1-full.png" + } + ], + "regions": [ + "Shurima" + ], + "regionRefs": [ + "Shurima" + ], + "attack": 2, + "cost": 2, + "health": 5, + "description": "Round Start: Create a Fleeting copy of each non-Fleeting card I saw you play last round.\r\nPlay: Create 4 Time Bombs in your deck, then Predict.", + "descriptionRaw": "Round Start: Create a Fleeting copy of each non-Fleeting card I saw you play last round.\r\nPlay: Create 4 Time Bombs in your deck, then Predict.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "Countless possibilities stretched before and behind him. He saw them all at once, a dizzying array that only he could decipher. With a single gesture, Zilean could unfold entire timelines -- but none had yet shown him how to save Icathia.", + "artistName": "SIXMOREVODKA", + "name": "Zilean", + "cardCode": "04SH039T1", + "keywords": [], + "keywordRefs": [], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "None", + "rarityRef": "None", + "subtypes": [], + "supertype": "Champion", + "type": "Unit", + "collectible": false, + "set": "Set4" + }, + { + "associatedCards": [], + "associatedCardRefs": [ + "04SH073T2", + "04SH073T3", + "04SH073T1" + ], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set4/en_us/img/cards/04SH073.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set4/en_us/img/cards/04SH073-full.png" + } + ], + "regions": [ + "Shurima" + ], + "regionRefs": [ + "Shurima" + ], + "attack": 3, + "cost": 5, + "health": 5, + "description": "Play: Summon an exact copy of an allied landmark.", + "descriptionRaw": "Play: Summon an exact copy of an allied landmark.", + "levelupDescription": "You've summoned 5+ landmarks.", + "levelupDescriptionRaw": "You've summoned 5+ landmarks.", + "flavorText": "\"The nomad's step is always light, for it is unburdened by the weight of roots, and their home is forever beyond the horizon.\"\n- The Societies of Shurima", + "artistName": "SIXMOREVODKA", + "name": "Taliyah", + "cardCode": "04SH073", + "keywords": [], + "keywordRefs": [], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "Champion", + "rarityRef": "Champion", + "subtypes": [], + "supertype": "Champion", + "type": "Unit", + "collectible": true, + "set": "Set4" + }, + { + "associatedCards": [], + "associatedCardRefs": [ + "04SH073", + "04SH073T3", + "04SH073T1" + ], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set4/en_us/img/cards/04SH073T2.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set4/en_us/img/cards/04SH073T2-full.png" + } + ], + "regions": [ + "Shurima" + ], + "regionRefs": [ + "Shurima" + ], + "attack": 4, + "cost": 5, + "health": 6, + "description": "Play: Summon an exact copy of an allied landmark. \r\nAttack: I deal 2 damage to my blocker 3 times. If it's dead or gone, I deal 2 damage to the enemy Nexus instead.", + "descriptionRaw": "Play: Summon an exact copy of an allied landmark. \r\nAttack: I deal 2 damage to my blocker 3 times. If it's dead or gone, I deal 2 damage to the enemy Nexus instead.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "Taliyah left Ionia after hearing word of monumental change in her homeland. She returned to Shurima to find an emperor reborn, her people fraught, and the xer'sai more active than ever. She had no choice but to grow beyond her years.", + "artistName": "SIXMOREVODKA", + "name": "Taliyah", + "cardCode": "04SH073T2", + "keywords": [], + "keywordRefs": [], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "None", + "rarityRef": "None", + "subtypes": [], + "supertype": "Champion", + "type": "Unit", + "collectible": false, + "set": "Set4" + }, + { + "associatedCards": [], + "associatedCardRefs": [ + "04SH073" + ], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set4/en_us/img/cards/04SH073T1.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set4/en_us/img/cards/04SH073T1-full.png" + } + ], + "regions": [ + "Shurima" + ], + "regionRefs": [ + "Shurima" + ], + "attack": 0, + "cost": 0, + "health": 0, + "description": "Deal 2 to Taliyah's blocker. If it's dead or gone, deal 2 to the enemy Nexus instead.", + "descriptionRaw": "Deal 2 to Taliyah's blocker. If it's dead or gone, deal 2 to the enemy Nexus instead.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"Throw another rock!\" - Taliyah", + "artistName": "Kudos Productions", + "name": "Threaded Volley", + "cardCode": "04SH073T1", + "keywords": [ + "Skill" + ], + "keywordRefs": [ + "Skill" + ], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "None", + "rarityRef": "None", + "subtypes": [], + "supertype": "", + "type": "Ability", + "collectible": false, + "set": "Set4" + }, + { + "associatedCards": [], + "associatedCardRefs": [ + "04SH073", + "04SH073T2" + ], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set4/en_us/img/cards/04SH073T3.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set4/en_us/img/cards/04SH073T3-full.png" + } + ], + "regions": [ + "Shurima" + ], + "regionRefs": [ + "Shurima" + ], + "attack": 0, + "cost": 1, + "health": 0, + "description": "Manifest a landmark you can afford.\r\nCreate a Taliyah in your deck.", + "descriptionRaw": "Manifest a landmark you can afford.\r\nCreate a Taliyah in your deck.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"Come on - there's so much to see!\" - Taliyah", + "artistName": "Kudos Productions", + "name": "Taliyah's Stoneweaving", + "cardCode": "04SH073T3", + "keywords": [ + "Burst" + ], + "keywordRefs": [ + "Burst" + ], + "spellSpeed": "Burst", + "spellSpeedRef": "Burst", + "rarity": "None", + "rarityRef": "None", + "subtypes": [], + "supertype": "Champion", + "type": "Spell", + "collectible": false, + "set": "Set4" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set4/en_us/img/cards/04SH091.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set4/en_us/img/cards/04SH091-full.png" + } + ], + "regions": [ + "Shurima" + ], + "regionRefs": [ + "Shurima" + ], + "attack": 3, + "cost": 3, + "health": 3, + "description": "When I'm summoned, grant me +1|+1 if you've Predicted this game.", + "descriptionRaw": "When I'm summoned, grant me +1|+1 if you've Predicted this game.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"Remember what we learned,\" Zilean said, his voice unusually soft - grave, even. \"Are you certain you're ready?\"\nKhahiri gave his mentor a reassuring smile. \"I'll be back soon. And besides, I've spent every day for years preparing for this moment. If not now, when?\"", + "artistName": "Kudos Productions", + "name": "Khahiri the Student", + "cardCode": "04SH091", + "keywords": [], + "keywordRefs": [], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "COMMON", + "rarityRef": "Common", + "subtypes": [], + "supertype": "", + "type": "Unit", + "collectible": true, + "set": "Set4" + }, + { + "associatedCards": [], + "associatedCardRefs": [ + "04SH090" + ], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set4/en_us/img/cards/04SH024.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set4/en_us/img/cards/04SH024-full.png" + } + ], + "regions": [ + "Shurima" + ], + "regionRefs": [ + "Shurima" + ], + "attack": 0, + "cost": 4, + "health": 0, + "description": "Countdown 2: Summon a Grumpy Rockbear. Then, if you've summoned 4+ landmarks this game, grant the strongest ally +2|+2. ", + "descriptionRaw": "Countdown 2: Summon a Grumpy Rockbear. Then, if you've summoned 4+ landmarks this game, grant the strongest ally +2|+2. ", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "A Shuriman saltworker quickly learns which deposits are suitable for collection, and which are best left alone.", + "artistName": "Polar Engine", + "name": "Salt Spire", + "cardCode": "04SH024", + "keywords": [ + "Countdown", + "Landmark" + ], + "keywordRefs": [ + "Countdown", + "LandmarkVisualOnly" + ], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "COMMON", + "rarityRef": "Common", + "subtypes": [], + "supertype": "", + "type": "Landmark", + "collectible": true, + "set": "Set4" + }, + { + "associatedCards": [], + "associatedCardRefs": [ + "04SH003T3", + "04SH003T2", + "04SH003T4", + "04SH003T1", + "04SH062", + "04SH003T14" + ], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set4/en_us/img/cards/04SH003.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set4/en_us/img/cards/04SH003-full.png" + } + ], + "regions": [ + "Shurima" + ], + "regionRefs": [ + "Shurima" + ], + "attack": 1, + "cost": 3, + "health": 5, + "description": "When allies attack, summon an attacking Sand Soldier.", + "descriptionRaw": "When allies attack, summon an attacking Sand Soldier.", + "levelupDescription": "You've summoned 13+ allies or landmarks.", + "levelupDescriptionRaw": "You've summoned 13+ allies or landmarks.", + "flavorText": "\"When Azir took up the mantle as emperor of Shurima, he was arrogant. Blind. He accumulated power and planned his Ascension so that he might stand as ruler over not just Shurima, but the entire world.\" - Scribe Kah'nir, History of the Ascended Host", + "artistName": "SIXMOREVODKA", + "name": "Azir", + "cardCode": "04SH003", + "keywords": [], + "keywordRefs": [], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "Champion", + "rarityRef": "Champion", + "subtypes": [ + "ASCENDED" + ], + "supertype": "Champion", + "type": "Unit", + "collectible": true, + "set": "Set4" + }, + { + "associatedCards": [], + "associatedCardRefs": [ + "04SH003", + "04SH003T3", + "04SH003T4", + "04SH003T14", + "04SH003T1" + ], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set4/en_us/img/cards/04SH003T2.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set4/en_us/img/cards/04SH003T2-full.png" + } + ], + "regions": [ + "Shurima" + ], + "regionRefs": [ + "Shurima" + ], + "attack": 6, + "cost": 3, + "health": 6, + "description": "When I level up, replace your deck with the Emperor's Deck, then draw 1.\r\nWhen allies attack, summon an attacking Sandstone Charger.", + "descriptionRaw": "When I level up, replace your deck with the Emperor's Deck, then draw 1.\r\nWhen allies attack, summon an attacking Sandstone Charger.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"The Emperor Azir, though haughty, is generous. Above all, he cares deeply for those who would march alongside him into Shurima's golden future, as the nation rises anew, its people once again united under his rule.\" \n- Scribe Kah'nir, History of the Ascended Host", + "artistName": "SIXMOREVODKA", + "name": "Azir", + "cardCode": "04SH003T2", + "keywords": [], + "keywordRefs": [], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "None", + "rarityRef": "None", + "subtypes": [ + "ASCENDED" + ], + "supertype": "Champion", + "type": "Unit", + "collectible": false, + "set": "Set4" + }, + { + "associatedCards": [], + "associatedCardRefs": [ + "04SH003", + "04SH003T2", + "04SH003T4", + "04SH003T1", + "04SH062", + "04SH003T14" + ], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set4/en_us/img/cards/04SH003T3.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set4/en_us/img/cards/04SH003T3-full.png" + } + ], + "regions": [ + "Shurima" + ], + "regionRefs": [ + "Shurima" + ], + "attack": 2, + "cost": 3, + "health": 6, + "description": "When allies attack, summon an attacking Sand Soldier.\r\nWhen you summon an ally, give us both +1|+0 this round.", + "descriptionRaw": "When allies attack, summon an attacking Sand Soldier.\r\nWhen you summon an ally, give us both +1|+0 this round.", + "levelupDescription": "You've restored the Sun Disc.", + "levelupDescriptionRaw": "You've restored the Sun Disc.", + "flavorText": "\"Short of fulfilling his destiny, Azir's lifelong friend - and newly named brother - hatefully cast him off the dais. In that fateful moment Shurima was cursed, doomed to ruin for thousands of years to follow.\" - Scribe Kah'nir, History of the Ascended Host", + "artistName": "SIXMOREVODKA", + "name": "Azir", + "cardCode": "04SH003T3", + "keywords": [], + "keywordRefs": [], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "None", + "rarityRef": "None", + "subtypes": [ + "ASCENDED" + ], + "supertype": "Champion", + "type": "Unit", + "collectible": false, + "set": "Set4" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set4/en_us/img/cards/04SH003T14.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set4/en_us/img/cards/04SH003T14-full.png" + } + ], + "regions": [ + "Shurima" + ], + "regionRefs": [ + "Shurima" + ], + "attack": 5, + "cost": 2, + "health": 2, + "description": "", + "descriptionRaw": "", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"They appeared out of nowhere, made up of swirling sands! Then, after they had dispatched our forces, their forms simply... disappeared, melted back into the desert.\" - Desert Survivor", + "artistName": "Kudos Productions", + "name": "Sandstone Charger", + "cardCode": "04SH003T14", + "keywords": [ + "Ephemeral" + ], + "keywordRefs": [ + "Ephemeral" + ], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "None", + "rarityRef": "None", + "subtypes": [], + "supertype": "", + "type": "Unit", + "collectible": false, + "set": "Set4" + }, + { + "associatedCards": [], + "associatedCardRefs": [ + "04SH003T1" + ], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set4/en_us/img/cards/04SH003T5.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set4/en_us/img/cards/04SH003T5-full.png" + } + ], + "regions": [ + "Shurima" + ], + "regionRefs": [ + "Shurima" + ], + "attack": 6, + "cost": 5, + "health": 6, + "description": "Play and Round Start: Summon 2 Sand Soldiers and grant them +2|+2.", + "descriptionRaw": "Play and Round Start: Summon 2 Sand Soldiers and grant them +2|+2.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "Now more powerful than ever, Azir has raised his most loyal soldiers to lead his armies.", + "artistName": "Kudos Productions", + "name": "Golden Herald", + "cardCode": "04SH003T5", + "keywords": [], + "keywordRefs": [], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "None", + "rarityRef": "None", + "subtypes": [], + "supertype": "", + "type": "Unit", + "collectible": false, + "set": "Set4" + }, + { + "associatedCards": [], + "associatedCardRefs": [ + "04SH003T1", + "04SH003", + "04SH003T3", + "04SH003T2" + ], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set4/en_us/img/cards/04SH003T4.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set4/en_us/img/cards/04SH003T4-full.png" + } + ], + "regions": [ + "Shurima" + ], + "regionRefs": [ + "Shurima" + ], + "attack": 0, + "cost": 3, + "health": 0, + "description": "Summon a Sand Soldier.\r\nCreate a Fleeting Arise! in hand.\r\nCreate a Azir in your deck.", + "descriptionRaw": "Summon a Sand Soldier.\r\nCreate a Fleeting Arise! in hand.\r\nCreate a Azir in your deck.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"The order is given.\" - Azir", + "artistName": "Kudos Productions", + "name": "Azir's Arise!", + "cardCode": "04SH003T4", + "keywords": [ + "Burst" + ], + "keywordRefs": [ + "Burst" + ], + "spellSpeed": "Burst", + "spellSpeedRef": "Burst", + "rarity": "None", + "rarityRef": "None", + "subtypes": [], + "supertype": "Champion", + "type": "Spell", + "collectible": false, + "set": "Set4" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set4/en_us/img/cards/04SH003T10.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set4/en_us/img/cards/04SH003T10-full.png" + } + ], + "regions": [ + "Shurima" + ], + "regionRefs": [ + "Shurima" + ], + "attack": 0, + "cost": 5, + "health": 0, + "description": "Enemies are Vulnerable.\r\nRound Start: Rally.", + "descriptionRaw": "Enemies are Vulnerable.\r\nRound Start: Rally.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"Observe our god-emperor! He knows the power of these lands better than any, and his army only grows. Shurima is risen, and it shall never fall again!\" - Voice of the Risen", + "artistName": "Kudos Productions", + "name": "General's Palace", + "cardCode": "04SH003T10", + "keywords": [ + "Missing Translation", + "Landmark" + ], + "keywordRefs": [ + "AuraVisualFakeKeyword", + "LandmarkVisualOnly" + ], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "None", + "rarityRef": "None", + "subtypes": [], + "supertype": "", + "type": "Landmark", + "collectible": false, + "set": "Set4" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set4/en_us/img/cards/04SH003T1.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set4/en_us/img/cards/04SH003T1-full.png" + } + ], + "regions": [ + "Shurima" + ], + "regionRefs": [ + "Shurima" + ], + "attack": 1, + "cost": 1, + "health": 1, + "description": "Nexus Strike: Deal 1 to the enemy Nexus.", + "descriptionRaw": "Nexus Strike: Deal 1 to the enemy Nexus.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "Azir's legions were reputed to be unstoppable even before Shurima was reborn, but now they are truly innumerable.", + "artistName": "Kudos Productions", + "name": "Sand Soldier", + "cardCode": "04SH003T1", + "keywords": [ + "Ephemeral" + ], + "keywordRefs": [ + "Ephemeral" + ], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "None", + "rarityRef": "None", + "subtypes": [], + "supertype": "", + "type": "Unit", + "collectible": false, + "set": "Set4" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set4/en_us/img/cards/04SH003T8.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set4/en_us/img/cards/04SH003T8-full.png" + } + ], + "regions": [ + "Shurima" + ], + "regionRefs": [ + "Shurima" + ], + "attack": 10, + "cost": 7, + "health": 7, + "description": "When I'm summoned, draw 1.\r\nRound End: The Strongest enemy and I strike each other.", + "descriptionRaw": "When I'm summoned, draw 1.\r\nRound End: The Strongest enemy and I strike each other.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"Behold! See how our champion sits astride the lion? Even the king of beasts would yield to his power, for he is the Will of Azir!\" - Voice of the Risen", + "artistName": "Kudos Productions", + "name": "Eternal Gladiator", + "cardCode": "04SH003T8", + "keywords": [ + "Barrier" + ], + "keywordRefs": [ + "Barrier" + ], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "None", + "rarityRef": "None", + "subtypes": [], + "supertype": "", + "type": "Unit", + "collectible": false, + "set": "Set4" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set4/en_us/img/cards/04SH003T6.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set4/en_us/img/cards/04SH003T6-full.png" + } + ], + "regions": [ + "Shurima" + ], + "regionRefs": [ + "Shurima" + ], + "attack": 0, + "cost": 4, + "health": 0, + "description": "Obliterate a follower.\r\nDraw 1.", + "descriptionRaw": "Obliterate a follower.\r\nDraw 1.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"Those who oppose us will be reduced to dust.\" - Azir", + "artistName": "Kudos Productions", + "name": "Crumbling Sands", + "cardCode": "04SH003T6", + "keywords": [ + "Fast" + ], + "keywordRefs": [ + "Fast" + ], + "spellSpeed": "Fast", + "spellSpeedRef": "Fast", + "rarity": "None", + "rarityRef": "None", + "subtypes": [], + "supertype": "", + "type": "Spell", + "collectible": false, + "set": "Set4" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set4/en_us/img/cards/04SH003T12.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set4/en_us/img/cards/04SH003T12-full.png" + } + ], + "regions": [ + "Shurima" + ], + "regionRefs": [ + "Shurima" + ], + "attack": 0, + "cost": 9, + "health": 0, + "description": "Obliterate 3 enemy units or landmarks.", + "descriptionRaw": "Obliterate 3 enemy units or landmarks.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "The storm rolls in with a peal like thunder, and when it passes, it leaves nothing behind.", + "artistName": "Kudos Productions", + "name": "Sandstorm", + "cardCode": "04SH003T12", + "keywords": [ + "Slow" + ], + "keywordRefs": [ + "Slow" + ], + "spellSpeed": "Slow", + "spellSpeedRef": "Slow", + "rarity": "None", + "rarityRef": "None", + "subtypes": [], + "supertype": "", + "type": "Spell", + "collectible": false, + "set": "Set4" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set4/en_us/img/cards/04SH003T11.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set4/en_us/img/cards/04SH003T11-full.png" + } + ], + "regions": [ + "Shurima" + ], + "regionRefs": [ + "Shurima" + ], + "attack": 5, + "cost": 2, + "health": 4, + "description": "When I'm summoned, draw 1.", + "descriptionRaw": "When I'm summoned, draw 1.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "The emperor's golden guard moves as one, a succession of regimented warriors that is as terrifying as it is impressive to behold.", + "artistName": "Kudos Productions", + "name": "Emperor's Guard", + "cardCode": "04SH003T11", + "keywords": [ + "Fearsome" + ], + "keywordRefs": [ + "Fearsome" + ], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "None", + "rarityRef": "None", + "subtypes": [], + "supertype": "", + "type": "Unit", + "collectible": false, + "set": "Set4" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set4/en_us/img/cards/04SH003T7.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set4/en_us/img/cards/04SH003T7-full.png" + } + ], + "regions": [ + "Shurima" + ], + "regionRefs": [ + "Shurima" + ], + "attack": 0, + "cost": 3, + "health": 0, + "description": "Summon an exact copy of an ally. It's Ephemeral.\r\nDraw 1.", + "descriptionRaw": "Summon an exact copy of an ally. It's Ephemeral.\r\nDraw 1.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "Between the sand, the sun, and the heat, it can be difficult to tell what is real, and what is merely a mirage.", + "artistName": "Kudos Productions", + "name": "Shimmering Mirage", + "cardCode": "04SH003T7", + "keywords": [ + "Burst" + ], + "keywordRefs": [ + "Burst" + ], + "spellSpeed": "Burst", + "spellSpeedRef": "Burst", + "rarity": "None", + "rarityRef": "None", + "subtypes": [], + "supertype": "", + "type": "Spell", + "collectible": false, + "set": "Set4" + }, + { + "associatedCards": [], + "associatedCardRefs": [ + "04SH067", + "04SH047" + ], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set4/en_us/img/cards/04SH003T13.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set4/en_us/img/cards/04SH003T13-full.png" + } + ], + "regions": [ + "Shurima" + ], + "regionRefs": [ + "Shurima" + ], + "attack": 0, + "cost": 10, + "health": 0, + "description": "Rally.\r\nSummon Renekton and Nasus. Immediately level them up to level 3.", + "descriptionRaw": "Rally.\r\nSummon Renekton and Nasus. Immediately level them up to level 3.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"They will serve their emperor. My generals will make sure of it.\" - Azir", + "artistName": "Kudos Productions", + "name": "Ascended's Call", + "cardCode": "04SH003T13", + "keywords": [ + "Slow" + ], + "keywordRefs": [ + "Slow" + ], + "spellSpeed": "Slow", + "spellSpeedRef": "Slow", + "rarity": "None", + "rarityRef": "None", + "subtypes": [], + "supertype": "", + "type": "Spell", + "collectible": false, + "set": "Set4" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set4/en_us/img/cards/04SH003T9.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set4/en_us/img/cards/04SH003T9-full.png" + } + ], + "regions": [ + "Shurima" + ], + "regionRefs": [ + "Shurima" + ], + "attack": 0, + "cost": 2, + "health": 0, + "description": "Draw 2.", + "descriptionRaw": "Draw 2.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "Birds found in the desert climes are all considered symbols of Azir, and Shurimans find their presence a good omen.", + "artistName": "Kudos Productions", + "name": "Emperor's Prosperity", + "cardCode": "04SH003T9", + "keywords": [ + "Burst" + ], + "keywordRefs": [ + "Burst" + ], + "spellSpeed": "Burst", + "spellSpeedRef": "Burst", + "rarity": "None", + "rarityRef": "None", + "subtypes": [], + "supertype": "", + "type": "Spell", + "collectible": false, + "set": "Set4" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set4/en_us/img/cards/04SH011.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set4/en_us/img/cards/04SH011-full.png" + } + ], + "regions": [ + "Shurima" + ], + "regionRefs": [ + "Shurima" + ], + "attack": 3, + "cost": 3, + "health": 3, + "description": "When I'm summoned, grant 3 random allies in your deck +3|+3.", + "descriptionRaw": "When I'm summoned, grant 3 random allies in your deck +3|+3.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "The Void is full of surprises, growing every day and finding new ways to infiltrate the tower, as intrusive as a thorned blindbrush but infinitely more deadly. Inasmuch, the study of it proves difficult, as it requires similarly clever and resourceful researchers to anticipate and understand the threat.", + "artistName": "Polar Engine", + "name": "Xenotype Researchers", + "cardCode": "04SH011", + "keywords": [], + "keywordRefs": [], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "RARE", + "rarityRef": "Rare", + "subtypes": [], + "supertype": "", + "type": "Unit", + "collectible": true, + "set": "Set4" + }, + { + "associatedCards": [], + "associatedCardRefs": [ + "04SH130T2", + "04SH130T5", + "04SH130T1", + "04SH130T10", + "04SH003T14", + "04SH130T6", + "04SH130T13", + "04SH130T14", + "04SH130T7", + "04SH130T8" + ], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set4/en_us/img/cards/04SH130.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set4/en_us/img/cards/04SH130-full.png" + } + ], + "regions": [ + "Shurima" + ], + "regionRefs": [ + "Shurima" + ], + "attack": 2, + "cost": 2, + "health": 2, + "description": "When I'm summoned or Strike: Summon a Warlord's Palace or advance it 1 round. ", + "descriptionRaw": "When I'm summoned or Strike: Summon a Warlord's Palace or advance it 1 round. ", + "levelupDescription": "Warlord's Palace has finished its Countdown.
", + "levelupDescriptionRaw": "Warlord's Palace has finished its Countdown.", + "flavorText": "\"The Sentinels' code seems full of complicated restrictions. Things like 'Never take a life in the name of vengeance' and 'Fight for the world, never for yourself'. As for me...\"", + "artistName": "SIXMOREVODKA", + "name": "Akshan", + "cardCode": "04SH130", + "keywords": [ + "Quick Attack" + ], + "keywordRefs": [ + "QuickStrike" + ], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "Champion", + "rarityRef": "Champion", + "subtypes": [], + "supertype": "Champion", + "type": "Unit", + "collectible": true, + "set": "Set4" + }, + { + "associatedCards": [], + "associatedCardRefs": [ + "04SH130", + "04SH130T2" + ], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set4/en_us/img/cards/04SH130T5.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set4/en_us/img/cards/04SH130T5-full.png" + } + ], + "regions": [ + "Shurima" + ], + "regionRefs": [ + "Shurima" + ], + "attack": 0, + "cost": 3, + "health": 0, + "description": "An ally you've targeted this round strikes an enemy.\r\nCreate an Akshan in your deck.", + "descriptionRaw": "An ally you've targeted this round strikes an enemy.\r\nCreate an Akshan in your deck.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"They never expect the grappling hook!\" - Akshan", + "artistName": "Kudos Productions", + "name": "Akshan's Grappling Hook", + "cardCode": "04SH130T5", + "keywords": [ + "Slow" + ], + "keywordRefs": [ + "Slow" + ], + "spellSpeed": "Slow", + "spellSpeedRef": "Slow", + "rarity": "None", + "rarityRef": "None", + "subtypes": [], + "supertype": "Champion", + "type": "Spell", + "collectible": false, + "set": "Set4" + }, + { + "associatedCards": [], + "associatedCardRefs": [ + "04SH130T6", + "04SH130T13", + "04SH130T14", + "04SH130T7", + "04SH130T8", + "04SH130T5", + "04SH130" + ], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set4/en_us/img/cards/04SH130T2.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set4/en_us/img/cards/04SH130T2-full.png" + } + ], + "regions": [ + "Shurima" + ], + "regionRefs": [ + "Shurima" + ], + "attack": 3, + "cost": 2, + "health": 3, + "description": "When I'm summoned, level up, or Strike: Summon a Warlord's Hoard or advance it 1 round.", + "descriptionRaw": "When I'm summoned, level up, or Strike: Summon a Warlord's Hoard or advance it 1 round.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"My code is far simpler--disregard any rule that prevents me from doing whatever I want.\"", + "artistName": "SIXMOREVODKA", + "name": "Akshan", + "cardCode": "04SH130T2", + "keywords": [ + "Quick Attack" + ], + "keywordRefs": [ + "QuickStrike" + ], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "Champion", + "rarityRef": "Champion", + "subtypes": [], + "supertype": "Champion", + "type": "Unit", + "collectible": false, + "set": "Set4" + }, + { + "associatedCards": [], + "associatedCardRefs": [ + "04SH130T10", + "04SH003T14", + "04SH130" + ], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set4/en_us/img/cards/04SH130T1.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set4/en_us/img/cards/04SH130T1-full.png" + } + ], + "regions": [ + "Shurima" + ], + "regionRefs": [ + "Shurima" + ], + "attack": 0, + "cost": 1, + "health": 0, + "description": "Countdown 8: Create a Relic of Power in hand.\r\nWhen you target allies advance me 1.\r\n", + "descriptionRaw": "Countdown 8: Create a Relic of Power in hand.\r\nWhen you target allies advance me 1.\r\n", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"See that eyesore of a building? That's where the swine lives. We'll take him out, grab the loot, and be back in time for dinner.\" - Vekauran Vagabond", + "artistName": "Kudos Productions", + "name": "Warlord's Palace", + "cardCode": "04SH130T1", + "keywords": [ + "Countdown", + "Landmark" + ], + "keywordRefs": [ + "Countdown", + "LandmarkVisualOnly" + ], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "None", + "rarityRef": "None", + "subtypes": [], + "supertype": "", + "type": "Landmark", + "collectible": false, + "set": "Set4" + }, + { + "associatedCards": [], + "associatedCardRefs": [ + "04SH130T13", + "04SH130T14", + "04SH130T7", + "04SH130T8", + "04SH130T2" + ], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set4/en_us/img/cards/04SH130T6.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set4/en_us/img/cards/04SH130T6-full.png" + } + ], + "regions": [ + "Shurima" + ], + "regionRefs": [ + "Shurima" + ], + "attack": 0, + "cost": 1, + "health": 0, + "description": "Countdown 8: Create a Sentinel's Hoard in hand.\r\nWhen you target allies advance me 1.", + "descriptionRaw": "Countdown 8: Create a Sentinel's Hoard in hand.\r\nWhen you target allies advance me 1.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "When a group of survivors from the fallen city of Vekaura learned of a particular warlord's sordid history, they wasted no time making plans to seize his ill-gotten gains.", + "artistName": "Kudos Productions", + "name": "Warlord's Hoard", + "cardCode": "04SH130T6", + "keywords": [ + "Countdown", + "Landmark" + ], + "keywordRefs": [ + "Countdown", + "LandmarkVisualOnly" + ], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "None", + "rarityRef": "None", + "subtypes": [], + "supertype": "", + "type": "Landmark", + "collectible": false, + "set": "Set4" + }, + { + "associatedCards": [], + "associatedCardRefs": [ + "04SH130T14", + "04SH130T7", + "04SH130T8" + ], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set4/en_us/img/cards/04SH130T13.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set4/en_us/img/cards/04SH130T13-full.png" + } + ], + "regions": [ + "Shurima" + ], + "regionRefs": [ + "Shurima" + ], + "attack": 0, + "cost": 0, + "health": 0, + "description": "Play a The Absolver's Resurrection, a Fount of Power, or a Shield of the Sentinels.", + "descriptionRaw": "Play a The Absolver's Resurrection, a Fount of Power, or a Shield of the Sentinels.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "Before the thief could even reach for her tools, a pale green fog enveloped the box, coaxing it open with a cold whisper.", + "artistName": "Kudos Productions", + "name": "Sentinel's Hoard", + "cardCode": "04SH130T13", + "keywords": [ + "Fleeting", + "Focus" + ], + "keywordRefs": [ + "Fleeting", + "Focus" + ], + "spellSpeed": "Burst", + "spellSpeedRef": "Burst", + "rarity": "COMMON", + "rarityRef": "Common", + "subtypes": [], + "supertype": "", + "type": "Spell", + "collectible": false, + "set": "Set4" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set4/en_us/img/cards/04SH130T7.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set4/en_us/img/cards/04SH130T7-full.png" + } + ], + "regions": [ + "Shurima" + ], + "regionRefs": [ + "Shurima" + ], + "attack": 0, + "cost": 0, + "health": 0, + "description": "Draw 2. Your cards cost 1 less this round.", + "descriptionRaw": "Draw 2. Your cards cost 1 less this round.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"My love... Why won't you answer? Please. Answer me, Isolde. ANSWER ME!\" - Viego", + "artistName": "Kudos Productions", + "name": "Fount of Power", + "cardCode": "04SH130T7", + "keywords": [ + "Focus", + "Fleeting" + ], + "keywordRefs": [ + "Focus", + "Fleeting" + ], + "spellSpeed": "Burst", + "spellSpeedRef": "Burst", + "rarity": "None", + "rarityRef": "None", + "subtypes": [], + "supertype": "", + "type": "Spell", + "collectible": false, + "set": "Set4" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set4/en_us/img/cards/04SH130T14.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set4/en_us/img/cards/04SH130T14-full.png" + } + ], + "regions": [ + "Shurima" + ], + "regionRefs": [ + "Shurima" + ], + "attack": 0, + "cost": 0, + "health": 0, + "description": "Grant all enemies Vulnerable and create in hand a 0 cost copy of the strongest ally that died this game.", + "descriptionRaw": "Grant all enemies Vulnerable and create in hand a 0 cost copy of the strongest ally that died this game.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"Fate is what I make it.\" - Akshan", + "artistName": "Kudos Productions", + "name": "The Absolver's Resurrection", + "cardCode": "04SH130T14", + "keywords": [ + "Focus", + "Fleeting" + ], + "keywordRefs": [ + "Focus", + "Fleeting" + ], + "spellSpeed": "Burst", + "spellSpeedRef": "Burst", + "rarity": "None", + "rarityRef": "None", + "subtypes": [], + "supertype": "", + "type": "Spell", + "collectible": false, + "set": "Set4" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set4/en_us/img/cards/04SH130T8.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set4/en_us/img/cards/04SH130T8-full.png" + } + ], + "regions": [ + "Shurima" + ], + "regionRefs": [ + "Shurima" + ], + "attack": 0, + "cost": 0, + "health": 0, + "description": "Grant your champions everywhere SpellShield and +2|+2.", + "descriptionRaw": "Grant your champions everywhere SpellShield and +2|+2.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "The Sentinels of Light trace their heritage back to blessed Helia. The relic stones they saved from the Ruination would become the world's greatest defense against the darkness of the Black Mist.", + "artistName": "Kudos Productions", + "name": "Shield of the Sentinels", + "cardCode": "04SH130T8", + "keywords": [ + "Focus", + "Fleeting" + ], + "keywordRefs": [ + "Focus", + "Fleeting" + ], + "spellSpeed": "Burst", + "spellSpeedRef": "Burst", + "rarity": "None", + "rarityRef": "None", + "subtypes": [], + "supertype": "", + "type": "Spell", + "collectible": false, + "set": "Set4" + }, + { + "associatedCards": [], + "associatedCardRefs": [ + "04SH003T14", + "04SH130T1", + "04SH130" + ], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set4/en_us/img/cards/04SH130T10.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set4/en_us/img/cards/04SH130T10-full.png" + } + ], + "regions": [ + "Shurima" + ], + "regionRefs": [ + "Shurima" + ], + "attack": 0, + "cost": 0, + "health": 0, + "description": "Pick 1 - Predict then draw 1, summon a Sandstone Charger, or grant all allies +1|+0.", + "descriptionRaw": "Pick 1 - Predict then draw 1, summon a Sandstone Charger, or grant all allies +1|+0.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "The Black Mist searched for her in everything. It cried out in his voice, grasped forward with his pleading hands, commanding her to return. But she could not. She would not.", + "artistName": "Kudos Productions", + "name": "Relic of Power", + "cardCode": "04SH130T10", + "keywords": [ + "Fleeting", + "Focus" + ], + "keywordRefs": [ + "Fleeting", + "Focus" + ], + "spellSpeed": "Burst", + "spellSpeedRef": "Burst", + "rarity": "None", + "rarityRef": "None", + "subtypes": [], + "supertype": "", + "type": "Spell", + "collectible": false, + "set": "Set4" + }, + { + "associatedCards": [], + "associatedCardRefs": [ + "04SH003T14" + ], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set4/en_us/img/cards/04SH130T12.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set4/en_us/img/cards/04SH130T12-full.png" + } + ], + "regions": [ + "Shurima" + ], + "regionRefs": [ + "Shurima" + ], + "attack": 0, + "cost": 0, + "health": 0, + "description": "Summon a Sandstone Charger.", + "descriptionRaw": "Summon a Sandstone Charger.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "The mist searched for her in everything. It cried out in his voice, grasped forward with his pleading hands, commanding her to return. But she could not. She would not.", + "artistName": "Kudos Productions", + "name": "Relic of Power", + "cardCode": "04SH130T12", + "keywords": [ + "Focus", + "Fleeting" + ], + "keywordRefs": [ + "Focus", + "Fleeting" + ], + "spellSpeed": "Burst", + "spellSpeedRef": "Burst", + "rarity": "None", + "rarityRef": "None", + "subtypes": [], + "supertype": "", + "type": "Spell", + "collectible": false, + "set": "Set4" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set4/en_us/img/cards/04SH130T9.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set4/en_us/img/cards/04SH130T9-full.png" + } + ], + "regions": [ + "Shurima" + ], + "regionRefs": [ + "Shurima" + ], + "attack": 0, + "cost": 0, + "health": 0, + "description": "Grant all allies +1|+0.", + "descriptionRaw": "Grant all allies +1|+0.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "The mist searched for her in everything. It cried out in his voice, grasped forward with his pleading hands, commanding her to return. But she could not. She would not.", + "artistName": "Kudos Productions", + "name": "Relic of Power", + "cardCode": "04SH130T9", + "keywords": [ + "Focus", + "Fleeting" + ], + "keywordRefs": [ + "Focus", + "Fleeting" + ], + "spellSpeed": "Burst", + "spellSpeedRef": "Burst", + "rarity": "None", + "rarityRef": "None", + "subtypes": [], + "supertype": "", + "type": "Spell", + "collectible": false, + "set": "Set4" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set4/en_us/img/cards/04SH130T11.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set4/en_us/img/cards/04SH130T11-full.png" + } + ], + "regions": [ + "Shurima" + ], + "regionRefs": [ + "Shurima" + ], + "attack": 0, + "cost": 0, + "health": 0, + "description": "Predict, then draw 1.", + "descriptionRaw": "Predict, then draw 1.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "The mist searched for her in everything. It cried out in his voice, grasped forward with his pleading hands, commanding her to return. But she could not. She would not.", + "artistName": "Kudos Productions", + "name": "Relic of Power", + "cardCode": "04SH130T11", + "keywords": [ + "Focus", + "Fleeting" + ], + "keywordRefs": [ + "Focus", + "Fleeting" + ], + "spellSpeed": "Burst", + "spellSpeedRef": "Burst", + "rarity": "None", + "rarityRef": "None", + "subtypes": [], + "supertype": "", + "type": "Spell", + "collectible": false, + "set": "Set4" + }, + { + "associatedCards": [], + "associatedCardRefs": [ + "04SH003T1" + ], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set4/en_us/img/cards/04SH114.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set4/en_us/img/cards/04SH114-full.png" + } + ], + "regions": [ + "Shurima" + ], + "regionRefs": [ + "Shurima" + ], + "attack": 0, + "cost": 4, + "health": 0, + "description": "Grant allied Sand Soldiers everywhere +1|+0.\r\nSummon 2 Sand Soldiers.", + "descriptionRaw": "Grant allied Sand Soldiers everywhere +1|+0.\r\nSummon 2 Sand Soldiers.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "They do not rest. They do not hesitate. They are uncompromising, unfeeling, unyielding.", + "artistName": "Kudos Productions", + "name": "Desert's Wrath", + "cardCode": "04SH114", + "keywords": [ + "Slow" + ], + "keywordRefs": [ + "Slow" + ], + "spellSpeed": "Slow", + "spellSpeedRef": "Slow", + "rarity": "RARE", + "rarityRef": "Rare", + "subtypes": [], + "supertype": "", + "type": "Spell", + "collectible": true, + "set": "Set4" + }, + { + "associatedCards": [], + "associatedCardRefs": [ + "04SH067T4", + "04SH067T1", + "04SH067T2", + "04SH062", + "04SH067T5" + ], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set4/en_us/img/cards/04SH067.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set4/en_us/img/cards/04SH067-full.png" + } + ], + "regions": [ + "Shurima" + ], + "regionRefs": [ + "Shurima" + ], + "attack": 4, + "cost": 4, + "health": 4, + "description": "When I Challenge an enemy, give me +2|+1 this round. ", + "descriptionRaw": "When I Challenge an enemy, give me +2|+1 this round. ", + "levelupDescription": "I've dealt 10+ damage.", + "levelupDescriptionRaw": "I've dealt 10+ damage.", + "flavorText": "\"It could be easily forgotten that he was once human, for the visage of the crocodile fits his love for bloody battle so well...\" - Scribe Kah'nir, History of the Ascended Host", + "artistName": "SIXMOREVODKA", + "name": "Renekton", + "cardCode": "04SH067", + "keywords": [ + "Overwhelm" + ], + "keywordRefs": [ + "Overwhelm" + ], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "Champion", + "rarityRef": "Champion", + "subtypes": [ + "ASCENDED" + ], + "supertype": "Champion", + "type": "Unit", + "collectible": true, + "set": "Set4" + }, + { + "associatedCards": [], + "associatedCardRefs": [ + "04SH067", + "04SH067T4", + "04SH067T2", + "04SH067T5" + ], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set4/en_us/img/cards/04SH067T1.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set4/en_us/img/cards/04SH067T1-full.png" + } + ], + "regions": [ + "Shurima" + ], + "regionRefs": [ + "Shurima" + ], + "attack": 10, + "cost": 4, + "health": 10, + "description": "When I block or Attack: Deal 2 to enemies and the enemy Nexus.", + "descriptionRaw": "When I block or Attack: Deal 2 to enemies and the enemy Nexus.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"When he finally has a chance at revenge on his brother Nasus, Renekton will stop at nothing. He will destroy all, and Shurima will again be left a ruin.\" - Scribe Kah'nir, History of the Ascended Host", + "artistName": "SIXMOREVODKA", + "name": "Renekton", + "cardCode": "04SH067T1", + "keywords": [ + "Overwhelm" + ], + "keywordRefs": [ + "Overwhelm" + ], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "None", + "rarityRef": "None", + "subtypes": [ + "ASCENDED" + ], + "supertype": "Champion", + "type": "Unit", + "collectible": false, + "set": "Set4" + }, + { + "associatedCards": [], + "associatedCardRefs": [ + "04SH067", + "04SH067T1", + "04SH067T2", + "04SH062", + "04SH067T5" + ], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set4/en_us/img/cards/04SH067T4.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set4/en_us/img/cards/04SH067T4-full.png" + } + ], + "regions": [ + "Shurima" + ], + "regionRefs": [ + "Shurima" + ], + "attack": 5, + "cost": 4, + "health": 5, + "description": "Attack: Give me +3|+3 this round. ", + "descriptionRaw": "Attack: Give me +3|+3 this round. ", + "levelupDescription": "You've restored the Sun Disc.", + "levelupDescriptionRaw": "You've restored the Sun Disc.", + "flavorText": "\"So many long years in the dark with that betrayer filling his head with words of hate and resentment, breeding contempt for his brother. It only fueled his rage, made him stronger.\" - Scribe Kah'nir, History of the Ascended Host", + "artistName": "SIXMOREVODKA", + "name": "Renekton", + "cardCode": "04SH067T4", + "keywords": [ + "Overwhelm" + ], + "keywordRefs": [ + "Overwhelm" + ], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "None", + "rarityRef": "None", + "subtypes": [ + "ASCENDED" + ], + "supertype": "Champion", + "type": "Unit", + "collectible": false, + "set": "Set4" + }, + { + "associatedCards": [], + "associatedCardRefs": [ + "04SH067", + "04SH067T4", + "04SH067T1" + ], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set4/en_us/img/cards/04SH067T2.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set4/en_us/img/cards/04SH067T2-full.png" + } + ], + "regions": [ + "Shurima" + ], + "regionRefs": [ + "Shurima" + ], + "attack": 0, + "cost": 2, + "health": 0, + "description": "Give an ally +2|+0 to give an enemy Vulnerable this round.\r\nCreate a Renekton in your deck.", + "descriptionRaw": "Give an ally +2|+0 to give an enemy Vulnerable this round.\r\nCreate a Renekton in your deck.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"Shred them!\" - Renekton", + "artistName": "Kudos Productions", + "name": "Renekton's Ruthless Predator", + "cardCode": "04SH067T2", + "keywords": [ + "Burst" + ], + "keywordRefs": [ + "Burst" + ], + "spellSpeed": "Burst", + "spellSpeedRef": "Burst", + "rarity": "None", + "rarityRef": "None", + "subtypes": [], + "supertype": "Champion", + "type": "Spell", + "collectible": false, + "set": "Set4" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set4/en_us/img/cards/04SH067T5.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set4/en_us/img/cards/04SH067T5-full.png" + } + ], + "regions": [ + "Shurima" + ], + "regionRefs": [ + "Shurima" + ], + "attack": 0, + "cost": 0, + "health": 0, + "description": "Deal 2 to enemies and the enemy Nexus.", + "descriptionRaw": "Deal 2 to enemies and the enemy Nexus.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"I will spare no one!\" - Renekton", + "artistName": "Kudos Productions", + "name": "Dominus Destruction", + "cardCode": "04SH067T5", + "keywords": [ + "Skill" + ], + "keywordRefs": [ + "Skill" + ], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "None", + "rarityRef": "None", + "subtypes": [], + "supertype": "", + "type": "Ability", + "collectible": false, + "set": "Set4" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set4/en_us/img/cards/04SH138T1.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set4/en_us/img/cards/04SH138T1-full.png" + } + ], + "regions": [ + "Shurima" + ], + "regionRefs": [ + "Shurima" + ], + "attack": 0, + "cost": 2, + "health": 0, + "description": "Give an ally Overwhelm and +2|+1 this round.", + "descriptionRaw": "Give an ally Overwhelm and +2|+1 this round.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"Eh. Who cares?\" - Akshan", + "artistName": "Kudos Productions", + "name": "The Absolver's Return", + "cardCode": "04SH138T1", + "keywords": [ + "Burst", + "Fleeting" + ], + "keywordRefs": [ + "Burst", + "Fleeting" + ], + "spellSpeed": "Burst", + "spellSpeedRef": "Burst", + "rarity": "None", + "rarityRef": "None", + "subtypes": [], + "supertype": "", + "type": "Spell", + "collectible": false, + "set": "Set4" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set4/en_us/img/cards/04SH120.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set4/en_us/img/cards/04SH120-full.png" + } + ], + "regions": [ + "Shurima" + ], + "regionRefs": [ + "Shurima" + ], + "attack": 0, + "cost": 1, + "health": 0, + "description": "Create a random landmark with Countdown in hand, or advance your landmarks 1 round.", + "descriptionRaw": "Create a random landmark with Countdown in hand, or advance your landmarks 1 round.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"Time is evanescent.\" - Zilean", + "artistName": "Kudos Productions", + "name": "Imagined Possibilities", + "cardCode": "04SH120", + "keywords": [ + "Focus" + ], + "keywordRefs": [ + "Focus" + ], + "spellSpeed": "Burst", + "spellSpeedRef": "Burst", + "rarity": "RARE", + "rarityRef": "Rare", + "subtypes": [], + "supertype": "", + "type": "Spell", + "collectible": true, + "set": "Set4" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set4/en_us/img/cards/04SH119.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set4/en_us/img/cards/04SH119-full.png" + } + ], + "regions": [ + "Shurima" + ], + "regionRefs": [ + "Shurima" + ], + "attack": 0, + "cost": 6, + "health": 0, + "description": "Reputation: I cost 3. \r\nDeal 1 to a random enemy or the enemy Nexus 5 times.", + "descriptionRaw": "Reputation: I cost 3. \r\nDeal 1 to a random enemy or the enemy Nexus 5 times.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"This might get a little messy.\" - Sivir", + "artistName": "Kudos Productions", + "name": "Ricochet", + "cardCode": "04SH119", + "keywords": [ + "Slow" + ], + "keywordRefs": [ + "Slow" + ], + "spellSpeed": "Slow", + "spellSpeedRef": "Slow", + "rarity": "COMMON", + "rarityRef": "Common", + "subtypes": [], + "supertype": "", + "type": "Spell", + "collectible": true, + "set": "Set4" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set4/en_us/img/cards/04SH068.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set4/en_us/img/cards/04SH068-full.png" + } + ], + "regions": [ + "Shurima" + ], + "regionRefs": [ + "Shurima" + ], + "attack": 2, + "cost": 3, + "health": 3, + "description": "Play: Predict.", + "descriptionRaw": "Play: Predict.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "Not all xer'sai are born to butcher. Some can summon their kin with piercing shrieks that rattle the sands as well as the senses.", + "artistName": "Kudos Productions", + "name": "Xer'sai Caller", + "cardCode": "04SH068", + "keywords": [ + "Lurk" + ], + "keywordRefs": [ + "Lurker" + ], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "COMMON", + "rarityRef": "Common", + "subtypes": [ + "LURKER" + ], + "supertype": "", + "type": "Unit", + "collectible": true, + "set": "Set4" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set4/en_us/img/cards/04SH093.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set4/en_us/img/cards/04SH093-full.png" + } + ], + "regions": [ + "Shurima" + ], + "regionRefs": [ + "Shurima" + ], + "attack": 0, + "cost": 1, + "health": 0, + "description": "Give an ally +1|+1 this round.\r\nIf you've summoned a landmark this game, give it +2|+1 instead.", + "descriptionRaw": "Give an ally +1|+1 this round.\r\nIf you've summoned a landmark this game, give it +2|+1 instead.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"With the land's help, we WILL defend ourselves!\" - Taliyah", + "artistName": "", + "name": "Shaped Stone", + "cardCode": "04SH093", + "keywords": [ + "Burst" + ], + "keywordRefs": [ + "Burst" + ], + "spellSpeed": "Burst", + "spellSpeedRef": "Burst", + "rarity": "COMMON", + "rarityRef": "Common", + "subtypes": [], + "supertype": "", + "type": "Spell", + "collectible": true, + "set": "Set4" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set4/en_us/img/cards/04SH079.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set4/en_us/img/cards/04SH079-full.png" + } + ], + "regions": [ + "Shurima" + ], + "regionRefs": [ + "Shurima" + ], + "attack": 0, + "cost": 1, + "health": 0, + "description": "Predict.\r\nGive an enemy -2|-0 this round. ", + "descriptionRaw": "Predict.\r\nGive an enemy -2|-0 this round. ", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"I have seen my destiny, and this time, I will not be stopped.\" - Azir", + "artistName": "Kudos Productions", + "name": "Scrying Sands", + "cardCode": "04SH079", + "keywords": [ + "Burst" + ], + "keywordRefs": [ + "Burst" + ], + "spellSpeed": "Burst", + "spellSpeedRef": "Burst", + "rarity": "RARE", + "rarityRef": "Rare", + "subtypes": [], + "supertype": "", + "type": "Spell", + "collectible": true, + "set": "Set4" + }, + { + "associatedCards": [], + "associatedCardRefs": [ + "04SH006" + ], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set4/en_us/img/cards/04SH038.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set4/en_us/img/cards/04SH038-full.png" + } + ], + "regions": [ + "Shurima" + ], + "regionRefs": [ + "Shurima" + ], + "attack": 3, + "cost": 2, + "health": 1, + "description": "When I'm summoned, summon a Roiling Sands.", + "descriptionRaw": "When I'm summoned, summon a Roiling Sands.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"Today, we began our journey to Nashramae! Samir is determined to cross the Great Sai before the next full moon, and is making SUCH a mess of things! I did not know a simple sandboard could collapse a whole dune. Neither did Sami. He's fine.\"\n- Zaifa's diary", + "artistName": "Dao Le", + "name": "Rock Hopper", + "cardCode": "04SH038", + "keywords": [], + "keywordRefs": [], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "COMMON", + "rarityRef": "Common", + "subtypes": [], + "supertype": "", + "type": "Unit", + "collectible": true, + "set": "Set4" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set4/en_us/img/cards/04SH104.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set4/en_us/img/cards/04SH104-full.png" + } + ], + "regions": [ + "Shurima" + ], + "regionRefs": [ + "Shurima" + ], + "attack": 4, + "cost": 5, + "health": 4, + "description": "Play: Advance an allied landmark 3 rounds.", + "descriptionRaw": "Play: Advance an allied landmark 3 rounds.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "Whenever he seeks a moment's peace, Zilean returns to Icathia's last garden, just as he remembers it.", + "artistName": "Polar Engine", + "name": "Preservationist", + "cardCode": "04SH104", + "keywords": [], + "keywordRefs": [], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "RARE", + "rarityRef": "Rare", + "subtypes": [], + "supertype": "", + "type": "Unit", + "collectible": true, + "set": "Set4" + }, + { + "associatedCards": [], + "associatedCardRefs": [ + "04SH130T1", + "04SH130T10" + ], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set4/en_us/img/cards/04SH128.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set4/en_us/img/cards/04SH128-full.png" + } + ], + "regions": [ + "Shurima" + ], + "regionRefs": [ + "Shurima" + ], + "attack": 3, + "cost": 3, + "health": 3, + "description": "When I'm summoned, summon a Warlord's Palace or advance it 2 rounds.", + "descriptionRaw": "When I'm summoned, summon a Warlord's Palace or advance it 2 rounds.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "Seeing Akshan hanging underneath the fourth-floor window, Najah cursed under her breath. Pretty boy beat her to the mark. Again. Turning her dagger over in her hand, she pondered what to say to him. Maybe this time, he'd finally acknowledge her.", + "artistName": "Kudos Productions", + "name": "Vekauran Vagabond", + "cardCode": "04SH128", + "keywords": [], + "keywordRefs": [], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "COMMON", + "rarityRef": "Common", + "subtypes": [], + "supertype": "", + "type": "Unit", + "collectible": true, + "set": "Set4" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set4/en_us/img/cards/04SH109.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set4/en_us/img/cards/04SH109-full.png" + } + ], + "regions": [ + "Shurima" + ], + "regionRefs": [ + "Shurima" + ], + "attack": 0, + "cost": 3, + "health": 0, + "description": "Give an enemy -4|-0 or 2 enemies -1|-0 this round. Disable their positive keywords this round.", + "descriptionRaw": "Give an enemy -4|-0 or 2 enemies -1|-0 this round. Disable their positive keywords this round.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "In parts of the desert, old ruins have sunk into sand, creating hollows where unwary travelers might join them. ", + "artistName": "Kudos Productions", + "name": "Quicksand", + "cardCode": "04SH109", + "keywords": [ + "Burst" + ], + "keywordRefs": [ + "Burst" + ], + "spellSpeed": "Burst", + "spellSpeedRef": "Burst", + "rarity": "COMMON", + "rarityRef": "Common", + "subtypes": [], + "supertype": "", + "type": "Spell", + "collectible": true, + "set": "Set4" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set4/en_us/img/cards/04SH109T1.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set4/en_us/img/cards/04SH109T1-full.png" + } + ], + "regions": [ + "Shurima" + ], + "regionRefs": [ + "Shurima" + ], + "attack": 0, + "cost": 3, + "health": 0, + "description": "Give 2 enemies -1|-0 and disable their positive keywords this round.", + "descriptionRaw": "Give 2 enemies -1|-0 and disable their positive keywords this round.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "In parts of the desert, old ruins have sunk into sand, creating hollows where unwary travelers might join them. ", + "artistName": "Kudos Productions", + "name": "Quicksand", + "cardCode": "04SH109T1", + "keywords": [ + "Burst" + ], + "keywordRefs": [ + "Burst" + ], + "spellSpeed": "Burst", + "spellSpeedRef": "Burst", + "rarity": "None", + "rarityRef": "None", + "subtypes": [], + "supertype": "", + "type": "Spell", + "collectible": false, + "set": "Set4" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set4/en_us/img/cards/04SH109T2.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set4/en_us/img/cards/04SH109T2-full.png" + } + ], + "regions": [ + "Shurima" + ], + "regionRefs": [ + "Shurima" + ], + "attack": 0, + "cost": 3, + "health": 0, + "description": "Give an enemy -4|-0 and disable its positive keywords this round.", + "descriptionRaw": "Give an enemy -4|-0 and disable its positive keywords this round.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "In parts of the desert, old ruins have sunk into sand, creating hollows where unwary travelers might join them. ", + "artistName": "Kudos Productions", + "name": "Quicksand", + "cardCode": "04SH109T2", + "keywords": [ + "Burst" + ], + "keywordRefs": [ + "Burst" + ], + "spellSpeed": "Burst", + "spellSpeedRef": "Burst", + "rarity": "None", + "rarityRef": "None", + "subtypes": [], + "supertype": "", + "type": "Spell", + "collectible": false, + "set": "Set4" + }, + { + "associatedCards": [], + "associatedCardRefs": [ + "04SH003T1" + ], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set4/en_us/img/cards/04SH043.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set4/en_us/img/cards/04SH043-full.png" + } + ], + "regions": [ + "Shurima" + ], + "regionRefs": [ + "Shurima" + ], + "attack": 0, + "cost": 6, + "health": 0, + "description": "Deal 4 to a unit.\r\nSummon 2 Sand Soldiers.", + "descriptionRaw": "Deal 4 to a unit.\r\nSummon 2 Sand Soldiers.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"Go. Surround them. They cannot fight the land itself.\" - Azir", + "artistName": "Kudos Productions", + "name": "Shifting Sands", + "cardCode": "04SH043", + "keywords": [ + "Slow" + ], + "keywordRefs": [ + "Slow" + ], + "spellSpeed": "Slow", + "spellSpeedRef": "Slow", + "rarity": "RARE", + "rarityRef": "Rare", + "subtypes": [], + "supertype": "", + "type": "Spell", + "collectible": true, + "set": "Set4" + }, + { + "associatedCards": [], + "associatedCardRefs": [ + "04SH003T1" + ], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set4/en_us/img/cards/04SH099.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set4/en_us/img/cards/04SH099-full.png" + } + ], + "regions": [ + "Shurima" + ], + "regionRefs": [ + "Shurima" + ], + "attack": 0, + "cost": 3, + "health": 0, + "description": "Summon a Sand Soldier.\r\nCreate a Fleeting Arise! in hand.", + "descriptionRaw": "Summon a Sand Soldier.\r\nCreate a Fleeting Arise! in hand.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"The order is given.\" - Azir", + "artistName": "Kudos Productions", + "name": "Arise!", + "cardCode": "04SH099", + "keywords": [ + "Burst" + ], + "keywordRefs": [ + "Burst" + ], + "spellSpeed": "Burst", + "spellSpeedRef": "Burst", + "rarity": "RARE", + "rarityRef": "Rare", + "subtypes": [], + "supertype": "", + "type": "Spell", + "collectible": true, + "set": "Set4" + }, + { + "associatedCards": [], + "associatedCardRefs": [ + "04SH098" + ], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set4/en_us/img/cards/04SH048.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set4/en_us/img/cards/04SH048-full.png" + } + ], + "regions": [ + "Shurima" + ], + "regionRefs": [ + "Shurima" + ], + "attack": 0, + "cost": 3, + "health": 0, + "description": "Reputation: I cost 0. \r\nCountdown 1: Create 2 Lucky Finds in hand.", + "descriptionRaw": "Reputation: I cost 0. \r\nCountdown 1: Create 2 Lucky Finds in hand.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"Some maps take years to decipher, some traps takes months to disarm, and some vaults take weeks to navigate. But the times you pull it off? They're worth every damned second.\" - Sivir", + "artistName": "Kudos Productions", + "name": "Inner Sanctum", + "cardCode": "04SH048", + "keywords": [ + "Countdown", + "Landmark" + ], + "keywordRefs": [ + "Countdown", + "LandmarkVisualOnly" + ], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "COMMON", + "rarityRef": "Common", + "subtypes": [], + "supertype": "", + "type": "Landmark", + "collectible": true, + "set": "Set4" + }, + { + "associatedCards": [], + "associatedCardRefs": [ + "04SH098" + ], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set4/en_us/img/cards/04SH056.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set4/en_us/img/cards/04SH056-full.png" + } + ], + "regions": [ + "Shurima" + ], + "regionRefs": [ + "Shurima" + ], + "attack": 5, + "cost": 4, + "health": 3, + "description": "When I'm summoned, create a Lucky Find in hand.", + "descriptionRaw": "When I'm summoned, create a Lucky Find in hand.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"My friend, for you I've procured this incomparable beauty straight from the fabled Tomb of the Emperors and pulled it right from the hand of the great Renekton himself and as I rode out, I was surrounded by ten--twenty!--bloodthirsty sauren riders! Truly, a miracle that such a treasure has made it to your hands.\"", + "artistName": "Grafit Studio", + "name": "Profiteer", + "cardCode": "04SH056", + "keywords": [], + "keywordRefs": [], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "COMMON", + "rarityRef": "Common", + "subtypes": [], + "supertype": "", + "type": "Unit", + "collectible": true, + "set": "Set4" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set4/en_us/img/cards/04SH098T3.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set4/en_us/img/cards/04SH098T3-full.png" + } + ], + "regions": [ + "Shurima" + ], + "regionRefs": [ + "Shurima" + ], + "attack": 0, + "cost": 0, + "health": 0, + "description": "Fearsome", + "descriptionRaw": "Fearsome", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"Yeah, you better be afraid.\" - Sivir", + "artistName": "Kudos Productions", + "name": "Lucky Find", + "cardCode": "04SH098T3", + "keywords": [ + "Focus", + "Fleeting" + ], + "keywordRefs": [ + "Focus", + "Fleeting" + ], + "spellSpeed": "Burst", + "spellSpeedRef": "Burst", + "rarity": "None", + "rarityRef": "None", + "subtypes": [], + "supertype": "", + "type": "Spell", + "collectible": false, + "set": "Set4" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set4/en_us/img/cards/04SH098T12.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set4/en_us/img/cards/04SH098T12-full.png" + } + ], + "regions": [ + "Shurima" + ], + "regionRefs": [ + "Shurima" + ], + "attack": 0, + "cost": 0, + "health": 0, + "description": "Overwhelm", + "descriptionRaw": "Overwhelm", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"If I can't get past you, I'll just go through you.\" - Sivir", + "artistName": "Kudos Productions", + "name": "Lucky Find", + "cardCode": "04SH098T12", + "keywords": [ + "Focus", + "Fleeting" + ], + "keywordRefs": [ + "Focus", + "Fleeting" + ], + "spellSpeed": "Burst", + "spellSpeedRef": "Burst", + "rarity": "None", + "rarityRef": "None", + "subtypes": [], + "supertype": "", + "type": "Spell", + "collectible": false, + "set": "Set4" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set4/en_us/img/cards/04SH098T7.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set4/en_us/img/cards/04SH098T7-full.png" + } + ], + "regions": [ + "Shurima" + ], + "regionRefs": [ + "Shurima" + ], + "attack": 0, + "cost": 0, + "health": 0, + "description": "Quick Attack", + "descriptionRaw": "Quick Attack", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"Quick as a flash.\" - Sivir", + "artistName": "Kudos Productions", + "name": "Lucky Find", + "cardCode": "04SH098T7", + "keywords": [ + "Focus", + "Fleeting" + ], + "keywordRefs": [ + "Focus", + "Fleeting" + ], + "spellSpeed": "Burst", + "spellSpeedRef": "Burst", + "rarity": "None", + "rarityRef": "None", + "subtypes": [], + "supertype": "", + "type": "Spell", + "collectible": false, + "set": "Set4" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set4/en_us/img/cards/04SH098T6.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set4/en_us/img/cards/04SH098T6-full.png" + } + ], + "regions": [ + "Shurima" + ], + "regionRefs": [ + "Shurima" + ], + "attack": 0, + "cost": 0, + "health": 0, + "description": "+1|+1", + "descriptionRaw": "+1|+1", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"The best just got better.\" - Sivir", + "artistName": "Kudos Productions", + "name": "Lucky Find", + "cardCode": "04SH098T6", + "keywords": [ + "Focus", + "Fleeting" + ], + "keywordRefs": [ + "Focus", + "Fleeting" + ], + "spellSpeed": "Burst", + "spellSpeedRef": "Burst", + "rarity": "None", + "rarityRef": "None", + "subtypes": [], + "supertype": "", + "type": "Spell", + "collectible": false, + "set": "Set4" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set4/en_us/img/cards/04SH098T2.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set4/en_us/img/cards/04SH098T2-full.png" + } + ], + "regions": [ + "Shurima" + ], + "regionRefs": [ + "Shurima" + ], + "attack": 0, + "cost": 0, + "health": 0, + "description": "Challenger", + "descriptionRaw": "Challenger", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"Try turning me down.\" - Sivir", + "artistName": "Kudos Productions", + "name": "Lucky Find", + "cardCode": "04SH098T2", + "keywords": [ + "Focus", + "Fleeting" + ], + "keywordRefs": [ + "Focus", + "Fleeting" + ], + "spellSpeed": "Burst", + "spellSpeedRef": "Burst", + "rarity": "None", + "rarityRef": "None", + "subtypes": [], + "supertype": "", + "type": "Spell", + "collectible": false, + "set": "Set4" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set4/en_us/img/cards/04SH098T10.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set4/en_us/img/cards/04SH098T10-full.png" + } + ], + "regions": [ + "Shurima" + ], + "regionRefs": [ + "Shurima" + ], + "attack": 0, + "cost": 0, + "health": 0, + "description": "Tough", + "descriptionRaw": "Tough", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"Can't spend your earnings if you're dead.\" - Sivir", + "artistName": "Kudos Productions", + "name": "Lucky Find", + "cardCode": "04SH098T10", + "keywords": [ + "Focus", + "Fleeting" + ], + "keywordRefs": [ + "Focus", + "Fleeting" + ], + "spellSpeed": "Burst", + "spellSpeedRef": "Burst", + "rarity": "None", + "rarityRef": "None", + "subtypes": [], + "supertype": "", + "type": "Spell", + "collectible": false, + "set": "Set4" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set4/en_us/img/cards/04SH098T5.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set4/en_us/img/cards/04SH098T5-full.png" + } + ], + "regions": [ + "Shurima" + ], + "regionRefs": [ + "Shurima" + ], + "attack": 0, + "cost": 0, + "health": 0, + "description": "+2|+0", + "descriptionRaw": "+2|+0", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"Let's cut 'em down to size.\" - Sivir", + "artistName": "Kudos Productions", + "name": "Lucky Find", + "cardCode": "04SH098T5", + "keywords": [ + "Focus", + "Fleeting" + ], + "keywordRefs": [ + "Focus", + "Fleeting" + ], + "spellSpeed": "Burst", + "spellSpeedRef": "Burst", + "rarity": "None", + "rarityRef": "None", + "subtypes": [], + "supertype": "", + "type": "Spell", + "collectible": false, + "set": "Set4" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set4/en_us/img/cards/04SH098T8.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set4/en_us/img/cards/04SH098T8-full.png" + } + ], + "regions": [ + "Shurima" + ], + "regionRefs": [ + "Shurima" + ], + "attack": 0, + "cost": 0, + "health": 0, + "description": "+0|+2", + "descriptionRaw": "+0|+2", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"Go on. Gimme your best shot. Then it's my turn.\" - Sivir", + "artistName": "Kudos Productions", + "name": "Lucky Find", + "cardCode": "04SH098T8", + "keywords": [ + "Focus", + "Fleeting" + ], + "keywordRefs": [ + "Focus", + "Fleeting" + ], + "spellSpeed": "Burst", + "spellSpeedRef": "Burst", + "rarity": "None", + "rarityRef": "None", + "subtypes": [], + "supertype": "", + "type": "Spell", + "collectible": false, + "set": "Set4" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set4/en_us/img/cards/04SH098T1.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set4/en_us/img/cards/04SH098T1-full.png" + } + ], + "regions": [ + "Shurima" + ], + "regionRefs": [ + "Shurima" + ], + "attack": 0, + "cost": 0, + "health": 0, + "description": "SpellShield", + "descriptionRaw": "SpellShield", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"Your tricks ain't worth the sand you're standing on, kid.\" - Sivir", + "artistName": "Kudos Productions", + "name": "Lucky Find", + "cardCode": "04SH098T1", + "keywords": [ + "Focus", + "Fleeting" + ], + "keywordRefs": [ + "Focus", + "Fleeting" + ], + "spellSpeed": "Burst", + "spellSpeedRef": "Burst", + "rarity": "None", + "rarityRef": "None", + "subtypes": [], + "supertype": "", + "type": "Spell", + "collectible": false, + "set": "Set4" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set4/en_us/img/cards/04SH098.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set4/en_us/img/cards/04SH098-full.png" + } + ], + "regions": [ + "Shurima" + ], + "regionRefs": [ + "Shurima" + ], + "attack": 0, + "cost": 0, + "health": 0, + "description": "Pick a buff from among 3 to grant an ally.", + "descriptionRaw": "Pick a buff from among 3 to grant an ally.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"Nothin' better than a payday.\" - Sivir", + "artistName": "Kudos Productions", + "name": "Lucky Find", + "cardCode": "04SH098", + "keywords": [ + "Fleeting", + "Focus" + ], + "keywordRefs": [ + "Fleeting", + "Focus" + ], + "spellSpeed": "Burst", + "spellSpeedRef": "Burst", + "rarity": "None", + "rarityRef": "None", + "subtypes": [], + "supertype": "", + "type": "Spell", + "collectible": false, + "set": "Set4" + }, + { + "associatedCards": [], + "associatedCardRefs": [ + "04SH020T1", + "04SH020T2" + ], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set4/en_us/img/cards/04SH020.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set4/en_us/img/cards/04SH020-full.png" + } + ], + "regions": [ + "Shurima" + ], + "regionRefs": [ + "Shurima" + ], + "attack": 5, + "cost": 4, + "health": 3, + "description": "", + "descriptionRaw": "", + "levelupDescription": "You've dealt 30+ damage.", + "levelupDescriptionRaw": "You've dealt 30+ damage.", + "flavorText": "Sivir made her way through life as a mercenary, and burdened herself with all the risks and rewards that came with her choice. One fateful expedition almost cost her everything, but as her blood seeped into Shurima's sands, it awoke an ancient power that would return both her and her homeland to greatness.", + "artistName": "SIXMOREVODKA", + "name": "Sivir", + "cardCode": "04SH020", + "keywords": [ + "Quick Attack", + "SpellShield" + ], + "keywordRefs": [ + "QuickStrike", + "SpellShield" + ], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "Champion", + "rarityRef": "Champion", + "subtypes": [], + "supertype": "Champion", + "type": "Unit", + "collectible": true, + "set": "Set4" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set4/en_us/img/cards/04SH057.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set4/en_us/img/cards/04SH057-full.png" + } + ], + "regions": [ + "Shurima" + ], + "regionRefs": [ + "Shurima" + ], + "attack": 5, + "cost": 6, + "health": 6, + "description": "When you summon another ally, give it +2|+0 this round.", + "descriptionRaw": "When you summon another ally, give it +2|+0 this round.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "To receive the blessing of Azir is a great honor - to give a blessing in his name, an honor greater still.", + "artistName": "Kudos Productions", + "name": "Inspiring Marshal", + "cardCode": "04SH057", + "keywords": [], + "keywordRefs": [], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "RARE", + "rarityRef": "Rare", + "subtypes": [], + "supertype": "", + "type": "Unit", + "collectible": true, + "set": "Set4" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set4/en_us/img/cards/04SH103.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set4/en_us/img/cards/04SH103-full.png" + } + ], + "regions": [ + "Shurima" + ], + "regionRefs": [ + "Shurima" + ], + "attack": 4, + "cost": 3, + "health": 2, + "description": "Play: Grant an enemy Vulnerable.", + "descriptionRaw": "Play: Grant an enemy Vulnerable.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"And... there. Tied up, nice 'n pretty. Renekton likes his meals delivered still-squirming.\"", + "artistName": "Kudos Production", + "name": "Merciless Hunter", + "cardCode": "04SH103", + "keywords": [ + "Fearsome" + ], + "keywordRefs": [ + "Fearsome" + ], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "COMMON", + "rarityRef": "Common", + "subtypes": [], + "supertype": "", + "type": "Unit", + "collectible": true, + "set": "Set4" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set4/en_us/img/cards/04SH120T2.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set4/en_us/img/cards/04SH120T2-full.png" + } + ], + "regions": [ + "Shurima" + ], + "regionRefs": [ + "Shurima" + ], + "attack": 0, + "cost": 1, + "health": 0, + "description": "Advance your landmarks 1 round.", + "descriptionRaw": "Advance your landmarks 1 round.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"Time is evanescent.\" - Zilean", + "artistName": "Kudos Productions", + "name": "Imagined Possibilities", + "cardCode": "04SH120T2", + "keywords": [ + "Focus" + ], + "keywordRefs": [ + "Focus" + ], + "spellSpeed": "Burst", + "spellSpeedRef": "Burst", + "rarity": "None", + "rarityRef": "None", + "subtypes": [], + "supertype": "", + "type": "Spell", + "collectible": false, + "set": "Set4" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set4/en_us/img/cards/04SH120T1.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set4/en_us/img/cards/04SH120T1-full.png" + } + ], + "regions": [ + "Shurima" + ], + "regionRefs": [ + "Shurima" + ], + "attack": 0, + "cost": 1, + "health": 0, + "description": "Create a random landmark with Countdown in hand.", + "descriptionRaw": "Create a random landmark with Countdown in hand.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"Time is evanescent.\" - Zilean", + "artistName": "Kudos Productions", + "name": "Imagined Possibilities", + "cardCode": "04SH120T1", + "keywords": [ + "Focus" + ], + "keywordRefs": [ + "Focus" + ], + "spellSpeed": "Burst", + "spellSpeedRef": "Burst", + "rarity": "None", + "rarityRef": "None", + "subtypes": [], + "supertype": "", + "type": "Spell", + "collectible": false, + "set": "Set4" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set4/en_us/img/cards/04SH006.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set4/en_us/img/cards/04SH006-full.png" + } + ], + "regions": [ + "Shurima" + ], + "regionRefs": [ + "Shurima" + ], + "attack": 0, + "cost": 2, + "health": 0, + "description": "When an enemy is summoned, destroy me to grant it Vulnerable.", + "descriptionRaw": "When an enemy is summoned, destroy me to grant it Vulnerable.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "Centuries of missteps have taught the Shurimans how to read the sands. Only they know which expanses will stand firm, and which give way. It is all the same to the layman observer.", + "artistName": "Polar Engine", + "name": "Roiling Sands", + "cardCode": "04SH006", + "keywords": [ + "Landmark" + ], + "keywordRefs": [ + "LandmarkVisualOnly" + ], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "COMMON", + "rarityRef": "Common", + "subtypes": [], + "supertype": "", + "type": "Landmark", + "collectible": false, + "set": "Set4" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set4/en_us/img/cards/04SH076T1.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set4/en_us/img/cards/04SH076T1-full.png" + } + ], + "regions": [ + "Shurima" + ], + "regionRefs": [ + "Shurima" + ], + "attack": 0, + "cost": 2, + "health": 0, + "description": "Countdown 1: Summon exact copies of the units and landmarks stored inside.", + "descriptionRaw": "Countdown 1: Summon exact copies of the units and landmarks stored inside.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"I like to think of this as 'capturing a moment'.\" \n\"Ha. Clever.\"\n- Xetsa and Zinsa, Void Researchers", + "artistName": "Polar Engine", + "name": "Stasis Statue", + "cardCode": "04SH076T1", + "keywords": [ + "Countdown", + "Landmark" + ], + "keywordRefs": [ + "Countdown", + "LandmarkVisualOnly" + ], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "None", + "rarityRef": "None", + "subtypes": [], + "supertype": "", + "type": "Landmark", + "collectible": false, + "set": "Set4" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set4/en_us/img/cards/04SH065.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set4/en_us/img/cards/04SH065-full.png" + } + ], + "regions": [ + "Shurima" + ], + "regionRefs": [ + "Shurima" + ], + "attack": 2, + "cost": 5, + "health": 6, + "description": "Attack: If I have 8+ Power, give me Fearsome, Overwhelm, and SpellShield this round.", + "descriptionRaw": "Attack: If I have 8+ Power, give me Fearsome, Overwhelm, and SpellShield this round.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"It is said that hundreds of years ago, the river Khaleek bore a great trading outpost known as Taraleek upon its shores. That is, until one fateful day, when a mighty beast broke through the ground, and annihilated both the outpost and all who called it home. But what monster could do such a thing?\" - Shuriman historian", + "artistName": "Kudos Productions", + "name": "Xerxa'Reth, The Undertitan", + "cardCode": "04SH065", + "keywords": [ + "Lurk" + ], + "keywordRefs": [ + "Lurker" + ], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "EPIC", + "rarityRef": "Epic", + "subtypes": [ + "LURKER" + ], + "supertype": "", + "type": "Unit", + "collectible": true, + "set": "Set4" + }, + { + "associatedCards": [], + "associatedCardRefs": [ + "04SH034T1" + ], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set4/en_us/img/cards/04SH034.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set4/en_us/img/cards/04SH034-full.png" + } + ], + "regions": [ + "Shurima" + ], + "regionRefs": [ + "Shurima" + ], + "attack": 7, + "cost": 8, + "health": 7, + "description": "When I'm summoned, create 2 Instant Centuries in hand.", + "descriptionRaw": "When I'm summoned, create 2 Instant Centuries in hand.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "The constant rumble in the lower levels of the tower are due to The Clock Hand, the tower guardian that steadily winds the gears below.", + "artistName": "Polar Engine", + "name": "The Clock Hand", + "cardCode": "04SH034", + "keywords": [], + "keywordRefs": [], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "EPIC", + "rarityRef": "Epic", + "subtypes": [], + "supertype": "", + "type": "Unit", + "collectible": true, + "set": "Set4" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set4/en_us/img/cards/04SH034T1.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set4/en_us/img/cards/04SH034T1-full.png" + } + ], + "regions": [ + "Shurima" + ], + "regionRefs": [ + "Shurima" + ], + "attack": 0, + "cost": 0, + "health": 0, + "description": "Summon a random landmark with Countdown, or advance a landmark 4 rounds.", + "descriptionRaw": "Summon a random landmark with Countdown, or advance a landmark 4 rounds.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"There is little distinction between 'what has been' and 'what will be'...\" - Zilean", + "artistName": "Kudos Productions", + "name": "Instant Century", + "cardCode": "04SH034T1", + "keywords": [ + "Focus" + ], + "keywordRefs": [ + "Focus" + ], + "spellSpeed": "Burst", + "spellSpeedRef": "Burst", + "rarity": "None", + "rarityRef": "None", + "subtypes": [], + "supertype": "", + "type": "Spell", + "collectible": false, + "set": "Set4" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set4/en_us/img/cards/04SH034T2.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set4/en_us/img/cards/04SH034T2-full.png" + } + ], + "regions": [ + "Shurima" + ], + "regionRefs": [ + "Shurima" + ], + "attack": 0, + "cost": 0, + "health": 0, + "description": "Advance a landmark 4 rounds.", + "descriptionRaw": "Advance a landmark 4 rounds.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"There is little distinction between 'what has been' and 'what will be'.\" - Zilean", + "artistName": "Kudos Productions", + "name": "Instant Century", + "cardCode": "04SH034T2", + "keywords": [ + "Focus" + ], + "keywordRefs": [ + "Focus" + ], + "spellSpeed": "Burst", + "spellSpeedRef": "Burst", + "rarity": "None", + "rarityRef": "None", + "subtypes": [], + "supertype": "", + "type": "Spell", + "collectible": false, + "set": "Set4" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set4/en_us/img/cards/04SH034T3.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set4/en_us/img/cards/04SH034T3-full.png" + } + ], + "regions": [ + "Shurima" + ], + "regionRefs": [ + "Shurima" + ], + "attack": 0, + "cost": 0, + "health": 0, + "description": "Summon a random landmark with Countdown.", + "descriptionRaw": "Summon a random landmark with Countdown.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"There is little distinction between 'what has been' and 'what will be'.\" - Zilean", + "artistName": "Kudos Productions", + "name": "Instant Century", + "cardCode": "04SH034T3", + "keywords": [ + "Focus" + ], + "keywordRefs": [ + "Focus" + ], + "spellSpeed": "Burst", + "spellSpeedRef": "Burst", + "rarity": "None", + "rarityRef": "None", + "subtypes": [], + "supertype": "", + "type": "Spell", + "collectible": false, + "set": "Set4" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set4/en_us/img/cards/04SH082.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set4/en_us/img/cards/04SH082-full.png" + } + ], + "regions": [ + "Shurima" + ], + "regionRefs": [ + "Shurima" + ], + "attack": 0, + "cost": 2, + "health": 0, + "description": "Draw 1.\r\nIf you've slain a unit this round, drain 2 from the enemy Nexus.", + "descriptionRaw": "Draw 1.\r\nIf you've slain a unit this round, drain 2 from the enemy Nexus.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "Sandthrashers primarily recruit from their enemy's ranks. Whoever survives their initial assault is invited to join, or die.", + "artistName": "Kudos Productions", + "name": "Ruinous Path", + "cardCode": "04SH082", + "keywords": [ + "Slow" + ], + "keywordRefs": [ + "Slow" + ], + "spellSpeed": "Slow", + "spellSpeedRef": "Slow", + "rarity": "RARE", + "rarityRef": "Rare", + "subtypes": [], + "supertype": "", + "type": "Spell", + "collectible": true, + "set": "Set4" + }, + { + "associatedCards": [], + "associatedCardRefs": [ + "04SH003T1" + ], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set4/en_us/img/cards/04SH075.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set4/en_us/img/cards/04SH075-full.png" + } + ], + "regions": [ + "Shurima" + ], + "regionRefs": [ + "Shurima" + ], + "attack": 3, + "cost": 7, + "health": 7, + "description": "Give enemies Vulnerable this round and summon 6 Sand Soldiers.", + "descriptionRaw": "Give enemies Vulnerable this round and summon 6 Sand Soldiers.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"My soldiers march on.\" - Azir", + "artistName": "Kudos Productions", + "name": "Emperor's Divide", + "cardCode": "04SH075", + "keywords": [ + "Slow" + ], + "keywordRefs": [ + "Slow" + ], + "spellSpeed": "Slow", + "spellSpeedRef": "Slow", + "rarity": "EPIC", + "rarityRef": "Epic", + "subtypes": [], + "supertype": "", + "type": "Spell", + "collectible": true, + "set": "Set4" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set4/en_us/img/cards/04SH018.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set4/en_us/img/cards/04SH018-full.png" + } + ], + "regions": [ + "Shurima" + ], + "regionRefs": [ + "Shurima" + ], + "attack": 0, + "cost": 4, + "health": 0, + "description": "Kill an ally or destroy one of your mana gems to give all enemies -2|-0 this round.", + "descriptionRaw": "Kill an ally or destroy one of your mana gems to give all enemies -2|-0 this round.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"We fight, they bleed!\" - Renekton", + "artistName": "Kudos Productions", + "name": "Rite of Dominance", + "cardCode": "04SH018", + "keywords": [ + "Fast" + ], + "keywordRefs": [ + "Fast" + ], + "spellSpeed": "Fast", + "spellSpeedRef": "Fast", + "rarity": "RARE", + "rarityRef": "Rare", + "subtypes": [], + "supertype": "", + "type": "Spell", + "collectible": true, + "set": "Set4" + }, + { + "associatedCards": [], + "associatedCardRefs": [ + "04SH009T1" + ], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set4/en_us/img/cards/04SH009.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set4/en_us/img/cards/04SH009-full.png" + } + ], + "regions": [ + "Shurima" + ], + "regionRefs": [ + "Shurima" + ], + "attack": 4, + "cost": 5, + "health": 6, + "description": "Play: If you've slain 4+ units this game, an enemy and I strike each other. ", + "descriptionRaw": "Play: If you've slain 4+ units this game, an enemy and I strike each other. ", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "The bearer of a grudge's resentment only deepens, even if those they bear the grudge against are long dead.", + "artistName": "Kudos Productions", + "name": "Rampaging Baccai", + "cardCode": "04SH009", + "keywords": [ + "Overwhelm" + ], + "keywordRefs": [ + "Overwhelm" + ], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "RARE", + "rarityRef": "Rare", + "subtypes": [], + "supertype": "", + "type": "Unit", + "collectible": true, + "set": "Set4" + }, + { + "associatedCards": [], + "associatedCardRefs": [ + "04SH049T1" + ], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set4/en_us/img/cards/04SH049.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set4/en_us/img/cards/04SH049-full.png" + } + ], + "regions": [ + "Shurima" + ], + "regionRefs": [ + "Shurima" + ], + "attack": 1, + "cost": 1, + "health": 1, + "description": "Round Start: If you've leveled a champion, transform me into Exalted Poro.", + "descriptionRaw": "Round Start: If you've leveled a champion, transform me into Exalted Poro.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "She didn't know what she had found, precisely... but it was shiny, and looked like a good snack.", + "artistName": "Kudos Productions", + "name": "Destined Poro", + "cardCode": "04SH049", + "keywords": [], + "keywordRefs": [], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "COMMON", + "rarityRef": "Common", + "subtypes": [ + "PORO" + ], + "supertype": "", + "type": "Unit", + "collectible": true, + "set": "Set4" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set4/en_us/img/cards/04SH049T1.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set4/en_us/img/cards/04SH049T1-full.png" + } + ], + "regions": [ + "Shurima" + ], + "regionRefs": [ + "Shurima" + ], + "attack": 2, + "cost": 1, + "health": 2, + "description": "I have 3 random keywords.", + "descriptionRaw": "I have 3 random keywords.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "As far as divine rulers go, she's awfully fond of snax. ", + "artistName": "Kudos Productions", + "name": "Exalted Poro", + "cardCode": "04SH049T1", + "keywords": [], + "keywordRefs": [], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "None", + "rarityRef": "None", + "subtypes": [ + "PORO" + ], + "supertype": "", + "type": "Unit", + "collectible": false, + "set": "Set4" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set4/en_us/img/cards/04SH045.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set4/en_us/img/cards/04SH045-full.png" + } + ], + "regions": [ + "Shurima" + ], + "regionRefs": [ + "Shurima" + ], + "attack": 0, + "cost": 1, + "health": 0, + "description": "Give an enemy -2|-0 and Vulnerable this round.", + "descriptionRaw": "Give an enemy -2|-0 and Vulnerable this round.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "Desert-dwellers know how to avoid the sun's searing and relentless heat, but those unprepared to withstand it will find their strength and energy sapped at remarkable speed.", + "artistName": "Kudos Productions", + "name": "Exhaust", + "cardCode": "04SH045", + "keywords": [ + "Focus" + ], + "keywordRefs": [ + "Focus" + ], + "spellSpeed": "Burst", + "spellSpeedRef": "Burst", + "rarity": "COMMON", + "rarityRef": "Common", + "subtypes": [], + "supertype": "", + "type": "Spell", + "collectible": true, + "set": "Set4" + }, + { + "associatedCards": [], + "associatedCardRefs": [ + "04SH006" + ], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set4/en_us/img/cards/04SH037.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set4/en_us/img/cards/04SH037-full.png" + } + ], + "regions": [ + "Shurima" + ], + "regionRefs": [ + "Shurima" + ], + "attack": 0, + "cost": 3, + "health": 0, + "description": "Summon 2 Roiling Sands.\r\nDraw 1.", + "descriptionRaw": "Summon 2 Roiling Sands.\r\nDraw 1.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "As beautiful as the Great Sai may be, it is not a place for the weak. Many lives have been lost among its rolling dunes, and while the xer'sai claim many, the land itself takes its share.", + "artistName": "Kudos Productions", + "name": "Unraveled Earth", + "cardCode": "04SH037", + "keywords": [ + "Burst" + ], + "keywordRefs": [ + "Burst" + ], + "spellSpeed": "Burst", + "spellSpeedRef": "Burst", + "rarity": "RARE", + "rarityRef": "Rare", + "subtypes": [], + "supertype": "", + "type": "Spell", + "collectible": true, + "set": "Set4" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set4/en_us/img/cards/04SH107.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set4/en_us/img/cards/04SH107-full.png" + } + ], + "regions": [ + "Shurima" + ], + "regionRefs": [ + "Shurima" + ], + "attack": 0, + "cost": 6, + "health": 0, + "description": "Level up all level 1 Ascended allies.", + "descriptionRaw": "Level up all level 1 Ascended allies.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"The future will be written by the Ascended!\" - Azir", + "artistName": "Kudos Productions", + "name": "Ascended's Rise", + "cardCode": "04SH107", + "keywords": [ + "Slow" + ], + "keywordRefs": [ + "Slow" + ], + "spellSpeed": "Slow", + "spellSpeedRef": "Slow", + "rarity": "EPIC", + "rarityRef": "Epic", + "subtypes": [], + "supertype": "", + "type": "Spell", + "collectible": true, + "set": "Set4" + }, + { + "associatedCards": [], + "associatedCardRefs": [ + "04SH047T3", + "04SH047T2", + "04SH047T1", + "04SH062" + ], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set4/en_us/img/cards/04SH047.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set4/en_us/img/cards/04SH047-full.png" + } + ], + "regions": [ + "Shurima" + ], + "regionRefs": [ + "Shurima" + ], + "attack": 2, + "cost": 6, + "health": 2, + "description": "I have +1|+1 for each unit you've slain this game. ", + "descriptionRaw": "I have +1|+1 for each unit you've slain this game. ", + "levelupDescription": "I've struck for 10+ damage.", + "levelupDescriptionRaw": "I've struck for 10+ damage.", + "flavorText": "\"Nasus' newly won blessing allowed him countless lifetimes to spend in study and contemplation over the nature of life and death. But this same extended lifespan would, after the fall of Shurima, also prove to be his curse.\" - Scribe Kah'nir, History of the Ascended Host", + "artistName": "SIXMOREVODKA", + "name": "Nasus", + "cardCode": "04SH047", + "keywords": [ + "Fearsome" + ], + "keywordRefs": [ + "Fearsome" + ], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "Champion", + "rarityRef": "Champion", + "subtypes": [ + "ASCENDED" + ], + "supertype": "Champion", + "type": "Unit", + "collectible": true, + "set": "Set4" + }, + { + "associatedCards": [], + "associatedCardRefs": [ + "04SH097T1" + ], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set4/en_us/img/cards/04SH097.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set4/en_us/img/cards/04SH097-full.png" + } + ], + "regions": [ + "Shurima" + ], + "regionRefs": [ + "Shurima" + ], + "attack": 8, + "cost": 8, + "health": 5, + "description": "Play: If you've slain 13+ units this game, kill all enemy followers, then summon a copy of me. ", + "descriptionRaw": "Play: If you've slain 13+ units this game, kill all enemy followers, then summon a copy of me. ", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "The baccai are tasked with defending the inner sanctum to safeguard the ancient treasures there, and for the sake of mortals that might think themselves clever enough, or mighty enough, to withstand the weight of the Curator's judgment.", + "artistName": "Kudos Productions", + "name": "Sanctum Conservator", + "cardCode": "04SH097", + "keywords": [ + "Fearsome" + ], + "keywordRefs": [ + "Fearsome" + ], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "EPIC", + "rarityRef": "Epic", + "subtypes": [], + "supertype": "", + "type": "Unit", + "collectible": true, + "set": "Set4" + }, + { + "associatedCards": [], + "associatedCardRefs": [ + "04SH003T1" + ], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set4/en_us/img/cards/04SH026.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set4/en_us/img/cards/04SH026-full.png" + } + ], + "regions": [ + "Shurima" + ], + "regionRefs": [ + "Shurima" + ], + "attack": 1, + "cost": 1, + "health": 2, + "description": "When I'm summoned, summon a Sand Soldier.", + "descriptionRaw": "When I'm summoned, summon a Sand Soldier.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"As the emperor commands, both the sand and I obey.\"", + "artistName": "Kudos Productions", + "name": "Dunekeeper", + "cardCode": "04SH026", + "keywords": [], + "keywordRefs": [], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "COMMON", + "rarityRef": "Common", + "subtypes": [], + "supertype": "", + "type": "Unit", + "collectible": true, + "set": "Set4" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set4/en_us/img/cards/04SH102.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set4/en_us/img/cards/04SH102-full.png" + } + ], + "regions": [ + "Shurima" + ], + "regionRefs": [ + "Shurima" + ], + "attack": 3, + "cost": 4, + "health": 2, + "description": "Allegiance: Draw a champion and grant it +2|+2.", + "descriptionRaw": "Allegiance: Draw a champion and grant it +2|+2.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"Our shining future lies just beneath the sands, and it is up to us to pave the way for Azir. The golden empire in the desert will rise again!\"", + "artistName": "Kudos Productions", + "name": "Golden Ambassador", + "cardCode": "04SH102", + "keywords": [], + "keywordRefs": [], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "COMMON", + "rarityRef": "Common", + "subtypes": [], + "supertype": "", + "type": "Unit", + "collectible": true, + "set": "Set4" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set4/en_us/img/cards/04SH001.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set4/en_us/img/cards/04SH001-full.png" + } + ], + "regions": [ + "Shurima" + ], + "regionRefs": [ + "Shurima" + ], + "attack": 2, + "cost": 2, + "health": 3, + "description": "Play: Predict.", + "descriptionRaw": "Play: Predict.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "Throughout his time as a student of chronomancy, Tai had to reconcile his uncertainty with his determination. It was better to have hope in a potential victory than to dwell on what could possibly go wrong.", + "artistName": "Kudos Productions", + "name": "Aspiring Chronomancer", + "cardCode": "04SH001", + "keywords": [], + "keywordRefs": [], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "COMMON", + "rarityRef": "Common", + "subtypes": [], + "supertype": "", + "type": "Unit", + "collectible": true, + "set": "Set4" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set4/en_us/img/cards/04SH022.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set4/en_us/img/cards/04SH022-full.png" + } + ], + "regions": [ + "Shurima" + ], + "regionRefs": [ + "Shurima" + ], + "attack": 3, + "cost": 6, + "health": 5, + "description": "", + "descriptionRaw": "", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "While all xer'sai are able tunnelers, only their dunebreakers have the mass and power needed to break through the veins of solid bedrock that snake through the Great Sai, and open up the lands beyond for further hunting.", + "artistName": "Wild Blue", + "name": "Xer'sai Dunebreaker", + "cardCode": "04SH022", + "keywords": [ + "Lurk", + "Overwhelm" + ], + "keywordRefs": [ + "Lurker", + "Overwhelm" + ], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "RARE", + "rarityRef": "Rare", + "subtypes": [ + "LURKER" + ], + "supertype": "", + "type": "Unit", + "collectible": true, + "set": "Set4" + }, + { + "associatedCards": [], + "associatedCardRefs": [ + "04SH009" + ], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set4/en_us/img/cards/04SH009T1.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set4/en_us/img/cards/04SH009T1-full.png" + } + ], + "regions": [ + "Shurima" + ], + "regionRefs": [ + "Shurima" + ], + "attack": 0, + "cost": 0, + "health": 0, + "description": "Rampaging Baccai and an enemy strike each other.", + "descriptionRaw": "Rampaging Baccai and an enemy strike each other.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "The baccai are twisted, warped versions of what they might have been - had they become part of the Ascended Host - and the rage they feel at their failure must be unleashed somewhere.", + "artistName": "Kudos Productions", + "name": "Baccai Rampage", + "cardCode": "04SH009T1", + "keywords": [ + "Skill" + ], + "keywordRefs": [ + "Skill" + ], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "None", + "rarityRef": "None", + "subtypes": [], + "supertype": "", + "type": "Ability", + "collectible": false, + "set": "Set4" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set4/en_us/img/cards/04SH030.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set4/en_us/img/cards/04SH030-full.png" + } + ], + "regions": [ + "Shurima" + ], + "regionRefs": [ + "Shurima" + ], + "attack": 0, + "cost": 7, + "health": 0, + "description": "Give an allied Champion \"The next time I'd die this round, fully heal me and grant me +3|+3 instead\".", + "descriptionRaw": "Give an allied Champion \"The next time I'd die this round, fully heal me and grant me +3|+3 instead\".", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"We cannot stop the inevitable... but we can postpone it.\" - Zilean", + "artistName": "Kudos Productions", + "name": "Chronoshift", + "cardCode": "04SH030", + "keywords": [ + "Burst" + ], + "keywordRefs": [ + "Burst" + ], + "spellSpeed": "Burst", + "spellSpeedRef": "Burst", + "rarity": "RARE", + "rarityRef": "Rare", + "subtypes": [], + "supertype": "", + "type": "Spell", + "collectible": true, + "set": "Set4" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set4/en_us/img/cards/04SH013.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set4/en_us/img/cards/04SH013-full.png" + } + ], + "regions": [ + "Shurima" + ], + "regionRefs": [ + "Shurima" + ], + "attack": 0, + "cost": 2, + "health": 0, + "description": "When I'm summoned, draw 1.\r\nCountdown 2: Draw 1.", + "descriptionRaw": "When I'm summoned, draw 1.\r\nCountdown 2: Draw 1.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "Zilean shows those he brings to the tower what, precisely, they are looking to restore. The Preservationist is able to show them, if only a glimpse at a time.", + "artistName": "Polar Engine", + "name": "Preservarium", + "cardCode": "04SH013", + "keywords": [ + "Countdown", + "Landmark" + ], + "keywordRefs": [ + "Countdown", + "LandmarkVisualOnly" + ], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "RARE", + "rarityRef": "Rare", + "subtypes": [], + "supertype": "", + "type": "Landmark", + "collectible": true, + "set": "Set4" + }, + { + "associatedCards": [], + "associatedCardRefs": [ + "04SH062T1" + ], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set4/en_us/img/cards/04SH062.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set4/en_us/img/cards/04SH062-full.png" + } + ], + "regions": [ + "Shurima" + ], + "regionRefs": [ + "Shurima" + ], + "attack": 0, + "cost": 1, + "health": 0, + "description": "Start of Game: Summon 1 of me from your deck if it's all Shuriman.\r\nCountdown 25: Restore the Sun Disc.\r\nWhen an Ascended ally levels up, advance me 9 rounds.", + "descriptionRaw": "Start of Game: Summon 1 of me from your deck if it's all Shuriman.\r\nCountdown 25: Restore the Sun Disc.\r\nWhen an Ascended ally levels up, advance me 9 rounds.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "When Azir beheld the Shuriman capital's Sun Disc, he saw it not for what it was, but what it could be--the key to returning Shurima to its former glory.", + "artistName": "Kudos Productions", + "name": "Buried Sun Disc", + "cardCode": "04SH062", + "keywords": [ + "Countdown", + "Landmark" + ], + "keywordRefs": [ + "Countdown", + "LandmarkVisualOnly" + ], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "EPIC", + "rarityRef": "Epic", + "subtypes": [], + "supertype": "", + "type": "Landmark", + "collectible": true, + "set": "Set4" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set4/en_us/img/cards/04SH016.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set4/en_us/img/cards/04SH016-full.png" + } + ], + "regions": [ + "Shurima" + ], + "regionRefs": [ + "Shurima" + ], + "attack": 0, + "cost": 5, + "health": 0, + "description": "An ally strikes a unit.\r\nIf it dies, grant allied champions everywhere +2|+2.", + "descriptionRaw": "An ally strikes a unit.\r\nIf it dies, grant allied champions everywhere +2|+2.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"Your soul will be measured.\" - Nasus", + "artistName": "Kudos Productions", + "name": "Siphoning Strike", + "cardCode": "04SH016", + "keywords": [ + "Slow" + ], + "keywordRefs": [ + "Slow" + ], + "spellSpeed": "Slow", + "spellSpeedRef": "Slow", + "rarity": "RARE", + "rarityRef": "Rare", + "subtypes": [], + "supertype": "", + "type": "Spell", + "collectible": true, + "set": "Set4" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set4/en_us/img/cards/04SH125.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set4/en_us/img/cards/04SH125-full.png" + } + ], + "regions": [ + "Shurima" + ], + "regionRefs": [ + "Shurima" + ], + "attack": 4, + "cost": 4, + "health": 4, + "description": "Play: Give an ally +2|+0 to give an enemy -2|-0 this round.", + "descriptionRaw": "Play: Give an ally +2|+0 to give an enemy -2|-0 this round.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "Tena waited patiently as her pet's caustic spittle wore away the gilded bars of the palace's rear gate. Around the corner, she would soon find a hoard of unspeakably valuable treasure--more than enough to bring Vekaura back to its former glory.", + "artistName": "Kudos Productions", + "name": "Vekauran Safecracker", + "cardCode": "04SH125", + "keywords": [], + "keywordRefs": [], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "RARE", + "rarityRef": "Rare", + "subtypes": [], + "supertype": "", + "type": "Unit", + "collectible": true, + "set": "Set4" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set4/en_us/img/cards/04SH108.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set4/en_us/img/cards/04SH108-full.png" + } + ], + "regions": [ + "Shurima" + ], + "regionRefs": [ + "Shurima" + ], + "attack": 0, + "cost": 7, + "health": 0, + "description": "An ally strikes the strongest and weakest enemies one after another.", + "descriptionRaw": "An ally strikes the strongest and weakest enemies one after another.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"Better duck.\" - Sivir", + "artistName": "Kudos Productions", + "name": "Boomerang Blade", + "cardCode": "04SH108", + "keywords": [ + "Slow" + ], + "keywordRefs": [ + "Slow" + ], + "spellSpeed": "Slow", + "spellSpeedRef": "Slow", + "rarity": "RARE", + "rarityRef": "Rare", + "subtypes": [], + "supertype": "", + "type": "Spell", + "collectible": true, + "set": "Set4" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set4/en_us/img/cards/04SH066.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set4/en_us/img/cards/04SH066-full.png" + } + ], + "regions": [ + "Shurima" + ], + "regionRefs": [ + "Shurima" + ], + "attack": 0, + "cost": 2, + "health": 0, + "description": "Predict and advance an allied landmark 2 rounds.", + "descriptionRaw": "Predict and advance an allied landmark 2 rounds.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"If only you saw time as I do, you would know it is not immutable.\" - Zilean", + "artistName": "Kudos Productions", + "name": "Time in a Bottle", + "cardCode": "04SH066", + "keywords": [ + "Focus" + ], + "keywordRefs": [ + "Focus" + ], + "spellSpeed": "Burst", + "spellSpeedRef": "Burst", + "rarity": "COMMON", + "rarityRef": "Common", + "subtypes": [], + "supertype": "", + "type": "Spell", + "collectible": true, + "set": "Set4" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set4/en_us/img/cards/04SH014.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set4/en_us/img/cards/04SH014-full.png" + } + ], + "regions": [ + "Shurima" + ], + "regionRefs": [ + "Shurima" + ], + "attack": 2, + "cost": 1, + "health": 2, + "description": "", + "descriptionRaw": "", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "The Clocklings were the first to wriggle free - precisely at the time Zilean had set them to wake up. They shook themselves off and went clambering over the ancient walls, seeking others of their kind.", + "artistName": "Polar Engine", + "name": "Clockling", + "cardCode": "04SH014", + "keywords": [], + "keywordRefs": [], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "COMMON", + "rarityRef": "Common", + "subtypes": [], + "supertype": "", + "type": "Unit", + "collectible": false, + "set": "Set4" + }, + { + "associatedCards": [], + "associatedCardRefs": [ + "04SH047", + "04SH047T3", + "04SH047T2" + ], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set4/en_us/img/cards/04SH047T1.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set4/en_us/img/cards/04SH047T1-full.png" + } + ], + "regions": [ + "Shurima" + ], + "regionRefs": [ + "Shurima" + ], + "attack": 0, + "cost": 5, + "health": 0, + "description": "An ally strikes a unit.\r\nIf it dies, grant allied champions everywhere +2|+2.\r\nCreate a Nasus in your deck.", + "descriptionRaw": "An ally strikes a unit.\r\nIf it dies, grant allied champions everywhere +2|+2.\r\nCreate a Nasus in your deck.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"Your soul will be measured.\" - Nasus", + "artistName": "Kudos Productions", + "name": "Nasus' Siphoning Strike", + "cardCode": "04SH047T1", + "keywords": [ + "Slow" + ], + "keywordRefs": [ + "Slow" + ], + "spellSpeed": "Slow", + "spellSpeedRef": "Slow", + "rarity": "None", + "rarityRef": "None", + "subtypes": [], + "supertype": "Champion", + "type": "Spell", + "collectible": false, + "set": "Set4" + }, + { + "associatedCards": [], + "associatedCardRefs": [ + "04SH047", + "04SH047T3", + "04SH047T1" + ], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set4/en_us/img/cards/04SH047T2.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set4/en_us/img/cards/04SH047T2-full.png" + } + ], + "regions": [ + "Shurima" + ], + "regionRefs": [ + "Shurima" + ], + "attack": 10, + "cost": 6, + "health": 10, + "description": "I have +1|+1 for each unit you've slain this game. \r\nEnemies have -3|-0.", + "descriptionRaw": "I have +1|+1 for each unit you've slain this game. \r\nEnemies have -3|-0.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"His hope revived by Shurima's rise, Nasus finally returned after years spent wandering the desert, eager to make amends with his brother. He never suspected he would find Renekton maddened by years spent suffering at Xerath's hands in the tomb, waiting for him.\" - Scribe Kah'nir, History of the Ascended Host", + "artistName": "SIXMOREVODKA", + "name": "Nasus", + "cardCode": "04SH047T2", + "keywords": [ + "Fearsome", + "SpellShield", + "Missing Translation" + ], + "keywordRefs": [ + "Fearsome", + "SpellShield", + "AuraVisualFakeKeyword" + ], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "None", + "rarityRef": "None", + "subtypes": [ + "ASCENDED" + ], + "supertype": "Champion", + "type": "Unit", + "collectible": false, + "set": "Set4" + }, + { + "associatedCards": [], + "associatedCardRefs": [ + "04SH047", + "04SH047T2", + "04SH047T1", + "04SH062" + ], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set4/en_us/img/cards/04SH047T3.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set4/en_us/img/cards/04SH047T3-full.png" + } + ], + "regions": [ + "Shurima" + ], + "regionRefs": [ + "Shurima" + ], + "attack": 3, + "cost": 6, + "health": 3, + "description": "I have +1|+1 for each unit you've slain this game. \r\nEnemies have -1|-0.", + "descriptionRaw": "I have +1|+1 for each unit you've slain this game. \r\nEnemies have -1|-0.", + "levelupDescription": "You've restored the Sun Disc.", + "levelupDescriptionRaw": "You've restored the Sun Disc.", + "flavorText": "\"For years, Nasus and his brother Renekton served the empire. Nasus was a scholar, Renekton a fierce warrior. It was not until the two were called upon to confront the betrayer, Xerath, that Nasus was forced to make a terrible choice...\" - Scribe Kah'nir, History of the Ascended Host", + "artistName": "SIXMOREVODKA", + "name": "Nasus", + "cardCode": "04SH047T3", + "keywords": [ + "Fearsome", + "SpellShield", + "Missing Translation" + ], + "keywordRefs": [ + "Fearsome", + "SpellShield", + "AuraVisualFakeKeyword" + ], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "None", + "rarityRef": "None", + "subtypes": [ + "ASCENDED" + ], + "supertype": "Champion", + "type": "Unit", + "collectible": false, + "set": "Set4" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set4/en_us/img/cards/04SH021.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set4/en_us/img/cards/04SH021-full.png" + } + ], + "regions": [ + "Shurima" + ], + "regionRefs": [ + "Shurima" + ], + "attack": 3, + "cost": 5, + "health": 3, + "description": "When I'm summoned, create a copy of me in your deck. When you see me in a Prediction, grant all allied copies of me everywhere +2|+2.", + "descriptionRaw": "When I'm summoned, create a copy of me in your deck. When you see me in a Prediction, grant all allied copies of me everywhere +2|+2.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "Khahiri had only been gone a moment when he suddenly reappeared. Older by nearly a decade and wielding a strange and deadly-looking weapon, he was met with gasps of awe and concern.", + "artistName": "Kudos Productions", + "name": "Khahiri the Returned", + "cardCode": "04SH021", + "keywords": [ + "Fearsome" + ], + "keywordRefs": [ + "Fearsome" + ], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "RARE", + "rarityRef": "Rare", + "subtypes": [], + "supertype": "", + "type": "Unit", + "collectible": true, + "set": "Set4" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set4/en_us/img/cards/04SH101.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set4/en_us/img/cards/04SH101-full.png" + } + ], + "regions": [ + "Shurima" + ], + "regionRefs": [ + "Shurima" + ], + "attack": 1, + "cost": 3, + "health": 6, + "description": "Round Start: If you've leveled a champion, heal your champions and Nexus 2.", + "descriptionRaw": "Round Start: If you've leveled a champion, heal your champions and Nexus 2.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"I have sworn myself to Azir, and to Shurima, my home! Will you not do the same?\"", + "artistName": "Kudos Productions", + "name": "Devoted Council", + "cardCode": "04SH101", + "keywords": [], + "keywordRefs": [], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "RARE", + "rarityRef": "Rare", + "subtypes": [], + "supertype": "", + "type": "Unit", + "collectible": true, + "set": "Set4" + }, + { + "associatedCards": [], + "associatedCardRefs": [ + "04SH062" + ], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set4/en_us/img/cards/04SH012.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set4/en_us/img/cards/04SH012-full.png" + } + ], + "regions": [ + "Shurima" + ], + "regionRefs": [ + "Shurima" + ], + "attack": 3, + "cost": 3, + "health": 4, + "description": "When I'm summoned, advance your Buried Sun Disc 3 rounds.", + "descriptionRaw": "When I'm summoned, advance your Buried Sun Disc 3 rounds.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"Oh! That's Padjuman, one of the elders of Nashramae! I think everyone has come to our city today, papa!\" - Excited onlooker", + "artistName": "Kudos Productions", + "name": "Esteemed Hierophant", + "cardCode": "04SH012", + "keywords": [], + "keywordRefs": [], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "COMMON", + "rarityRef": "Common", + "subtypes": [], + "supertype": "", + "type": "Unit", + "collectible": true, + "set": "Set4" + }, + { + "associatedCards": [], + "associatedCardRefs": [ + "04SH020", + "04SH020T1" + ], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set4/en_us/img/cards/04SH020T2.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set4/en_us/img/cards/04SH020T2-full.png" + } + ], + "regions": [ + "Shurima" + ], + "regionRefs": [ + "Shurima" + ], + "attack": 0, + "cost": 6, + "health": 0, + "description": "Reputation: I cost 3. \r\nDeal 1 to a random enemy or the enemy Nexus 5 times.\r\nCreate a Sivir in your deck.", + "descriptionRaw": "Reputation: I cost 3. \r\nDeal 1 to a random enemy or the enemy Nexus 5 times.\r\nCreate a Sivir in your deck.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"This might get a little messy.\" - Sivir", + "artistName": "Kudos Productions", + "name": "Sivir's Ricochet", + "cardCode": "04SH020T2", + "keywords": [ + "Slow" + ], + "keywordRefs": [ + "Slow" + ], + "spellSpeed": "Slow", + "spellSpeedRef": "Slow", + "rarity": "None", + "rarityRef": "None", + "subtypes": [], + "supertype": "Champion", + "type": "Spell", + "collectible": false, + "set": "Set4" + }, + { + "associatedCards": [], + "associatedCardRefs": [ + "04SH020", + "04SH020T2" + ], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set4/en_us/img/cards/04SH020T1.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set4/en_us/img/cards/04SH020T1-full.png" + } + ], + "regions": [ + "Shurima" + ], + "regionRefs": [ + "Shurima" + ], + "attack": 6, + "cost": 4, + "health": 4, + "description": "While I'm attacking, attacking allies have my keywords.", + "descriptionRaw": "While I'm attacking, attacking allies have my keywords.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"If you wanna work with me, I'll give you the same talk I give everyone: work for your share, and you'll get everything you're due. But if you slow me down, or get in my way, I'll kill you myself.\"", + "artistName": "SIXMOREVODKA", + "name": "Sivir", + "cardCode": "04SH020T1", + "keywords": [ + "Quick Attack", + "SpellShield" + ], + "keywordRefs": [ + "QuickStrike", + "SpellShield" + ], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "None", + "rarityRef": "None", + "subtypes": [], + "supertype": "Champion", + "type": "Unit", + "collectible": false, + "set": "Set4" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set4/en_us/img/cards/04SH031.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set4/en_us/img/cards/04SH031-full.png" + } + ], + "regions": [ + "Shurima" + ], + "regionRefs": [ + "Shurima" + ], + "attack": 0, + "cost": 6, + "health": 0, + "description": "Grant an allied landmark \"My Countdown completion effect activates twice\".", + "descriptionRaw": "Grant an allied landmark \"My Countdown completion effect activates twice\".", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"Mortals spend so much of their time waiting. My fondest hope is that they all should be rewarded for their patience.\" - Zilean", + "artistName": "Kudos Productions", + "name": "Promising Future", + "cardCode": "04SH031", + "keywords": [ + "Slow" + ], + "keywordRefs": [ + "Slow" + ], + "spellSpeed": "Slow", + "spellSpeedRef": "Slow", + "rarity": "EPIC", + "rarityRef": "Epic", + "subtypes": [], + "supertype": "", + "type": "Spell", + "collectible": true, + "set": "Set4" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set4/en_us/img/cards/04SH004.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set4/en_us/img/cards/04SH004-full.png" + } + ], + "regions": [ + "Shurima" + ], + "regionRefs": [ + "Shurima" + ], + "attack": 0, + "cost": 4, + "health": 0, + "description": "Deal 2 to a champion or 7 to a follower.", + "descriptionRaw": "Deal 2 to a champion or 7 to a follower.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"One life in return for so many. One life so that others might thrive.\" - Nasus", + "artistName": "Kudos Productions", + "name": "Weight of Judgment", + "cardCode": "04SH004", + "keywords": [ + "Slow" + ], + "keywordRefs": [ + "Slow" + ], + "spellSpeed": "Slow", + "spellSpeedRef": "Slow", + "rarity": "COMMON", + "rarityRef": "Common", + "subtypes": [], + "supertype": "", + "type": "Spell", + "collectible": true, + "set": "Set4" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set4/en_us/img/cards/04SH059.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set4/en_us/img/cards/04SH059-full.png" + } + ], + "regions": [ + "Shurima" + ], + "regionRefs": [ + "Shurima" + ], + "attack": 0, + "cost": 4, + "health": 0, + "description": "Kill an ally or destroy one of your mana gems to stop all enemy Fast spells, Slow spells, and Skills.", + "descriptionRaw": "Kill an ally or destroy one of your mana gems to stop all enemy Fast spells, Slow spells, and Skills.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "Analysis is a mainstay of chronomancy, as many actions must be halted to consider future solutions.", + "artistName": "Kudos Productions", + "name": "Rite of Negation", + "cardCode": "04SH059", + "keywords": [ + "Fast" + ], + "keywordRefs": [ + "Fast" + ], + "spellSpeed": "Fast", + "spellSpeedRef": "Fast", + "rarity": "EPIC", + "rarityRef": "Epic", + "subtypes": [], + "supertype": "", + "type": "Spell", + "collectible": true, + "set": "Set4" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set4/en_us/img/cards/04SH044.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set4/en_us/img/cards/04SH044-full.png" + } + ], + "regions": [ + "Shurima" + ], + "regionRefs": [ + "Shurima" + ], + "attack": 2, + "cost": 2, + "health": 2, + "description": "Play: Advance an allied landmark 2 rounds. ", + "descriptionRaw": "Play: Advance an allied landmark 2 rounds. ", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "The constructs that guard Zilean's tower are able to withstand the harsh desert for millennia, and not just for their clever construction.", + "artistName": "Polar Engine", + "name": "Clockwork Curator", + "cardCode": "04SH044", + "keywords": [], + "keywordRefs": [], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "COMMON", + "rarityRef": "Common", + "subtypes": [], + "supertype": "", + "type": "Unit", + "collectible": true, + "set": "Set4" + }, + { + "associatedCards": [], + "associatedCardRefs": [ + "04SH076T1" + ], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set4/en_us/img/cards/04SH076.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set4/en_us/img/cards/04SH076-full.png" + } + ], + "regions": [ + "Shurima" + ], + "regionRefs": [ + "Shurima" + ], + "attack": 0, + "cost": 2, + "health": 0, + "description": "Obliterate an ally to summon a Stasis Statue in place with the ally stored inside.", + "descriptionRaw": "Obliterate an ally to summon a Stasis Statue in place with the ally stored inside.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"Oh, Tai! Come here! We could use your help with something.\"\n- Xetsa, Void Researcher", + "artistName": "Kudos Productions", + "name": "Ancient Hourglass", + "cardCode": "04SH076", + "keywords": [ + "Fast" + ], + "keywordRefs": [ + "Fast" + ], + "spellSpeed": "Fast", + "spellSpeedRef": "Fast", + "rarity": "RARE", + "rarityRef": "Rare", + "subtypes": [], + "supertype": "", + "type": "Spell", + "collectible": true, + "set": "Set4" + }, + { + "associatedCards": [], + "associatedCardRefs": [ + "04SH003T14" + ], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set4/en_us/img/cards/04SH118.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set4/en_us/img/cards/04SH118-full.png" + } + ], + "regions": [ + "Shurima" + ], + "regionRefs": [ + "Shurima" + ], + "attack": 0, + "cost": 2, + "health": 0, + "description": "Summon a Sandstone Charger.", + "descriptionRaw": "Summon a Sandstone Charger.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"The box might be worth something, but whatever's inside sure as sand isn't. By which I mean, it's not worth opening. Speaking from experience, here.\" - Sivir", + "artistName": "Kudos Productions", + "name": "Waking Sands", + "cardCode": "04SH118", + "keywords": [ + "Slow" + ], + "keywordRefs": [ + "Slow" + ], + "spellSpeed": "Slow", + "spellSpeedRef": "Slow", + "rarity": "COMMON", + "rarityRef": "Common", + "subtypes": [], + "supertype": "", + "type": "Spell", + "collectible": true, + "set": "Set4" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set4/en_us/img/cards/04SH072.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set4/en_us/img/cards/04SH072-full.png" + } + ], + "regions": [ + "Shurima" + ], + "regionRefs": [ + "Shurima" + ], + "attack": 1, + "cost": 2, + "health": 4, + "description": "When I'm summoned, grant allied champions and landmarks SpellShield.", + "descriptionRaw": "When I'm summoned, grant allied champions and landmarks SpellShield.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"Ah, you did not expect to see water in the middle of the desert. Worry not. Come, drink your fill, wash your feet. Rest in the shade awhile. This is Azir's new Shurima, and it is an oasis.\"", + "artistName": "Kudos Productions", + "name": "Soothsayer", + "cardCode": "04SH072", + "keywords": [], + "keywordRefs": [], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "COMMON", + "rarityRef": "Common", + "subtypes": [], + "supertype": "", + "type": "Unit", + "collectible": true, + "set": "Set4" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set4/en_us/img/cards/04SH041.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set4/en_us/img/cards/04SH041-full.png" + } + ], + "regions": [ + "Shurima" + ], + "regionRefs": [ + "Shurima" + ], + "attack": 2, + "cost": 3, + "health": 4, + "description": "Play: Predict. If you pick a landmark, grant me Elusive.", + "descriptionRaw": "Play: Predict. If you pick a landmark, grant me Elusive.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"We had trouble earlier! A great storm threatened from the west, and Taliyah passed xer'sai tunnels to the south. I spotted a temple to the north, and we are now safe inside its terracotta walls. The others are all asleep, and my flame, like me, is ebbing. I hope I dream well.\"\n- Zaifa's diary", + "artistName": "Dao Le", + "name": "Sai Scout", + "cardCode": "04SH041", + "keywords": [], + "keywordRefs": [], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "COMMON", + "rarityRef": "Common", + "subtypes": [], + "supertype": "", + "type": "Unit", + "collectible": true, + "set": "Set4" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set4/en_us/img/cards/04SH005.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set4/en_us/img/cards/04SH005-full.png" + } + ], + "regions": [ + "Shurima" + ], + "regionRefs": [ + "Shurima" + ], + "attack": 3, + "cost": 1, + "health": 1, + "description": "", + "descriptionRaw": "", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "The Sandthrashers do everything with their companions. Fight, hunt, kill... and eat.", + "artistName": "JiHun Lee", + "name": "Bloodthirsty Marauder", + "cardCode": "04SH005", + "keywords": [], + "keywordRefs": [], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "COMMON", + "rarityRef": "Common", + "subtypes": [], + "supertype": "", + "type": "Unit", + "collectible": true, + "set": "Set4" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set4/en_us/img/cards/04SH083.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set4/en_us/img/cards/04SH083-full.png" + } + ], + "regions": [ + "Shurima" + ], + "regionRefs": [ + "Shurima" + ], + "attack": 0, + "cost": 0, + "health": 0, + "description": "Predict.", + "descriptionRaw": "Predict.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"The fin brings fear, but the teeth bring death.\" - Shuriman saying", + "artistName": "Kudos Productions", + "name": "Feral Prescience", + "cardCode": "04SH083", + "keywords": [ + "Burst" + ], + "keywordRefs": [ + "Burst" + ], + "spellSpeed": "Burst", + "spellSpeedRef": "Burst", + "rarity": "RARE", + "rarityRef": "Rare", + "subtypes": [], + "supertype": "", + "type": "Spell", + "collectible": true, + "set": "Set4" + }, + { + "associatedCards": [], + "associatedCardRefs": [ + "04SH014" + ], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set4/en_us/img/cards/04SH092.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set4/en_us/img/cards/04SH092-full.png" + } + ], + "regions": [ + "Shurima" + ], + "regionRefs": [ + "Shurima" + ], + "attack": 0, + "cost": 5, + "health": 0, + "description": "Summon a Clockling.\r\nIf you've Predicted this game, summon 2 instead.", + "descriptionRaw": "Summon a Clockling.\r\nIf you've Predicted this game, summon 2 instead.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"Come here and stop fussing! You have sand in your gears.\" - Tai, Aspiring Chronomancer", + "artistName": "Kudos Productions", + "name": "The Time Has Come", + "cardCode": "04SH092", + "keywords": [ + "Burst" + ], + "keywordRefs": [ + "Burst" + ], + "spellSpeed": "Burst", + "spellSpeedRef": "Burst", + "rarity": "COMMON", + "rarityRef": "Common", + "subtypes": [], + "supertype": "", + "type": "Spell", + "collectible": true, + "set": "Set4" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set4/en_us/img/cards/04SH046.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set4/en_us/img/cards/04SH046-full.png" + } + ], + "regions": [ + "Shurima" + ], + "regionRefs": [ + "Shurima" + ], + "attack": 6, + "cost": 12, + "health": 6, + "description": "Reduce my cost by 1 for each time an ally attacked this game.", + "descriptionRaw": "Reduce my cost by 1 for each time an ally attacked this game.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "Upon Azir's return, Shurimans caught sight of ancient beasts of legend, made of sand but no less impressive.", + "artistName": "Kudos Productions", + "name": "Sandstone Chimera", + "cardCode": "04SH046", + "keywords": [], + "keywordRefs": [], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "RARE", + "rarityRef": "Rare", + "subtypes": [], + "supertype": "", + "type": "Unit", + "collectible": true, + "set": "Set4" + }, + { + "associatedCards": [], + "associatedCardRefs": [ + "04SH062" + ], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set4/en_us/img/cards/04SH062T1.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set4/en_us/img/cards/04SH062T1-full.png" + } + ], + "regions": [ + "Shurima" + ], + "regionRefs": [ + "Shurima" + ], + "attack": 0, + "cost": 0, + "health": 0, + "description": "Immediately draw 1 of each of your Ascended allies.\r\nFor the rest of the game, your level 2 Ascended allies are level 3.", + "descriptionRaw": "Immediately draw 1 of each of your Ascended allies.\r\nFor the rest of the game, your level 2 Ascended allies are level 3.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"Shurima has known no glory like today. Come, bask in the light of our sun!\" - Voice of the Risen", + "artistName": "Kudos Productions", + "name": "Restored Sun Disc", + "cardCode": "04SH062T1", + "keywords": [ + "Landmark" + ], + "keywordRefs": [ + "LandmarkVisualOnly" + ], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "None", + "rarityRef": "None", + "subtypes": [], + "supertype": "", + "type": "Landmark", + "collectible": false, + "set": "Set4" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set4/en_us/img/cards/04SH018T2.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set4/en_us/img/cards/04SH018T2-full.png" + } + ], + "regions": [ + "Shurima" + ], + "regionRefs": [ + "Shurima" + ], + "attack": 0, + "cost": 4, + "health": 0, + "description": "Kill an ally to give all enemies -2|-0 this round.", + "descriptionRaw": "Kill an ally to give all enemies -2|-0 this round.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"We fight, they bleed!\" - Renekton", + "artistName": "Kudos Productions", + "name": "Rite of Dominance", + "cardCode": "04SH018T2", + "keywords": [ + "Fast" + ], + "keywordRefs": [ + "Fast" + ], + "spellSpeed": "Fast", + "spellSpeedRef": "Fast", + "rarity": "None", + "rarityRef": "None", + "subtypes": [], + "supertype": "", + "type": "Spell", + "collectible": false, + "set": "Set4" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set4/en_us/img/cards/04SH018T1.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set4/en_us/img/cards/04SH018T1-full.png" + } + ], + "regions": [ + "Shurima" + ], + "regionRefs": [ + "Shurima" + ], + "attack": 0, + "cost": 4, + "health": 0, + "description": "Destroy one of your mana gems to give all enemies -2|-0 this round.", + "descriptionRaw": "Destroy one of your mana gems to give all enemies -2|-0 this round.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"We fight, they bleed!\" - Renekton", + "artistName": "Kudos Productions", + "name": "Rite of Dominance", + "cardCode": "04SH018T1", + "keywords": [ + "Fast" + ], + "keywordRefs": [ + "Fast" + ], + "spellSpeed": "Fast", + "spellSpeedRef": "Fast", + "rarity": "None", + "rarityRef": "None", + "subtypes": [], + "supertype": "", + "type": "Spell", + "collectible": false, + "set": "Set4" + }, + { + "associatedCards": [], + "associatedCardRefs": [ + "04SH003T14" + ], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set4/en_us/img/cards/04SH105.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set4/en_us/img/cards/04SH105-full.png" + } + ], + "regions": [ + "Shurima" + ], + "regionRefs": [ + "Shurima" + ], + "attack": 0, + "cost": 5, + "health": 0, + "description": "When allies attack, summon an attacking Sandstone Charger.", + "descriptionRaw": "When allies attack, summon an attacking Sandstone Charger.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "As they passed through the ravine, the Sandcrafter spoke the words of magic. A gust of wind echoed through the canyon and turned to the thunder of oncoming hooves.", + "artistName": "Kudos Productions", + "name": "Sandswept Tomb", + "cardCode": "04SH105", + "keywords": [ + "Landmark" + ], + "keywordRefs": [ + "LandmarkVisualOnly" + ], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "RARE", + "rarityRef": "Rare", + "subtypes": [], + "supertype": "", + "type": "Landmark", + "collectible": true, + "set": "Set4" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set4/en_us/img/cards/04SH131.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set4/en_us/img/cards/04SH131-full.png" + } + ], + "regions": [ + "Shurima" + ], + "regionRefs": [ + "Shurima" + ], + "attack": 0, + "cost": 3, + "health": 0, + "description": "An ally you've targeted this round strikes an enemy.", + "descriptionRaw": "An ally you've targeted this round strikes an enemy.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"They never expect the grappling hook!\" - Akshan", + "artistName": "Kudos Productions", + "name": "Grappling Hook", + "cardCode": "04SH131", + "keywords": [ + "Slow" + ], + "keywordRefs": [ + "Slow" + ], + "spellSpeed": "Slow", + "spellSpeedRef": "Slow", + "rarity": "RARE", + "rarityRef": "Rare", + "subtypes": [], + "supertype": "", + "type": "Spell", + "collectible": true, + "set": "Set4" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set4/en_us/img/cards/04SH074.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set4/en_us/img/cards/04SH074-full.png" + } + ], + "regions": [ + "Shurima" + ], + "regionRefs": [ + "Shurima" + ], + "attack": 1, + "cost": 1, + "health": 1, + "description": "", + "descriptionRaw": "", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "Once a caravan has been disabled, the hunters will occasionally retreat and allow their hatchlings to forage forward. It is here that the young xer'sai refine their instincts, learning which sounds are of the desert, and which signal their prey.", + "artistName": "Wild Blue", + "name": "Xer'sai Hatchling", + "cardCode": "04SH074", + "keywords": [ + "Lurk", + "Fearsome" + ], + "keywordRefs": [ + "Lurker", + "Fearsome" + ], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "COMMON", + "rarityRef": "Common", + "subtypes": [ + "LURKER" + ], + "supertype": "", + "type": "Unit", + "collectible": true, + "set": "Set4" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set4/en_us/img/cards/04SH137.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set4/en_us/img/cards/04SH137-full.png" + } + ], + "regions": [ + "Shurima" + ], + "regionRefs": [ + "Shurima" + ], + "attack": 8, + "cost": 7, + "health": 4, + "description": "When I'm summoned, create a copy of me in hand if you've leveled a champion this game.", + "descriptionRaw": "When I'm summoned, create a copy of me in hand if you've leveled a champion this game.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "The giant scarabs were thought to have perished when the Shuriman empire fell. But the Mist's creeping tendrils burrowed deep into the sands, and bound the ancient things to Viego's service.\n", + "artistName": "Kudos Productions", + "name": "Thrumming Swarm", + "cardCode": "04SH137", + "keywords": [ + "Overwhelm" + ], + "keywordRefs": [ + "Overwhelm" + ], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "EPIC", + "rarityRef": "Epic", + "subtypes": [], + "supertype": "", + "type": "Unit", + "collectible": true, + "set": "Set4" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set4/en_us/img/cards/04SH069.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set4/en_us/img/cards/04SH069-full.png" + } + ], + "regions": [ + "Shurima" + ], + "regionRefs": [ + "Shurima" + ], + "attack": 0, + "cost": 2, + "health": 0, + "description": "Give an ally +2|+0 to give an enemy Vulnerable this round.", + "descriptionRaw": "Give an ally +2|+0 to give an enemy Vulnerable this round.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"Shred them!\" - Renekton", + "artistName": "Kudos Productions", + "name": "Ruthless Predator", + "cardCode": "04SH069", + "keywords": [ + "Burst" + ], + "keywordRefs": [ + "Burst" + ], + "spellSpeed": "Burst", + "spellSpeedRef": "Burst", + "rarity": "COMMON", + "rarityRef": "Common", + "subtypes": [], + "supertype": "", + "type": "Spell", + "collectible": true, + "set": "Set4" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set4/en_us/img/cards/04SH121.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set4/en_us/img/cards/04SH121-full.png" + } + ], + "regions": [ + "Shurima" + ], + "regionRefs": [ + "Shurima" + ], + "attack": 0, + "cost": 0, + "health": 0, + "description": "Kill an ally or destroy one of your mana gems to draw a champion.", + "descriptionRaw": "Kill an ally or destroy one of your mana gems to draw a champion.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"A necessary sacrifice.\" - Nasus", + "artistName": "Kudos Productions", + "name": "Rite of Calling", + "cardCode": "04SH121", + "keywords": [ + "Slow" + ], + "keywordRefs": [ + "Slow" + ], + "spellSpeed": "Slow", + "spellSpeedRef": "Slow", + "rarity": "COMMON", + "rarityRef": "Common", + "subtypes": [], + "supertype": "", + "type": "Spell", + "collectible": true, + "set": "Set4" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set4/en_us/img/cards/04SH121T1.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set4/en_us/img/cards/04SH121T1-full.png" + } + ], + "regions": [ + "Shurima" + ], + "regionRefs": [ + "Shurima" + ], + "attack": 0, + "cost": 0, + "health": 0, + "description": "Destroy one of your mana gems to draw a Champion.", + "descriptionRaw": "Destroy one of your mana gems to draw a Champion.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"A necessary sacrifice.\" - Nasus", + "artistName": "Kudos Productions", + "name": "Rite of Calling", + "cardCode": "04SH121T1", + "keywords": [ + "Slow" + ], + "keywordRefs": [ + "Slow" + ], + "spellSpeed": "Slow", + "spellSpeedRef": "Slow", + "rarity": "None", + "rarityRef": "None", + "subtypes": [], + "supertype": "", + "type": "Spell", + "collectible": false, + "set": "Set4" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set4/en_us/img/cards/04SH121T2.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set4/en_us/img/cards/04SH121T2-full.png" + } + ], + "regions": [ + "Shurima" + ], + "regionRefs": [ + "Shurima" + ], + "attack": 0, + "cost": 0, + "health": 0, + "description": "Kill an ally to draw a Champion.", + "descriptionRaw": "Kill an ally to draw a Champion.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"A necessary sacrifice.\" - Nasus", + "artistName": "Kudos Productions", + "name": "Rite of Calling", + "cardCode": "04SH121T2", + "keywords": [ + "Slow" + ], + "keywordRefs": [ + "Slow" + ], + "spellSpeed": "Slow", + "spellSpeedRef": "Slow", + "rarity": "None", + "rarityRef": "None", + "subtypes": [], + "supertype": "", + "type": "Spell", + "collectible": false, + "set": "Set4" + }, + { + "associatedCards": [], + "associatedCardRefs": [ + "04SH097" + ], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set4/en_us/img/cards/04SH097T1.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set4/en_us/img/cards/04SH097T1-full.png" + } + ], + "regions": [ + "Shurima" + ], + "regionRefs": [ + "Shurima" + ], + "attack": 0, + "cost": 0, + "health": 0, + "description": "If you've slain 13+ units this game, kill all enemy followers, then summon a copy of me.", + "descriptionRaw": "If you've slain 13+ units this game, kill all enemy followers, then summon a copy of me.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"We are where both gods and men find their end.\" - Sanctum Conservator", + "artistName": "Kudos Productions", + "name": "Conservator's Judgment", + "cardCode": "04SH097T1", + "keywords": [ + "Skill" + ], + "keywordRefs": [ + "Skill" + ], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "None", + "rarityRef": "None", + "subtypes": [], + "supertype": "", + "type": "Ability", + "collectible": false, + "set": "Set4" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set4/en_us/img/cards/04SH110.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set4/en_us/img/cards/04SH110-full.png" + } + ], + "regions": [ + "Shurima" + ], + "regionRefs": [ + "Shurima" + ], + "attack": 0, + "cost": 1, + "health": 0, + "description": "Manifest a landmark you can afford.", + "descriptionRaw": "Manifest a landmark you can afford.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"Come on - there's so much to see!\" - Taliyah", + "artistName": "Kudos Productions", + "name": "Stoneweaving", + "cardCode": "04SH110", + "keywords": [ + "Burst" + ], + "keywordRefs": [ + "Burst" + ], + "spellSpeed": "Burst", + "spellSpeedRef": "Burst", + "rarity": "EPIC", + "rarityRef": "Epic", + "subtypes": [], + "supertype": "", + "type": "Spell", + "collectible": true, + "set": "Set4" + }, + { + "associatedCards": [], + "associatedCardRefs": [ + "04SH003T1" + ], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set4/en_us/img/cards/04SH051.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set4/en_us/img/cards/04SH051-full.png" + } + ], + "regions": [ + "Shurima" + ], + "regionRefs": [ + "Shurima" + ], + "attack": 0, + "cost": 2, + "health": 0, + "description": "When allies attack, summon an attacking Sand Soldier.", + "descriptionRaw": "When allies attack, summon an attacking Sand Soldier.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "The Sandcrafters lifted their hands, willing the sand into the familiar shape of armored, faceless soldiers, a tireless army ready to fight for their god-emperor. ", + "artistName": "Kudos Productions", + "name": "Emperor's Dais", + "cardCode": "04SH051", + "keywords": [ + "Landmark" + ], + "keywordRefs": [ + "LandmarkVisualOnly" + ], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "RARE", + "rarityRef": "Rare", + "subtypes": [], + "supertype": "", + "type": "Landmark", + "collectible": true, + "set": "Set4" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set4/en_us/img/cards/04SH106.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set4/en_us/img/cards/04SH106-full.png" + } + ], + "regions": [ + "Shurima" + ], + "regionRefs": [ + "Shurima" + ], + "attack": 0, + "cost": 7, + "health": 0, + "description": "Give enemies -2|-0 and \"Round End: Deal 2 to me\" this round.", + "descriptionRaw": "Give enemies -2|-0 and \"Round End: Deal 2 to me\" this round.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"Their spirits will burn.\" - Nasus", + "artistName": "Kudos Productions", + "name": "Spirit Fire", + "cardCode": "04SH106", + "keywords": [ + "Burst" + ], + "keywordRefs": [ + "Burst" + ], + "spellSpeed": "Burst", + "spellSpeedRef": "Burst", + "rarity": "RARE", + "rarityRef": "Rare", + "subtypes": [], + "supertype": "", + "type": "Spell", + "collectible": true, + "set": "Set4" + }, + { + "associatedCards": [], + "associatedCardRefs": [ + "04SH098" + ], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set4/en_us/img/cards/04SH129.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set4/en_us/img/cards/04SH129-full.png" + } + ], + "regions": [ + "Shurima" + ], + "regionRefs": [ + "Shurima" + ], + "attack": 5, + "cost": 5, + "health": 5, + "description": "Strike: Create a Lucky Find in hand.", + "descriptionRaw": "Strike: Create a Lucky Find in hand.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"Okay, Barb. That's the last of the guards on this floor, but we've still gotta keep a low profile.\"\n\"BLARGH-BLAAA!\"\n\"Inside voice, Barbara.\"\n\"Blarb.\"\n\"That's my girl.\"", + "artistName": "Kudos Productions", + "name": "Vekauran Bruiser", + "cardCode": "04SH129", + "keywords": [], + "keywordRefs": [], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "RARE", + "rarityRef": "Rare", + "subtypes": [], + "supertype": "", + "type": "Unit", + "collectible": true, + "set": "Set4" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set4/en_us/img/cards/04SH090.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set4/en_us/img/cards/04SH090-full.png" + } + ], + "regions": [ + "Shurima" + ], + "regionRefs": [ + "Shurima" + ], + "attack": 5, + "cost": 5, + "health": 4, + "description": "", + "descriptionRaw": "", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"Ogh today was fun! We stopped for lunch (skallashi cheese - BLEUGH!) when Kadira spotted a poor rockdoubb asleep in the shade. Of course, she had to tug on its tail, and of course, it got mad. I hope it likes the cheese we left behind!\"\n- Zaifa's diary", + "artistName": "Dao Le", + "name": "Grumpy Rockbear", + "cardCode": "04SH090", + "keywords": [], + "keywordRefs": [], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "COMMON", + "rarityRef": "Common", + "subtypes": [], + "supertype": "", + "type": "Unit", + "collectible": false, + "set": "Set4" + }, + { + "associatedCards": [], + "associatedCardRefs": [ + "04FR001", + "04FR001T1" + ], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set4/en_us/img/cards/04FR006.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set4/en_us/img/cards/04FR006-full.png" + } + ], + "regions": [ + "Freljord" + ], + "regionRefs": [ + "Freljord" + ], + "attack": 4, + "cost": 5, + "health": 5, + "description": "When I'm summoned, summon a Frozen Thrall.\r\nRound End: If the Countdown of any of your Frozen Thralls is 4 or less, advance them to 0.", + "descriptionRaw": "When I'm summoned, summon a Frozen Thrall.\r\nRound End: If the Countdown of any of your Frozen Thralls is 4 or less, advance them to 0.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"My lady appears to me in dreams, her voice near a whisper. 'Follow,' she bids me. This command I dare not disobey.\"", + "artistName": "Kudos Productions", + "name": "Draklorn Inquisitor", + "cardCode": "04FR006", + "keywords": [], + "keywordRefs": [], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "EPIC", + "rarityRef": "Epic", + "subtypes": [], + "supertype": "", + "type": "Unit", + "collectible": true, + "set": "Set4" + }, + { + "associatedCards": [], + "associatedCardRefs": [ + "04FR007T1" + ], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set4/en_us/img/cards/04FR012.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set4/en_us/img/cards/04FR012-full.png" + } + ], + "regions": [ + "Freljord" + ], + "regionRefs": [ + "Freljord" + ], + "attack": 0, + "cost": 9, + "health": 0, + "description": "Obliterate each enemy to summon a Frozen Tomb in place with the enemy stored inside.", + "descriptionRaw": "Obliterate each enemy to summon a Frozen Tomb in place with the enemy stored inside.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"The cold overcomes all, eventually.\" - Lissandra", + "artistName": "Kudos Productions", + "name": "Buried in Ice", + "cardCode": "04FR012", + "keywords": [ + "Slow" + ], + "keywordRefs": [ + "Slow" + ], + "spellSpeed": "Slow", + "spellSpeedRef": "Slow", + "rarity": "EPIC", + "rarityRef": "Epic", + "subtypes": [], + "supertype": "", + "type": "Spell", + "collectible": true, + "set": "Set4" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set4/en_us/img/cards/04FR016.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set4/en_us/img/cards/04FR016-full.png" + } + ], + "regions": [ + "Freljord" + ], + "regionRefs": [ + "Freljord" + ], + "attack": 0, + "cost": 3, + "health": 0, + "description": "Grant an ally +1|+2.\r\nPlunder: Grant +2|+4 instead.", + "descriptionRaw": "Grant an ally +1|+2.\r\nPlunder: Grant +2|+4 instead.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"You Avarosans only grow weak and plump in your fertile fields. So rest tonight, you pitiful weaklings, and while you dream of tomorrow's bounty, we will take it.\" - Scarmother Vrynna", + "artistName": "Kudos Productions", + "name": "Spoils of War", + "cardCode": "04FR016", + "keywords": [ + "Burst", + "Plunder" + ], + "keywordRefs": [ + "Burst", + "Plunder" + ], + "spellSpeed": "Burst", + "spellSpeedRef": "Burst", + "rarity": "COMMON", + "rarityRef": "Common", + "subtypes": [], + "supertype": "", + "type": "Spell", + "collectible": true, + "set": "Set4" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set4/en_us/img/cards/04FR001T1.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set4/en_us/img/cards/04FR001T1-full.png" + } + ], + "regions": [ + "Freljord" + ], + "regionRefs": [ + "Freljord" + ], + "attack": 8, + "cost": 8, + "health": 8, + "description": "", + "descriptionRaw": "", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "Freed from its icy tomb, the corrupted troll knew one thing, and one thing only - it must do as its dark mistress commanded.", + "artistName": "Kudos Productions", + "name": "Frostguard Thrall", + "cardCode": "04FR001T1", + "keywords": [ + "Overwhelm" + ], + "keywordRefs": [ + "Overwhelm" + ], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "None", + "rarityRef": "None", + "subtypes": [], + "supertype": "", + "type": "Unit", + "collectible": false, + "set": "Set4" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set4/en_us/img/cards/04FR013.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set4/en_us/img/cards/04FR013-full.png" + } + ], + "regions": [ + "Freljord" + ], + "regionRefs": [ + "Freljord" + ], + "attack": 0, + "cost": 5, + "health": 0, + "description": "Get an empty mana gem and grant an ally +0|+2.", + "descriptionRaw": "Get an empty mana gem and grant an ally +0|+2.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"Beware the ice... and more importantly... beware what lies within!\" - Scrawled on a Freljord inn wall", + "artistName": "Kudos Productions", + "name": "Cold Resistance", + "cardCode": "04FR013", + "keywords": [ + "Burst" + ], + "keywordRefs": [ + "Burst" + ], + "spellSpeed": "Burst", + "spellSpeedRef": "Burst", + "rarity": "COMMON", + "rarityRef": "Common", + "subtypes": [], + "supertype": "", + "type": "Spell", + "collectible": true, + "set": "Set4" + }, + { + "associatedCards": [], + "associatedCardRefs": [ + "04FR005T1", + "04FR005T2", + "04FR007T1", + "04FR001", + "04FR001T1", + "04FR005T4", + "04FR009" + ], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set4/en_us/img/cards/04FR005.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set4/en_us/img/cards/04FR005-full.png" + } + ], + "regions": [ + "Freljord" + ], + "regionRefs": [ + "Freljord" + ], + "attack": 2, + "cost": 3, + "health": 3, + "description": "When I'm summoned, summon a Frozen Thrall.", + "descriptionRaw": "When I'm summoned, summon a Frozen Thrall.", + "levelupDescription": "You've summoned 2+ allies that cost 8+. When I level up, create a Watcher in hand.", + "levelupDescriptionRaw": "You've summoned 2+ allies that cost 8+. When I level up, create a Watcher in hand.", + "flavorText": "\"The Watchers lurk just beyond these walls, suspended in ice, frozen in time... and while they wait, I have plans that must be set in motion...\"", + "artistName": "SIXMOREVODKA", + "name": "Lissandra", + "cardCode": "04FR005", + "keywords": [ + "Tough" + ], + "keywordRefs": [ + "Tough" + ], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "Champion", + "rarityRef": "Champion", + "subtypes": [], + "supertype": "Champion", + "type": "Unit", + "collectible": true, + "set": "Set4" + }, + { + "associatedCards": [], + "associatedCardRefs": [ + "04FR001T1" + ], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set4/en_us/img/cards/04FR005T4.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set4/en_us/img/cards/04FR005T4-full.png" + } + ], + "regions": [ + "Freljord" + ], + "regionRefs": [ + "Freljord" + ], + "attack": 11, + "cost": 17, + "health": 17, + "description": "I cost 0 if you've summoned 5+ allies that cost 8+ this game. \r\nAttack: Obliterate the enemy deck, leaving 3 non-champions.", + "descriptionRaw": "I cost 0 if you've summoned 5+ allies that cost 8+ this game. \r\nAttack: Obliterate the enemy deck, leaving 3 non-champions.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"This is the end. As it was foretold -- as I promised. Sisters... forgive me.\" - Lissandra", + "artistName": "Wild Blue", + "name": "Watcher", + "cardCode": "04FR005T4", + "keywords": [], + "keywordRefs": [], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "None", + "rarityRef": "None", + "subtypes": [], + "supertype": "", + "type": "Unit", + "collectible": false, + "set": "Set4" + }, + { + "associatedCards": [], + "associatedCardRefs": [ + "04FR005", + "04FR005T2", + "04FR007T1", + "04FR001", + "04FR001T1", + "04FR005T4", + "04FR009" + ], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set4/en_us/img/cards/04FR005T1.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set4/en_us/img/cards/04FR005T1-full.png" + } + ], + "regions": [ + "Freljord" + ], + "regionRefs": [ + "Freljord" + ], + "attack": 3, + "cost": 3, + "health": 4, + "description": "Your Nexus is Tough.\r\nWhen I'm summoned, summon a Frozen Thrall.\r\nRound Start: Create a Fleeting 0 cost Ice Shard in hand.", + "descriptionRaw": "Your Nexus is Tough.\r\nWhen I'm summoned, summon a Frozen Thrall.\r\nRound Start: Create a Fleeting 0 cost Ice Shard in hand.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "Few know what Lissandra sacrificed in order to gain power, her ambitions too great to be stymied by mortal trappings.", + "artistName": "SIXMOREVODKA", + "name": "Lissandra", + "cardCode": "04FR005T1", + "keywords": [ + "Tough", + "Missing Translation" + ], + "keywordRefs": [ + "Tough", + "AuraVisualFakeKeyword" + ], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "None", + "rarityRef": "None", + "subtypes": [], + "supertype": "Champion", + "type": "Unit", + "collectible": false, + "set": "Set4" + }, + { + "associatedCards": [], + "associatedCardRefs": [ + "04FR007T1", + "04FR005", + "04FR005T1" + ], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set4/en_us/img/cards/04FR005T2.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set4/en_us/img/cards/04FR005T2-full.png" + } + ], + "regions": [ + "Freljord" + ], + "regionRefs": [ + "Freljord" + ], + "attack": 0, + "cost": 5, + "health": 0, + "description": "Obliterate a unit and summon a Frozen Tomb in its place.\r\nCreate a Lissandra in your deck.", + "descriptionRaw": "Obliterate a unit and summon a Frozen Tomb in its place.\r\nCreate a Lissandra in your deck.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"Kneel, or freeze.\" - Lissandra", + "artistName": "Kudos Productions", + "name": "Lissandra's Entomb", + "cardCode": "04FR005T2", + "keywords": [ + "Fast" + ], + "keywordRefs": [ + "Fast" + ], + "spellSpeed": "Fast", + "spellSpeedRef": "Fast", + "rarity": "None", + "rarityRef": "None", + "subtypes": [], + "supertype": "Champion", + "type": "Spell", + "collectible": false, + "set": "Set4" + }, + { + "associatedCards": [], + "associatedCardRefs": [ + "04FR001", + "04FR001T1" + ], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set4/en_us/img/cards/04FR011.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set4/en_us/img/cards/04FR011-full.png" + } + ], + "regions": [ + "Freljord" + ], + "regionRefs": [ + "Freljord" + ], + "attack": 0, + "cost": 4, + "health": 0, + "description": "Frostbite an enemy.\r\nSummon a Frozen Thrall.", + "descriptionRaw": "Frostbite an enemy.\r\nSummon a Frozen Thrall.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"The cold elicits many reactions. Let us find out yours.\" - Lissandra", + "artistName": "Kudos Productions", + "name": "Succumb to the Cold", + "cardCode": "04FR011", + "keywords": [ + "Burst" + ], + "keywordRefs": [ + "Burst" + ], + "spellSpeed": "Burst", + "spellSpeedRef": "Burst", + "rarity": "COMMON", + "rarityRef": "Common", + "subtypes": [], + "supertype": "", + "type": "Spell", + "collectible": true, + "set": "Set4" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set4/en_us/img/cards/04FR019T1.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set4/en_us/img/cards/04FR019T1-full.png" + } + ], + "regions": [ + "Freljord" + ], + "regionRefs": [ + "Freljord" + ], + "attack": 1, + "cost": 1, + "health": 1, + "description": "", + "descriptionRaw": "", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "The young wolves were the most nervous, but were quickly emboldened as they saw their mother lunge for the boar's throat, icy fangs flashing.", + "artistName": "Kudos Productions", + "name": "Rimefang Pack", + "cardCode": "04FR019T1", + "keywords": [ + "Overwhelm" + ], + "keywordRefs": [ + "Overwhelm" + ], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "None", + "rarityRef": "None", + "subtypes": [], + "supertype": "", + "type": "Unit", + "collectible": false, + "set": "Set4" + }, + { + "associatedCards": [], + "associatedCardRefs": [ + "04FR001T1" + ], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set4/en_us/img/cards/04FR001.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set4/en_us/img/cards/04FR001-full.png" + } + ], + "regions": [ + "Freljord" + ], + "regionRefs": [ + "Freljord" + ], + "attack": 0, + "cost": 1, + "health": 0, + "description": "Countdown 8: Summon a Frostguard Thrall.", + "descriptionRaw": "Countdown 8: Summon a Frostguard Thrall.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "Certainly, there were enough half-witted warriors within the ranks of Trundle's disorderly army to use as front-line fodder, but Lissandra desired something much more loyal, something that served her, and her alone...", + "artistName": "Kudos Productions", + "name": "Frozen Thrall", + "cardCode": "04FR001", + "keywords": [ + "Countdown", + "Landmark" + ], + "keywordRefs": [ + "Countdown", + "LandmarkVisualOnly" + ], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "COMMON", + "rarityRef": "Common", + "subtypes": [], + "supertype": "", + "type": "Landmark", + "collectible": true, + "set": "Set4" + }, + { + "associatedCards": [], + "associatedCardRefs": [ + "04FR007T1" + ], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set4/en_us/img/cards/04FR007.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set4/en_us/img/cards/04FR007-full.png" + } + ], + "regions": [ + "Freljord" + ], + "regionRefs": [ + "Freljord" + ], + "attack": 0, + "cost": 5, + "health": 0, + "description": "Obliterate a unit to summon a Frozen Tomb in place with the unit stored inside.", + "descriptionRaw": "Obliterate a unit to summon a Frozen Tomb in place with the unit stored inside.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"Kneel, or freeze.\" - Lissandra", + "artistName": "Kudos Productions", + "name": "Entomb", + "cardCode": "04FR007", + "keywords": [ + "Fast" + ], + "keywordRefs": [ + "Fast" + ], + "spellSpeed": "Fast", + "spellSpeedRef": "Fast", + "rarity": "RARE", + "rarityRef": "Rare", + "subtypes": [], + "supertype": "", + "type": "Spell", + "collectible": true, + "set": "Set4" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set4/en_us/img/cards/04FR007T1.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set4/en_us/img/cards/04FR007T1-full.png" + } + ], + "regions": [ + "Freljord" + ], + "regionRefs": [ + "Freljord" + ], + "attack": 0, + "cost": 0, + "health": 0, + "description": "Countdown 2: Summon exact copies of the units and landmarks stored inside.", + "descriptionRaw": "Countdown 2: Summon exact copies of the units and landmarks stored inside.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"Our lady will bury this world and all you know in ice.\" - Draklorn Inquisitor ", + "artistName": "Kudos Productions", + "name": "Frozen Tomb", + "cardCode": "04FR007T1", + "keywords": [ + "Countdown", + "Landmark" + ], + "keywordRefs": [ + "Countdown", + "LandmarkVisualOnly" + ], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "None", + "rarityRef": "None", + "subtypes": [], + "supertype": "", + "type": "Landmark", + "collectible": false, + "set": "Set4" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set4/en_us/img/cards/04FR017.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set4/en_us/img/cards/04FR017-full.png" + } + ], + "regions": [ + "Freljord" + ], + "regionRefs": [ + "Freljord" + ], + "attack": 0, + "cost": 2, + "health": 0, + "description": "Grant the top ally in your deck +2|+2.\r\nEnlightened: Instead, grant all allies in your deck +2|+2.", + "descriptionRaw": "Grant the top ally in your deck +2|+2.\r\nEnlightened: Instead, grant all allies in your deck +2|+2.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "The Freljord's unrelenting cold and punishing storms kill most who enter its barren lands. But those who survive find within themselves an inner strength that spurs them onward through the rest of their lives.", + "artistName": "Kudos Productions", + "name": "Ancestral Boon", + "cardCode": "04FR017", + "keywords": [ + "Burst" + ], + "keywordRefs": [ + "Burst" + ], + "spellSpeed": "Burst", + "spellSpeedRef": "Burst", + "rarity": "COMMON", + "rarityRef": "Common", + "subtypes": [], + "supertype": "", + "type": "Spell", + "collectible": true, + "set": "Set4" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set4/en_us/img/cards/04FR014.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set4/en_us/img/cards/04FR014-full.png" + } + ], + "regions": [ + "Freljord" + ], + "regionRefs": [ + "Freljord" + ], + "attack": 0, + "cost": 4, + "health": 0, + "description": "When I'm summoned, heal your Nexus 4.\r\nCountdown 1: Deal 2 to EVERYTHING.", + "descriptionRaw": "When I'm summoned, heal your Nexus 4.\r\nCountdown 1: Deal 2 to EVERYTHING.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "Bizarre forms made of dark ice sprout from every surface along the ravine, their outward-facing spikes deterring any would-be intruders.", + "artistName": "Kudos Productions", + "name": "Blighted Ravine", + "cardCode": "04FR014", + "keywords": [ + "Countdown", + "Landmark" + ], + "keywordRefs": [ + "Countdown", + "LandmarkVisualOnly" + ], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "RARE", + "rarityRef": "Rare", + "subtypes": [], + "supertype": "", + "type": "Landmark", + "collectible": true, + "set": "Set4" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set4/en_us/img/cards/04FR009.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set4/en_us/img/cards/04FR009-full.png" + } + ], + "regions": [ + "Freljord" + ], + "regionRefs": [ + "Freljord" + ], + "attack": 0, + "cost": 3, + "health": 0, + "description": "Deal 1 to EVERYTHING.", + "descriptionRaw": "Deal 1 to EVERYTHING.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"I will bury the world in ice.\" - Lissandra", + "artistName": "Kudos Productions", + "name": "Ice Shard", + "cardCode": "04FR009", + "keywords": [ + "Fast" + ], + "keywordRefs": [ + "Fast" + ], + "spellSpeed": "Fast", + "spellSpeedRef": "Fast", + "rarity": "COMMON", + "rarityRef": "Common", + "subtypes": [], + "supertype": "", + "type": "Spell", + "collectible": true, + "set": "Set4" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set4/en_us/img/cards/04FR015.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set4/en_us/img/cards/04FR015-full.png" + } + ], + "regions": [ + "Freljord" + ], + "regionRefs": [ + "Freljord" + ], + "attack": 2, + "cost": 4, + "health": 5, + "description": "When I'm summoned, grant all ally Poros a random keyword.", + "descriptionRaw": "When I'm summoned, grant all ally Poros a random keyword.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "There is one figure said to be legendary to all porokind. It is said that, as he travels, he bestows his deserving furry friends with all manner of magical forged gifts.", + "artistName": "Dao Le", + "name": "Fabled Poro", + "cardCode": "04FR015", + "keywords": [], + "keywordRefs": [], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "RARE", + "rarityRef": "Rare", + "subtypes": [ + "PORO" + ], + "supertype": "", + "type": "Unit", + "collectible": true, + "set": "Set4" + }, + { + "associatedCards": [], + "associatedCardRefs": [ + "04FR019T1" + ], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set4/en_us/img/cards/04FR019.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set4/en_us/img/cards/04FR019-full.png" + } + ], + "regions": [ + "Freljord" + ], + "regionRefs": [ + "Freljord" + ], + "attack": 5, + "cost": 6, + "health": 5, + "description": "When I'm summoned, summon a Rimefang Pack. Grant it +1|+1 for each time you've Frostbitten enemies this game.", + "descriptionRaw": "When I'm summoned, summon a Rimefang Pack. Grant it +1|+1 for each time you've Frostbitten enemies this game.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "The rimefang wolves circled the drüvask, crouched low, wary. The stench of death clung tightly to it, pungent and overwhelming.", + "artistName": "Kudos Productions", + "name": "Rimefang Denmother", + "cardCode": "04FR019", + "keywords": [], + "keywordRefs": [], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "RARE", + "rarityRef": "Rare", + "subtypes": [], + "supertype": "", + "type": "Unit", + "collectible": true, + "set": "Set4" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set4/en_us/img/cards/04FR018.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set4/en_us/img/cards/04FR018-full.png" + } + ], + "regions": [ + "Freljord" + ], + "regionRefs": [ + "Freljord" + ], + "attack": 5, + "cost": 8, + "health": 5, + "description": "Round Start: If you have 2+ Yetis, summon me from hand and create a copy of me in your deck.\r\nPlay: Draw a Yeti.", + "descriptionRaw": "Round Start: If you have 2+ Yetis, summon me from hand and create a copy of me in your deck.\r\nPlay: Draw a Yeti.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"...and they're sneaky, too! Last time I was out there, I had found shelter in a cave, only to find yearlings in there, fast asleep. Tried to keep my distance, but then one of the big 'uns returned, tall as a mountain, and covered in ice! Now you listen to me, because...\" - Babbling Bjerg", + "artistName": "Kudos Productions", + "name": "Abominable Guardian", + "cardCode": "04FR018", + "keywords": [], + "keywordRefs": [], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "EPIC", + "rarityRef": "Epic", + "subtypes": [ + "YETI" + ], + "supertype": "", + "type": "Unit", + "collectible": true, + "set": "Set4" + }, + { + "associatedCards": [], + "associatedCardRefs": [ + "01FR001", + "02FR007", + "04FR007", + "04FR007T1" + ], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set4/en_us/img/cards/04FR010.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set4/en_us/img/cards/04FR010-full.png" + } + ], + "regions": [ + "Freljord" + ], + "regionRefs": [ + "Freljord" + ], + "attack": 0, + "cost": 1, + "health": 0, + "description": "Create a Fleeting Flash Freeze, Fury of the North, or Entomb in hand.", + "descriptionRaw": "Create a Fleeting Flash Freeze, Fury of the North, or Entomb in hand.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "The Freljordian sisters Avarosa, Serylda, and Lissandra bore tremendous power, though chose to wield it in different ways - each one distinctly merciful, martial, or malicious.", + "artistName": "Kudos Productions", + "name": "Three Sisters", + "cardCode": "04FR010", + "keywords": [ + "Burst" + ], + "keywordRefs": [ + "Burst" + ], + "spellSpeed": "Burst", + "spellSpeedRef": "Burst", + "rarity": "RARE", + "rarityRef": "Rare", + "subtypes": [], + "supertype": "", + "type": "Spell", + "collectible": true, + "set": "Set4" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set4/en_us/img/cards/04NX002.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set4/en_us/img/cards/04NX002-full.png" + } + ], + "regions": [ + "Noxus" + ], + "regionRefs": [ + "Noxus" + ], + "attack": 0, + "cost": 4, + "health": 0, + "description": "Reputation: I cost 2. \r\nDraw 2.", + "descriptionRaw": "Reputation: I cost 2. \r\nDraw 2.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "Before the news, the rumors. Before the rumors, the play. Before the play, the plot.", + "artistName": "Kudos Productions", + "name": "Whispered Words", + "cardCode": "04NX002", + "keywords": [ + "Burst" + ], + "keywordRefs": [ + "Burst" + ], + "spellSpeed": "Burst", + "spellSpeedRef": "Burst", + "rarity": "RARE", + "rarityRef": "Rare", + "subtypes": [], + "supertype": "", + "type": "Spell", + "collectible": true, + "set": "Set4" + }, + { + "associatedCards": [], + "associatedCardRefs": [ + "01NX049" + ], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set4/en_us/img/cards/04NX010.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set4/en_us/img/cards/04NX010-full.png" + } + ], + "regions": [ + "Noxus" + ], + "regionRefs": [ + "Noxus" + ], + "attack": 5, + "cost": 3, + "health": 1, + "description": "When I'm summoned, create a Guile in hand.", + "descriptionRaw": "When I'm summoned, create a Guile in hand.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"Aelana, my dearest friend and colleague! Have you seen Lord Duin about...? Ah, what a shame. I was very much looking forward to catching up. I do hope he paced himself tonight. I would hate for anything to happen to the old boy...\" - Lady Auvray, Black Rose Spy", + "artistName": "Grafit Studio", + "name": "Thorn of the Rose", + "cardCode": "04NX010", + "keywords": [], + "keywordRefs": [], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "COMMON", + "rarityRef": "Common", + "subtypes": [], + "supertype": "", + "type": "Unit", + "collectible": true, + "set": "Set4" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set4/en_us/img/cards/04NX021.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set4/en_us/img/cards/04NX021-full.png" + } + ], + "regions": [ + "Noxus" + ], + "regionRefs": [ + "Noxus" + ], + "attack": 2, + "cost": 5, + "health": 6, + "description": "When you target me, grant me +1|+0.", + "descriptionRaw": "When you target me, grant me +1|+0.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "After countless battles, Beryn had vowed to never again raise his sword, even if it meant forfeiting his life. But when the strange mists swept through Noxus and overtook Thea, he knew he had to break his promise. He would free her, no matter the cost.", + "artistName": "Kudos Productions", + "name": "Retired Reckoner", + "cardCode": "04NX021", + "keywords": [ + "Overwhelm" + ], + "keywordRefs": [ + "Overwhelm" + ], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "RARE", + "rarityRef": "Rare", + "subtypes": [], + "supertype": "", + "type": "Unit", + "collectible": true, + "set": "Set4" + }, + { + "associatedCards": [], + "associatedCardRefs": [ + "04NX022T1" + ], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set4/en_us/img/cards/04NX022.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set4/en_us/img/cards/04NX022-full.png" + } + ], + "regions": [ + "Noxus" + ], + "regionRefs": [ + "Noxus" + ], + "attack": 4, + "cost": 4, + "health": 3, + "description": "When I'm summoned, create a Midnight Raid in hand.", + "descriptionRaw": "When I'm summoned, create a Midnight Raid in hand.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "When her sentence ended, Thea knew she could never rejoin her people. War - and Noxus - had changed her, made her a killer. She wouldn't know peace. Instead, she put her newfound skills to use for coin in the arenas.", + "artistName": "Kudos Productions", + "name": "Ruined Reckoner", + "cardCode": "04NX022", + "keywords": [], + "keywordRefs": [], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "RARE", + "rarityRef": "Rare", + "subtypes": [], + "supertype": "", + "type": "Unit", + "collectible": true, + "set": "Set4" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set4/en_us/img/cards/04NX022T1.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set4/en_us/img/cards/04NX022T1-full.png" + } + ], + "regions": [ + "Noxus" + ], + "regionRefs": [ + "Noxus" + ], + "attack": 0, + "cost": 0, + "health": 0, + "description": "An ally starts a free attack.", + "descriptionRaw": "An ally starts a free attack.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"Kill or be killed!\" - Ruined Reckoner", + "artistName": "Kudos Productions", + "name": "Midnight Raid", + "cardCode": "04NX022T1", + "keywords": [ + "Slow", + "Fleeting" + ], + "keywordRefs": [ + "Slow", + "Fleeting" + ], + "spellSpeed": "Slow", + "spellSpeedRef": "Slow", + "rarity": "None", + "rarityRef": "None", + "subtypes": [], + "supertype": "", + "type": "Spell", + "collectible": false, + "set": "Set4" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set4/en_us/img/cards/04NX015.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set4/en_us/img/cards/04NX015-full.png" + } + ], + "regions": [ + "Noxus" + ], + "regionRefs": [ + "Noxus" + ], + "attack": 0, + "cost": 4, + "health": 0, + "description": "An ally with 5+ Power strikes an enemy.", + "descriptionRaw": "An ally with 5+ Power strikes an enemy.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"The greatest threats are the ones that go unseen.\" - LeBlanc", + "artistName": "Kudos Productions", + "name": "Bloody Business", + "cardCode": "04NX015", + "keywords": [ + "Fast" + ], + "keywordRefs": [ + "Fast" + ], + "spellSpeed": "Fast", + "spellSpeedRef": "Fast", + "rarity": "COMMON", + "rarityRef": "Common", + "subtypes": [], + "supertype": "", + "type": "Spell", + "collectible": true, + "set": "Set4" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set4/en_us/img/cards/04NX019.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set4/en_us/img/cards/04NX019-full.png" + } + ], + "regions": [ + "Noxus" + ], + "regionRefs": [ + "Noxus" + ], + "attack": 2, + "cost": 1, + "health": 1, + "description": "When an enemy blocks me, give me +3|+0 this round.", + "descriptionRaw": "When an enemy blocks me, give me +3|+0 this round.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "Surprised by the resilience of the creature they'd found on the shore of Ionia, the young general insisted on taking it back home, eager to find out its true strength.", + "artistName": "Kudos Productions", + "name": "Thrashing Snapper", + "cardCode": "04NX019", + "keywords": [], + "keywordRefs": [], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "EPIC", + "rarityRef": "Epic", + "subtypes": [], + "supertype": "", + "type": "Unit", + "collectible": true, + "set": "Set4" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set4/en_us/img/cards/04NX008.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set4/en_us/img/cards/04NX008-full.png" + } + ], + "regions": [ + "Noxus" + ], + "regionRefs": [ + "Noxus" + ], + "attack": 5, + "cost": 8, + "health": 5, + "description": "Reputation: I cost 6. \r\nWhen I'm summoned, Rally.", + "descriptionRaw": "Reputation: I cost 6. \r\nWhen I'm summoned, Rally.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "Within the inner chambers of the Black Rose, Noxian nobles play their pieces, and murder befalls distant victims.", + "artistName": "Kudos Productions", + "name": "Incisive Tactician", + "cardCode": "04NX008", + "keywords": [], + "keywordRefs": [], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "RARE", + "rarityRef": "Rare", + "subtypes": [], + "supertype": "", + "type": "Unit", + "collectible": true, + "set": "Set4" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set4/en_us/img/cards/04NX006.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set4/en_us/img/cards/04NX006-full.png" + } + ], + "regions": [ + "Noxus" + ], + "regionRefs": [ + "Noxus" + ], + "attack": 3, + "cost": 2, + "health": 2, + "description": "Reputation: When I'm summoned, transform me into an exact copy of the strongest ally that struck this round. ", + "descriptionRaw": "Reputation: When I'm summoned, transform me into an exact copy of the strongest ally that struck this round. ", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"A secret is only worth the cost of keeping it.\"", + "artistName": "Grafit Studio", + "name": "Black Rose Spy", + "cardCode": "04NX006", + "keywords": [], + "keywordRefs": [], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "EPIC", + "rarityRef": "Epic", + "subtypes": [], + "supertype": "", + "type": "Unit", + "collectible": true, + "set": "Set4" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set4/en_us/img/cards/04NX001.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set4/en_us/img/cards/04NX001-full.png" + } + ], + "regions": [ + "Noxus" + ], + "regionRefs": [ + "Noxus" + ], + "attack": 0, + "cost": 3, + "health": 0, + "description": "Reputation: I cost 1. \r\nPick a spell in play or in hand and create a Fleeting copy of it in hand.", + "descriptionRaw": "Reputation: I cost 1. \r\nPick a spell in play or in hand and create a Fleeting copy of it in hand.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "Imitation is flattery, and flattery can be quite deadly.", + "artistName": "Kudos Productions", + "name": "Mimic", + "cardCode": "04NX001", + "keywords": [ + "Burst" + ], + "keywordRefs": [ + "Burst" + ], + "spellSpeed": "Burst", + "spellSpeedRef": "Burst", + "rarity": "RARE", + "rarityRef": "Rare", + "subtypes": [], + "supertype": "", + "type": "Spell", + "collectible": true, + "set": "Set4" + }, + { + "associatedCards": [], + "associatedCardRefs": [ + "04NX005", + "04NX004T1", + "04NX004T2" + ], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set4/en_us/img/cards/04NX004.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set4/en_us/img/cards/04NX004-full.png" + } + ], + "regions": [ + "Noxus" + ], + "regionRefs": [ + "Noxus" + ], + "attack": 5, + "cost": 3, + "health": 2, + "description": "", + "descriptionRaw": "", + "levelupDescription": "I've seen you deal 15+ damage.", + "levelupDescriptionRaw": "I've seen you deal 15+ damage.", + "flavorText": "\"Now now, no need to squabble amongst ourselves. For the moment, we will refrain from any rash action. Let us reconvene once we've heard from our emissary. After all...\"", + "artistName": "SIXMOREVODKA", + "name": "LeBlanc", + "cardCode": "04NX004", + "keywords": [ + "Quick Attack" + ], + "keywordRefs": [ + "QuickStrike" + ], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "Champion", + "rarityRef": "Champion", + "subtypes": [], + "supertype": "Champion", + "type": "Unit", + "collectible": true, + "set": "Set4" + }, + { + "associatedCards": [], + "associatedCardRefs": [ + "04NX004", + "04NX004T2" + ], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set4/en_us/img/cards/04NX004T1.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set4/en_us/img/cards/04NX004T1-full.png" + } + ], + "regions": [ + "Noxus" + ], + "regionRefs": [ + "Noxus" + ], + "attack": 0, + "cost": 3, + "health": 0, + "description": "Reputation: I cost 1. \r\nDeal 2 to anything.\r\nCreate a LeBlanc in your deck.", + "descriptionRaw": "Reputation: I cost 1. \r\nDeal 2 to anything.\r\nCreate a LeBlanc in your deck.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "Once the battle is won, one must not hesitate, but press on, pursue, and annihilate their foe.", + "artistName": "Kudos Productions", + "name": "LeBlanc's Sigil of Malice", + "cardCode": "04NX004T1", + "keywords": [ + "Fast" + ], + "keywordRefs": [ + "Fast" + ], + "spellSpeed": "Fast", + "spellSpeedRef": "Fast", + "rarity": "None", + "rarityRef": "None", + "subtypes": [], + "supertype": "Champion", + "type": "Spell", + "collectible": false, + "set": "Set4" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set4/en_us/img/cards/04NX005.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set4/en_us/img/cards/04NX005-full.png" + } + ], + "regions": [ + "Noxus" + ], + "regionRefs": [ + "Noxus" + ], + "attack": 0, + "cost": 2, + "health": 0, + "description": "Summon an exact Ephemeral copy of an ally with 5+ Power.", + "descriptionRaw": "Summon an exact Ephemeral copy of an ally with 5+ Power.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"Seeing double?\" - LeBlanc", + "artistName": "Kudos Productions", + "name": "Mirror Image", + "cardCode": "04NX005", + "keywords": [ + "Slow" + ], + "keywordRefs": [ + "Slow" + ], + "spellSpeed": "Slow", + "spellSpeedRef": "Slow", + "rarity": "None", + "rarityRef": "None", + "subtypes": [], + "supertype": "", + "type": "Spell", + "collectible": false, + "set": "Set4" + }, + { + "associatedCards": [], + "associatedCardRefs": [ + "04NX005", + "04NX004T1", + "04NX004" + ], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set4/en_us/img/cards/04NX004T2.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set4/en_us/img/cards/04NX004T2-full.png" + } + ], + "regions": [ + "Noxus" + ], + "regionRefs": [ + "Noxus" + ], + "attack": 6, + "cost": 3, + "health": 3, + "description": "When I level up and each time I see you deal 15+ damage, create a Mirror Image in hand. If you already have one, reduce its cost by 1 instead. ", + "descriptionRaw": "When I level up and each time I see you deal 15+ damage, create a Mirror Image in hand. If you already have one, reduce its cost by 1 instead. ", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"...we all want the same thing.\"", + "artistName": "SIXMOREVODKA", + "name": "LeBlanc", + "cardCode": "04NX004T2", + "keywords": [ + "Quick Attack" + ], + "keywordRefs": [ + "QuickStrike" + ], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "None", + "rarityRef": "None", + "subtypes": [], + "supertype": "Champion", + "type": "Unit", + "collectible": false, + "set": "Set4" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set4/en_us/img/cards/04NX016.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set4/en_us/img/cards/04NX016-full.png" + } + ], + "regions": [ + "Noxus" + ], + "regionRefs": [ + "Noxus" + ], + "attack": 2, + "cost": 4, + "health": 5, + "description": "Attack: Grant Spider allies +1|+0.", + "descriptionRaw": "Attack: Grant Spider allies +1|+0.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"Go on, my sweet. Let the others hear your call. You know how it excites them. You know it pleases me.\" - Elise", + "artistName": "Kudos Productions", + "name": "Shrieking Spinner", + "cardCode": "04NX016", + "keywords": [], + "keywordRefs": [], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "RARE", + "rarityRef": "Rare", + "subtypes": [ + "SPIDER" + ], + "supertype": "", + "type": "Unit", + "collectible": true, + "set": "Set4" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set4/en_us/img/cards/04NX007.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set4/en_us/img/cards/04NX007-full.png" + } + ], + "regions": [ + "Noxus" + ], + "regionRefs": [ + "Noxus" + ], + "attack": 5, + "cost": 10, + "health": 12, + "description": "Attack: Increase my Power by the total Power of all allies.", + "descriptionRaw": "Attack: Increase my Power by the total Power of all allies.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "A nameless aberration towered above them in the smoke-filled chamber. The mages chanted in discordant chorus, dread their voices reaching a strained, fevered pitch. The monster breathed deep of their mounting fear, and each breath brought it terrible power.", + "artistName": "Grafit Studio", + "name": "Atakhan, Bringer of Ruin", + "cardCode": "04NX007", + "keywords": [ + "Overwhelm" + ], + "keywordRefs": [ + "Overwhelm" + ], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "EPIC", + "rarityRef": "Epic", + "subtypes": [], + "supertype": "", + "type": "Unit", + "collectible": true, + "set": "Set4" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set4/en_us/img/cards/04NX018.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set4/en_us/img/cards/04NX018-full.png" + } + ], + "regions": [ + "Noxus" + ], + "regionRefs": [ + "Noxus" + ], + "attack": 1, + "cost": 1, + "health": 2, + "description": "The next time you summon another ally, deal 1 to it and grant me +1|+1.", + "descriptionRaw": "The next time you summon another ally, deal 1 to it and grant me +1|+1.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"They're rarely kept as pets, you know. Just one little scratch from those claws of theirs can open up a vein... but I don't mind.\" - Clara, Crimson Disciple", + "artistName": "Kudos Productions", + "name": "Crimson Bloodletter ", + "cardCode": "04NX018", + "keywords": [], + "keywordRefs": [], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "COMMON", + "rarityRef": "Common", + "subtypes": [], + "supertype": "", + "type": "Unit", + "collectible": true, + "set": "Set4" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set4/en_us/img/cards/04NX003.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set4/en_us/img/cards/04NX003-full.png" + } + ], + "regions": [ + "Noxus" + ], + "regionRefs": [ + "Noxus" + ], + "attack": 0, + "cost": 3, + "health": 0, + "description": "Reputation: I cost 1. \r\nDeal 2 to anything.", + "descriptionRaw": "Reputation: I cost 1. \r\nDeal 2 to anything.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "Once the battle is won, one must not hesitate, but press on, pursue, and annihilate their foe.", + "artistName": "Kudos Productions", + "name": "Sigil of Malice", + "cardCode": "04NX003", + "keywords": [ + "Fast" + ], + "keywordRefs": [ + "Fast" + ], + "spellSpeed": "Fast", + "spellSpeedRef": "Fast", + "rarity": "COMMON", + "rarityRef": "Common", + "subtypes": [], + "supertype": "", + "type": "Spell", + "collectible": true, + "set": "Set4" + }, + { + "associatedCards": [], + "associatedCardRefs": [ + "01NX021" + ], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set4/en_us/img/cards/04NX017.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set4/en_us/img/cards/04NX017-full.png" + } + ], + "regions": [ + "Noxus" + ], + "regionRefs": [ + "Noxus" + ], + "attack": 0, + "cost": 8, + "health": 0, + "description": "Summon 2 Legion Marauders.", + "descriptionRaw": "Summon 2 Legion Marauders.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "Though the soldiers of Noxus rarely leave survivors, the marauders leave even fewer.", + "artistName": "Kudos Productions", + "name": "Strength in Numbers", + "cardCode": "04NX017", + "keywords": [ + "Slow" + ], + "keywordRefs": [ + "Slow" + ], + "spellSpeed": "Slow", + "spellSpeedRef": "Slow", + "rarity": "COMMON", + "rarityRef": "Common", + "subtypes": [], + "supertype": "", + "type": "Spell", + "collectible": true, + "set": "Set4" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set4/en_us/img/cards/04NX009.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set4/en_us/img/cards/04NX009-full.png" + } + ], + "regions": [ + "Noxus" + ], + "regionRefs": [ + "Noxus" + ], + "attack": 0, + "cost": 4, + "health": 0, + "description": "Give an ally +5|+0 this round.", + "descriptionRaw": "Give an ally +5|+0 this round.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"You will act with grace and courtesy. You will flatter, you will disarm. You will listen. You will learn. And, when it is time, you will strike, and you WILL kill.\" - LeBlanc", + "artistName": "Kudos Productions", + "name": "Thorned Blade", + "cardCode": "04NX009", + "keywords": [ + "Burst" + ], + "keywordRefs": [ + "Burst" + ], + "spellSpeed": "Burst", + "spellSpeedRef": "Burst", + "rarity": "COMMON", + "rarityRef": "Common", + "subtypes": [], + "supertype": "", + "type": "Spell", + "collectible": true, + "set": "Set4" + }, + { + "associatedCards": [], + "associatedCardRefs": [ + "04SI005T4", + "04SI005T1" + ], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set4/en_us/img/cards/04SI005.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set4/en_us/img/cards/04SI005-full.png" + } + ], + "regions": [ + "Shadow Isles" + ], + "regionRefs": [ + "ShadowIsles" + ], + "attack": 4, + "cost": 4, + "health": 3, + "description": "Each round, the first time you slay a unit, I mark the weakest enemy. \r\nRound End: Kill units with my mark.", + "descriptionRaw": "Each round, the first time you slay a unit, I mark the weakest enemy. \r\nRound End: Kill units with my mark.", + "levelupDescription": "I've seen you slay 2 units with my mark.", + "levelupDescriptionRaw": "I've seen you slay 2 units with my mark.", + "flavorText": "Once there was a lonely man\nWho split himself in twain\nFrom one came two, born anew\nNever alone again.", + "artistName": "SIXMOREVODKA", + "name": "Kindred", + "cardCode": "04SI005", + "keywords": [ + "Quick Attack" + ], + "keywordRefs": [ + "QuickStrike" + ], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "Champion", + "rarityRef": "Champion", + "subtypes": [], + "supertype": "Champion", + "type": "Unit", + "collectible": true, + "set": "Set4" + }, + { + "associatedCards": [], + "associatedCardRefs": [ + "04SI005", + "04SI005T1" + ], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set4/en_us/img/cards/04SI005T4.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set4/en_us/img/cards/04SI005T4-full.png" + } + ], + "regions": [ + "Shadow Isles" + ], + "regionRefs": [ + "ShadowIsles" + ], + "attack": 0, + "cost": 5, + "health": 0, + "description": "Kill a unit, then revive it.\r\nCreate a Kindred in your deck.", + "descriptionRaw": "Kill a unit, then revive it.\r\nCreate a Kindred in your deck.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"This is only an interlude.\" - Lamb", + "artistName": "Kudos Productions", + "name": "Kindred's Spirit Journey", + "cardCode": "04SI005T4", + "keywords": [ + "Fast" + ], + "keywordRefs": [ + "Fast" + ], + "spellSpeed": "Fast", + "spellSpeedRef": "Fast", + "rarity": "None", + "rarityRef": "None", + "subtypes": [], + "supertype": "Champion", + "type": "Spell", + "collectible": false, + "set": "Set4" + }, + { + "associatedCards": [], + "associatedCardRefs": [ + "04SI005T4", + "04SI005" + ], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set4/en_us/img/cards/04SI005T1.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set4/en_us/img/cards/04SI005T1-full.png" + } + ], + "regions": [ + "Shadow Isles" + ], + "regionRefs": [ + "ShadowIsles" + ], + "attack": 5, + "cost": 4, + "health": 4, + "description": "Each round, the first time you slay a unit, grant me +2|+2 and I mark the weakest enemy. \r\nRound End: Kill units with my mark.", + "descriptionRaw": "Each round, the first time you slay a unit, grant me +2|+2 and I mark the weakest enemy. \r\nRound End: Kill units with my mark.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "Death took the form of hunters \nNone escape such as they\nOne cajoles with arrows and bow\nOne chases down its prey.", + "artistName": "SIXMOREVODKA", + "name": "Kindred", + "cardCode": "04SI005T1", + "keywords": [ + "Quick Attack" + ], + "keywordRefs": [ + "QuickStrike" + ], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "None", + "rarityRef": "None", + "subtypes": [], + "supertype": "Champion", + "type": "Unit", + "collectible": false, + "set": "Set4" + }, + { + "associatedCards": [], + "associatedCardRefs": [ + "04SI055T2", + "04SI055T1", + "04SI045" + ], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set4/en_us/img/cards/04SI055.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set4/en_us/img/cards/04SI055-full.png" + } + ], + "regions": [ + "Shadow Isles" + ], + "regionRefs": [ + "ShadowIsles" + ], + "attack": 5, + "cost": 5, + "health": 4, + "description": "Each round, the first time an ally dies, summon an Encroaching Mist.", + "descriptionRaw": "Each round, the first time an ally dies, summon an Encroaching Mist.", + "levelupDescription": "I've seen allies with 20+ total power die.", + "levelupDescriptionRaw": "I've seen allies with 20+ total power die.", + "flavorText": "\"There is something that deeply unsettles me about the young king. Something at his heart... a hunger that cannot be satisfied, a desire that goes unfulfilled.\" - From the record of Nunyo Necrit of Camavor", + "artistName": "SIXMOREVODKA", + "name": "Viego", + "cardCode": "04SI055", + "keywords": [ + "Fearsome" + ], + "keywordRefs": [ + "Fearsome" + ], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "Champion", + "rarityRef": "Champion", + "subtypes": [], + "supertype": "Champion", + "type": "Unit", + "collectible": true, + "set": "Set4" + }, + { + "associatedCards": [], + "associatedCardRefs": [ + "04SI055", + "04SI055T2" + ], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set4/en_us/img/cards/04SI055T1.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set4/en_us/img/cards/04SI055T1-full.png" + } + ], + "regions": [ + "Shadow Isles" + ], + "regionRefs": [ + "ShadowIsles" + ], + "attack": 0, + "cost": 4, + "health": 0, + "description": "Pick a unit to strike your Nexus, then kill it.\r\nCreate a Viego in your deck.", + "descriptionRaw": "Pick a unit to strike your Nexus, then kill it.\r\nCreate a Viego in your deck.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"I have given everything to find her, and yet it is not enough.\" - Viego", + "artistName": "Kudos Productions", + "name": "Viego's Despair", + "cardCode": "04SI055T1", + "keywords": [ + "Slow" + ], + "keywordRefs": [ + "Slow" + ], + "spellSpeed": "Slow", + "spellSpeedRef": "Slow", + "rarity": "None", + "rarityRef": "None", + "subtypes": [], + "supertype": "Champion", + "type": "Spell", + "collectible": false, + "set": "Set4" + }, + { + "associatedCards": [], + "associatedCardRefs": [ + "04SI055", + "04SI055T1", + "04SI045" + ], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set4/en_us/img/cards/04SI055T2.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set4/en_us/img/cards/04SI055T2-full.png" + } + ], + "regions": [ + "Shadow Isles" + ], + "regionRefs": [ + "ShadowIsles" + ], + "attack": 6, + "cost": 5, + "health": 5, + "description": "Each round, the first time a unit dies, summon an Encroaching Mist.\r\nRound Start: Steal the strongest enemy this round. If it's a champion, kill it instead.", + "descriptionRaw": "Each round, the first time a unit dies, summon an Encroaching Mist.\r\nRound Start: Steal the strongest enemy this round. If it's a champion, kill it instead.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"It is obvious to me in hindsight that it was not Isolde's death that fueled Viego's delusions, nor his need for fulfillment, but simply that something he desperately wanted was denied him.\" - From the record of Nunyo Necrit of Camavor", + "artistName": "SIXMOREVODKA", + "name": "Viego", + "cardCode": "04SI055T2", + "keywords": [ + "Fearsome" + ], + "keywordRefs": [ + "Fearsome" + ], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "Champion", + "rarityRef": "Champion", + "subtypes": [], + "supertype": "Champion", + "type": "Unit", + "collectible": false, + "set": "Set4" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set4/en_us/img/cards/04SI016.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set4/en_us/img/cards/04SI016-full.png" + } + ], + "regions": [ + "Shadow Isles" + ], + "regionRefs": [ + "ShadowIsles" + ], + "attack": 4, + "cost": 4, + "health": 1, + "description": "Play: Kill an ally to draw 2.", + "descriptionRaw": "Play: Kill an ally to draw 2.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "In shadow they lurk, waiting for a weary nod or an absent mind. Then claws, a gaping maw, and finally, darkness.", + "artistName": "Kudos Productions", + "name": "Spirit Leech ", + "cardCode": "04SI016", + "keywords": [], + "keywordRefs": [], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "COMMON", + "rarityRef": "Common", + "subtypes": [], + "supertype": "", + "type": "Unit", + "collectible": true, + "set": "Set4" + }, + { + "associatedCards": [], + "associatedCardRefs": [ + "04SI007T3" + ], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set4/en_us/img/cards/04SI007.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set4/en_us/img/cards/04SI007-full.png" + } + ], + "regions": [ + "Shadow Isles" + ], + "regionRefs": [ + "ShadowIsles" + ], + "attack": 6, + "cost": 7, + "health": 4, + "description": "Play: Kill an ally to kill an enemy.", + "descriptionRaw": "Play: Kill an ally to kill an enemy.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"As my time on this place comes to a close, I find myself pondering not my first death, but the second. Who will be the last soul to remember my name? And when they, too, fall to this earth... what will become of me?\" - Eminent Benefactor", + "artistName": "Wild Blue", + "name": "The Etherfiend", + "cardCode": "04SI007", + "keywords": [ + "Fearsome" + ], + "keywordRefs": [ + "Fearsome" + ], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "RARE", + "rarityRef": "Rare", + "subtypes": [], + "supertype": "", + "type": "Unit", + "collectible": true, + "set": "Set4" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set4/en_us/img/cards/04SI011.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set4/en_us/img/cards/04SI011-full.png" + } + ], + "regions": [ + "Shadow Isles" + ], + "regionRefs": [ + "ShadowIsles" + ], + "attack": 0, + "cost": 2, + "health": 0, + "description": "Draw 1.\r\nNightfall: Activate an ally's Nightfall effect, ignoring any targeted portions.", + "descriptionRaw": "Draw 1.\r\nNightfall: Activate an ally's Nightfall effect, ignoring any targeted portions.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"Come, child. No need to be afraid.\" - Mask Mother", + "artistName": "Kudos Productions", + "name": "Unto Dusk", + "cardCode": "04SI011", + "keywords": [ + "Burst" + ], + "keywordRefs": [ + "Burst" + ], + "spellSpeed": "Burst", + "spellSpeedRef": "Burst", + "rarity": "RARE", + "rarityRef": "Rare", + "subtypes": [], + "supertype": "", + "type": "Spell", + "collectible": true, + "set": "Set4" + }, + { + "associatedCards": [], + "associatedCardRefs": [ + "01SI027T1" + ], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set4/en_us/img/cards/04SI018.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set4/en_us/img/cards/04SI018-full.png" + } + ], + "regions": [ + "Shadow Isles" + ], + "regionRefs": [ + "ShadowIsles" + ], + "attack": 0, + "cost": 3, + "health": 0, + "description": "Once I've seen 3 Fearsome allies attack, destroy me to summon Vilemaw. ", + "descriptionRaw": "Once I've seen 3 Fearsome allies attack, destroy me to summon Vilemaw. ", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "Its altars may lie dormant, its paths may seem untrod,\nBut in the dark still skitters, the beast that fools forgot.", + "artistName": "Kudos Production", + "name": "The Twisted Treeline", + "cardCode": "04SI018", + "keywords": [ + "Landmark" + ], + "keywordRefs": [ + "LandmarkVisualOnly" + ], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "EPIC", + "rarityRef": "Epic", + "subtypes": [], + "supertype": "", + "type": "Landmark", + "collectible": true, + "set": "Set4" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set4/en_us/img/cards/04SI015.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set4/en_us/img/cards/04SI015-full.png" + } + ], + "regions": [ + "Shadow Isles" + ], + "regionRefs": [ + "ShadowIsles" + ], + "attack": 2, + "cost": 2, + "health": 3, + "description": "When another ally dies, or Last Breath: Toss 1.\r\n", + "descriptionRaw": "When another ally dies, or Last Breath: Toss 1.\r\n", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"Alright, you lot--haul them traps up! An' remember: if you see one of 'em sea scarabs, you cut rope an' move on. I ain't riskin' the keel for whatever they've half-eaten, y'hear?\" - Bilgewater captain", + "artistName": "Kudos Productions", + "name": "Sea Scarab", + "cardCode": "04SI015", + "keywords": [ + "Deep", + "Last Breath" + ], + "keywordRefs": [ + "Deep", + "LastBreath" + ], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "RARE", + "rarityRef": "Rare", + "subtypes": [ + "SEA MONSTER" + ], + "supertype": "", + "type": "Unit", + "collectible": true, + "set": "Set4" + }, + { + "associatedCards": [], + "associatedCardRefs": [ + "04SI055" + ], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set4/en_us/img/cards/04SI045.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set4/en_us/img/cards/04SI045-full.png" + } + ], + "regions": [ + "Shadow Isles" + ], + "regionRefs": [ + "ShadowIsles" + ], + "attack": 1, + "cost": 1, + "health": 1, + "description": "When I'm summoned, grant all allied Viegos and other Encroaching Mists everywhere +1|+1.", + "descriptionRaw": "When I'm summoned, grant all allied Viegos and other Encroaching Mists everywhere +1|+1.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "Each living creature that beholds the Black Mist sees something unique in it, their own fears manifested and realized in vague, roiling forms. ", + "artistName": "Kudos Productions", + "name": "Encroaching Mist", + "cardCode": "04SI045", + "keywords": [ + "Ephemeral" + ], + "keywordRefs": [ + "Ephemeral" + ], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "None", + "rarityRef": "None", + "subtypes": [], + "supertype": "", + "type": "Unit", + "collectible": false, + "set": "Set4" + }, + { + "associatedCards": [], + "associatedCardRefs": [ + "04SI004T2", + "04SI004T1", + "04SI014" + ], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set4/en_us/img/cards/04SI004.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set4/en_us/img/cards/04SI004-full.png" + } + ], + "regions": [ + "Shadow Isles" + ], + "regionRefs": [ + "ShadowIsles" + ], + "attack": 0, + "cost": 1, + "health": 1, + "description": "Play: Play me as First Wave or Last Wind.", + "descriptionRaw": "Play: Play me as First Wave or Last Wind.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "The Kinkou speak of only two gods: the first wave, who cradles life in its warm waters, and the last wind, who snatches life with its final, frigid sighs.", + "artistName": "Wild Blue", + "name": "The Wings and The Wave", + "cardCode": "04SI004", + "keywords": [], + "keywordRefs": [], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "EPIC", + "rarityRef": "Epic", + "subtypes": [], + "supertype": "", + "type": "Unit", + "collectible": true, + "set": "Set4" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set4/en_us/img/cards/04SI004T1.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set4/en_us/img/cards/04SI004T1-full.png" + } + ], + "regions": [ + "Shadow Isles" + ], + "regionRefs": [ + "ShadowIsles" + ], + "attack": 3, + "cost": 1, + "health": 3, + "description": "To play me, kill an ally.", + "descriptionRaw": "To play me, kill an ally.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "What is life without death?", + "artistName": "Wild Blue", + "name": "Last Wind", + "cardCode": "04SI004T1", + "keywords": [], + "keywordRefs": [], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "None", + "rarityRef": "None", + "subtypes": [], + "supertype": "", + "type": "Unit", + "collectible": false, + "set": "Set4" + }, + { + "associatedCards": [], + "associatedCardRefs": [ + "04SI014" + ], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set4/en_us/img/cards/04SI004T2.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set4/en_us/img/cards/04SI004T2-full.png" + } + ], + "regions": [ + "Shadow Isles" + ], + "regionRefs": [ + "ShadowIsles" + ], + "attack": 0, + "cost": 1, + "health": 1, + "description": "When I'm summoned, summon a Prey.", + "descriptionRaw": "When I'm summoned, summon a Prey.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "What is death without life?", + "artistName": "Wild Blue", + "name": "First Wave", + "cardCode": "04SI004T2", + "keywords": [], + "keywordRefs": [], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "None", + "rarityRef": "None", + "subtypes": [], + "supertype": "", + "type": "Unit", + "collectible": false, + "set": "Set4" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set4/en_us/img/cards/04SI017.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set4/en_us/img/cards/04SI017-full.png" + } + ], + "regions": [ + "Shadow Isles" + ], + "regionRefs": [ + "ShadowIsles" + ], + "attack": 0, + "cost": 2, + "health": 0, + "description": "Grant an ally Lifesteal, Fearsome, and Ephemeral.", + "descriptionRaw": "Grant an ally Lifesteal, Fearsome, and Ephemeral.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"Come, child. See as I see, and feel as I feel. Do not fear the darkness.\" - The Rekindler", + "artistName": "Kudos Productions", + "name": "Song of the Isles", + "cardCode": "04SI017", + "keywords": [ + "Burst" + ], + "keywordRefs": [ + "Burst" + ], + "spellSpeed": "Burst", + "spellSpeedRef": "Burst", + "rarity": "COMMON", + "rarityRef": "Common", + "subtypes": [], + "supertype": "", + "type": "Spell", + "collectible": true, + "set": "Set4" + }, + { + "associatedCards": [], + "associatedCardRefs": [ + "04SI045" + ], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set4/en_us/img/cards/04SI054.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set4/en_us/img/cards/04SI054-full.png" + } + ], + "regions": [ + "Shadow Isles" + ], + "regionRefs": [ + "ShadowIsles" + ], + "attack": 3, + "cost": 3, + "health": 3, + "description": "When I'm summoned, summon an Encroaching Mist.", + "descriptionRaw": "When I'm summoned, summon an Encroaching Mist.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "The soldiers of Camavor marched with Viego in life, then again in death, their loyalty unwavering.", + "artistName": "Kudos Productions", + "name": "Camavoran Soldier", + "cardCode": "04SI054", + "keywords": [], + "keywordRefs": [], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "COMMON", + "rarityRef": "Common", + "subtypes": [], + "supertype": "", + "type": "Unit", + "collectible": true, + "set": "Set4" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set4/en_us/img/cards/04SI001.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set4/en_us/img/cards/04SI001-full.png" + } + ], + "regions": [ + "Shadow Isles" + ], + "regionRefs": [ + "ShadowIsles" + ], + "attack": 0, + "cost": 2, + "health": 0, + "description": "Give the weakest ally \"I can't take damage or die\" this round.", + "descriptionRaw": "Give the weakest ally \"I can't take damage or die\" this round.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"Shine once more, before the end.\" - Lamb", + "artistName": "Kudos Productions", + "name": "Lamb's Respite", + "cardCode": "04SI001", + "keywords": [ + "Slow" + ], + "keywordRefs": [ + "Slow" + ], + "spellSpeed": "Slow", + "spellSpeedRef": "Slow", + "rarity": "EPIC", + "rarityRef": "Epic", + "subtypes": [], + "supertype": "", + "type": "Spell", + "collectible": true, + "set": "Set4" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set4/en_us/img/cards/04SI056.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set4/en_us/img/cards/04SI056-full.png" + } + ], + "regions": [ + "Shadow Isles" + ], + "regionRefs": [ + "ShadowIsles" + ], + "attack": 0, + "cost": 5, + "health": 0, + "description": "Drain 2 from 2 enemies.\r\n", + "descriptionRaw": "Drain 2 from 2 enemies.\r\n", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"I will take what I want, and dispense with what I don't.\" - Viego", + "artistName": "Kudos Productions", + "name": "Withering Mist", + "cardCode": "04SI056", + "keywords": [ + "Slow" + ], + "keywordRefs": [ + "Slow" + ], + "spellSpeed": "Slow", + "spellSpeedRef": "Slow", + "rarity": "RARE", + "rarityRef": "Rare", + "subtypes": [], + "supertype": "", + "type": "Spell", + "collectible": true, + "set": "Set4" + }, + { + "associatedCards": [], + "associatedCardRefs": [ + "04SI012T1" + ], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set4/en_us/img/cards/04SI012.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set4/en_us/img/cards/04SI012-full.png" + } + ], + "regions": [ + "Shadow Isles" + ], + "regionRefs": [ + "ShadowIsles" + ], + "attack": 3, + "cost": 4, + "health": 3, + "description": "Play: Kill an ally to deal 3 to the enemy Nexus.", + "descriptionRaw": "Play: Kill an ally to deal 3 to the enemy Nexus.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "A handful of Targonian tribes speak of the Fox, a god of death seen as a lone star in the night sky. As the legend goes, the Fox descends upon the mountain with each death, and takes the soul to the skies to create his own dark constellation.", + "artistName": "Kudos Productions", + "name": "Astral Fox", + "cardCode": "04SI012", + "keywords": [ + "Fearsome" + ], + "keywordRefs": [ + "Fearsome" + ], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "COMMON", + "rarityRef": "Common", + "subtypes": [], + "supertype": "", + "type": "Unit", + "collectible": true, + "set": "Set4" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set4/en_us/img/cards/04SI029.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set4/en_us/img/cards/04SI029-full.png" + } + ], + "regions": [ + "Shadow Isles" + ], + "regionRefs": [ + "ShadowIsles" + ], + "attack": 0, + "cost": 4, + "health": 0, + "description": "Pick a unit to strike your Nexus, then kill it.", + "descriptionRaw": "Pick a unit to strike your Nexus, then kill it.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"I have given everything to find her, and yet it is not enough.\" - Viego", + "artistName": "Kudos Productions", + "name": "Despair", + "cardCode": "04SI029", + "keywords": [ + "Slow" + ], + "keywordRefs": [ + "Slow" + ], + "spellSpeed": "Slow", + "spellSpeedRef": "Slow", + "rarity": "COMMON", + "rarityRef": "Common", + "subtypes": [], + "supertype": "", + "type": "Spell", + "collectible": true, + "set": "Set4" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set4/en_us/img/cards/04SI012T1.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set4/en_us/img/cards/04SI012T1-full.png" + } + ], + "regions": [ + "Shadow Isles" + ], + "regionRefs": [ + "ShadowIsles" + ], + "attack": 0, + "cost": 0, + "health": 0, + "description": "Kill an ally to deal 3 to the enemy Nexus.", + "descriptionRaw": "Kill an ally to deal 3 to the enemy Nexus.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"Now you'll truly shine!\" - Astral Fox", + "artistName": "Kudos Productions", + "name": "Symmetry In Stars", + "cardCode": "04SI012T1", + "keywords": [ + "Skill" + ], + "keywordRefs": [ + "Skill" + ], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "None", + "rarityRef": "None", + "subtypes": [], + "supertype": "", + "type": "Ability", + "collectible": false, + "set": "Set4" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set4/en_us/img/cards/04SI009.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set4/en_us/img/cards/04SI009-full.png" + } + ], + "regions": [ + "Shadow Isles" + ], + "regionRefs": [ + "ShadowIsles" + ], + "attack": 3, + "cost": 3, + "health": 2, + "description": "When I'm summoned, grant me +1|+1 and Fearsome if an ally died this round.", + "descriptionRaw": "When I'm summoned, grant me +1|+1 and Fearsome if an ally died this round.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"Once there was a hapless young man who thought to court a spider, never once suspecting he would end up in her web...\"", + "artistName": "Wild Blue", + "name": "Soulspinner", + "cardCode": "04SI009", + "keywords": [], + "keywordRefs": [], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "COMMON", + "rarityRef": "Common", + "subtypes": [ + "SPIDER" + ], + "supertype": "", + "type": "Unit", + "collectible": true, + "set": "Set4" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set4/en_us/img/cards/04SI013.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set4/en_us/img/cards/04SI013-full.png" + } + ], + "regions": [ + "Shadow Isles" + ], + "regionRefs": [ + "ShadowIsles" + ], + "attack": 2, + "cost": 2, + "health": 2, + "description": "Play: Kill an ally to grant me its stats and keywords.", + "descriptionRaw": "Play: Kill an ally to grant me its stats and keywords.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "They say the Mask Mother created Kindred, just as she created all the incarnations of death. But from whom did she receive her mask, if she didn't craft it herself?", + "artistName": "Wild Blue", + "name": "Mask Mother", + "cardCode": "04SI013", + "keywords": [ + "Fearsome" + ], + "keywordRefs": [ + "Fearsome" + ], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "COMMON", + "rarityRef": "Common", + "subtypes": [], + "supertype": "", + "type": "Unit", + "collectible": true, + "set": "Set4" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set4/en_us/img/cards/04SI007T3.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set4/en_us/img/cards/04SI007T3-full.png" + } + ], + "regions": [ + "Shadow Isles" + ], + "regionRefs": [ + "ShadowIsles" + ], + "attack": 0, + "cost": 0, + "health": 0, + "description": "Kill an ally to kill an enemy.", + "descriptionRaw": "Kill an ally to kill an enemy.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"Eventually all will be forgotten.\" - The Etherfiend", + "artistName": "Kudos Productions", + "name": "The Second Death", + "cardCode": "04SI007T3", + "keywords": [ + "Skill" + ], + "keywordRefs": [ + "Skill" + ], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "None", + "rarityRef": "None", + "subtypes": [], + "supertype": "", + "type": "Ability", + "collectible": false, + "set": "Set4" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set4/en_us/img/cards/04SI021.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set4/en_us/img/cards/04SI021-full.png" + } + ], + "regions": [ + "Shadow Isles" + ], + "regionRefs": [ + "ShadowIsles" + ], + "attack": 3, + "cost": 2, + "health": 2, + "description": "Play: I strike an ally or deal 3 to your Nexus.", + "descriptionRaw": "Play: I strike an ally or deal 3 to your Nexus.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "At first, the Demacian soldiers thought they heard dozens of claws skittering across the square's tile. It wasn't until it breached the watchtower that they realized those many limbs belonged to a single creature.", + "artistName": "Kudos Productions", + "name": "Crawling Viperwyrm", + "cardCode": "04SI021", + "keywords": [ + "Fury" + ], + "keywordRefs": [ + "Fury" + ], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "COMMON", + "rarityRef": "Common", + "subtypes": [ + "DRAGON" + ], + "supertype": "", + "type": "Unit", + "collectible": true, + "set": "Set4" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set4/en_us/img/cards/04SI002.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set4/en_us/img/cards/04SI002-full.png" + } + ], + "regions": [ + "Shadow Isles" + ], + "regionRefs": [ + "ShadowIsles" + ], + "attack": 0, + "cost": 5, + "health": 0, + "description": "Kill a unit, then revive it.", + "descriptionRaw": "Kill a unit, then revive it.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"This is only an interlude.\" - Lamb", + "artistName": "Kudos Productions", + "name": "Spirit Journey", + "cardCode": "04SI002", + "keywords": [ + "Fast" + ], + "keywordRefs": [ + "Fast" + ], + "spellSpeed": "Fast", + "spellSpeedRef": "Fast", + "rarity": "RARE", + "rarityRef": "Rare", + "subtypes": [], + "supertype": "", + "type": "Spell", + "collectible": true, + "set": "Set4" + }, + { + "associatedCards": [], + "associatedCardRefs": [ + "04SI045" + ], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set4/en_us/img/cards/04SI053.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set4/en_us/img/cards/04SI053-full.png" + } + ], + "regions": [ + "Shadow Isles" + ], + "regionRefs": [ + "ShadowIsles" + ], + "attack": 7, + "cost": 7, + "health": 6, + "description": "When I'm summoned or Round Start: Summon an Encroaching Mist.", + "descriptionRaw": "When I'm summoned or Round Start: Summon an Encroaching Mist.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "Maokai worked tirelessly to cultivate life in the Shadow Isles. The Mist's ambivalence makes its ironies no less cruel.", + "artistName": "Kudos Productions", + "name": "Invasive Hydravine", + "cardCode": "04SI053", + "keywords": [ + "Fearsome" + ], + "keywordRefs": [ + "Fearsome" + ], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "EPIC", + "rarityRef": "Epic", + "subtypes": [], + "supertype": "", + "type": "Unit", + "collectible": true, + "set": "Set4" + }, + { + "associatedCards": [], + "associatedCardRefs": [ + "04SI014" + ], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set4/en_us/img/cards/04SI003.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set4/en_us/img/cards/04SI003-full.png" + } + ], + "regions": [ + "Shadow Isles" + ], + "regionRefs": [ + "ShadowIsles" + ], + "attack": 3, + "cost": 2, + "health": 1, + "description": "When I'm summoned, summon a Prey.", + "descriptionRaw": "When I'm summoned, summon a Prey.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "Who could forget their own god of death, other than those cursed with immortality? And what greater fear can a god of death have, other than being forgotten? ", + "artistName": "Wild Blue", + "name": "Fading Icon", + "cardCode": "04SI003", + "keywords": [], + "keywordRefs": [], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "COMMON", + "rarityRef": "Common", + "subtypes": [], + "supertype": "", + "type": "Unit", + "collectible": true, + "set": "Set4" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set4/en_us/img/cards/04SI014.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set4/en_us/img/cards/04SI014-full.png" + } + ], + "regions": [ + "Shadow Isles" + ], + "regionRefs": [ + "ShadowIsles" + ], + "attack": 0, + "cost": 0, + "health": 1, + "description": "", + "descriptionRaw": "", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"They flicker through the dark forest, dotting the treeline like stars in the night sky, unaware of their pursuers.\" - Lamb", + "artistName": "Dao Le", + "name": "Prey", + "cardCode": "04SI014", + "keywords": [], + "keywordRefs": [], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "COMMON", + "rarityRef": "Common", + "subtypes": [], + "supertype": "", + "type": "Unit", + "collectible": false, + "set": "Set4" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set4/en_us/img/cards/04SI028.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set4/en_us/img/cards/04SI028-full.png" + } + ], + "regions": [ + "Shadow Isles" + ], + "regionRefs": [ + "ShadowIsles" + ], + "attack": 4, + "cost": 4, + "health": 4, + "description": "Play: I strike an ally or deal 3 to your Nexus.\r\n When I kill another unit, drain 1 from the enemy Nexus.", + "descriptionRaw": "Play: I strike an ally or deal 3 to your Nexus.\r\n When I kill another unit, drain 1 from the enemy Nexus.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "For centuries, the Black Mist has sought out creatures all over the world, twisting and warping them; turning them into nightmarish versions of their past selves.", + "artistName": "Kudos Productions", + "name": "Camavoran Dragon", + "cardCode": "04SI028", + "keywords": [ + "Fury", + "Fearsome" + ], + "keywordRefs": [ + "Fury", + "Fearsome" + ], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "RARE", + "rarityRef": "Rare", + "subtypes": [ + "DRAGON" + ], + "supertype": "", + "type": "Unit", + "collectible": true, + "set": "Set4" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set4/en_us/img/cards/04MT014.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set4/en_us/img/cards/04MT014-full.png" + } + ], + "regions": [ + "Targon" + ], + "regionRefs": [ + "Targon" + ], + "attack": 0, + "cost": 5, + "health": 0, + "description": "Countdown 1: Stun the 2 weakest enemies.\r\nDaybreak: Summon a copy of me with Countdown 2.", + "descriptionRaw": "Countdown 1: Stun the 2 weakest enemies.\r\nDaybreak: Summon a copy of me with Countdown 2.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"Let the sun shed Her light upon us. Those who are weak and unworthy will cower before Her gaze!\" - Solari Priestess", + "artistName": "Kudos Productions", + "name": "Eye of the Ra-Horak", + "cardCode": "04MT014", + "keywords": [ + "Countdown", + "Landmark" + ], + "keywordRefs": [ + "Countdown", + "LandmarkVisualOnly" + ], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "RARE", + "rarityRef": "Rare", + "subtypes": [], + "supertype": "", + "type": "Landmark", + "collectible": true, + "set": "Set4" + }, + { + "associatedCards": [], + "associatedCardRefs": [ + "04MT008T1", + "04MT008T5", + "04MT008T6", + "04MT008T4" + ], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set4/en_us/img/cards/04MT008.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set4/en_us/img/cards/04MT008-full.png" + } + ], + "regions": [ + "Targon" + ], + "regionRefs": [ + "Targon" + ], + "attack": 6, + "cost": 7, + "health": 10, + "description": "Play: Stun an enemy.", + "descriptionRaw": "Play: Stun an enemy.", + "levelupDescription": "You've summoned 10+ mana of landmarks. When I level up, if you have the attack token, create an Unstoppable Force in hand.", + "levelupDescriptionRaw": "You've summoned 10+ mana of landmarks. When I level up, if you have the attack token, create an Unstoppable Force in hand.", + "flavorText": "\"And here's da last stop on da Chip tour of Targon! It's PAPA! He's da BIGGEST of da Targon giants, an' sings a mean song, too, lemme tell ya. Just don't try to climb him! Da spikes tickle him, and you dun want him sneezin' when you're halfway up no sah!\"\n- Adventures with Chip, part 6", + "artistName": "SIXMOREVODKA", + "name": "Malphite", + "cardCode": "04MT008", + "keywords": [ + "Tough" + ], + "keywordRefs": [ + "Tough" + ], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "Champion", + "rarityRef": "Champion", + "subtypes": [], + "supertype": "Champion", + "type": "Unit", + "collectible": true, + "set": "Set4" + }, + { + "associatedCards": [], + "associatedCardRefs": [ + "04MT008", + "04MT008T5", + "04MT008T6", + "04MT008T4" + ], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set4/en_us/img/cards/04MT008T1.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set4/en_us/img/cards/04MT008T1-full.png" + } + ], + "regions": [ + "Targon" + ], + "regionRefs": [ + "Targon" + ], + "attack": 7, + "cost": 7, + "health": 11, + "description": "Play: Stun an enemy.\r\nWhen I'm summoned or Round Start: If you have the attack token, create an Unstoppable Force in hand.", + "descriptionRaw": "Play: Stun an enemy.\r\nWhen I'm summoned or Round Start: If you have the attack token, create an Unstoppable Force in hand.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"Boom boom boom!\"", + "artistName": "SIXMOREVODKA", + "name": "Malphite", + "cardCode": "04MT008T1", + "keywords": [ + "Tough" + ], + "keywordRefs": [ + "Tough" + ], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "None", + "rarityRef": "None", + "subtypes": [], + "supertype": "Champion", + "type": "Unit", + "collectible": false, + "set": "Set4" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set4/en_us/img/cards/04MT008T4.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set4/en_us/img/cards/04MT008T4-full.png" + } + ], + "regions": [ + "Targon" + ], + "regionRefs": [ + "Targon" + ], + "attack": 0, + "cost": 2, + "health": 0, + "description": "Stun all enemies.", + "descriptionRaw": "Stun all enemies.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"ROCK. SOLID.\" - Malphite", + "artistName": "Kudos Productions", + "name": "Unstoppable Force", + "cardCode": "04MT008T4", + "keywords": [ + "Slow", + "Fleeting" + ], + "keywordRefs": [ + "Slow", + "Fleeting" + ], + "spellSpeed": "Slow", + "spellSpeedRef": "Slow", + "rarity": "None", + "rarityRef": "None", + "subtypes": [], + "supertype": "", + "type": "Spell", + "collectible": false, + "set": "Set4" + }, + { + "associatedCards": [], + "associatedCardRefs": [ + "04MT008T1", + "04MT008" + ], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set4/en_us/img/cards/04MT008T5.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set4/en_us/img/cards/04MT008T5-full.png" + } + ], + "regions": [ + "Targon" + ], + "regionRefs": [ + "Targon" + ], + "attack": 0, + "cost": 4, + "health": 0, + "description": "Stun an enemy. Deal 3 to it if you've summoned a landmark this game.\r\nCreate a Malphite in your deck.", + "descriptionRaw": "Stun an enemy. Deal 3 to it if you've summoned a landmark this game.\r\nCreate a Malphite in your deck.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"Oop yep dat's just da ground shakin' and not papa doin' nothin' with his hands NOPE OKAY onwards annn' UPWARDS!\" - Chip", + "artistName": "Kudos Productions", + "name": "Malphite's Ground Slam", + "cardCode": "04MT008T5", + "keywords": [ + "Fast" + ], + "keywordRefs": [ + "Fast" + ], + "spellSpeed": "Fast", + "spellSpeedRef": "Fast", + "rarity": "None", + "rarityRef": "None", + "subtypes": [], + "supertype": "Champion", + "type": "Spell", + "collectible": false, + "set": "Set4" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set4/en_us/img/cards/04MT008T6.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set4/en_us/img/cards/04MT008T6-full.png" + } + ], + "regions": [ + "Targon" + ], + "regionRefs": [ + "Targon" + ], + "attack": 0, + "cost": 0, + "health": 0, + "description": "Stun an enemy.", + "descriptionRaw": "Stun an enemy.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"Only place to go is down!\" - Malphite", + "artistName": "Kudos Productions", + "name": "Rockslide", + "cardCode": "04MT008T6", + "keywords": [ + "Skill" + ], + "keywordRefs": [ + "Skill" + ], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "None", + "rarityRef": "None", + "subtypes": [], + "supertype": "", + "type": "Ability", + "collectible": false, + "set": "Set4" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set4/en_us/img/cards/04MT010.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set4/en_us/img/cards/04MT010-full.png" + } + ], + "regions": [ + "Targon" + ], + "regionRefs": [ + "Targon" + ], + "attack": 0, + "cost": 2, + "health": 0, + "description": "Countdown 2: Create 2 random Celestial cards that cost 3 or less in hand.", + "descriptionRaw": "Countdown 2: Create 2 random Celestial cards that cost 3 or less in hand.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "Those who set off to climb Mount Targon are soon rewarded with some of Runeterra's most glorious views. And as the climb steepens, so do its rewards.", + "artistName": "Polar Engine", + "name": "Startipped Peak", + "cardCode": "04MT010", + "keywords": [ + "Countdown", + "Landmark" + ], + "keywordRefs": [ + "Countdown", + "LandmarkVisualOnly" + ], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "RARE", + "rarityRef": "Rare", + "subtypes": [], + "supertype": "", + "type": "Landmark", + "collectible": true, + "set": "Set4" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set4/en_us/img/cards/04MT005.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set4/en_us/img/cards/04MT005-full.png" + } + ], + "regions": [ + "Targon" + ], + "regionRefs": [ + "Targon" + ], + "attack": 1, + "cost": 1, + "health": 1, + "description": "Once you've summoned a landmark this game, grant me +2|+2.", + "descriptionRaw": "Once you've summoned a landmark this game, grant me +2|+2.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"Okay so hello I'm Chip an' I'm here to show you Targon! It's wowow big an' tall so I hope you got good shoes for da walkin'! Let's GO!\"\n- Adventures with Chip, part 1", + "artistName": "Polar Engine", + "name": "Chip", + "cardCode": "04MT005", + "keywords": [], + "keywordRefs": [], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "COMMON", + "rarityRef": "Common", + "subtypes": [], + "supertype": "", + "type": "Unit", + "collectible": true, + "set": "Set4" + }, + { + "associatedCards": [], + "associatedCardRefs": [ + "04MT009T1" + ], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set4/en_us/img/cards/04MT009.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set4/en_us/img/cards/04MT009-full.png" + } + ], + "regions": [ + "Targon" + ], + "regionRefs": [ + "Targon" + ], + "attack": 0, + "cost": 3, + "health": 0, + "description": "Countdown 3: Create a Seed of Strength in hand.", + "descriptionRaw": "Countdown 3: Create a Seed of Strength in hand.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"Here's da first stop on da tour! I call this da leg wobbler because WOWEE are dere a lot steps! Pretty cool view too, an' dat's one of the best things in Targon. Okay let's GO!\"\n- Adventures with Chip, part 2", + "artistName": "Polar Engine", + "name": "Spiral Stairs", + "cardCode": "04MT009", + "keywords": [ + "Countdown", + "Landmark" + ], + "keywordRefs": [ + "Countdown", + "LandmarkVisualOnly" + ], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "RARE", + "rarityRef": "Rare", + "subtypes": [], + "supertype": "", + "type": "Landmark", + "collectible": true, + "set": "Set4" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set4/en_us/img/cards/04MT009T1.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set4/en_us/img/cards/04MT009T1-full.png" + } + ], + "regions": [ + "Targon" + ], + "regionRefs": [ + "Targon" + ], + "attack": 0, + "cost": 0, + "health": 0, + "description": "Grant an ally +3|+2 and Overwhelm.", + "descriptionRaw": "Grant an ally +3|+2 and Overwhelm.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"OH I FORGOT. Okay so you're probabab... probababer... problee thinkin' dat your legs are like WOWOW tired right now, but I seen the people who walk around here a lot, an' sooner or later dey get ALL KINDSA muscles! So keep at it, and let's GO! AGAIN!\"\n- Adventures with Chip, part 2.1", + "artistName": "Kudos Productions", + "name": "Seed of Strength", + "cardCode": "04MT009T1", + "keywords": [ + "Slow", + "Fleeting" + ], + "keywordRefs": [ + "Slow", + "Fleeting" + ], + "spellSpeed": "Slow", + "spellSpeedRef": "Slow", + "rarity": "None", + "rarityRef": "None", + "subtypes": [], + "supertype": "", + "type": "Spell", + "collectible": false, + "set": "Set4" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set4/en_us/img/cards/04MT001.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set4/en_us/img/cards/04MT001-full.png" + } + ], + "regions": [ + "Targon" + ], + "regionRefs": [ + "Targon" + ], + "attack": 0, + "cost": 2, + "health": 0, + "description": "Countdown 2: Obliterate the weakest enemy.", + "descriptionRaw": "Countdown 2: Obliterate the weakest enemy.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"Okay so EV-ER-EE-BODY watch out here cuz dis is a BIG DROP an' I've fallen down here a few times and LEMME TELL YOU it's a long way down! An' I'm made of wok so I just bounce, but dat's not true for you guys... so be caref--ooh dere's Cliff! Let's go say hi!\"\n- Adventures with Chip, part 3", + "artistName": "Polar Engine", + "name": "Rockfall Path", + "cardCode": "04MT001", + "keywords": [ + "Countdown", + "Landmark" + ], + "keywordRefs": [ + "Countdown", + "LandmarkVisualOnly" + ], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "COMMON", + "rarityRef": "Common", + "subtypes": [], + "supertype": "", + "type": "Landmark", + "collectible": true, + "set": "Set4" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set4/en_us/img/cards/04MT018.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set4/en_us/img/cards/04MT018-full.png" + } + ], + "regions": [ + "Targon" + ], + "regionRefs": [ + "Targon" + ], + "attack": 1, + "cost": 1, + "health": 2, + "description": "When I'm supported, give me and my supporting ally +1|+1 this round.", + "descriptionRaw": "When I'm supported, give me and my supporting ally +1|+1 this round.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"Don't be afraid of the howling gale\nAs it blows 'cross the mountain and through the dale\nNever you worry, you have nothing to fear\nMy darling, rest, mother is near.\" - Targonian lullaby", + "artistName": "Kudos Productions", + "name": "Frightened Ibex", + "cardCode": "04MT018", + "keywords": [], + "keywordRefs": [], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "COMMON", + "rarityRef": "Common", + "subtypes": [], + "supertype": "", + "type": "Unit", + "collectible": true, + "set": "Set4" + }, + { + "associatedCards": [], + "associatedCardRefs": [ + "04MT004T1" + ], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set4/en_us/img/cards/04MT004.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set4/en_us/img/cards/04MT004-full.png" + } + ], + "regions": [ + "Targon" + ], + "regionRefs": [ + "Targon" + ], + "attack": 2, + "cost": 2, + "health": 3, + "description": "Last Breath: Summon a Crest of Insight.", + "descriptionRaw": "Last Breath: Summon a Crest of Insight.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"Okay EV-ER-EE-ONE say \"HI BLU!\" HI BLU! Okay one time I thought he was like \"HI BLU!\" back, but now dat I think about it might have been my voice bouncin' off da walls. OH WELL he's all magical and stuff and also blue so if you ask me he doesn't even NEED to speak! OKAY BYE BLUE LET'S GO!\"\n- Adventures with Chip, part 5", + "artistName": "MAR Studio", + "name": "Blue Sentinel", + "cardCode": "04MT004", + "keywords": [ + "Last Breath" + ], + "keywordRefs": [ + "LastBreath" + ], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "COMMON", + "rarityRef": "Common", + "subtypes": [], + "supertype": "", + "type": "Unit", + "collectible": true, + "set": "Set4" + }, + { + "associatedCards": [], + "associatedCardRefs": [ + "04MT013T1" + ], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set4/en_us/img/cards/04MT013.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set4/en_us/img/cards/04MT013-full.png" + } + ], + "regions": [ + "Targon" + ], + "regionRefs": [ + "Targon" + ], + "attack": 2, + "cost": 2, + "health": 3, + "description": "Daybreak: Stun the strongest enemy.", + "descriptionRaw": "Daybreak: Stun the strongest enemy.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "The Solari believe that it was Targon's sunhawks--brilliant as they are--who caught the Immortal Fire's attention, and who subsequently inspired her cycle of death and rebirth.", + "artistName": "Kudos Productions", + "name": "Solari Sunhawk", + "cardCode": "04MT013", + "keywords": [], + "keywordRefs": [], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "COMMON", + "rarityRef": "Common", + "subtypes": [], + "supertype": "", + "type": "Unit", + "collectible": true, + "set": "Set4" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set4/en_us/img/cards/04MT003.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set4/en_us/img/cards/04MT003-full.png" + } + ], + "regions": [ + "Targon" + ], + "regionRefs": [ + "Targon" + ], + "attack": 3, + "cost": 4, + "health": 5, + "description": "Once you've summoned 4+ landmarks this game, grant me +3|+0. ", + "descriptionRaw": "Once you've summoned 4+ landmarks this game, grant me +3|+0. ", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"Okay, so dis is CLIFF! He's a big ol' fella who's been aroun' da block QUITE A FEW times let me tell you. An' I know dat he looks cool and I know dat he seems like a nice guy, but he's got a lotta heavy stuff on his back, and sometimes it falls on people so BE CAREFUL okay? Thank you moving on!\"\n- Adventures with Chip, part 4", + "artistName": "Polar Engine", + "name": "Earth Elemental", + "cardCode": "04MT003", + "keywords": [ + "Overwhelm" + ], + "keywordRefs": [ + "Overwhelm" + ], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "COMMON", + "rarityRef": "Common", + "subtypes": [], + "supertype": "", + "type": "Unit", + "collectible": true, + "set": "Set4" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set4/en_us/img/cards/04MT004T1.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set4/en_us/img/cards/04MT004T1-full.png" + } + ], + "regions": [ + "Targon" + ], + "regionRefs": [ + "Targon" + ], + "attack": 0, + "cost": 2, + "health": 0, + "description": "Countdown 1: Get an extra mana gem this round.", + "descriptionRaw": "Countdown 1: Get an extra mana gem this round.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"Dis is Blu's faaaaaavorite place inna whole wide world! He says it's SUPER magical! Oooh, ahhh!\" - Chip", + "artistName": "Polar Engine", + "name": "Crest of Insight", + "cardCode": "04MT004T1", + "keywords": [ + "Countdown", + "Landmark" + ], + "keywordRefs": [ + "Countdown", + "LandmarkVisualOnly" + ], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "None", + "rarityRef": "None", + "subtypes": [], + "supertype": "", + "type": "Landmark", + "collectible": false, + "set": "Set4" + }, + { + "associatedCards": [], + "associatedCardRefs": [ + "04MT002T2" + ], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set4/en_us/img/cards/04MT002.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set4/en_us/img/cards/04MT002-full.png" + } + ], + "regions": [ + "Targon" + ], + "regionRefs": [ + "Targon" + ], + "attack": 6, + "cost": 6, + "health": 4, + "description": "Play: If you've summoned 4+ landmarks this game, deal 4 to an enemy and 2 to the enemy Nexus. ", + "descriptionRaw": "Play: If you've summoned 4+ landmarks this game, deal 4 to an enemy and 2 to the enemy Nexus. ", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "From time to time, the great colossi of Targon awaken from their slumber and trek to new grounds atop the great mountain. These events are never quiet, and seldom safe.", + "artistName": "Polar Engine", + "name": "Stonebreaker", + "cardCode": "04MT002", + "keywords": [], + "keywordRefs": [], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "EPIC", + "rarityRef": "Epic", + "subtypes": [], + "supertype": "", + "type": "Unit", + "collectible": true, + "set": "Set4" + }, + { + "associatedCards": [], + "associatedCardRefs": [ + "03MT015" + ], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set4/en_us/img/cards/04MT006.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set4/en_us/img/cards/04MT006-full.png" + } + ], + "regions": [ + "Targon" + ], + "regionRefs": [ + "Targon" + ], + "attack": 0, + "cost": 3, + "health": 0, + "description": "Invoke.\r\nIf you have a Celestial ally, replace your deck with 20 copies of Behold the Infinite.", + "descriptionRaw": "Invoke.\r\nIf you have a Celestial ally, replace your deck with 20 copies of Behold the Infinite.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"Look, Kulun! The stars have so many stories to tell! Which should we read tonight, hmm?\" - Moondreamer", + "artistName": "Kudos Productions", + "name": "Starlit Epiphany", + "cardCode": "04MT006", + "keywords": [ + "Burst" + ], + "keywordRefs": [ + "Burst" + ], + "spellSpeed": "Burst", + "spellSpeedRef": "Burst", + "rarity": "EPIC", + "rarityRef": "Epic", + "subtypes": [], + "supertype": "", + "type": "Spell", + "collectible": true, + "set": "Set4" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set4/en_us/img/cards/04MT012.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set4/en_us/img/cards/04MT012-full.png" + } + ], + "regions": [ + "Targon" + ], + "regionRefs": [ + "Targon" + ], + "attack": 0, + "cost": 8, + "health": 0, + "description": "Grant an ally in hand +8|+8.", + "descriptionRaw": "Grant an ally in hand +8|+8.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"Embrace your destiny, and shine more brilliantly than anyone could have ever known.\" - Taric", + "artistName": "Kudos Productions", + "name": "Destiny's Call", + "cardCode": "04MT012", + "keywords": [ + "Burst" + ], + "keywordRefs": [ + "Burst" + ], + "spellSpeed": "Burst", + "spellSpeedRef": "Burst", + "rarity": "EPIC", + "rarityRef": "Epic", + "subtypes": [], + "supertype": "", + "type": "Spell", + "collectible": true, + "set": "Set4" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set4/en_us/img/cards/04MT007.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set4/en_us/img/cards/04MT007-full.png" + } + ], + "regions": [ + "Targon" + ], + "regionRefs": [ + "Targon" + ], + "attack": 2, + "cost": 4, + "health": 3, + "description": "Stun an enemy. Deal 3 to it if you've summoned a landmark this game.", + "descriptionRaw": "Stun an enemy. Deal 3 to it if you've summoned a landmark this game.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"Oop yep dat's just da ground shakin' and not papa doin' nothin' with his hands NOPE OKAY onwards annn' UPWARDS!\" - Chip", + "artistName": "Kudos Productions", + "name": "Ground Slam ", + "cardCode": "04MT007", + "keywords": [ + "Fast" + ], + "keywordRefs": [ + "Fast" + ], + "spellSpeed": "Fast", + "spellSpeedRef": "Fast", + "rarity": "RARE", + "rarityRef": "Rare", + "subtypes": [], + "supertype": "", + "type": "Spell", + "collectible": true, + "set": "Set4" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set4/en_us/img/cards/04MT013T1.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set4/en_us/img/cards/04MT013T1-full.png" + } + ], + "regions": [ + "Targon" + ], + "regionRefs": [ + "Targon" + ], + "attack": 0, + "cost": 0, + "health": 0, + "description": "Stun the Strongest enemy.", + "descriptionRaw": "Stun the Strongest enemy.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "Some Solari claim the sunhawk's brilliant gleam is the bird trying to send a signal to The Immortal Fire herself.", + "artistName": "Kudos Productions", + "name": "Blinding Crest", + "cardCode": "04MT013T1", + "keywords": [ + "Skill" + ], + "keywordRefs": [ + "Skill" + ], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "None", + "rarityRef": "None", + "subtypes": [], + "supertype": "", + "type": "Ability", + "collectible": false, + "set": "Set4" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set4/en_us/img/cards/04MT002T2.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set4/en_us/img/cards/04MT002T2-full.png" + } + ], + "regions": [ + "Targon" + ], + "regionRefs": [ + "Targon" + ], + "attack": 0, + "cost": 0, + "health": 0, + "description": "If you've summoned 4+ landmarks this game, deal 4 to an enemy and 2 to the enemy Nexus.", + "descriptionRaw": "If you've summoned 4+ landmarks this game, deal 4 to an enemy and 2 to the enemy Nexus.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"Spike is not a morning person...\" - Malphite", + "artistName": "Kudos Productions", + "name": "Shaken Ground", + "cardCode": "04MT002T2", + "keywords": [ + "Skill" + ], + "keywordRefs": [ + "Skill" + ], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "None", + "rarityRef": "None", + "subtypes": [], + "supertype": "", + "type": "Ability", + "collectible": false, + "set": "Set4" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set4/en_us/img/cards/04MT015.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set4/en_us/img/cards/04MT015-full.png" + } + ], + "regions": [ + "Targon" + ], + "regionRefs": [ + "Targon" + ], + "attack": 0, + "cost": 1, + "health": 0, + "description": "Daybreak: Create a random Nightfall card in hand.\r\nNightfall: Create a random Daybreak card in hand.", + "descriptionRaw": "Daybreak: Create a random Nightfall card in hand.\r\nNightfall: Create a random Daybreak card in hand.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "So goes the cycle of night and day, one always following the other.", + "artistName": "Kudos Productions", + "name": "Heavens Aligned", + "cardCode": "04MT015", + "keywords": [ + "Focus" + ], + "keywordRefs": [ + "Focus" + ], + "spellSpeed": "Burst", + "spellSpeedRef": "Burst", + "rarity": "COMMON", + "rarityRef": "Common", + "subtypes": [], + "supertype": "", + "type": "Spell", + "collectible": true, + "set": "Set4" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set4/en_us/img/cards/04DE004.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set4/en_us/img/cards/04DE004-full.png" + } + ], + "regions": [ + "Demacia" + ], + "regionRefs": [ + "Demacia" + ], + "attack": 3, + "cost": 6, + "health": 5, + "description": "When you summon an Elite, reduce my cost by 1.", + "descriptionRaw": "When you summon an Elite, reduce my cost by 1.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "Though the Noxians had laid their trap well, still no-one knew the woods better than Demacia's scouts. Every snapped branch, every footprint was a clue that led them closer to their prince.", + "artistName": "SIXMOREVODKA", + "name": "Ardent Tracker", + "cardCode": "04DE004", + "keywords": [ + "Scout" + ], + "keywordRefs": [ + "Scout" + ], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "RARE", + "rarityRef": "Rare", + "subtypes": [ + "ELITE" + ], + "supertype": "", + "type": "Unit", + "collectible": true, + "set": "Set4" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set4/en_us/img/cards/04DE014.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set4/en_us/img/cards/04DE014-full.png" + } + ], + "regions": [ + "Demacia" + ], + "regionRefs": [ + "Demacia" + ], + "attack": 0, + "cost": 1, + "health": 3, + "description": "When you play a Dragon, it strikes me and you draw 1.", + "descriptionRaw": "When you play a Dragon, it strikes me and you draw 1.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"That shriek you hear from way up high? That's no bird, my boy. That's the cry of a hunting dragon.\" - Demacian farmer", + "artistName": "Kudos Productions", + "name": "Dragon Chow", + "cardCode": "04DE014", + "keywords": [], + "keywordRefs": [], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "COMMON", + "rarityRef": "Common", + "subtypes": [], + "supertype": "", + "type": "Unit", + "collectible": true, + "set": "Set4" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set4/en_us/img/cards/04DE001.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set4/en_us/img/cards/04DE001-full.png" + } + ], + "regions": [ + "Demacia" + ], + "regionRefs": [ + "Demacia" + ], + "attack": 3, + "cost": 2, + "health": 2, + "description": "The first time I Challenge an enemy, give me Barrier this round.", + "descriptionRaw": "The first time I Challenge an enemy, give me Barrier this round.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "After learning of his son's disappearance, King Jarvan III tasked his trusted friend Lord Barrett Buvelle with organizing a search party. The prince returned safe and well. Lord Buvelle, to the king's eternal regret, did not.", + "artistName": "SIXMOREVODKA", + "name": "Honored Lord", + "cardCode": "04DE001", + "keywords": [], + "keywordRefs": [], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "COMMON", + "rarityRef": "Common", + "subtypes": [ + "ELITE" + ], + "supertype": "", + "type": "Unit", + "collectible": true, + "set": "Set4" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set4/en_us/img/cards/04DE012.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set4/en_us/img/cards/04DE012-full.png" + } + ], + "regions": [ + "Demacia" + ], + "regionRefs": [ + "Demacia" + ], + "attack": 0, + "cost": 2, + "health": 0, + "description": "The next time you play a unit this round, grant it Scout. It's now an Elite.", + "descriptionRaw": "The next time you play a unit this round, grant it Scout. It's now an Elite.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "When Demacians' mettle is tested, they rise to the occasion.", + "artistName": "Kudos Productions", + "name": "Field Promotion", + "cardCode": "04DE012", + "keywords": [ + "Burst" + ], + "keywordRefs": [ + "Burst" + ], + "spellSpeed": "Burst", + "spellSpeedRef": "Burst", + "rarity": "COMMON", + "rarityRef": "Common", + "subtypes": [], + "supertype": "", + "type": "Spell", + "collectible": true, + "set": "Set4" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set4/en_us/img/cards/04DE003.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set4/en_us/img/cards/04DE003-full.png" + } + ], + "regions": [ + "Demacia" + ], + "regionRefs": [ + "Demacia" + ], + "attack": 0, + "cost": 3, + "health": 0, + "description": "An ally starts a free attack Challenging an enemy.", + "descriptionRaw": "An ally starts a free attack Challenging an enemy.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"For the king!\" - Jarvan IV", + "artistName": "Kudos Productions", + "name": "Cataclysm", + "cardCode": "04DE003", + "keywords": [ + "Slow" + ], + "keywordRefs": [ + "Slow" + ], + "spellSpeed": "Slow", + "spellSpeedRef": "Slow", + "rarity": "RARE", + "rarityRef": "Rare", + "subtypes": [], + "supertype": "", + "type": "Spell", + "collectible": true, + "set": "Set4" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set4/en_us/img/cards/04DE002.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set4/en_us/img/cards/04DE002-full.png" + } + ], + "regions": [ + "Demacia" + ], + "regionRefs": [ + "Demacia" + ], + "attack": 0, + "cost": 4, + "health": 0, + "description": "Give an ally Barrier this round.\r\nRally.", + "descriptionRaw": "Give an ally Barrier this round.\r\nRally.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"Once more, soldier of Demacia!\" - Jarvan IV", + "artistName": "Kudos Productions", + "name": "Golden Aegis", + "cardCode": "04DE002", + "keywords": [ + "Slow" + ], + "keywordRefs": [ + "Slow" + ], + "spellSpeed": "Slow", + "spellSpeedRef": "Slow", + "rarity": "RARE", + "rarityRef": "Rare", + "subtypes": [], + "supertype": "", + "type": "Spell", + "collectible": true, + "set": "Set4" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set4/en_us/img/cards/04DE006.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set4/en_us/img/cards/04DE006-full.png" + } + ], + "regions": [ + "Demacia" + ], + "regionRefs": [ + "Demacia" + ], + "attack": 0, + "cost": 1, + "health": 0, + "description": "Grant an ally +1|+1.", + "descriptionRaw": "Grant an ally +1|+1.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"I could teach you a thing or two.\" - Lord Buvelle", + "artistName": "Kudos Productions", + "name": "Battlefield Prowess", + "cardCode": "04DE006", + "keywords": [ + "Slow" + ], + "keywordRefs": [ + "Slow" + ], + "spellSpeed": "Slow", + "spellSpeedRef": "Slow", + "rarity": "COMMON", + "rarityRef": "Common", + "subtypes": [], + "supertype": "", + "type": "Spell", + "collectible": true, + "set": "Set4" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set4/en_us/img/cards/04DE007T1.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set4/en_us/img/cards/04DE007T1-full.png" + } + ], + "regions": [ + "Demacia" + ], + "regionRefs": [ + "Demacia" + ], + "attack": 0, + "cost": 1, + "health": 0, + "description": "The next time you summon an ally this round, grant it Challenger.", + "descriptionRaw": "The next time you summon an ally this round, grant it Challenger.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"Form up, on me!\" - Silverwing Vanguard", + "artistName": "Kudos Productions", + "name": "Tattered Banner", + "cardCode": "04DE007T1", + "keywords": [ + "Burst" + ], + "keywordRefs": [ + "Burst" + ], + "spellSpeed": "Burst", + "spellSpeedRef": "Burst", + "rarity": "None", + "rarityRef": "None", + "subtypes": [], + "supertype": "", + "type": "Spell", + "collectible": false, + "set": "Set4" + }, + { + "associatedCards": [], + "associatedCardRefs": [ + "04DE008T2", + "04DE008T1" + ], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set4/en_us/img/cards/04DE008.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set4/en_us/img/cards/04DE008-full.png" + } + ], + "regions": [ + "Demacia" + ], + "regionRefs": [ + "Demacia" + ], + "attack": 6, + "cost": 6, + "health": 4, + "description": "When you attack, pay my cost to summon me Challenging the strongest enemy.", + "descriptionRaw": "When you attack, pay my cost to summon me Challenging the strongest enemy.", + "levelupDescription": "Allies have survived 3+ strikes from enemy blockers.", + "levelupDescriptionRaw": "Allies have survived 3+ strikes from enemy blockers.", + "flavorText": "The Noxians knew where Prince Jarvan's hunt would take him. They knew how many Demacians would be by his side, and they knew that his honor wouldn't permit him to flee. The trap was set.", + "artistName": "SIXMOREVODKA", + "name": "Jarvan IV", + "cardCode": "04DE008", + "keywords": [ + "Barrier" + ], + "keywordRefs": [ + "Barrier" + ], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "Champion", + "rarityRef": "Champion", + "subtypes": [ + "ELITE" + ], + "supertype": "Champion", + "type": "Unit", + "collectible": true, + "set": "Set4" + }, + { + "associatedCards": [], + "associatedCardRefs": [ + "04DE008T2", + "04DE008", + "04DE003" + ], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set4/en_us/img/cards/04DE008T1.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set4/en_us/img/cards/04DE008T1-full.png" + } + ], + "regions": [ + "Demacia" + ], + "regionRefs": [ + "Demacia" + ], + "attack": 7, + "cost": 6, + "health": 5, + "description": "When you attack, pay my cost to summon me Challenging the strongest enemy.\r\nRound Start: Create a Fleeting Cataclysm in hand.\r\nWhen I Challenge an enemy, give me Barrier this round.", + "descriptionRaw": "When you attack, pay my cost to summon me Challenging the strongest enemy.\r\nRound Start: Create a Fleeting Cataclysm in hand.\r\nWhen I Challenge an enemy, give me Barrier this round.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "But the Noxians did fail to account for the young prince's sheer strength and uncompromising will. They paid for this miscalculation in blood.", + "artistName": "SIXMOREVODKA", + "name": "Jarvan IV", + "cardCode": "04DE008T1", + "keywords": [ + "Barrier" + ], + "keywordRefs": [ + "Barrier" + ], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "None", + "rarityRef": "None", + "subtypes": [ + "ELITE" + ], + "supertype": "Champion", + "type": "Unit", + "collectible": false, + "set": "Set4" + }, + { + "associatedCards": [], + "associatedCardRefs": [ + "04DE008" + ], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set4/en_us/img/cards/04DE008T2.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set4/en_us/img/cards/04DE008T2-full.png" + } + ], + "regions": [ + "Demacia" + ], + "regionRefs": [ + "Demacia" + ], + "attack": 0, + "cost": 3, + "health": 0, + "description": "An ally starts a free attack Challenging an enemy.\r\nCreate a Jarvan IV in your deck.", + "descriptionRaw": "An ally starts a free attack Challenging an enemy.\r\nCreate a Jarvan IV in your deck.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"For the king!\" - Jarvan IV", + "artistName": "Kudos Productions", + "name": "Jarvan IV's Cataclysm", + "cardCode": "04DE008T2", + "keywords": [ + "Slow" + ], + "keywordRefs": [ + "Slow" + ], + "spellSpeed": "Slow", + "spellSpeedRef": "Slow", + "rarity": "None", + "rarityRef": "None", + "subtypes": [], + "supertype": "Champion", + "type": "Spell", + "collectible": false, + "set": "Set4" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set4/en_us/img/cards/04DE005.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set4/en_us/img/cards/04DE005-full.png" + } + ], + "regions": [ + "Demacia" + ], + "regionRefs": [ + "Demacia" + ], + "attack": 10, + "cost": 10, + "health": 10, + "description": "When I'm summoned, double other allies' Power and Health and grant them Challenger.", + "descriptionRaw": "When I'm summoned, double other allies' Power and Health and grant them Challenger.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"Who else could Demacia send to save her prince than the Lady of Clouds herself?\" - King Jarvan III", + "artistName": "SIXMOREVODKA", + "name": "Cithria, Lady of Clouds", + "cardCode": "04DE005", + "keywords": [ + "Challenger" + ], + "keywordRefs": [ + "Challenger" + ], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "EPIC", + "rarityRef": "Epic", + "subtypes": [ + "ELITE" + ], + "supertype": "", + "type": "Unit", + "collectible": true, + "set": "Set4" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set4/en_us/img/cards/04DE020.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set4/en_us/img/cards/04DE020-full.png" + } + ], + "regions": [ + "Demacia" + ], + "regionRefs": [ + "Demacia" + ], + "attack": 3, + "cost": 3, + "health": 4, + "description": "When an ally with Fury kills a unit, grant it an additional +1|+1.", + "descriptionRaw": "When an ally with Fury kills a unit, grant it an additional +1|+1.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "The Mist warped Gregem's mind, forcing him to relive Wrenwall, over and over. Stoked by long-buried bitterness and rage, he turned against the comrades who once stood with him.", + "artistName": "Kudos Productions", + "name": "Ruined Dragonguard", + "cardCode": "04DE020", + "keywords": [], + "keywordRefs": [], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "COMMON", + "rarityRef": "Common", + "subtypes": [], + "supertype": "", + "type": "Unit", + "collectible": true, + "set": "Set4" + }, + { + "associatedCards": [], + "associatedCardRefs": [ + "04DE008" + ], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set4/en_us/img/cards/04DE010.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set4/en_us/img/cards/04DE010-full.png" + } + ], + "regions": [ + "Demacia" + ], + "regionRefs": [ + "Demacia" + ], + "attack": 5, + "cost": 7, + "health": 6, + "description": "When I'm summoned, draw Jarvan IV. \r\nIf he's already in play, instead give allies Challenger and Scout this round.", + "descriptionRaw": "When I'm summoned, draw Jarvan IV. \r\nIf he's already in play, instead give allies Challenger and Scout this round.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"What, pray tell, would a father sacrifice to save his son? Better yet, what would a king?\" - LeBlanc", + "artistName": "SIXMOREVODKA", + "name": "King Jarvan III", + "cardCode": "04DE010", + "keywords": [ + "Tough" + ], + "keywordRefs": [ + "Tough" + ], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "EPIC", + "rarityRef": "Epic", + "subtypes": [ + "ELITE" + ], + "supertype": "", + "type": "Unit", + "collectible": true, + "set": "Set4" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set4/en_us/img/cards/04DE016.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set4/en_us/img/cards/04DE016-full.png" + } + ], + "regions": [ + "Demacia" + ], + "regionRefs": [ + "Demacia" + ], + "attack": 6, + "cost": 6, + "health": 6, + "description": "Play: Grant an allied Champion or Dragon Challenger.", + "descriptionRaw": "Play: Grant an allied Champion or Dragon Challenger.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "Kadregrin sowed chaos and fear long before the Black Mist reached Demacia. Under Viego's command, however, his skills would bolster all of the Ruined King's forces.", + "artistName": "Kudos Productions", + "name": "Kadregrin the Ruined", + "cardCode": "04DE016", + "keywords": [ + "Fury" + ], + "keywordRefs": [ + "Fury" + ], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "RARE", + "rarityRef": "Rare", + "subtypes": [ + "DRAGON" + ], + "supertype": "", + "type": "Unit", + "collectible": true, + "set": "Set4" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set4/en_us/img/cards/04DE013.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set4/en_us/img/cards/04DE013-full.png" + } + ], + "regions": [ + "Demacia" + ], + "regionRefs": [ + "Demacia" + ], + "attack": 7, + "cost": 6, + "health": 7, + "description": "I don't take damage from enemy spells or skills.", + "descriptionRaw": "I don't take damage from enemy spells or skills.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "The great Stonehorns are reputed to have come from the time the petricite forest was young, their spreading antlers made of a material similar to those now-ancient trees.", + "artistName": "Kudos Productions", + "name": "Towering Stonehorn", + "cardCode": "04DE013", + "keywords": [], + "keywordRefs": [], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "COMMON", + "rarityRef": "Common", + "subtypes": [], + "supertype": "", + "type": "Unit", + "collectible": true, + "set": "Set4" + }, + { + "associatedCards": [], + "associatedCardRefs": [ + "01DE004", + "02DE002", + "01DE029" + ], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set4/en_us/img/cards/04DE015.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set4/en_us/img/cards/04DE015-full.png" + } + ], + "regions": [ + "Demacia" + ], + "regionRefs": [ + "Demacia" + ], + "attack": 3, + "cost": 4, + "health": 2, + "description": "Play: Create a Silverwing Vanguard, Blinding Assault, or Fleetfeather Tracker in hand.\r\nAttack: Give other Challenging allies +1|+1 this round.", + "descriptionRaw": "Play: Create a Silverwing Vanguard, Blinding Assault, or Fleetfeather Tracker in hand.\r\nAttack: Give other Challenging allies +1|+1 this round.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "The very sight of the Swiftwing flight inspires Demacian soldiers on fields far below. Upon seeing them descend through the clouds, those on the ground are reinvigorated, and ready to continue the fight.", + "artistName": "Kudos Productions", + "name": "Swiftwing Flight", + "cardCode": "04DE015", + "keywords": [ + "Challenger" + ], + "keywordRefs": [ + "Challenger" + ], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "EPIC", + "rarityRef": "Epic", + "subtypes": [ + "ELITE" + ], + "supertype": "", + "type": "Unit", + "collectible": true, + "set": "Set4" + }, + { + "associatedCards": [], + "associatedCardRefs": [ + "04DE007T1" + ], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set4/en_us/img/cards/04DE007.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set4/en_us/img/cards/04DE007-full.png" + } + ], + "regions": [ + "Demacia" + ], + "regionRefs": [ + "Demacia" + ], + "attack": 2, + "cost": 1, + "health": 2, + "description": "When I'm summoned, if you Behold an Elite, create a Tattered Banner in hand.", + "descriptionRaw": "When I'm summoned, if you Behold an Elite, create a Tattered Banner in hand.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "Only when she reached the city's walls did her legs finally give way. The Dauntless Vanguard would carry her message to the king, and the king would save the prince. Thus would her wrong be righted, and her honor preserved.", + "artistName": "SIXMOREVODKA", + "name": "Penitent Squire", + "cardCode": "04DE007", + "keywords": [], + "keywordRefs": [], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "COMMON", + "rarityRef": "Common", + "subtypes": [], + "supertype": "", + "type": "Unit", + "collectible": true, + "set": "Set4" + }, + { + "associatedCards": [], + "associatedCardRefs": [ + "01DE028" + ], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set4/en_us/img/cards/04DE009.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set4/en_us/img/cards/04DE009-full.png" + } + ], + "regions": [ + "Demacia" + ], + "regionRefs": [ + "Demacia" + ], + "attack": 4, + "cost": 4, + "health": 4, + "description": "The first time I Challenge an enemy, transform me into Vanguard Cavalry.", + "descriptionRaw": "The first time I Challenge an enemy, transform me into Vanguard Cavalry.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "Once the call was made, every Demacian soldier was summoned to aid in the search for the prince. Expediency, more than anything, was key.", + "artistName": "SIXMOREVODKA", + "name": "Gallant Rider", + "cardCode": "04DE009", + "keywords": [], + "keywordRefs": [], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "RARE", + "rarityRef": "Rare", + "subtypes": [ + "ELITE" + ], + "supertype": "", + "type": "Unit", + "collectible": true, + "set": "Set4" + } +] \ No newline at end of file diff --git a/data/set4-en_us/metadata.json b/data/set4-en_us/metadata.json new file mode 100644 index 0000000..73ddb2d --- /dev/null +++ b/data/set4-en_us/metadata.json @@ -0,0 +1,5 @@ +{ + "locales": [ + "en_us" + ] +} \ No newline at end of file diff --git a/data/set5-en_us/COPYRIGHT b/data/set5-en_us/COPYRIGHT new file mode 100644 index 0000000..095081a --- /dev/null +++ b/data/set5-en_us/COPYRIGHT @@ -0,0 +1 @@ +Copyright Riot Games, Inc. 2019 \ No newline at end of file diff --git a/data/set5-en_us/README.md b/data/set5-en_us/README.md new file mode 100644 index 0000000..378a7b6 --- /dev/null +++ b/data/set5-en_us/README.md @@ -0,0 +1,40 @@ +metadata.json +{ + "locales": ["{string}", ...], + "clientHash": "{string}" + "gameplayDataHash": "{string}", + "timestamp": "{YYYYMMDDhhmm}", + "patchlineRef": "{string}" +} + +cards.json +[ + { + "id": "{cardCode}", + "idComponents": + { + "set": "setNumber", + "region": + { + "id": "{shortRegionCode}", + "name": "{regionName}" + } + } + "name": "{name}", + "type": "{type}", + "subType": "{subType}", + "superType": "{superType}", + "description": "{description}", + "keywords": [], + "associatedCards": [{cardCode}, ...] + "health": "{health}", + "attack": "{attack}", + "cost": "{cost}", + "assets": + { + "gameAbsolutePath": "http://{cdn}/{bundleName}/set1/en_us/img/card/game/{cardCode}.png" + } + + }, + {...} +] diff --git a/data/set5-en_us/en_us/data/set5-en_us.json b/data/set5-en_us/en_us/data/set5-en_us.json new file mode 100644 index 0000000..9186c10 --- /dev/null +++ b/data/set5-en_us/en_us/data/set5-en_us.json @@ -0,0 +1,15596 @@ +[ + { + "associatedCards": [], + "associatedCardRefs": [ + "05BC058T5", + "05BC058T3", + "05BC058T2" + ], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set5/en_us/img/cards/05BC058.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set5/en_us/img/cards/05BC058-full.png" + } + ], + "regions": [ + "Bandle City", + "Ionia" + ], + "regionRefs": [ + "BandleCity", + "Ionia" + ], + "attack": 2, + "cost": 1, + "health": 1, + "description": "When I'm summoned, create a Mark of the Storm in hand.", + "descriptionRaw": "When I'm summoned, create a Mark of the Storm in hand.", + "levelupDescription": "You've summoned the same ally 5+ times this game.", + "levelupDescriptionRaw": "You've summoned the same ally 5+ times this game.", + "flavorText": "Kennen had heard it too, the roar of some unseen... something. Man or monster, it did not matter. The Kinkou would protect their land at any cost.", + "artistName": "SIXMOREVODKA", + "name": "Kennen", + "cardCode": "05BC058", + "keywords": [ + "Quick Attack" + ], + "keywordRefs": [ + "QuickStrike" + ], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "Champion", + "rarityRef": "Champion", + "subtypes": [ + "YORDLE" + ], + "supertype": "Champion", + "type": "Unit", + "collectible": true, + "set": "Set5" + }, + { + "associatedCards": [], + "associatedCardRefs": [ + "05BC010T1" + ], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set5/en_us/img/cards/05BC010.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set5/en_us/img/cards/05BC010-full.png" + } + ], + "regions": [ + "Bandle City", + "Bilgewater" + ], + "regionRefs": [ + "BandleCity", + "Bilgewater" + ], + "attack": 6, + "cost": 7, + "health": 6, + "description": "When allies attack, spend 1 spell mana to summon an attacking Short Tooth.", + "descriptionRaw": "When allies attack, spend 1 spell mana to summon an attacking Short Tooth.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "The Trainer's routine is the same each night. Fish 'n ale for supper, a quick puff of his bubblepipe, followed by kisses on snouts and a story for his sharks before bedtime.", + "artistName": "Kudos Productions", + "name": "Shark Trainer", + "cardCode": "05BC010", + "keywords": [ + "Attune" + ], + "keywordRefs": [ + "Attune" + ], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "RARE", + "rarityRef": "Rare", + "subtypes": [ + "YORDLE" + ], + "supertype": "", + "type": "Unit", + "collectible": true, + "set": "Set5" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set5/en_us/img/cards/05BC102.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set5/en_us/img/cards/05BC102-full.png" + } + ], + "regions": [ + "Bandle City" + ], + "regionRefs": [ + "BandleCity" + ], + "attack": 3, + "cost": 3, + "health": 2, + "description": "Round Start: Refill 1 spell mana.", + "descriptionRaw": "Round Start: Refill 1 spell mana.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "If there is no greater pain than the papercut, then there is no one who better understands pain than the librarian.", + "artistName": "Kudos Productions", + "name": "Wizened Wizard", + "cardCode": "05BC102", + "keywords": [], + "keywordRefs": [], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "COMMON", + "rarityRef": "Common", + "subtypes": [ + "YORDLE" + ], + "supertype": "", + "type": "Unit", + "collectible": true, + "set": "Set5" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set5/en_us/img/cards/05BC230.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set5/en_us/img/cards/05BC230-full.png" + } + ], + "regions": [ + "Bandle City" + ], + "regionRefs": [ + "BandleCity" + ], + "attack": 0, + "cost": 4, + "health": 0, + "description": "To play, discard 1. Grant all allies +1|+1.", + "descriptionRaw": "To play, discard 1. Grant all allies +1|+1.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"I can never remember how these things work.\" - Poppy", + "artistName": "Kudos Productions", + "name": "Spirit Portal", + "cardCode": "05BC230", + "keywords": [ + "Focus" + ], + "keywordRefs": [ + "Focus" + ], + "spellSpeed": "Burst", + "spellSpeedRef": "Burst", + "rarity": "COMMON", + "rarityRef": "Common", + "subtypes": [], + "supertype": "", + "type": "Spell", + "collectible": true, + "set": "Set5" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set5/en_us/img/cards/05BC010T1.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set5/en_us/img/cards/05BC010T1-full.png" + } + ], + "regions": [ + "Bandle City" + ], + "regionRefs": [ + "BandleCity" + ], + "attack": 4, + "cost": 1, + "health": 2, + "description": "", + "descriptionRaw": "", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"They say don't bite the hand that feeds--but by Bandle--they bit my hand AND anything else they could reach!\" \n- Conchologist Ecological Note, Day 13", + "artistName": "Kudos Productions", + "name": "Short Tooth", + "cardCode": "05BC010T1", + "keywords": [ + "Overwhelm" + ], + "keywordRefs": [ + "Overwhelm" + ], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "None", + "rarityRef": "None", + "subtypes": [], + "supertype": "", + "type": "Unit", + "collectible": false, + "set": "Set5" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set5/en_us/img/cards/05BC099.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set5/en_us/img/cards/05BC099-full.png" + } + ], + "regions": [ + "Bandle City" + ], + "regionRefs": [ + "BandleCity" + ], + "attack": 3, + "cost": 4, + "health": 2, + "description": "When I’m summoned, if you've added 2+ cards to your hand this round, grant me +1|+0 and Elusive.", + "descriptionRaw": "When I’m summoned, if you've added 2+ cards to your hand this round, grant me +1|+0 and Elusive.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"What's my secret? You'll have to ask the biceps. They do all the talking.\"", + "artistName": "Kudos Productions", + "name": "Swole Scout", + "cardCode": "05BC099", + "keywords": [], + "keywordRefs": [], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "RARE", + "rarityRef": "Rare", + "subtypes": [ + "YORDLE" + ], + "supertype": "", + "type": "Unit", + "collectible": true, + "set": "Set5" + }, + { + "associatedCards": [], + "associatedCardRefs": [ + "05BC202", + "05BC133T1" + ], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set5/en_us/img/cards/05BC133.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set5/en_us/img/cards/05BC133-full.png" + } + ], + "regions": [ + "Bandle City" + ], + "regionRefs": [ + "BandleCity" + ], + "attack": 1, + "cost": 3, + "health": 3, + "description": "I have +1|+0 for each multi-region ally you've summoned this game.\r\nWhen you summon a multi-region ally, grant it +1|+0.", + "descriptionRaw": "I have +1|+0 for each multi-region ally you've summoned this game.\r\nWhen you summon a multi-region ally, grant it +1|+0.", + "levelupDescription": "You've summoned 4+ multi-region allies.", + "levelupDescriptionRaw": "You've summoned 4+ multi-region allies.", + "flavorText": "\"Okay, Plan A: We blast our way in and start shooting. If that doesn't work, we go to Plan B: Blast our way out and keep shooting. Then, we'll regroup and go to Plan C, which is basically Plan A again...\"", + "artistName": "Dao Le", + "name": "Tristana", + "cardCode": "05BC133", + "keywords": [ + "Quick Attack" + ], + "keywordRefs": [ + "QuickStrike" + ], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "Champion", + "rarityRef": "Champion", + "subtypes": [ + "YORDLE" + ], + "supertype": "Champion", + "type": "Unit", + "collectible": true, + "set": "Set5" + }, + { + "associatedCards": [], + "associatedCardRefs": [ + "05BC133", + "05BC133T1" + ], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set5/en_us/img/cards/05BC202.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set5/en_us/img/cards/05BC202-full.png" + } + ], + "regions": [ + "Bandle City" + ], + "regionRefs": [ + "BandleCity" + ], + "attack": 0, + "cost": 4, + "health": 0, + "description": "Costs 2 less if you have a Tristana or if you've played cards from 4+ regions this game.\r\nDeal 3 to a unit.\r\nCreate a Tristana in your deck. ", + "descriptionRaw": "Costs 2 less if you have a Tristana or if you've played cards from 4+ regions this game.\r\nDeal 3 to a unit.\r\nCreate a Tristana in your deck. ", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "In every ka-blam there's a ka-boom waiting to be born.", + "artistName": "Kudos Productions", + "name": "Tristana's Buster Shot", + "cardCode": "05BC202", + "keywords": [ + "Slow" + ], + "keywordRefs": [ + "Slow" + ], + "spellSpeed": "Slow", + "spellSpeedRef": "Slow", + "rarity": "None", + "rarityRef": "None", + "subtypes": [], + "supertype": "Champion", + "type": "Spell", + "collectible": false, + "set": "Set5" + }, + { + "associatedCards": [], + "associatedCardRefs": [ + "05BC202", + "05BC133" + ], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set5/en_us/img/cards/05BC133T1.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set5/en_us/img/cards/05BC133T1-full.png" + } + ], + "regions": [ + "Bandle City" + ], + "regionRefs": [ + "BandleCity" + ], + "attack": 2, + "cost": 3, + "health": 4, + "description": "I have +1|+0 for each multi-region ally you've summoned this game.\r\nWhen you summon a multi-region ally, grant me and it +1|+0 and Impact.", + "descriptionRaw": "I have +1|+0 for each multi-region ally you've summoned this game.\r\nWhen you summon a multi-region ally, grant me and it +1|+0 and Impact.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"...and whatever happens... JUST. KEEP. SHOOTING.\"", + "artistName": "Dao Le", + "name": "Tristana", + "cardCode": "05BC133T1", + "keywords": [ + "Quick Attack" + ], + "keywordRefs": [ + "QuickStrike" + ], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "None", + "rarityRef": "None", + "subtypes": [ + "YORDLE" + ], + "supertype": "Champion", + "type": "Unit", + "collectible": false, + "set": "Set5" + }, + { + "associatedCards": [], + "associatedCardRefs": [ + "05BC023T1" + ], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set5/en_us/img/cards/05BC023.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set5/en_us/img/cards/05BC023-full.png" + } + ], + "regions": [ + "Bandle City" + ], + "regionRefs": [ + "BandleCity" + ], + "attack": 6, + "cost": 7, + "health": 6, + "description": "Round End: If you've damaged the enemy Nexus this round, transform me into Megatee.", + "descriptionRaw": "Round End: If you've damaged the enemy Nexus this round, transform me into Megatee.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "Things minitees like: napping on the warm summerstones beside the Nakotak tribal lands. Things minitees do not like: being shoved off said summerstones by cheeky yordles...", + "artistName": "Polar Engine", + "name": "Minitee", + "cardCode": "05BC023", + "keywords": [], + "keywordRefs": [], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "EPIC", + "rarityRef": "Epic", + "subtypes": [], + "supertype": "", + "type": "Unit", + "collectible": true, + "set": "Set5" + }, + { + "associatedCards": [], + "associatedCardRefs": [ + "05BC001T1", + "05BC023" + ], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set5/en_us/img/cards/05BC023T1.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set5/en_us/img/cards/05BC023T1-full.png" + } + ], + "regions": [ + "Bandle City" + ], + "regionRefs": [ + "BandleCity" + ], + "attack": 8, + "cost": 7, + "health": 8, + "description": "Round Start: Transform the strongest enemy into a 3|3 Mini-Minitee and Silence it. It can't block.", + "descriptionRaw": "Round Start: Transform the strongest enemy into a 3|3 Mini-Minitee and Silence it. It can't block.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "...but, as they say, yordles gonna yordle!", + "artistName": "Polar Engine", + "name": "Megatee", + "cardCode": "05BC023T1", + "keywords": [ + "Impact" + ], + "keywordRefs": [ + "Impact" + ], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "EPIC", + "rarityRef": "Epic", + "subtypes": [], + "supertype": "", + "type": "Unit", + "collectible": false, + "set": "Set5" + }, + { + "associatedCards": [], + "associatedCardRefs": [ + "05BC029T5", + "05BC029T6" + ], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set5/en_us/img/cards/05BC029.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set5/en_us/img/cards/05BC029-full.png" + } + ], + "regions": [ + "Bandle City", + "Targon" + ], + "regionRefs": [ + "BandleCity", + "Targon" + ], + "attack": 2, + "cost": 3, + "health": 2, + "description": "Round Start: Grant the unit I'm Attached to +1|+1. Otherwise, grant me +1|+1 instead.", + "descriptionRaw": "Round Start: Grant the unit I'm Attached to +1|+1. Otherwise, grant me +1|+1 instead.", + "levelupDescription": "I or the unit I'm Attached to have attacked 3+ times.", + "levelupDescriptionRaw": "I or the unit I'm Attached to have attacked 3+ times.", + "flavorText": "Yuumi did have to admit that for all her fussing, she did like Book quite a lot. She liked its smell. She liked its illustrations. She even liked jumping through its portals! ...but nothing was as good as just having Norra back home, safe and sound.", + "artistName": "SIXMOREVODKA", + "name": "Yuumi", + "cardCode": "05BC029", + "keywords": [ + "Attach" + ], + "keywordRefs": [ + "Attach" + ], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "Champion", + "rarityRef": "Champion", + "subtypes": [ + "FAE" + ], + "supertype": "Champion", + "type": "Unit", + "collectible": true, + "set": "Set5" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set5/en_us/img/cards/05BC078.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set5/en_us/img/cards/05BC078-full.png" + } + ], + "regions": [ + "Bandle City" + ], + "regionRefs": [ + "BandleCity" + ], + "attack": 0, + "cost": 2, + "health": 0, + "description": "To play, discard 1. Deal 2 to a unit and 2 to the enemy Nexus.", + "descriptionRaw": "To play, discard 1. Deal 2 to a unit and 2 to the enemy Nexus.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"Let's give 'em a show!\" - Rumble", + "artistName": "Kudos Productions", + "name": "Electro Harpoon", + "cardCode": "05BC078", + "keywords": [ + "Slow" + ], + "keywordRefs": [ + "Slow" + ], + "spellSpeed": "Slow", + "spellSpeedRef": "Slow", + "rarity": "RARE", + "rarityRef": "Rare", + "subtypes": [], + "supertype": "", + "type": "Spell", + "collectible": true, + "set": "Set5" + }, + { + "associatedCards": [], + "associatedCardRefs": [ + "05BC166", + "05BC161T2", + "05BC161T1" + ], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set5/en_us/img/cards/05BC161.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set5/en_us/img/cards/05BC161-full.png" + } + ], + "regions": [ + "Bandle City", + "Freljord" + ], + "regionRefs": [ + "BandleCity", + "Freljord" + ], + "attack": 3, + "cost": 4, + "health": 3, + "description": "Strike: Create a Pokey Stick in hand or, if you have one, reduce its cost by 1.", + "descriptionRaw": "Strike: Create a Pokey Stick in hand or, if you have one, reduce its cost by 1.", + "levelupDescription": "Round End: You've damaged the enemy Nexus this round.", + "levelupDescriptionRaw": "Round End: You've damaged the enemy Nexus this round.", + "flavorText": "Long ago, Gnar and his kin thrived in the Nakotak Valley. It was an innocent place, untouched by modern trappings. How unfortunate that the passing of time took this place from Gnar. But how fortunate that time doesn't exactly function as expected in Bandle City.", + "artistName": "SIXMOREVODKA", + "name": "Gnar", + "cardCode": "05BC161", + "keywords": [ + "Quick Attack" + ], + "keywordRefs": [ + "QuickStrike" + ], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "Champion", + "rarityRef": "Champion", + "subtypes": [ + "YORDLE" + ], + "supertype": "Champion", + "type": "Unit", + "collectible": true, + "set": "Set5" + }, + { + "associatedCards": [], + "associatedCardRefs": [ + "05BC161T1", + "05BC161" + ], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set5/en_us/img/cards/05BC161T2.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set5/en_us/img/cards/05BC161T2-full.png" + } + ], + "regions": [ + "Bandle City" + ], + "regionRefs": [ + "BandleCity" + ], + "attack": 0, + "cost": 3, + "health": 0, + "description": "Deal 1 to an enemy and Stun it. \r\nCreate a Gnar in your deck.", + "descriptionRaw": "Deal 1 to an enemy and Stun it. \r\nCreate a Gnar in your deck.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"Ahanga!\" - Gnar", + "artistName": "Kudos Productions", + "name": "Gnar's Wallop", + "cardCode": "05BC161T2", + "keywords": [ + "Fast" + ], + "keywordRefs": [ + "Fast" + ], + "spellSpeed": "Fast", + "spellSpeedRef": "Fast", + "rarity": "None", + "rarityRef": "None", + "subtypes": [], + "supertype": "Champion", + "type": "Spell", + "collectible": false, + "set": "Set5" + }, + { + "associatedCards": [], + "associatedCardRefs": [ + "05BC161T2", + "05BC161" + ], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set5/en_us/img/cards/05BC161T1.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set5/en_us/img/cards/05BC161T1-full.png" + } + ], + "regions": [ + "Bandle City", + "Freljord" + ], + "regionRefs": [ + "BandleCity", + "Freljord" + ], + "attack": 5, + "cost": 4, + "health": 5, + "description": "When I level up, grant the strongest enemy Vulnerable.\r\nRound End: If I've seen you start the round with the attack token, transform me back into Gnar.", + "descriptionRaw": "When I level up, grant the strongest enemy Vulnerable.\r\nRound End: If I've seen you start the round with the attack token, transform me back into Gnar.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "The yordles sat on their tree branch and cheered for Gnar as he duked it out with another passing monster. These were rare events, but always awesome to spectate!", + "artistName": "SIXMOREVODKA", + "name": "Mega Gnar", + "cardCode": "05BC161T1", + "keywords": [ + "Overwhelm", + "Quick Attack" + ], + "keywordRefs": [ + "Overwhelm", + "QuickStrike" + ], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "None", + "rarityRef": "None", + "subtypes": [ + "YORDLE" + ], + "supertype": "Champion", + "type": "Unit", + "collectible": false, + "set": "Set5" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set5/en_us/img/cards/05BC086.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set5/en_us/img/cards/05BC086-full.png" + } + ], + "regions": [ + "Bandle City", + "Noxus" + ], + "regionRefs": [ + "BandleCity", + "Noxus" + ], + "attack": 3, + "cost": 6, + "health": 8, + "description": "Attack: Double my Power and Impact.", + "descriptionRaw": "Attack: Double my Power and Impact.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"They say I'm a joke. That I've got dirt for brains. That I'm all tremble and no quake. Well I've just got one thing to say to my opponents... I'm gonna rock your world!\" \n- Pre-match interview", + "artistName": "Envar Studio", + "name": "Earthshaker", + "cardCode": "05BC086", + "keywords": [ + "Impact" + ], + "keywordRefs": [ + "Impact" + ], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "None", + "rarityRef": "None", + "subtypes": [ + "MECHA-YORDLE", + "YORDLE" + ], + "supertype": "", + "type": "Unit", + "collectible": false, + "set": "Set5" + }, + { + "associatedCards": [], + "associatedCardRefs": [ + "05BC073T1" + ], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set5/en_us/img/cards/05BC073.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set5/en_us/img/cards/05BC073-full.png" + } + ], + "regions": [ + "Bandle City" + ], + "regionRefs": [ + "BandleCity" + ], + "attack": 2, + "cost": 1, + "health": 1, + "description": "When I’m summoned, summon a Scrappy Bomb.", + "descriptionRaw": "When I’m summoned, summon a Scrappy Bomb.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "Giselle was one of Professor Heimerdinger's best students until she heard of Ziggs' strange experiments down in Zaun. Then it was all \"hexplosives\" this and \"could you recommend me for an internship\" that. ", + "artistName": "Kudos Productions", + "name": "Inventive Chemist", + "cardCode": "05BC073", + "keywords": [], + "keywordRefs": [], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "COMMON", + "rarityRef": "Common", + "subtypes": [ + "YORDLE" + ], + "supertype": "", + "type": "Unit", + "collectible": true, + "set": "Set5" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set5/en_us/img/cards/05BC039.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set5/en_us/img/cards/05BC039-full.png" + } + ], + "regions": [ + "Bandle City" + ], + "regionRefs": [ + "BandleCity" + ], + "attack": 4, + "cost": 4, + "health": 3, + "description": "Allegiance: Summon another Yordle follower that costs 3 or less.", + "descriptionRaw": "Allegiance: Summon another Yordle follower that costs 3 or less.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"Alice here holds two shots: one's a greeting, the other's a farewell. You two wanna meet?\"", + "artistName": "Polar Engine", + "name": "Gruff Grenadier", + "cardCode": "05BC039", + "keywords": [ + "Impact" + ], + "keywordRefs": [ + "Impact" + ], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "RARE", + "rarityRef": "Rare", + "subtypes": [ + "YORDLE" + ], + "supertype": "", + "type": "Unit", + "collectible": true, + "set": "Set5" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set5/en_us/img/cards/05BC148.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set5/en_us/img/cards/05BC148-full.png" + } + ], + "regions": [ + "Bandle City", + "Piltover & Zaun" + ], + "regionRefs": [ + "BandleCity", + "PiltoverZaun" + ], + "attack": 5, + "cost": 7, + "health": 4, + "description": "When I'm summoned, if you've dealt damage to the enemy Nexus 4+ times, grant me Impact 4 times. ", + "descriptionRaw": "When I'm summoned, if you've dealt damage to the enemy Nexus 4+ times, grant me Impact 4 times. ", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "Chewy outside, tough and gritty center.", + "artistName": "Kudos Productions", + "name": "Furious Faefolk", + "cardCode": "05BC148", + "keywords": [ + "Quick Attack" + ], + "keywordRefs": [ + "QuickStrike" + ], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "COMMON", + "rarityRef": "Common", + "subtypes": [ + "FAE" + ], + "supertype": "", + "type": "Unit", + "collectible": true, + "set": "Set5" + }, + { + "associatedCards": [], + "associatedCardRefs": [ + "05BC029T6", + "05BC029", + "05BC029T5" + ], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set5/en_us/img/cards/05BC029T5.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set5/en_us/img/cards/05BC029T5-full.png" + } + ], + "regions": [ + "Bandle City", + "Targon" + ], + "regionRefs": [ + "BandleCity", + "Targon" + ], + "attack": 3, + "cost": 3, + "health": 3, + "description": "Round Start: Grant the unit I'm Attached to SpellShield and +1|+1. Otherwise, grant me SpellShield and +1|+1 instead.", + "descriptionRaw": "Round Start: Grant the unit I'm Attached to SpellShield and +1|+1. Otherwise, grant me SpellShield and +1|+1 instead.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "Yet with each new portal came new adventures, and with each new adventure came a chance to make new friends!", + "artistName": "SIXMOREVODKA", + "name": "Yuumi", + "cardCode": "05BC029T5", + "keywords": [ + "Attach", + "SpellShield" + ], + "keywordRefs": [ + "Attach", + "SpellShield" + ], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "None", + "rarityRef": "None", + "subtypes": [ + "FAE" + ], + "supertype": "Champion", + "type": "Unit", + "collectible": false, + "set": "Set5" + }, + { + "associatedCards": [], + "associatedCardRefs": [ + "05BC029T5", + "05BC029" + ], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set5/en_us/img/cards/05BC029T6.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set5/en_us/img/cards/05BC029T6-full.png" + } + ], + "regions": [ + "Bandle City" + ], + "regionRefs": [ + "BandleCity" + ], + "attack": 0, + "cost": 2, + "health": 0, + "description": "Grant an ally +1|+0. Deal 1 to an enemy.\r\nCreate a Yuumi in your deck.", + "descriptionRaw": "Grant an ally +1|+0. Deal 1 to an enemy.\r\nCreate a Yuumi in your deck.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"Zoooooom!\" - Yuumi", + "artistName": "Kudos Productions", + "name": "Yuumi's Prowling Projectile", + "cardCode": "05BC029T6", + "keywords": [ + "Fast" + ], + "keywordRefs": [ + "Fast" + ], + "spellSpeed": "Fast", + "spellSpeedRef": "Fast", + "rarity": "None", + "rarityRef": "None", + "subtypes": [], + "supertype": "Champion", + "type": "Spell", + "collectible": false, + "set": "Set5" + }, + { + "associatedCards": [], + "associatedCardRefs": [ + "05BC029T8", + "05BC029T6", + "05BC029" + ], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set5/en_us/img/cards/05BC029T7.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set5/en_us/img/cards/05BC029T7-full.png" + } + ], + "regions": [ + "Bandle City", + "Targon" + ], + "regionRefs": [ + "BandleCity", + "Targon" + ], + "attack": 2, + "cost": 3, + "health": 2, + "description": "Round Start: Grant me +1|+1.", + "descriptionRaw": "Round Start: Grant me +1|+1.", + "levelupDescription": "I've attacked 3+ times.", + "levelupDescriptionRaw": "I've attacked 3+ times.", + "flavorText": "Yuumi did have to admit that for all her fussing, she did like Book quite a lot. She liked its smell. She liked its illustrations. She even liked jumping through its portals! ...but nothing was as good as just having Norra back home, safe and sound.", + "artistName": "SIXMOREVODKA", + "name": "Yuumi", + "cardCode": "05BC029T7", + "keywords": [], + "keywordRefs": [], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "None", + "rarityRef": "None", + "subtypes": [ + "FAE" + ], + "supertype": "Champion", + "type": "Unit", + "collectible": false, + "set": "Set5" + }, + { + "associatedCards": [], + "associatedCardRefs": [ + "05BC029T5", + "05BC029", + "05BC029T5", + "05BC029T6" + ], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set5/en_us/img/cards/05BC029T4.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set5/en_us/img/cards/05BC029T4-full.png" + } + ], + "regions": [ + "Bandle City", + "Targon" + ], + "regionRefs": [ + "BandleCity", + "Targon" + ], + "attack": 3, + "cost": 3, + "health": 3, + "description": "Round Start: Grant the unit I'm Attached to SpellShield and +1|+1. ", + "descriptionRaw": "Round Start: Grant the unit I'm Attached to SpellShield and +1|+1. ", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"I go where you go!\" - Yuumi", + "artistName": "SIXMOREVODKA", + "name": "Yuumi", + "cardCode": "05BC029T4", + "keywords": [ + "Attach", + "SpellShield" + ], + "keywordRefs": [ + "Attach", + "SpellShield" + ], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "None", + "rarityRef": "None", + "subtypes": [ + "FAE" + ], + "supertype": "Champion", + "type": "Unit", + "collectible": false, + "set": "Set5" + }, + { + "associatedCards": [], + "associatedCardRefs": [ + "05BC029T6", + "05BC029", + "05BC029T5" + ], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set5/en_us/img/cards/05BC029T8.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set5/en_us/img/cards/05BC029T8-full.png" + } + ], + "regions": [ + "Bandle City", + "Targon" + ], + "regionRefs": [ + "BandleCity", + "Targon" + ], + "attack": 3, + "cost": 3, + "health": 3, + "description": "Round Start: Grant me SpellShield and +1|+1.", + "descriptionRaw": "Round Start: Grant me SpellShield and +1|+1.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "Yet with each new portal came new adventures, and with each new adventure came a chance to make new friends!", + "artistName": "SIXMOREVODKA", + "name": "Yuumi", + "cardCode": "05BC029T8", + "keywords": [ + "SpellShield" + ], + "keywordRefs": [ + "SpellShield" + ], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "None", + "rarityRef": "None", + "subtypes": [ + "FAE" + ], + "supertype": "Champion", + "type": "Unit", + "collectible": false, + "set": "Set5" + }, + { + "associatedCards": [], + "associatedCardRefs": [ + "05BC029T4", + "05BC029", + "05BC029", + "05BC029T6" + ], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set5/en_us/img/cards/05BC029T3.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set5/en_us/img/cards/05BC029T3-full.png" + } + ], + "regions": [ + "Bandle City", + "Targon" + ], + "regionRefs": [ + "BandleCity", + "Targon" + ], + "attack": 2, + "cost": 3, + "health": 2, + "description": "Round Start: Grant the unit I'm Attached to +1|+1.", + "descriptionRaw": "Round Start: Grant the unit I'm Attached to +1|+1.", + "levelupDescription": "The unit I'm Attached to has attacked 3+ times.", + "levelupDescriptionRaw": "The unit I'm Attached to has attacked 3+ times.", + "flavorText": "\"I'm sticking with you!\" - Yuumi", + "artistName": "SIXMOREVODKA", + "name": "Yuumi", + "cardCode": "05BC029T3", + "keywords": [ + "Attach" + ], + "keywordRefs": [ + "Attach" + ], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "None", + "rarityRef": "None", + "subtypes": [ + "FAE" + ], + "supertype": "Champion", + "type": "Unit", + "collectible": false, + "set": "Set5" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set5/en_us/img/cards/05BC173.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set5/en_us/img/cards/05BC173-full.png" + } + ], + "regions": [ + "Bandle City", + "Bilgewater" + ], + "regionRefs": [ + "BandleCity", + "Bilgewater" + ], + "attack": 0, + "cost": 3, + "health": 5, + "description": "When I'm summoned or Round Start: Grant me +0|+2 for each card you discarded last round, then shuffle my stats. ", + "descriptionRaw": "When I'm summoned or Round Start: Grant me +0|+2 for each card you discarded last round, then shuffle my stats. ", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "For obvious reasons, \"paddlemarpower\" never really took off as a unit of measurement.", + "artistName": "Envar Studio", + "name": "Salty Spinner", + "cardCode": "05BC173", + "keywords": [ + "Impact" + ], + "keywordRefs": [ + "Impact" + ], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "None", + "rarityRef": "None", + "subtypes": [ + "MECHA-YORDLE", + "YORDLE" + ], + "supertype": "", + "type": "Unit", + "collectible": false, + "set": "Set5" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set5/en_us/img/cards/05BC119.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set5/en_us/img/cards/05BC119-full.png" + } + ], + "regions": [ + "Bandle City", + "Shadow Isles" + ], + "regionRefs": [ + "BandleCity", + "ShadowIsles" + ], + "attack": 2, + "cost": 2, + "health": 1, + "description": "Last Breath: Create a copy of me in hand at the next Round Start.", + "descriptionRaw": "Last Breath: Create a copy of me in hand at the next Round Start.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"A true supervillain can never have enough minions! Short little fellows who know their place, obey your every word, and always come back for further instruction.\"\n- Excerpt from Ch. 2 of \"How to be a Supervillain\", by Lord Veigar", + "artistName": "Kudos Productions", + "name": "Minion", + "cardCode": "05BC119", + "keywords": [ + "Last Breath" + ], + "keywordRefs": [ + "LastBreath" + ], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "COMMON", + "rarityRef": "Common", + "subtypes": [], + "supertype": "", + "type": "Unit", + "collectible": true, + "set": "Set5" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set5/en_us/img/cards/05BC019.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set5/en_us/img/cards/05BC019-full.png" + } + ], + "regions": [ + "Bandle City" + ], + "regionRefs": [ + "BandleCity" + ], + "attack": 2, + "cost": 4, + "health": 1, + "description": "", + "descriptionRaw": "", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "The Rainbowfish was glad to do some aerial reconnaissance, even if it meant taking a bigger leap than she ever had before. She would take any reprieve, however slight, from Yuumi's hungry stare.", + "artistName": "Kudos Productions", + "name": "Rainbowfish", + "cardCode": "05BC019", + "keywords": [ + "Elusive", + "Attach" + ], + "keywordRefs": [ + "Elusive", + "Attach" + ], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "COMMON", + "rarityRef": "Common", + "subtypes": [ + "FAE" + ], + "supertype": "", + "type": "Unit", + "collectible": true, + "set": "Set5" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set5/en_us/img/cards/05BC019T1.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set5/en_us/img/cards/05BC019T1-full.png" + } + ], + "regions": [ + "Bandle City" + ], + "regionRefs": [ + "BandleCity" + ], + "attack": 2, + "cost": 4, + "health": 1, + "description": "Attach me to an ally to give it my stats and keywords while I'm Attached. When that ally leaves play, Recall me.", + "descriptionRaw": "Attach me to an ally to give it my stats and keywords while I'm Attached. When that ally leaves play, Recall me.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"Help 'em out, Rainbowfish!\" - Yuumi", + "artistName": "Kudos Productions", + "name": "Rainbowfish", + "cardCode": "05BC019T1", + "keywords": [ + "Elusive", + "Attach" + ], + "keywordRefs": [ + "Elusive", + "Attach" + ], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "None", + "rarityRef": "None", + "subtypes": [ + "FAE" + ], + "supertype": "", + "type": "Unit", + "collectible": false, + "set": "Set5" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set5/en_us/img/cards/05BC019T2.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set5/en_us/img/cards/05BC019T2-full.png" + } + ], + "regions": [ + "Bandle City" + ], + "regionRefs": [ + "BandleCity" + ], + "attack": 2, + "cost": 4, + "health": 1, + "description": "", + "descriptionRaw": "", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "The Rainbowfish was glad to do some aerial reconnaissance, even if it meant taking a bigger leap than she ever had before. She would take any reprieve, however slight, from Yuumi's hungry stare.", + "artistName": "Kudos Productions", + "name": "Rainbowfish", + "cardCode": "05BC019T2", + "keywords": [ + "Elusive" + ], + "keywordRefs": [ + "Elusive" + ], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "None", + "rarityRef": "None", + "subtypes": [ + "FAE" + ], + "supertype": "", + "type": "Unit", + "collectible": false, + "set": "Set5" + }, + { + "associatedCards": [], + "associatedCardRefs": [ + "05BC093T2", + "05BC093T1", + "05SI029" + ], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set5/en_us/img/cards/05BC093.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set5/en_us/img/cards/05BC093-full.png" + } + ], + "regions": [ + "Bandle City", + "Shadow Isles" + ], + "regionRefs": [ + "BandleCity", + "ShadowIsles" + ], + "attack": 1, + "cost": 4, + "health": 4, + "description": "When I'm summoned, create a Darkness in hand if you don't have one. Round Start: Grant your Darkness everywhere 1 extra damage.", + "descriptionRaw": "When I'm summoned, create a Darkness in hand if you don't have one. Round Start: Grant your Darkness everywhere 1 extra damage.", + "levelupDescription": "You've dealt 12+ damage with Darkness.", + "levelupDescriptionRaw": "You've dealt 12+ damage with Darkness.", + "flavorText": "\"This world will fear me. It will wear my scars for all eternity. It will ache under the weight of my power. It will shudder under the shadow of my enormity!\"\n- Excerpt from Ch. 1 of \"How to be a Supervillain\", by Lord Veigar", + "artistName": "SIXMOREVODKA", + "name": "Veigar", + "cardCode": "05BC093", + "keywords": [], + "keywordRefs": [], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "Champion", + "rarityRef": "Champion", + "subtypes": [ + "YORDLE" + ], + "supertype": "Champion", + "type": "Unit", + "collectible": true, + "set": "Set5" + }, + { + "associatedCards": [], + "associatedCardRefs": [ + "05BC093T2", + "05BC093" + ], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set5/en_us/img/cards/05BC093T1.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set5/en_us/img/cards/05BC093T1-full.png" + } + ], + "regions": [ + "Bandle City" + ], + "regionRefs": [ + "BandleCity" + ], + "attack": 0, + "cost": 5, + "health": 0, + "description": "Stun an enemy and stun all enemies with 2 or less Power.\r\nCreate a Veigar in your deck.", + "descriptionRaw": "Stun an enemy and stun all enemies with 2 or less Power.\r\nCreate a Veigar in your deck.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"Just... stay right there...\" - Veigar", + "artistName": "Kudos Productions", + "name": "Veigar's Event Horizon", + "cardCode": "05BC093T1", + "keywords": [ + "Fast" + ], + "keywordRefs": [ + "Fast" + ], + "spellSpeed": "Fast", + "spellSpeedRef": "Fast", + "rarity": "None", + "rarityRef": "None", + "subtypes": [], + "supertype": "Champion", + "type": "Spell", + "collectible": false, + "set": "Set5" + }, + { + "associatedCards": [], + "associatedCardRefs": [ + "05SI029", + "05BC093T1", + "05BC093" + ], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set5/en_us/img/cards/05BC093T2.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set5/en_us/img/cards/05BC093T2-full.png" + } + ], + "regions": [ + "Bandle City", + "Shadow Isles" + ], + "regionRefs": [ + "BandleCity", + "ShadowIsles" + ], + "attack": 2, + "cost": 4, + "health": 5, + "description": "When I'm summoned or Round Start: Create a Darkness in hand if you don't have one. Round Start: Grant your Darkness everywhere 1 extra damage.\r\nWhen you play Darkness, it can target anything.", + "descriptionRaw": "When I'm summoned or Round Start: Create a Darkness in hand if you don't have one. Round Start: Grant your Darkness everywhere 1 extra damage.\r\nWhen you play Darkness, it can target anything.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"Aha. Muaha. Ahahaha. AHAHA. AHAHAHAHAHA! MUAHAHAHA! MUAHAHAHAHAHAHAHA!\"\n- Excerpt from Ch. 12 of \"How to be a Supervillain\", by Lord Veigar", + "artistName": "SIXMOREVODKA", + "name": "Grand Overseer Veigar", + "cardCode": "05BC093T2", + "keywords": [ + "Missing Translation" + ], + "keywordRefs": [ + "AuraVisualFakeKeyword" + ], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "None", + "rarityRef": "None", + "subtypes": [ + "MECHA-YORDLE", + "YORDLE" + ], + "supertype": "Champion", + "type": "Unit", + "collectible": false, + "set": "Set5" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set5/en_us/img/cards/05BC007.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set5/en_us/img/cards/05BC007-full.png" + } + ], + "regions": [ + "Bandle City" + ], + "regionRefs": [ + "BandleCity" + ], + "attack": 2, + "cost": 2, + "health": 3, + "description": "", + "descriptionRaw": "", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "Yordles haven't quite figured out gravity yet, but then, gravity hasn't quite figured out Bandle City, either.", + "artistName": "Kudos Productions", + "name": "Stone Stackers", + "cardCode": "05BC007", + "keywords": [ + "Impact" + ], + "keywordRefs": [ + "Impact" + ], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "COMMON", + "rarityRef": "Common", + "subtypes": [ + "YORDLE" + ], + "supertype": "", + "type": "Unit", + "collectible": true, + "set": "Set5" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set5/en_us/img/cards/05BC174.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set5/en_us/img/cards/05BC174-full.png" + } + ], + "regions": [ + "Bandle City" + ], + "regionRefs": [ + "BandleCity" + ], + "attack": 0, + "cost": 4, + "health": 0, + "description": "Give an ally Barrier or SpellShield this round.", + "descriptionRaw": "Give an ally Barrier or SpellShield this round.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"I'll protect you with my wild and furious... meow!\" - Yuumi", + "artistName": "Kudos Productions", + "name": "Friendship!", + "cardCode": "05BC174", + "keywords": [ + "Burst" + ], + "keywordRefs": [ + "Burst" + ], + "spellSpeed": "Burst", + "spellSpeedRef": "Burst", + "rarity": "RARE", + "rarityRef": "Rare", + "subtypes": [], + "supertype": "", + "type": "Spell", + "collectible": true, + "set": "Set5" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set5/en_us/img/cards/05BC185.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set5/en_us/img/cards/05BC185-full.png" + } + ], + "regions": [ + "Bandle City" + ], + "regionRefs": [ + "BandleCity" + ], + "attack": 0, + "cost": 5, + "health": 0, + "description": "Refill your spell mana. Give an ally Elusive and +1|+1 this round.", + "descriptionRaw": "Refill your spell mana. Give an ally Elusive and +1|+1 this round.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"I SEE them enter the left shell, yet when I CHOOSE that shell, it's empty. I'm beginning to suspect this game might be rigged...\"\n- Conchologist Ecological Entry, Day 14", + "artistName": "Kudos Productions", + "name": "Shell Game", + "cardCode": "05BC185", + "keywords": [ + "Burst" + ], + "keywordRefs": [ + "Burst" + ], + "spellSpeed": "Burst", + "spellSpeedRef": "Burst", + "rarity": "RARE", + "rarityRef": "Rare", + "subtypes": [], + "supertype": "", + "type": "Spell", + "collectible": true, + "set": "Set5" + }, + { + "associatedCards": [], + "associatedCardRefs": [ + "05BC096T1" + ], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set5/en_us/img/cards/05BC096.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set5/en_us/img/cards/05BC096-full.png" + } + ], + "regions": [ + "Bandle City", + "Shadow Isles" + ], + "regionRefs": [ + "BandleCity", + "ShadowIsles" + ], + "attack": 1, + "cost": 4, + "health": 3, + "description": "When I'm summoned, if you've played a created card or killed a unit with a spell this game, summon a Bass of Burden.", + "descriptionRaw": "When I'm summoned, if you've played a created card or killed a unit with a spell this game, summon a Bass of Burden.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "If Veigar needed help tipping the scales of justice, then none were better suited to the job than these two. They knew all of them. Except the mixolydian one.", + "artistName": "Kudos Productions", + "name": "Tenor of Terror", + "cardCode": "05BC096", + "keywords": [ + "Impact" + ], + "keywordRefs": [ + "Impact" + ], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "RARE", + "rarityRef": "Rare", + "subtypes": [ + "YORDLE" + ], + "supertype": "", + "type": "Unit", + "collectible": true, + "set": "Set5" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set5/en_us/img/cards/05BC096T1.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set5/en_us/img/cards/05BC096T1-full.png" + } + ], + "regions": [ + "Bandle City", + "Shadow Isles" + ], + "regionRefs": [ + "BandleCity", + "ShadowIsles" + ], + "attack": 3, + "cost": 4, + "health": 1, + "description": "", + "descriptionRaw": "", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"The show had already run into a number of mishaps by the third piece, when the larger of the two singers--I use the term loosely--either delved into the world of the true avant-garde, or choked on a hairball. I am, even at the time of writing, unsure which.\" - Max Bliff, Gatekeeper", + "artistName": "Kudos Productions", + "name": "Bass of Burden", + "cardCode": "05BC096T1", + "keywords": [ + "Impact" + ], + "keywordRefs": [ + "Impact" + ], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "None", + "rarityRef": "None", + "subtypes": [ + "YORDLE" + ], + "supertype": "", + "type": "Unit", + "collectible": false, + "set": "Set5" + }, + { + "associatedCards": [], + "associatedCardRefs": [ + "05BC088T2", + "05BC088T1" + ], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set5/en_us/img/cards/05BC088.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set5/en_us/img/cards/05BC088-full.png" + } + ], + "regions": [ + "Bandle City", + "Noxus" + ], + "regionRefs": [ + "BandleCity", + "Noxus" + ], + "attack": 5, + "cost": 4, + "health": 4, + "description": "Play: Discard up to 3 cards to grant allied Rumbles everywhere Impact for the first, Quick Attack for the second, and SpellShield for the third.", + "descriptionRaw": "Play: Discard up to 3 cards to grant allied Rumbles everywhere Impact for the first, Quick Attack for the second, and SpellShield for the third.", + "levelupDescription": "I've seen Mecha-Yordle allies deal 12+ damage.", + "levelupDescriptionRaw": "I've seen Mecha-Yordle allies deal 12+ damage.", + "flavorText": "\"Annnnd that oughta do 'er.\"\n\"ERROR.\"\n\"WHAT? I just fixed that!\"\n\"SYSTEM FAILURE IMMINENT.\"\n\"Turn it off. TURN IT OFF!\"\n- Rumble and Tristy", + "artistName": "SIXMOREVODKA", + "name": "Rumble", + "cardCode": "05BC088", + "keywords": [], + "keywordRefs": [], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "Champion", + "rarityRef": "Champion", + "subtypes": [ + "MECHA-YORDLE", + "YORDLE" + ], + "supertype": "Champion", + "type": "Unit", + "collectible": true, + "set": "Set5" + }, + { + "associatedCards": [], + "associatedCardRefs": [ + "05BC088T1", + "05BC088" + ], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set5/en_us/img/cards/05BC088T2.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set5/en_us/img/cards/05BC088T2-full.png" + } + ], + "regions": [ + "Bandle City", + "Noxus" + ], + "regionRefs": [ + "BandleCity", + "Noxus" + ], + "attack": 6, + "cost": 4, + "health": 5, + "description": "When you deal damage to the enemy Nexus, create a random Mecha-Yordle in hand or if you have one, grant all Mecha-Yordles in hand +1|+1 and reduce their cost by 1.", + "descriptionRaw": "When you deal damage to the enemy Nexus, create a random Mecha-Yordle in hand or if you have one, grant all Mecha-Yordles in hand +1|+1 and reduce their cost by 1.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"I mean, I know Tristy's already got the flamethrower, the electro-drill, and the giant freakin' mace, but c'mon... I wasn't NOT gonna add rockets. Heh heh.\"", + "artistName": "SIXMOREVODKA", + "name": "Rumble", + "cardCode": "05BC088T2", + "keywords": [ + "Quick Attack", + "SpellShield", + "Impact" + ], + "keywordRefs": [ + "QuickStrike", + "SpellShield", + "Impact" + ], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "None", + "rarityRef": "None", + "subtypes": [ + "MECHA-YORDLE", + "YORDLE" + ], + "supertype": "Champion", + "type": "Unit", + "collectible": false, + "set": "Set5" + }, + { + "associatedCards": [], + "associatedCardRefs": [ + "05BC088T2", + "05BC088" + ], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set5/en_us/img/cards/05BC088T1.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set5/en_us/img/cards/05BC088T1-full.png" + } + ], + "regions": [ + "Bandle City" + ], + "regionRefs": [ + "BandleCity" + ], + "attack": 0, + "cost": 2, + "health": 0, + "description": "Grant an ally +2|+0 and Impact.\r\nCreate a Rumble in your deck.", + "descriptionRaw": "Grant an ally +2|+0 and Impact.\r\nCreate a Rumble in your deck.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"If they ain't howlin', it ain't hot enough! Heh heh.\" - Rumble", + "artistName": "Kudos Productions", + "name": "Rumble's Flamespitter", + "cardCode": "05BC088T1", + "keywords": [ + "Burst" + ], + "keywordRefs": [ + "Burst" + ], + "spellSpeed": "Burst", + "spellSpeedRef": "Burst", + "rarity": "None", + "rarityRef": "None", + "subtypes": [], + "supertype": "Champion", + "type": "Spell", + "collectible": false, + "set": "Set5" + }, + { + "associatedCards": [], + "associatedCardRefs": [ + "05BC181" + ], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set5/en_us/img/cards/05BC056.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set5/en_us/img/cards/05BC056-full.png" + } + ], + "regions": [ + "Bandle City" + ], + "regionRefs": [ + "BandleCity" + ], + "attack": 2, + "cost": 2, + "health": 2, + "description": "When I'm summoned, create a Cloud Stance in hand.", + "descriptionRaw": "When I'm summoned, create a Cloud Stance in hand.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"It is from control of breath that our school's technique is derived. Just as it is from wind that a tempest is born.\"", + "artistName": "Kudos Productions", + "name": "Gust Monk", + "cardCode": "05BC056", + "keywords": [], + "keywordRefs": [], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "RARE", + "rarityRef": "Rare", + "subtypes": [ + "YORDLE" + ], + "supertype": "", + "type": "Unit", + "collectible": true, + "set": "Set5" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set5/en_us/img/cards/05BC190.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set5/en_us/img/cards/05BC190-full.png" + } + ], + "regions": [ + "Bandle City", + "Noxus" + ], + "regionRefs": [ + "BandleCity", + "Noxus" + ], + "attack": 4, + "cost": 6, + "health": 5, + "description": "Attack: Give other attacking allies +2|+0 this round.", + "descriptionRaw": "Attack: Give other attacking allies +2|+0 this round.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"How do I do it? Screamin' matches night after night? Gargle engine oil. Five minutes in the mornin', five at night.\"", + "artistName": "Caravan Studio", + "name": "Arena Mechacaster", + "cardCode": "05BC190", + "keywords": [], + "keywordRefs": [], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "EPIC", + "rarityRef": "Epic", + "subtypes": [ + "YORDLE" + ], + "supertype": "", + "type": "Unit", + "collectible": true, + "set": "Set5" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set5/en_us/img/cards/05BC042.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set5/en_us/img/cards/05BC042-full.png" + } + ], + "regions": [ + "Bandle City" + ], + "regionRefs": [ + "BandleCity" + ], + "attack": 0, + "cost": 1, + "health": 0, + "description": "Grow an ally to 3|3 this round.", + "descriptionRaw": "Grow an ally to 3|3 this round.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"I used to be like you–couldn't even lift a puffcap. But then, I found \"Shake: by Purpleberry.\" It's got all the right stuff a yordle needs to go from zero to hero. So when you've had a hard workout, fuel up with 'Shake,' and become the buffest of bros, like me!\" \n- Printed Advertisement", + "artistName": "Kudos Productions", + "name": "Purpleberry Shake", + "cardCode": "05BC042", + "keywords": [ + "Burst" + ], + "keywordRefs": [ + "Burst" + ], + "spellSpeed": "Burst", + "spellSpeedRef": "Burst", + "rarity": "COMMON", + "rarityRef": "Common", + "subtypes": [], + "supertype": "", + "type": "Spell", + "collectible": true, + "set": "Set5" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set5/en_us/img/cards/05BC205.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set5/en_us/img/cards/05BC205-full.png" + } + ], + "regions": [ + "Bandle City" + ], + "regionRefs": [ + "BandleCity" + ], + "attack": 0, + "cost": 5, + "health": 0, + "description": "Stun an enemy and stun all enemies with 2 or less Power.", + "descriptionRaw": "Stun an enemy and stun all enemies with 2 or less Power.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"Just... stay right there...\" - Veigar", + "artistName": "Kudos Productions", + "name": "Event Horizon", + "cardCode": "05BC205", + "keywords": [ + "Fast" + ], + "keywordRefs": [ + "Fast" + ], + "spellSpeed": "Fast", + "spellSpeedRef": "Fast", + "rarity": "COMMON", + "rarityRef": "Common", + "subtypes": [], + "supertype": "", + "type": "Spell", + "collectible": true, + "set": "Set5" + }, + { + "associatedCards": [], + "associatedCardRefs": [ + "01PZ022" + ], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set5/en_us/img/cards/05BC223.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set5/en_us/img/cards/05BC223-full.png" + } + ], + "regions": [ + "Bandle City" + ], + "regionRefs": [ + "BandleCity" + ], + "attack": 0, + "cost": 2, + "health": 0, + "description": "Pick 1 of 3 units or spells from the enemy deck and plant 3 Poison Puffcaps on all copies of it.", + "descriptionRaw": "Pick 1 of 3 units or spells from the enemy deck and plant 3 Poison Puffcaps on all copies of it.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"Rule 986: Traps are NOT toys... but they sure are fun!\"", + "artistName": "Kudos Productions", + "name": "Entrapment", + "cardCode": "05BC223", + "keywords": [ + "Burst" + ], + "keywordRefs": [ + "Burst" + ], + "spellSpeed": "Burst", + "spellSpeedRef": "Burst", + "rarity": "RARE", + "rarityRef": "Rare", + "subtypes": [], + "supertype": "", + "type": "Spell", + "collectible": true, + "set": "Set5" + }, + { + "associatedCards": [], + "associatedCardRefs": [ + "01PZ022" + ], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set5/en_us/img/cards/05BC223T2.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set5/en_us/img/cards/05BC223T2-full.png" + } + ], + "regions": [ + "Bandle City" + ], + "regionRefs": [ + "BandleCity" + ], + "attack": 0, + "cost": 2, + "health": 0, + "description": "Pick 1 of 3 spells from the enemy deck and plant 3 Poison Puffcaps on all copies of it.", + "descriptionRaw": "Pick 1 of 3 spells from the enemy deck and plant 3 Poison Puffcaps on all copies of it.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"Rule 986: Traps are NOT toys... but they sure are fun!\"\n", + "artistName": "Kudos Productions", + "name": "Entrapment", + "cardCode": "05BC223T2", + "keywords": [ + "Burst" + ], + "keywordRefs": [ + "Burst" + ], + "spellSpeed": "Burst", + "spellSpeedRef": "Burst", + "rarity": "None", + "rarityRef": "None", + "subtypes": [], + "supertype": "", + "type": "Spell", + "collectible": false, + "set": "Set5" + }, + { + "associatedCards": [], + "associatedCardRefs": [ + "01PZ022" + ], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set5/en_us/img/cards/05BC223T1.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set5/en_us/img/cards/05BC223T1-full.png" + } + ], + "regions": [ + "Bandle City" + ], + "regionRefs": [ + "BandleCity" + ], + "attack": 0, + "cost": 2, + "health": 0, + "description": "Pick 1 of 3 units from the enemy deck and plant 3 Poison Puffcaps on all copies of it.", + "descriptionRaw": "Pick 1 of 3 units from the enemy deck and plant 3 Poison Puffcaps on all copies of it.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"Rule 986: Traps are NOT toys... but they sure are fun!\"", + "artistName": "Kudos Productions", + "name": "Entrapment", + "cardCode": "05BC223T1", + "keywords": [ + "Burst" + ], + "keywordRefs": [ + "Burst" + ], + "spellSpeed": "Burst", + "spellSpeedRef": "Burst", + "rarity": "None", + "rarityRef": "None", + "subtypes": [], + "supertype": "", + "type": "Spell", + "collectible": false, + "set": "Set5" + }, + { + "associatedCards": [], + "associatedCardRefs": [ + "05BC058", + "05BC058T2" + ], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set5/en_us/img/cards/05BC058T3.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set5/en_us/img/cards/05BC058T3-full.png" + } + ], + "regions": [ + "Bandle City" + ], + "regionRefs": [ + "BandleCity" + ], + "attack": 0, + "cost": 3, + "health": 0, + "description": "Recall an ally to deal 2 to anything.\r\nCreate a Kennen in your deck.", + "descriptionRaw": "Recall an ally to deal 2 to anything.\r\nCreate a Kennen in your deck.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"First the crack, then the boom!\" - Kennen", + "artistName": "Kudos Productions", + "name": "Kennen's Lightning Rush", + "cardCode": "05BC058T3", + "keywords": [ + "Fast" + ], + "keywordRefs": [ + "Fast" + ], + "spellSpeed": "Fast", + "spellSpeedRef": "Fast", + "rarity": "None", + "rarityRef": "None", + "subtypes": [], + "supertype": "Champion", + "type": "Spell", + "collectible": false, + "set": "Set5" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set5/en_us/img/cards/05BC058T5.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set5/en_us/img/cards/05BC058T5-full.png" + } + ], + "regions": [ + "Bandle City" + ], + "regionRefs": [ + "BandleCity" + ], + "attack": 0, + "cost": 0, + "health": 0, + "description": "Grant an enemy Mark of the Storm. If they already have it, remove the mark to Stun and deal 2 to them instead.", + "descriptionRaw": "Grant an enemy Mark of the Storm. If they already have it, remove the mark to Stun and deal 2 to them instead.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "The storm approaches.", + "artistName": "Kudos Productions", + "name": "Mark of the Storm", + "cardCode": "05BC058T5", + "keywords": [ + "Fast", + "Fleeting" + ], + "keywordRefs": [ + "Fast", + "Fleeting" + ], + "spellSpeed": "Fast", + "spellSpeedRef": "Fast", + "rarity": "None", + "rarityRef": "None", + "subtypes": [], + "supertype": "", + "type": "Spell", + "collectible": false, + "set": "Set5" + }, + { + "associatedCards": [], + "associatedCardRefs": [ + "05BC058T5", + "05BC058T3", + "05BC058" + ], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set5/en_us/img/cards/05BC058T2.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set5/en_us/img/cards/05BC058T2-full.png" + } + ], + "regions": [ + "Bandle City", + "Ionia" + ], + "regionRefs": [ + "BandleCity", + "Ionia" + ], + "attack": 3, + "cost": 1, + "health": 2, + "description": "When I'm summoned, blocked, or Attack: Create a Mark of the Storm in hand.", + "descriptionRaw": "When I'm summoned, blocked, or Attack: Create a Mark of the Storm in hand.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"We are wind and thunder! We are rain and lightning! This is... TEMPEST!\"", + "artistName": "SIXMOREVODKA", + "name": "Kennen", + "cardCode": "05BC058T2", + "keywords": [ + "Quick Attack" + ], + "keywordRefs": [ + "QuickStrike" + ], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "None", + "rarityRef": "None", + "subtypes": [ + "YORDLE" + ], + "supertype": "Champion", + "type": "Unit", + "collectible": false, + "set": "Set5" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set5/en_us/img/cards/05BC091.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set5/en_us/img/cards/05BC091-full.png" + } + ], + "regions": [ + "Bandle City" + ], + "regionRefs": [ + "BandleCity" + ], + "attack": 4, + "cost": 4, + "health": 3, + "description": "Play: Discard 1 to Manifest a Mecha-Yordle and reduce its cost by 1.", + "descriptionRaw": "Play: Discard 1 to Manifest a Mecha-Yordle and reduce its cost by 1.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"TICKETS! GET YER TICKETS! NOWWWW HALF OFF! Oh, biscuits, if I don't sell these tickets, the boss'll kill me... literally.\"", + "artistName": "Valentin Gloaguen", + "name": "Arena Promoter", + "cardCode": "05BC091", + "keywords": [ + "Tough" + ], + "keywordRefs": [ + "Tough" + ], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "COMMON", + "rarityRef": "Common", + "subtypes": [ + "YORDLE" + ], + "supertype": "", + "type": "Unit", + "collectible": true, + "set": "Set5" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set5/en_us/img/cards/05BC174T2.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set5/en_us/img/cards/05BC174T2-full.png" + } + ], + "regions": [ + "Bandle City" + ], + "regionRefs": [ + "BandleCity" + ], + "attack": 0, + "cost": 4, + "health": 0, + "description": "Give an ally SpellShield this round.", + "descriptionRaw": "Give an ally SpellShield this round.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"When my friends are happy, I'M happy!\" - Yuumi", + "artistName": "Kudos Productions", + "name": "Best Pals", + "cardCode": "05BC174T2", + "keywords": [ + "Burst" + ], + "keywordRefs": [ + "Burst" + ], + "spellSpeed": "Burst", + "spellSpeedRef": "Burst", + "rarity": "None", + "rarityRef": "None", + "subtypes": [], + "supertype": "", + "type": "Spell", + "collectible": false, + "set": "Set5" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set5/en_us/img/cards/05BC174T1.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set5/en_us/img/cards/05BC174T1-full.png" + } + ], + "regions": [ + "Bandle City" + ], + "regionRefs": [ + "BandleCity" + ], + "attack": 0, + "cost": 4, + "health": 0, + "description": "Give an ally Barrier this round.", + "descriptionRaw": "Give an ally Barrier this round.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"Look, Book! Friends!\" - Yuumi", + "artistName": "Kudos Productions", + "name": "Best Buddies", + "cardCode": "05BC174T1", + "keywords": [ + "Burst" + ], + "keywordRefs": [ + "Burst" + ], + "spellSpeed": "Burst", + "spellSpeedRef": "Burst", + "rarity": "None", + "rarityRef": "None", + "subtypes": [], + "supertype": "", + "type": "Spell", + "collectible": false, + "set": "Set5" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set5/en_us/img/cards/05BC172.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set5/en_us/img/cards/05BC172-full.png" + } + ], + "regions": [ + "Bandle City", + "Piltover & Zaun" + ], + "regionRefs": [ + "BandleCity", + "PiltoverZaun" + ], + "attack": 3, + "cost": 4, + "health": 2, + "description": "When I'm summoned, create a random 1, 2, and 3 cost follower in hand.", + "descriptionRaw": "When I'm summoned, create a random 1, 2, and 3 cost follower in hand.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"Somebody get these freakin' hairballs off my desk!\" - Karl, Arena Kingpin", + "artistName": "Envar Studio", + "name": "Professor Von Mech", + "cardCode": "05BC172", + "keywords": [ + "Impact" + ], + "keywordRefs": [ + "Impact" + ], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "None", + "rarityRef": "None", + "subtypes": [ + "MECHA-YORDLE", + "YORDLE" + ], + "supertype": "", + "type": "Unit", + "collectible": false, + "set": "Set5" + }, + { + "associatedCards": [], + "associatedCardRefs": [ + "05BC163T4", + "05BC163T3", + "05BC163T1" + ], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set5/en_us/img/cards/05BC163.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set5/en_us/img/cards/05BC163-full.png" + } + ], + "regions": [ + "Bandle City", + "Shurima" + ], + "regionRefs": [ + "BandleCity", + "Shurima" + ], + "attack": 3, + "cost": 3, + "health": 4, + "description": "Attack: I deal 1 damage to my blocker and the enemy Nexus.", + "descriptionRaw": "Attack: I deal 1 damage to my blocker and the enemy Nexus.", + "levelupDescription": "You've destroyed 4+ allied landmarks this game.", + "levelupDescriptionRaw": "You've destroyed 4+ allied landmarks this game.", + "flavorText": "\"It's IMPORTANT we make a good impression. The new safety inspector is stopping by, and you know what that means!\"\n\"No more explosions?\"\n\"WHAT?! No! It means explode things where he can't see 'em! 'No more explosions'... are you crazy?!\" - Ziggs and Otto", + "artistName": "SIXMOREVODKA", + "name": "Ziggs", + "cardCode": "05BC163", + "keywords": [], + "keywordRefs": [], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "Champion", + "rarityRef": "Champion", + "subtypes": [ + "YORDLE" + ], + "supertype": "Champion", + "type": "Unit", + "collectible": true, + "set": "Set5" + }, + { + "associatedCards": [], + "associatedCardRefs": [ + "05BC163", + "05BC163T1" + ], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set5/en_us/img/cards/05BC163T3.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set5/en_us/img/cards/05BC163T3-full.png" + } + ], + "regions": [ + "Bandle City" + ], + "regionRefs": [ + "BandleCity" + ], + "attack": 0, + "cost": 3, + "health": 0, + "description": "Deal 2 to a unit or deal 1 to two enemies.\r\nCreate a Ziggs in your deck.", + "descriptionRaw": "Deal 2 to a unit or deal 1 to two enemies.\r\nCreate a Ziggs in your deck.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"Fire in the hole!\" - Ziggs", + "artistName": "Kudos Productions", + "name": "Ziggs' Bouncing Bomb", + "cardCode": "05BC163T3", + "keywords": [ + "Slow" + ], + "keywordRefs": [ + "Slow" + ], + "spellSpeed": "Slow", + "spellSpeedRef": "Slow", + "rarity": "None", + "rarityRef": "None", + "subtypes": [], + "supertype": "Champion", + "type": "Spell", + "collectible": false, + "set": "Set5" + }, + { + "associatedCards": [], + "associatedCardRefs": [ + "05BC163" + ], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set5/en_us/img/cards/05BC163T4.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set5/en_us/img/cards/05BC163T4-full.png" + } + ], + "regions": [ + "Bandle City", + "Shurima" + ], + "regionRefs": [ + "BandleCity", + "Shurima" + ], + "attack": 0, + "cost": 0, + "health": 0, + "description": "Deal 1 to Ziggs' blocker and to the enemy Nexus.", + "descriptionRaw": "Deal 1 to Ziggs' blocker and to the enemy Nexus.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"Boom!\" - Ziggs", + "artistName": "Kudos Productions", + "name": "Short Fuse", + "cardCode": "05BC163T4", + "keywords": [ + "Skill" + ], + "keywordRefs": [ + "Skill" + ], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "None", + "rarityRef": "None", + "subtypes": [], + "supertype": "", + "type": "Ability", + "collectible": false, + "set": "Set5" + }, + { + "associatedCards": [], + "associatedCardRefs": [ + "05BC163", + "05BC163T1" + ], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set5/en_us/img/cards/05BC163T6.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set5/en_us/img/cards/05BC163T6-full.png" + } + ], + "regions": [ + "Bandle City" + ], + "regionRefs": [ + "BandleCity" + ], + "attack": 0, + "cost": 3, + "health": 0, + "description": "Deal 1 to two enemies.\r\nCreate a Ziggs in your deck.", + "descriptionRaw": "Deal 1 to two enemies.\r\nCreate a Ziggs in your deck.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"Fire in the hole!\" - Ziggs", + "artistName": "Kudos Productions", + "name": "Ziggs' Bouncing Bomb", + "cardCode": "05BC163T6", + "keywords": [ + "Slow" + ], + "keywordRefs": [ + "Slow" + ], + "spellSpeed": "Slow", + "spellSpeedRef": "Slow", + "rarity": "None", + "rarityRef": "None", + "subtypes": [], + "supertype": "Champion", + "type": "Spell", + "collectible": false, + "set": "Set5" + }, + { + "associatedCards": [], + "associatedCardRefs": [ + "05BC163", + "05BC163T1" + ], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set5/en_us/img/cards/05BC163T7.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set5/en_us/img/cards/05BC163T7-full.png" + } + ], + "regions": [ + "Bandle City" + ], + "regionRefs": [ + "BandleCity" + ], + "attack": 0, + "cost": 3, + "health": 0, + "description": "Deal 2 to a unit.\r\nCreate a Ziggs in your deck.", + "descriptionRaw": "Deal 2 to a unit.\r\nCreate a Ziggs in your deck.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"Fire in the hole!\" - Ziggs", + "artistName": "Kudos Illustrations", + "name": "Ziggs' Bouncing Bomb", + "cardCode": "05BC163T7", + "keywords": [ + "Slow" + ], + "keywordRefs": [ + "Slow" + ], + "spellSpeed": "Slow", + "spellSpeedRef": "Slow", + "rarity": "None", + "rarityRef": "None", + "subtypes": [], + "supertype": "Champion", + "type": "Spell", + "collectible": false, + "set": "Set5" + }, + { + "associatedCards": [], + "associatedCardRefs": [ + "05BC163T5", + "05BC163T3", + "05BC163" + ], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set5/en_us/img/cards/05BC163T1.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set5/en_us/img/cards/05BC163T1-full.png" + } + ], + "regions": [ + "Bandle City", + "Shurima" + ], + "regionRefs": [ + "BandleCity", + "Shurima" + ], + "attack": 4, + "cost": 3, + "health": 5, + "description": "Attack: I deal 2 damage to my blocker and the enemy Nexus.\r\nWhen an allied landmark is destroyed, deal 2 to the enemy Nexus.", + "descriptionRaw": "Attack: I deal 2 damage to my blocker and the enemy Nexus.\r\nWhen an allied landmark is destroyed, deal 2 to the enemy Nexus.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"We passed?! WE PASSED!\"\n\"Heh, well, 'passed' is a strong word... but hoo-wee, if you didn't put on a heck of a show!\" - Ziggs and Wilfred, Safety Inspector ", + "artistName": "SIXMOREVODKA", + "name": "Ziggs", + "cardCode": "05BC163T1", + "keywords": [], + "keywordRefs": [], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "None", + "rarityRef": "None", + "subtypes": [ + "YORDLE" + ], + "supertype": "Champion", + "type": "Unit", + "collectible": false, + "set": "Set5" + }, + { + "associatedCards": [], + "associatedCardRefs": [ + "05BC163T1" + ], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set5/en_us/img/cards/05BC163T5.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set5/en_us/img/cards/05BC163T5-full.png" + } + ], + "regions": [ + "Bandle City", + "Shurima" + ], + "regionRefs": [ + "BandleCity", + "Shurima" + ], + "attack": 0, + "cost": 0, + "health": 0, + "description": "Deal 2 to Ziggs' blocker and the enemy Nexus.", + "descriptionRaw": "Deal 2 to Ziggs' blocker and the enemy Nexus.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"Boom!\" - Ziggs", + "artistName": "Kudos Productions", + "name": "Short Fuse", + "cardCode": "05BC163T5", + "keywords": [ + "Skill" + ], + "keywordRefs": [ + "Skill" + ], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "None", + "rarityRef": "None", + "subtypes": [], + "supertype": "", + "type": "Ability", + "collectible": false, + "set": "Set5" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set5/en_us/img/cards/05BC151.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set5/en_us/img/cards/05BC151-full.png" + } + ], + "regions": [ + "Bandle City" + ], + "regionRefs": [ + "BandleCity" + ], + "attack": 4, + "cost": 8, + "health": 7, + "description": "When you play a created follower, summon an exact copy. When you play a created spell, copy it with the same targets.", + "descriptionRaw": "When you play a created follower, summon an exact copy. When you play a created spell, copy it with the same targets.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"Oh yes, she's quite the mirror master. She makes my designs look even more sublime, and with a small trick of the light, even manages to lend a certain someone a touch of much needed verticality...\" - Stilted Robemaker", + "artistName": "Kudos Productions", + "name": "Mirror Mage", + "cardCode": "05BC151", + "keywords": [], + "keywordRefs": [], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "EPIC", + "rarityRef": "Epic", + "subtypes": [ + "YORDLE" + ], + "supertype": "", + "type": "Unit", + "collectible": true, + "set": "Set5" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set5/en_us/img/cards/05BC027.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set5/en_us/img/cards/05BC027-full.png" + } + ], + "regions": [ + "Bandle City" + ], + "regionRefs": [ + "BandleCity" + ], + "attack": 0, + "cost": 1, + "health": 0, + "description": "When I’m summoned or destroyed, Stun the strongest enemy.", + "descriptionRaw": "When I’m summoned or destroyed, Stun the strongest enemy.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"What do you mean, 'this doesn't look safe'?\" - Ziggs", + "artistName": "Kudos Productions", + "name": "Hexplosive Minefield", + "cardCode": "05BC027", + "keywords": [ + "Landmark" + ], + "keywordRefs": [ + "LandmarkVisualOnly" + ], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "COMMON", + "rarityRef": "Common", + "subtypes": [], + "supertype": "", + "type": "Landmark", + "collectible": true, + "set": "Set5" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set5/en_us/img/cards/05BC200.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set5/en_us/img/cards/05BC200-full.png" + } + ], + "regions": [ + "Bandle City" + ], + "regionRefs": [ + "BandleCity" + ], + "attack": 0, + "cost": 3, + "health": 0, + "description": "To play, discard 1. Manifest a Yordle that costs 3 or less and summon it.", + "descriptionRaw": "To play, discard 1. Manifest a Yordle that costs 3 or less and summon it.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"Never leave a gunner behind!\" - Tristana", + "artistName": "Kudos Productions", + "name": "Yordle Portal", + "cardCode": "05BC200", + "keywords": [ + "Burst" + ], + "keywordRefs": [ + "Burst" + ], + "spellSpeed": "Burst", + "spellSpeedRef": "Burst", + "rarity": "COMMON", + "rarityRef": "Common", + "subtypes": [], + "supertype": "", + "type": "Spell", + "collectible": true, + "set": "Set5" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set5/en_us/img/cards/05BC021.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set5/en_us/img/cards/05BC021-full.png" + } + ], + "regions": [ + "Bandle City" + ], + "regionRefs": [ + "BandleCity" + ], + "attack": 0, + "cost": 3, + "health": 0, + "description": "Deal 2 to a unit or deal 1 to two enemies.", + "descriptionRaw": "Deal 2 to a unit or deal 1 to two enemies.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"Fire in the hole!\" - Ziggs", + "artistName": "Kudos Productions", + "name": "Bouncing Bomb", + "cardCode": "05BC021", + "keywords": [ + "Slow" + ], + "keywordRefs": [ + "Slow" + ], + "spellSpeed": "Slow", + "spellSpeedRef": "Slow", + "rarity": "COMMON", + "rarityRef": "Common", + "subtypes": [], + "supertype": "", + "type": "Spell", + "collectible": true, + "set": "Set5" + }, + { + "associatedCards": [], + "associatedCardRefs": [ + "05BC167T1" + ], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set5/en_us/img/cards/05BC167.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set5/en_us/img/cards/05BC167-full.png" + } + ], + "regions": [ + "Bandle City" + ], + "regionRefs": [ + "BandleCity" + ], + "attack": 1, + "cost": 2, + "health": 2, + "description": "Nexus Strike: Create a Hungry Owlcat in hand.", + "descriptionRaw": "Nexus Strike: Create a Hungry Owlcat in hand.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"Gunnin' in the streets and tuckin' kiddos into sheets!\"", + "artistName": "Wild Blue Studio", + "name": "Bandle Commando", + "cardCode": "05BC167", + "keywords": [ + "Elusive" + ], + "keywordRefs": [ + "Elusive" + ], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "COMMON", + "rarityRef": "Common", + "subtypes": [ + "YORDLE" + ], + "supertype": "", + "type": "Unit", + "collectible": true, + "set": "Set5" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set5/en_us/img/cards/05BC179.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set5/en_us/img/cards/05BC179-full.png" + } + ], + "regions": [ + "Bandle City", + "Demacia" + ], + "regionRefs": [ + "BandleCity", + "Demacia" + ], + "attack": 5, + "cost": 6, + "health": 5, + "description": "Attack: Grant all allies with equal or less power than me +0|+1.", + "descriptionRaw": "Attack: Grant all allies with equal or less power than me +0|+1.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"Poppy! Excellent execution of our latest tactic. What do you think of calling it 'Peanut Petalstorm'?\"\n\"I, uh, kinda just hit the baddie with my hammer. Can't we just call this one 'Hammer'?\"\n\"That's what we called the last three!\" - Kip and Poppy", + "artistName": "Polar Engine", + "name": "Yordle Ranger", + "cardCode": "05BC179", + "keywords": [ + "Scout" + ], + "keywordRefs": [ + "Scout" + ], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "EPIC", + "rarityRef": "Epic", + "subtypes": [ + "YORDLE" + ], + "supertype": "", + "type": "Unit", + "collectible": true, + "set": "Set5" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set5/en_us/img/cards/05BC214.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set5/en_us/img/cards/05BC214-full.png" + } + ], + "regions": [ + "Bandle City" + ], + "regionRefs": [ + "BandleCity" + ], + "attack": 0, + "cost": 7, + "health": 0, + "description": "Deal 1 to all enemies, then do it again.", + "descriptionRaw": "Deal 1 to all enemies, then do it again.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"Bring out... 'The Big One'!\" - Ziggs", + "artistName": "Kudos Productions", + "name": "Mega Inferno Bomb", + "cardCode": "05BC214", + "keywords": [ + "Slow" + ], + "keywordRefs": [ + "Slow" + ], + "spellSpeed": "Slow", + "spellSpeedRef": "Slow", + "rarity": "RARE", + "rarityRef": "Rare", + "subtypes": [], + "supertype": "", + "type": "Spell", + "collectible": true, + "set": "Set5" + }, + { + "associatedCards": [], + "associatedCardRefs": [ + "05BC041T3", + "05BC041T1" + ], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set5/en_us/img/cards/05BC041.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set5/en_us/img/cards/05BC041-full.png" + } + ], + "regions": [ + "Bandle City", + "Demacia" + ], + "regionRefs": [ + "BandleCity", + "Demacia" + ], + "attack": 2, + "cost": 4, + "health": 3, + "description": "Attack: Grant all allies with equal or less power than me +1|+1.", + "descriptionRaw": "Attack: Grant all allies with equal or less power than me +1|+1.", + "levelupDescription": "I've attacked with allies 3 times.", + "levelupDescriptionRaw": "I've attacked with allies 3 times.", + "flavorText": "Humility is a mark of heroism, but many historians would agree that Poppy is kind of pushing it.", + "artistName": "Dao Le", + "name": "Poppy", + "cardCode": "05BC041", + "keywords": [], + "keywordRefs": [], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "Champion", + "rarityRef": "Champion", + "subtypes": [ + "YORDLE" + ], + "supertype": "Champion", + "type": "Unit", + "collectible": true, + "set": "Set5" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set5/en_us/img/cards/05BC176.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set5/en_us/img/cards/05BC176-full.png" + } + ], + "regions": [ + "Bandle City" + ], + "regionRefs": [ + "BandleCity" + ], + "attack": 0, + "cost": 2, + "health": 0, + "description": "Grant an ally +1|+0. Deal 1 to an enemy.", + "descriptionRaw": "Grant an ally +1|+0. Deal 1 to an enemy.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"Zoooooom!\" - Yuumi", + "artistName": "Kudos Productions", + "name": "Prowling Projectile", + "cardCode": "05BC176", + "keywords": [ + "Fast" + ], + "keywordRefs": [ + "Fast" + ], + "spellSpeed": "Fast", + "spellSpeedRef": "Fast", + "rarity": "RARE", + "rarityRef": "Rare", + "subtypes": [], + "supertype": "", + "type": "Spell", + "collectible": true, + "set": "Set5" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set5/en_us/img/cards/05BC105.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set5/en_us/img/cards/05BC105-full.png" + } + ], + "regions": [ + "Bandle City" + ], + "regionRefs": [ + "BandleCity" + ], + "attack": 7, + "cost": 8, + "health": 7, + "description": "When I'm summoned, if you've summoned units from 4+ regions this game, grant me Impact 4 times. ", + "descriptionRaw": "When I'm summoned, if you've summoned units from 4+ regions this game, grant me Impact 4 times. ", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "Squad goals.", + "artistName": "Polar Engine", + "name": "Bandle Gunners", + "cardCode": "05BC105", + "keywords": [ + "SpellShield" + ], + "keywordRefs": [ + "SpellShield" + ], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "RARE", + "rarityRef": "Rare", + "subtypes": [ + "YORDLE" + ], + "supertype": "", + "type": "Unit", + "collectible": true, + "set": "Set5" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set5/en_us/img/cards/05BC066.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set5/en_us/img/cards/05BC066-full.png" + } + ], + "regions": [ + "Bandle City" + ], + "regionRefs": [ + "BandleCity" + ], + "attack": 1, + "cost": 2, + "health": 1, + "description": "", + "descriptionRaw": "", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"W... h... e... r... e... s... N... o... r... r... a...? Oh dear, what should I tell it?\" - Mouse steward", + "artistName": "Kudos Productions", + "name": "Quick Quill", + "cardCode": "05BC066", + "keywords": [ + "Quick Attack", + "Attach" + ], + "keywordRefs": [ + "QuickStrike", + "Attach" + ], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "COMMON", + "rarityRef": "Common", + "subtypes": [ + "FAE" + ], + "supertype": "", + "type": "Unit", + "collectible": true, + "set": "Set5" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set5/en_us/img/cards/05BC177.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set5/en_us/img/cards/05BC177-full.png" + } + ], + "regions": [ + "Bandle City" + ], + "regionRefs": [ + "BandleCity" + ], + "attack": 2, + "cost": 5, + "health": 2, + "description": "", + "descriptionRaw": "", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"One more fold, and see? This one is a giraffe! His name is Socks.\" \n\"Why 'Socks'?\" \n\"Norra loves socks, so she'll love him, too!\" - Mouse stewards", + "artistName": "SIXMOREVODKA", + "name": "Papercraft Dragon", + "cardCode": "05BC177", + "keywords": [ + "Double Attack", + "Attach" + ], + "keywordRefs": [ + "DoubleStrike", + "Attach" + ], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "EPIC", + "rarityRef": "Epic", + "subtypes": [ + "FAE" + ], + "supertype": "", + "type": "Unit", + "collectible": true, + "set": "Set5" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set5/en_us/img/cards/05BC177T2.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set5/en_us/img/cards/05BC177T2-full.png" + } + ], + "regions": [ + "Bandle City" + ], + "regionRefs": [ + "BandleCity" + ], + "attack": 2, + "cost": 5, + "health": 2, + "description": "", + "descriptionRaw": "", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"One more fold, and see? This one is a giraffe! His name is Socks.\" \n\"Why 'Socks'?\" \n\"Norra loves socks, so she'll love him, too!\" - Mouse stewards", + "artistName": "SIXMOREVODKA", + "name": "Papercraft Dragon", + "cardCode": "05BC177T2", + "keywords": [ + "Double Attack" + ], + "keywordRefs": [ + "DoubleStrike" + ], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "None", + "rarityRef": "None", + "subtypes": [ + "FAE" + ], + "supertype": "", + "type": "Unit", + "collectible": false, + "set": "Set5" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set5/en_us/img/cards/05BC177T1.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set5/en_us/img/cards/05BC177T1-full.png" + } + ], + "regions": [ + "Bandle City" + ], + "regionRefs": [ + "BandleCity" + ], + "attack": 2, + "cost": 5, + "health": 2, + "description": "Attach me to an ally to give it my stats and keywords while I'm Attached. When that ally leaves play, Recall me.", + "descriptionRaw": "Attach me to an ally to give it my stats and keywords while I'm Attached. When that ally leaves play, Recall me.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"Help out a friend, won'tcha, little guy?\" - Yuumi", + "artistName": "SIXMOREVODKA", + "name": "Papercraft Dragon", + "cardCode": "05BC177T1", + "keywords": [ + "Attach", + "Double Attack" + ], + "keywordRefs": [ + "Attach", + "DoubleStrike" + ], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "None", + "rarityRef": "None", + "subtypes": [ + "FAE" + ], + "supertype": "", + "type": "Unit", + "collectible": false, + "set": "Set5" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set5/en_us/img/cards/05BC136.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set5/en_us/img/cards/05BC136-full.png" + } + ], + "regions": [ + "Bandle City" + ], + "regionRefs": [ + "BandleCity" + ], + "attack": 0, + "cost": 1, + "health": 0, + "description": "To play, discard 1.\r\nManifest a Mecha-Yordle.", + "descriptionRaw": "To play, discard 1.\r\nManifest a Mecha-Yordle.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"Junk. Crap. Garbage... Hey, now THIS is what I'm freakin' talkin' about!\" - Rumble", + "artistName": "Kudos Productions", + "name": "Scrapheap", + "cardCode": "05BC136", + "keywords": [ + "Burst" + ], + "keywordRefs": [ + "Burst" + ], + "spellSpeed": "Burst", + "spellSpeedRef": "Burst", + "rarity": "COMMON", + "rarityRef": "Common", + "subtypes": [], + "supertype": "", + "type": "Spell", + "collectible": true, + "set": "Set5" + }, + { + "associatedCards": [], + "associatedCardRefs": [ + "01PZ022" + ], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set5/en_us/img/cards/05BC164.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set5/en_us/img/cards/05BC164-full.png" + } + ], + "regions": [ + "Bandle City" + ], + "regionRefs": [ + "BandleCity" + ], + "attack": 0, + "cost": 1, + "health": 0, + "description": "Deal 1 to anything and plant 3 Poison Puffcaps on random cards in the enemy deck. ", + "descriptionRaw": "Deal 1 to anything and plant 3 Poison Puffcaps on random cards in the enemy deck. ", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"Haha! Bullseye!\" - Teemo", + "artistName": "Kudos Productions", + "name": "Poison Dart", + "cardCode": "05BC164", + "keywords": [ + "Slow" + ], + "keywordRefs": [ + "Slow" + ], + "spellSpeed": "Slow", + "spellSpeedRef": "Slow", + "rarity": "COMMON", + "rarityRef": "Common", + "subtypes": [], + "supertype": "", + "type": "Spell", + "collectible": true, + "set": "Set5" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set5/en_us/img/cards/05BC194.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set5/en_us/img/cards/05BC194-full.png" + } + ], + "regions": [ + "Bandle City" + ], + "regionRefs": [ + "BandleCity" + ], + "attack": 0, + "cost": 4, + "health": 0, + "description": "Round Start: Create a follower from a new region in hand. Win the game if I've seen allies from 10 regions. ", + "descriptionRaw": "Round Start: Create a follower from a new region in hand. Win the game if I've seen allies from 10 regions. ", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "Stretching an unknowable distance into the heavens above, The Bandle Tree is an impossible fixture at the heart of the city. Under its great, gnarled branches, some yordles see a beacon of hope and friendship while others see an ominous, riddle-filled monolith. All agree that to gaze upon the Bandle Tree is to glance into the soul of something very old and very powerful.", + "artistName": "Kudos Productions", + "name": "The Bandle Tree", + "cardCode": "05BC194", + "keywords": [ + "Landmark" + ], + "keywordRefs": [ + "LandmarkVisualOnly" + ], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "EPIC", + "rarityRef": "Epic", + "subtypes": [], + "supertype": "", + "type": "Landmark", + "collectible": true, + "set": "Set5" + }, + { + "associatedCards": [], + "associatedCardRefs": [ + "05BC127T1" + ], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set5/en_us/img/cards/05BC127.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set5/en_us/img/cards/05BC127-full.png" + } + ], + "regions": [ + "Bandle City" + ], + "regionRefs": [ + "BandleCity" + ], + "attack": 1, + "cost": 5, + "health": 1, + "description": "When I'm summoned, summon a Stormcloud.", + "descriptionRaw": "When I'm summoned, summon a Stormcloud.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "Weaving a Stormcloud took time. Time Rissu didn't have. Her hands worked furiously as the Aberration closed in. A bit of cloud here, some lightning there. Then... CRACK! BOOM! She had done it, but would it be enough?", + "artistName": "Kudos Productions", + "name": "Rissu, The Silent Storm", + "cardCode": "05BC127", + "keywords": [], + "keywordRefs": [], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "EPIC", + "rarityRef": "Epic", + "subtypes": [ + "YORDLE" + ], + "supertype": "", + "type": "Unit", + "collectible": true, + "set": "Set5" + }, + { + "associatedCards": [], + "associatedCardRefs": [ + "05BC127" + ], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set5/en_us/img/cards/05BC127T1.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set5/en_us/img/cards/05BC127T1-full.png" + } + ], + "regions": [ + "Bandle City" + ], + "regionRefs": [ + "BandleCity" + ], + "attack": 7, + "cost": 5, + "health": 3, + "description": "", + "descriptionRaw": "", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "The Stormcloud crashed into the Aberration in a crackling tangle of mist and lightning. The beast howled as it fell to the ground, its monstrous eye rolling into the back of its head. Kennen gingerly approached through the Stormcloud's dissipating haze. The Kinkou had won, but it would be short-lived. There would always be another threat. Another monster. But they would be ready.", + "artistName": "Kudos Productions", + "name": "Stormcloud", + "cardCode": "05BC127T1", + "keywords": [ + "Impact" + ], + "keywordRefs": [ + "Impact" + ], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "None", + "rarityRef": "None", + "subtypes": [], + "supertype": "", + "type": "Unit", + "collectible": false, + "set": "Set5" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set5/en_us/img/cards/05BC195.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set5/en_us/img/cards/05BC195-full.png" + } + ], + "regions": [ + "Bandle City" + ], + "regionRefs": [ + "BandleCity" + ], + "attack": 0, + "cost": 1, + "health": 0, + "description": "Pick 1 of 2 non-champion cards in the enemy's hand or deck and Prank it.", + "descriptionRaw": "Pick 1 of 2 non-champion cards in the enemy's hand or deck and Prank it.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"Gotcha!\" - Fizz", + "artistName": "Kudos Productions", + "name": "Prank", + "cardCode": "05BC195", + "keywords": [ + "Focus" + ], + "keywordRefs": [ + "Focus" + ], + "spellSpeed": "Burst", + "spellSpeedRef": "Burst", + "rarity": "None", + "rarityRef": "None", + "subtypes": [], + "supertype": "", + "type": "Spell", + "collectible": false, + "set": "Set5" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set5/en_us/img/cards/05BC216.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set5/en_us/img/cards/05BC216-full.png" + } + ], + "regions": [ + "Bandle City" + ], + "regionRefs": [ + "BandleCity" + ], + "attack": 0, + "cost": 4, + "health": 0, + "description": "Destroy a landmark or create 2 random multi-region followers in hand.", + "descriptionRaw": "Destroy a landmark or create 2 random multi-region followers in hand.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"Hang on - we're rollin'!\" - Bomber Twins", + "artistName": "Kudos Productions", + "name": "Yordle Contraption", + "cardCode": "05BC216", + "keywords": [ + "Slow" + ], + "keywordRefs": [ + "Slow" + ], + "spellSpeed": "Slow", + "spellSpeedRef": "Slow", + "rarity": "COMMON", + "rarityRef": "Common", + "subtypes": [], + "supertype": "", + "type": "Spell", + "collectible": true, + "set": "Set5" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set5/en_us/img/cards/05BC216T2.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set5/en_us/img/cards/05BC216T2-full.png" + } + ], + "regions": [ + "Bandle City" + ], + "regionRefs": [ + "BandleCity" + ], + "attack": 0, + "cost": 4, + "health": 0, + "description": "Destroy a landmark.", + "descriptionRaw": "Destroy a landmark.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"Hang on - we're rollin'!\" - Bomber Twins", + "artistName": "Kudos Productions", + "name": "Yordle Contraption", + "cardCode": "05BC216T2", + "keywords": [ + "Slow" + ], + "keywordRefs": [ + "Slow" + ], + "spellSpeed": "Slow", + "spellSpeedRef": "Slow", + "rarity": "None", + "rarityRef": "None", + "subtypes": [], + "supertype": "", + "type": "Spell", + "collectible": false, + "set": "Set5" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set5/en_us/img/cards/05BC216T1.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set5/en_us/img/cards/05BC216T1-full.png" + } + ], + "regions": [ + "Bandle City" + ], + "regionRefs": [ + "BandleCity" + ], + "attack": 0, + "cost": 4, + "health": 0, + "description": "Create 2 random multi-region followers in hand.", + "descriptionRaw": "Create 2 random multi-region followers in hand.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"Hang on - we're rollin'!\" - Bomber Twins", + "artistName": "Kudos Productions", + "name": "Yordle Contraption", + "cardCode": "05BC216T1", + "keywords": [ + "Slow" + ], + "keywordRefs": [ + "Slow" + ], + "spellSpeed": "Slow", + "spellSpeedRef": "Slow", + "rarity": "None", + "rarityRef": "None", + "subtypes": [], + "supertype": "", + "type": "Spell", + "collectible": false, + "set": "Set5" + }, + { + "associatedCards": [], + "associatedCardRefs": [ + "05BC212T1" + ], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set5/en_us/img/cards/05BC212.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set5/en_us/img/cards/05BC212-full.png" + } + ], + "regions": [ + "Bandle City" + ], + "regionRefs": [ + "BandleCity" + ], + "attack": 6, + "cost": 6, + "health": 6, + "description": "Round Start: Create a Inspection Passed! in hand.", + "descriptionRaw": "Round Start: Create a Inspection Passed! in hand.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "Wilfred was originally skeptical. He was skeptical throughout, too. In fact, he was skeptical 'til the very end - but Ziggs and the other hexplosive experts proved they knew how to put on a real humdinger of a fireworks show. ", + "artistName": "Kudos Productions", + "name": "Safety Inspector", + "cardCode": "05BC212", + "keywords": [], + "keywordRefs": [], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "RARE", + "rarityRef": "Rare", + "subtypes": [ + "YORDLE" + ], + "supertype": "", + "type": "Unit", + "collectible": true, + "set": "Set5" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set5/en_us/img/cards/05BC212T1.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set5/en_us/img/cards/05BC212T1-full.png" + } + ], + "regions": [ + "Bandle City" + ], + "regionRefs": [ + "BandleCity" + ], + "attack": 0, + "cost": 0, + "health": 0, + "description": "Destroy an allied landmark to deal 3 to anything.\r\n", + "descriptionRaw": "Destroy an allied landmark to deal 3 to anything.\r\n", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"... turns out, HE was a huge hexplosives fan, too!\" - Ziggs", + "artistName": "Kudos Productions", + "name": "Inspection Passed!", + "cardCode": "05BC212T1", + "keywords": [ + "Fleeting", + "Slow" + ], + "keywordRefs": [ + "Fleeting", + "Slow" + ], + "spellSpeed": "Slow", + "spellSpeedRef": "Slow", + "rarity": "None", + "rarityRef": "None", + "subtypes": [], + "supertype": "", + "type": "Spell", + "collectible": false, + "set": "Set5" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set5/en_us/img/cards/05BC141.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set5/en_us/img/cards/05BC141-full.png" + } + ], + "regions": [ + "Bandle City" + ], + "regionRefs": [ + "BandleCity" + ], + "attack": 0, + "cost": 3, + "health": 0, + "description": "Give 2 allies +2|+1 this round.", + "descriptionRaw": "Give 2 allies +2|+1 this round.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"'There the heroes stood, back to back--'\"\n\"--Butt to butt! Hehehehehe!\"\n\"N-no! Peppy, if you must interject, please do so during less dramatic moments!\" \n- Tales told 'round the yordle campfire", + "artistName": "Kudos Productions", + "name": "Heroic Refrain", + "cardCode": "05BC141", + "keywords": [ + "Burst" + ], + "keywordRefs": [ + "Burst" + ], + "spellSpeed": "Burst", + "spellSpeedRef": "Burst", + "rarity": "COMMON", + "rarityRef": "Common", + "subtypes": [], + "supertype": "", + "type": "Spell", + "collectible": true, + "set": "Set5" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set5/en_us/img/cards/05BC209.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set5/en_us/img/cards/05BC209-full.png" + } + ], + "regions": [ + "Bandle City" + ], + "regionRefs": [ + "BandleCity" + ], + "attack": 0, + "cost": 3, + "health": 0, + "description": "Set a unit's stats to 1|6 this round.", + "descriptionRaw": "Set a unit's stats to 1|6 this round.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "The Bawkatrice is a loyal, steadfast mount under normal circumstances. However, when put under too much stress they are known to react in... unusual ways.", + "artistName": "Kudos Productions", + "name": "Stress Defense", + "cardCode": "05BC209", + "keywords": [ + "Burst" + ], + "keywordRefs": [ + "Burst" + ], + "spellSpeed": "Burst", + "spellSpeedRef": "Burst", + "rarity": "COMMON", + "rarityRef": "Common", + "subtypes": [], + "supertype": "", + "type": "Spell", + "collectible": true, + "set": "Set5" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set5/en_us/img/cards/05BC210.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set5/en_us/img/cards/05BC210-full.png" + } + ], + "regions": [ + "Bandle City" + ], + "regionRefs": [ + "BandleCity" + ], + "attack": 0, + "cost": 2, + "health": 0, + "description": "Grant an ally +2|+0 and Impact.", + "descriptionRaw": "Grant an ally +2|+0 and Impact.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"If they ain't howlin', it ain't hot enough! Heh heh.\" - Rumble", + "artistName": "Kudos Productions", + "name": "Flamespitter", + "cardCode": "05BC210", + "keywords": [ + "Burst" + ], + "keywordRefs": [ + "Burst" + ], + "spellSpeed": "Burst", + "spellSpeedRef": "Burst", + "rarity": "COMMON", + "rarityRef": "Common", + "subtypes": [], + "supertype": "", + "type": "Spell", + "collectible": true, + "set": "Set5" + }, + { + "associatedCards": [], + "associatedCardRefs": [ + "04SH003T1" + ], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set5/en_us/img/cards/05BC196.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set5/en_us/img/cards/05BC196-full.png" + } + ], + "regions": [ + "Bandle City", + "Shurima" + ], + "regionRefs": [ + "BandleCity", + "Shurima" + ], + "attack": 6, + "cost": 5, + "health": 6, + "description": "Attack: Summon 2 attacking Sand Soldiers.", + "descriptionRaw": "Attack: Summon 2 attacking Sand Soldiers.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"Ya see? It gets everywhere! I DON'T LIKE SAND! The cleanup's gonna cost me a fortune!\" - Karl, Arena Kingpin", + "artistName": "Caravan Studio", + "name": "Dunehopper Mech", + "cardCode": "05BC196", + "keywords": [ + "Impact" + ], + "keywordRefs": [ + "Impact" + ], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "None", + "rarityRef": "None", + "subtypes": [ + "MECHA-YORDLE", + "YORDLE" + ], + "supertype": "", + "type": "Unit", + "collectible": false, + "set": "Set5" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set5/en_us/img/cards/05BC013.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set5/en_us/img/cards/05BC013-full.png" + } + ], + "regions": [ + "Bandle City" + ], + "regionRefs": [ + "BandleCity" + ], + "attack": 0, + "cost": 2, + "health": 0, + "description": "Your opponent discards their lowest cost card.", + "descriptionRaw": "Your opponent discards their lowest cost card.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"Note to self: On next expedition, keep all valuables in my FRONT pockets.\" \n- Conchologist Ecological Entry, Day 19", + "artistName": "Kudos Productions", + "name": "Tricksy Tentacles", + "cardCode": "05BC013", + "keywords": [ + "Fast" + ], + "keywordRefs": [ + "Fast" + ], + "spellSpeed": "Fast", + "spellSpeedRef": "Fast", + "rarity": "COMMON", + "rarityRef": "Common", + "subtypes": [], + "supertype": "", + "type": "Spell", + "collectible": true, + "set": "Set5" + }, + { + "associatedCards": [], + "associatedCardRefs": [ + "01PZ022" + ], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set5/en_us/img/cards/05BC100.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set5/en_us/img/cards/05BC100-full.png" + } + ], + "regions": [ + "Bandle City" + ], + "regionRefs": [ + "BandleCity" + ], + "attack": 2, + "cost": 2, + "health": 2, + "description": "Strike: Plant 3 Poison Puffcaps on random cards in the enemy deck. ", + "descriptionRaw": "Strike: Plant 3 Poison Puffcaps on random cards in the enemy deck. ", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"What's that, boy? Two of the recruits were scouting in the woods and stumbled across a scary grass monster, and now they might die a long and painful death? Lead the way!\" - Teemo", + "artistName": "Kudos Productions", + "name": "Puffcap Pup", + "cardCode": "05BC100", + "keywords": [ + "Quick Attack" + ], + "keywordRefs": [ + "QuickStrike" + ], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "COMMON", + "rarityRef": "Common", + "subtypes": [], + "supertype": "", + "type": "Unit", + "collectible": true, + "set": "Set5" + }, + { + "associatedCards": [], + "associatedCardRefs": [ + "05SI029" + ], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set5/en_us/img/cards/05BC098.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set5/en_us/img/cards/05BC098-full.png" + } + ], + "regions": [ + "Bandle City" + ], + "regionRefs": [ + "BandleCity" + ], + "attack": 2, + "cost": 2, + "health": 2, + "description": "Strike: Grant your Darkness everywhere 1 extra damage.", + "descriptionRaw": "Strike: Grant your Darkness everywhere 1 extra damage.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "Darkness comes in all shapes and sizes. Some of them SURPRISINGLY adorable.", + "artistName": "Kudos Productions", + "name": "Twisted Catalyzer", + "cardCode": "05BC098", + "keywords": [], + "keywordRefs": [], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "COMMON", + "rarityRef": "Common", + "subtypes": [ + "YORDLE" + ], + "supertype": "", + "type": "Unit", + "collectible": true, + "set": "Set5" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set5/en_us/img/cards/05BC122.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set5/en_us/img/cards/05BC122-full.png" + } + ], + "regions": [ + "Bandle City" + ], + "regionRefs": [ + "BandleCity" + ], + "attack": 3, + "cost": 3, + "health": 2, + "description": "When I’m summoned, if you’ve added 2+ cards to your hand this round, grant me +1|+2.", + "descriptionRaw": "When I’m summoned, if you’ve added 2+ cards to your hand this round, grant me +1|+2.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"Giantus grassicus. These terrifying creatures camouflage themselves by laying like ordinary grass and attack any unfortunate enough to walk over them. If encountered, run away forever!\" - Ava Achiever", + "artistName": "Kudos Productions", + "name": "Yordle Newbie", + "cardCode": "05BC122", + "keywords": [], + "keywordRefs": [], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "COMMON", + "rarityRef": "Common", + "subtypes": [ + "YORDLE" + ], + "supertype": "", + "type": "Unit", + "collectible": true, + "set": "Set5" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set5/en_us/img/cards/05BC120.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set5/en_us/img/cards/05BC120-full.png" + } + ], + "regions": [ + "Bandle City" + ], + "regionRefs": [ + "BandleCity" + ], + "attack": 4, + "cost": 4, + "health": 4, + "description": "When you summon another ally with equal or less Power than me, grant it +1|+1.", + "descriptionRaw": "When you summon another ally with equal or less Power than me, grant it +1|+1.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"Adventuring means finding baddies, and turning them into friends!\"", + "artistName": "Caravan Studio", + "name": "Yordle Captain", + "cardCode": "05BC120", + "keywords": [], + "keywordRefs": [], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "COMMON", + "rarityRef": "Common", + "subtypes": [ + "YORDLE" + ], + "supertype": "", + "type": "Unit", + "collectible": true, + "set": "Set5" + }, + { + "associatedCards": [], + "associatedCardRefs": [ + "05BC046T2" + ], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set5/en_us/img/cards/05BC046.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set5/en_us/img/cards/05BC046-full.png" + } + ], + "regions": [ + "Bandle City" + ], + "regionRefs": [ + "BandleCity" + ], + "attack": 2, + "cost": 3, + "health": 3, + "description": "When I’m summoned, if you’ve summoned a Thunder Fist this game, transform me into Masa, Crashing Thunder.", + "descriptionRaw": "When I’m summoned, if you’ve summoned a Thunder Fist this game, transform me into Masa, Crashing Thunder.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "As Masa struck the training dummy, a flash of lightning erupted from the fist, splitting the wood in two and singeing the hair on his hands. He pulled on the rope, reeling in the bronze hand and reflecting on his training—he was finally ready. Suddenly, a monstrous roar echoed in the distance.", + "artistName": "Kudos Productions", + "name": "Thunder Fist", + "cardCode": "05BC046", + "keywords": [ + "Impact" + ], + "keywordRefs": [ + "Impact" + ], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "COMMON", + "rarityRef": "Common", + "subtypes": [ + "YORDLE" + ], + "supertype": "", + "type": "Unit", + "collectible": true, + "set": "Set5" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set5/en_us/img/cards/05BC018.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set5/en_us/img/cards/05BC018-full.png" + } + ], + "regions": [ + "Bandle City", + "Demacia" + ], + "regionRefs": [ + "BandleCity", + "Demacia" + ], + "attack": 1, + "cost": 3, + "health": 1, + "description": "", + "descriptionRaw": "", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"Nine hundred ninety-eight... nine hundred ninety-nine... one thousand! There we are, Bawky, you look impeccable as ever. Okay, now do mine!\"", + "artistName": "Kudos Productions", + "name": "Pompous Cavalier", + "cardCode": "05BC018", + "keywords": [ + "Double Attack" + ], + "keywordRefs": [ + "DoubleStrike" + ], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "RARE", + "rarityRef": "Rare", + "subtypes": [ + "YORDLE" + ], + "supertype": "", + "type": "Unit", + "collectible": true, + "set": "Set5" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set5/en_us/img/cards/05BC112.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set5/en_us/img/cards/05BC112-full.png" + } + ], + "regions": [ + "Bandle City", + "Ionia" + ], + "regionRefs": [ + "BandleCity", + "Ionia" + ], + "attack": 2, + "cost": 2, + "health": 2, + "description": "Play: Give me Barrier this round or grant me Impact.", + "descriptionRaw": "Play: Give me Barrier this round or grant me Impact.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "The Blastcone Seedlings are shy creatures, and while they will retreat first and foremost, if threatened...", + "artistName": "Caravan Studio", + "name": "Blastcone Seedling", + "cardCode": "05BC112", + "keywords": [], + "keywordRefs": [], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "COMMON", + "rarityRef": "Common", + "subtypes": [ + "FAE" + ], + "supertype": "", + "type": "Unit", + "collectible": true, + "set": "Set5" + }, + { + "associatedCards": [], + "associatedCardRefs": [ + "05BC041T3", + "05BC041" + ], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set5/en_us/img/cards/05BC041T1.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set5/en_us/img/cards/05BC041T1-full.png" + } + ], + "regions": [ + "Bandle City", + "Demacia" + ], + "regionRefs": [ + "BandleCity", + "Demacia" + ], + "attack": 3, + "cost": 4, + "health": 4, + "description": "Attack: Grant all allies with equal or less power than me +2|+2 and Impact.", + "descriptionRaw": "Attack: Grant all allies with equal or less power than me +2|+2 and Impact.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "Power is a famously corrupting influence, but Poppy proves that its corruption is no match for a good heart and stubborn, steadfast obliviousness.", + "artistName": "Dao Le", + "name": "Poppy", + "cardCode": "05BC041T1", + "keywords": [ + "Impact" + ], + "keywordRefs": [ + "Impact" + ], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "None", + "rarityRef": "None", + "subtypes": [ + "YORDLE" + ], + "supertype": "Champion", + "type": "Unit", + "collectible": false, + "set": "Set5" + }, + { + "associatedCards": [], + "associatedCardRefs": [ + "05BC041T1", + "05BC041" + ], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set5/en_us/img/cards/05BC041T3.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set5/en_us/img/cards/05BC041T3-full.png" + } + ], + "regions": [ + "Bandle City" + ], + "regionRefs": [ + "BandleCity" + ], + "attack": 0, + "cost": 6, + "health": 0, + "description": "Place an enemy unit on top of the enemy deck. Create a Poppy in your deck.", + "descriptionRaw": "Place an enemy unit on top of the enemy deck. Create a Poppy in your deck.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"And don't come back!\" - Poppy", + "artistName": "Kudos Productions", + "name": "Poppy's Keeper's Verdict", + "cardCode": "05BC041T3", + "keywords": [ + "Slow" + ], + "keywordRefs": [ + "Slow" + ], + "spellSpeed": "Slow", + "spellSpeedRef": "Slow", + "rarity": "None", + "rarityRef": "None", + "subtypes": [], + "supertype": "Champion", + "type": "Spell", + "collectible": false, + "set": "Set5" + }, + { + "associatedCards": [], + "associatedCardRefs": [ + "05BC133" + ], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set5/en_us/img/cards/05BC132.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set5/en_us/img/cards/05BC132-full.png" + } + ], + "regions": [ + "Bandle City" + ], + "regionRefs": [ + "BandleCity" + ], + "attack": 0, + "cost": 4, + "health": 0, + "description": "Costs 2 less if you have a Tristana or if you've played cards from 4+ regions this game.\r\nDeal 3 to a unit. ", + "descriptionRaw": "Costs 2 less if you have a Tristana or if you've played cards from 4+ regions this game.\r\nDeal 3 to a unit. ", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "In every ka-blam there's a ka-boom waiting to be born.", + "artistName": "Kudos Productions", + "name": "Buster Shot", + "cardCode": "05BC132", + "keywords": [ + "Slow" + ], + "keywordRefs": [ + "Slow" + ], + "spellSpeed": "Slow", + "spellSpeedRef": "Slow", + "rarity": "COMMON", + "rarityRef": "Common", + "subtypes": [], + "supertype": "", + "type": "Spell", + "collectible": true, + "set": "Set5" + }, + { + "associatedCards": [], + "associatedCardRefs": [ + "05BC168T1" + ], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set5/en_us/img/cards/05BC168.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set5/en_us/img/cards/05BC168-full.png" + } + ], + "regions": [ + "Bandle City" + ], + "regionRefs": [ + "BandleCity" + ], + "attack": 4, + "cost": 5, + "health": 5, + "description": "Round End: If you've damaged the enemy Nexus this round, transform me into Giga Gromp.", + "descriptionRaw": "Round End: If you've damaged the enemy Nexus this round, transform me into Giga Gromp.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "The yordles of Nakotak Valley had tried for several generations to understand their gromp neighbors. First, Chief Hegabo had tried poking them with a stick. Next, Chief Babobu tried poking them with a stick. Chief Nakotak had a brand new plan: he was going to poke them with a stick.", + "artistName": "Polar Engine", + "name": "Spotted Toad", + "cardCode": "05BC168", + "keywords": [], + "keywordRefs": [], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "RARE", + "rarityRef": "Rare", + "subtypes": [], + "supertype": "", + "type": "Unit", + "collectible": true, + "set": "Set5" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set5/en_us/img/cards/05BC170.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set5/en_us/img/cards/05BC170-full.png" + } + ], + "regions": [ + "Bandle City", + "Freljord" + ], + "regionRefs": [ + "BandleCity", + "Freljord" + ], + "attack": 3, + "cost": 2, + "health": 3, + "description": "Attack: Grant the top 3 allies in your deck +1|+1.", + "descriptionRaw": "Attack: Grant the top 3 allies in your deck +1|+1.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "Mess with the mech, you get the horns.", + "artistName": "Envar Studio", + "name": "Furyhorn Crasher", + "cardCode": "05BC170", + "keywords": [ + "Impact" + ], + "keywordRefs": [ + "Impact" + ], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "None", + "rarityRef": "None", + "subtypes": [ + "MECHA-YORDLE", + "YORDLE" + ], + "supertype": "", + "type": "Unit", + "collectible": false, + "set": "Set5" + }, + { + "associatedCards": [], + "associatedCardRefs": [ + "05BC014T1" + ], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set5/en_us/img/cards/05BC014.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set5/en_us/img/cards/05BC014-full.png" + } + ], + "regions": [ + "Bandle City" + ], + "regionRefs": [ + "BandleCity" + ], + "attack": 4, + "cost": 4, + "health": 3, + "description": "Round End: If you've damaged the enemy Nexus this round, transform me into Terrordactyl.", + "descriptionRaw": "Round End: If you've damaged the enemy Nexus this round, transform me into Terrordactyl.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "The creatures of Nakotak Valley are as varied and lively as the land they inhabit... and just as likely to explode.", + "artistName": "Caravan Studio", + "name": "Teenydactyl", + "cardCode": "05BC014", + "keywords": [], + "keywordRefs": [], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "COMMON", + "rarityRef": "Common", + "subtypes": [], + "supertype": "", + "type": "Unit", + "collectible": true, + "set": "Set5" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set5/en_us/img/cards/05BC138.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set5/en_us/img/cards/05BC138-full.png" + } + ], + "regions": [ + "Bandle City" + ], + "regionRefs": [ + "BandleCity" + ], + "attack": 1, + "cost": 2, + "health": 2, + "description": "The first time you discard a card or damage the enemy Nexus, grant me +2|+1.", + "descriptionRaw": "The first time you discard a card or damage the enemy Nexus, grant me +2|+1.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"Alright, good fight. Good show everyone. Now clean up this crap, and uh, you know the drill: anything salvageable... fix it up, put it in the shop, and we'll just sell it right back to 'em! AHAHAHA!\" - Karl, Arena Kingpin", + "artistName": "Chris Kintner", + "name": "Fix-Em-Uppers", + "cardCode": "05BC138", + "keywords": [], + "keywordRefs": [], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "COMMON", + "rarityRef": "Common", + "subtypes": [], + "supertype": "", + "type": "Unit", + "collectible": true, + "set": "Set5" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set5/en_us/img/cards/05BC198.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set5/en_us/img/cards/05BC198-full.png" + } + ], + "regions": [ + "Bandle City" + ], + "regionRefs": [ + "BandleCity" + ], + "attack": 0, + "cost": 1, + "health": 0, + "description": "Deal 1 to a unit. If you have 4+ allies, deal 2 instead.", + "descriptionRaw": "Deal 1 to a unit. If you have 4+ allies, deal 2 instead.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"Okay, this one's for the newsletter. And remember to smile this time! One... two... three...!\" - Tristana\n", + "artistName": "Kudos Productions", + "name": "Group Shot", + "cardCode": "05BC198", + "keywords": [ + "Fast" + ], + "keywordRefs": [ + "Fast" + ], + "spellSpeed": "Fast", + "spellSpeedRef": "Fast", + "rarity": "COMMON", + "rarityRef": "Common", + "subtypes": [], + "supertype": "", + "type": "Spell", + "collectible": true, + "set": "Set5" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set5/en_us/img/cards/05BC181.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set5/en_us/img/cards/05BC181-full.png" + } + ], + "regions": [ + "Bandle City" + ], + "regionRefs": [ + "BandleCity" + ], + "attack": 0, + "cost": 1, + "health": 0, + "description": "Give an ally +2|+0 and \"Round End: Recall me\" this round.", + "descriptionRaw": "Give an ally +2|+0 and \"Round End: Recall me\" this round.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"Return to breath, and find your strength!\" - Gust Monk", + "artistName": "Kudos Productions", + "name": "Cloud Stance", + "cardCode": "05BC181", + "keywords": [ + "Burst" + ], + "keywordRefs": [ + "Burst" + ], + "spellSpeed": "Burst", + "spellSpeedRef": "Burst", + "rarity": "COMMON", + "rarityRef": "Common", + "subtypes": [], + "supertype": "", + "type": "Spell", + "collectible": true, + "set": "Set5" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set5/en_us/img/cards/05BC160.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set5/en_us/img/cards/05BC160-full.png" + } + ], + "regions": [ + "Bandle City", + "Freljord" + ], + "regionRefs": [ + "BandleCity", + "Freljord" + ], + "attack": 1, + "cost": 1, + "health": 1, + "description": "", + "descriptionRaw": "", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "The poros of yesteryear had much thicker heads than their contemporary kin, making them a little bit dumber, and a whole lot headbuttier.", + "artistName": "Kudos Productions", + "name": "Proto Poro", + "cardCode": "05BC160", + "keywords": [ + "Impact" + ], + "keywordRefs": [ + "Impact" + ], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "COMMON", + "rarityRef": "Common", + "subtypes": [ + "PORO" + ], + "supertype": "", + "type": "Unit", + "collectible": true, + "set": "Set5" + }, + { + "associatedCards": [], + "associatedCardRefs": [ + "05BC195" + ], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set5/en_us/img/cards/05BC005.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set5/en_us/img/cards/05BC005-full.png" + } + ], + "regions": [ + "Bandle City" + ], + "regionRefs": [ + "BandleCity" + ], + "attack": 2, + "cost": 2, + "health": 1, + "description": "Nexus Strike: Create a Prank in hand.", + "descriptionRaw": "Nexus Strike: Create a Prank in hand.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"Dear me, I've just had the oddest dream. One moment, I'm scrambling through the kelp, looking for my shell hat, when suddenly I hear the most wonderful melody. Next thing I know, I'm seated here, pen in hand, writing these words. I don't recall sitting down for a nap...\"\n- Conchologist Ecological Entry, Day 22", + "artistName": "Kudos Productions", + "name": "Kelp Maidens", + "cardCode": "05BC005", + "keywords": [ + "Elusive" + ], + "keywordRefs": [ + "Elusive" + ], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "RARE", + "rarityRef": "Rare", + "subtypes": [], + "supertype": "", + "type": "Unit", + "collectible": true, + "set": "Set5" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set5/en_us/img/cards/05BC079.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set5/en_us/img/cards/05BC079-full.png" + } + ], + "regions": [ + "Bandle City", + "Shadow Isles" + ], + "regionRefs": [ + "BandleCity", + "ShadowIsles" + ], + "attack": 6, + "cost": 6, + "health": 3, + "description": "To play me, discard a unit.\r\nLast Breath: Summon an exact copy of the discarded unit.", + "descriptionRaw": "To play me, discard a unit.\r\nLast Breath: Summon an exact copy of the discarded unit.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"You thought I kept my money buried beneath the arena? HAH! What am I, a pirate? Now go fill that hole before the next match! ... ... Tim, we gotta move the money again.\" - Karl, Arena Kingpin", + "artistName": "Envar Studio", + "name": "Lil Dipper", + "cardCode": "05BC079", + "keywords": [ + "Impact", + "Last Breath" + ], + "keywordRefs": [ + "Impact", + "LastBreath" + ], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "None", + "rarityRef": "None", + "subtypes": [ + "MECHA-YORDLE", + "YORDLE" + ], + "supertype": "", + "type": "Unit", + "collectible": false, + "set": "Set5" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set5/en_us/img/cards/05BC020.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set5/en_us/img/cards/05BC020-full.png" + } + ], + "regions": [ + "Bandle City" + ], + "regionRefs": [ + "BandleCity" + ], + "attack": 2, + "cost": 2, + "health": 2, + "description": "Nexus Strike: Draw a spell that costs 3 or less.", + "descriptionRaw": "Nexus Strike: Draw a spell that costs 3 or less.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"Jelly's my BEST FRIEND! I mean, after you, Book. And Norra. Okay, Jelly's my THIRD-BEST FRIEND. That's still pretty good though, right?!\" - Yuumi", + "artistName": "Kudos Productions", + "name": "Assistant Librarian", + "cardCode": "05BC020", + "keywords": [], + "keywordRefs": [], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "COMMON", + "rarityRef": "Common", + "subtypes": [ + "FAE" + ], + "supertype": "", + "type": "Unit", + "collectible": true, + "set": "Set5" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set5/en_us/img/cards/05BC049.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set5/en_us/img/cards/05BC049-full.png" + } + ], + "regions": [ + "Bandle City" + ], + "regionRefs": [ + "BandleCity" + ], + "attack": 2, + "cost": 2, + "health": 1, + "description": "Play: Manifest a spell from your regions that costs 3 or less.", + "descriptionRaw": "Play: Manifest a spell from your regions that costs 3 or less.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"Today is indeed a red letter day! An exploration into the deep! I expect things to proceed quite... swimmingly! Ho ho!\" \n- Conchologist Ecological Entry, Day 1", + "artistName": "Kudos Productions", + "name": "Conchologist", + "cardCode": "05BC049", + "keywords": [], + "keywordRefs": [], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "RARE", + "rarityRef": "Rare", + "subtypes": [ + "YORDLE" + ], + "supertype": "", + "type": "Unit", + "collectible": true, + "set": "Set5" + }, + { + "associatedCards": [], + "associatedCardRefs": [ + "05BC046" + ], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set5/en_us/img/cards/05BC046T2.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set5/en_us/img/cards/05BC046T2-full.png" + } + ], + "regions": [ + "Bandle City" + ], + "regionRefs": [ + "BandleCity" + ], + "attack": 5, + "cost": 3, + "health": 4, + "description": "", + "descriptionRaw": "", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "Masa attacked with a loud cry. There was a sizzle, then a crack, followed by a howl. Enraged, The Aberration fixed its massive eye on the still-smoking bronze fists, unaware of the encroaching Stormcloud. Masa steeled himself as a monstrous hand fast-approached and prayed he'd bought them enough time.", + "artistName": "Kudos Productions", + "name": "Masa, Crashing Thunder", + "cardCode": "05BC046T2", + "keywords": [ + "Impact" + ], + "keywordRefs": [ + "Impact" + ], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "None", + "rarityRef": "None", + "subtypes": [ + "YORDLE" + ], + "supertype": "", + "type": "Unit", + "collectible": false, + "set": "Set5" + }, + { + "associatedCards": [], + "associatedCardRefs": [ + "05BC001T1" + ], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set5/en_us/img/cards/05BC001.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set5/en_us/img/cards/05BC001-full.png" + } + ], + "regions": [ + "Bandle City" + ], + "regionRefs": [ + "BandleCity" + ], + "attack": 0, + "cost": 6, + "health": 0, + "description": "Transform a unit into a 3|3 Mini-Minitee and Silence it.", + "descriptionRaw": "Transform a unit into a 3|3 Mini-Minitee and Silence it.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"Oh-ho! How cute! How adorable! How TINY!\" - Veigar", + "artistName": "Kudos Productions", + "name": "Minimorph", + "cardCode": "05BC001", + "keywords": [ + "Burst" + ], + "keywordRefs": [ + "Burst" + ], + "spellSpeed": "Burst", + "spellSpeedRef": "Burst", + "rarity": "RARE", + "rarityRef": "Rare", + "subtypes": [], + "supertype": "", + "type": "Spell", + "collectible": true, + "set": "Set5" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set5/en_us/img/cards/05BC082.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set5/en_us/img/cards/05BC082-full.png" + } + ], + "regions": [ + "Bandle City" + ], + "regionRefs": [ + "BandleCity" + ], + "attack": 3, + "cost": 2, + "health": 2, + "description": "", + "descriptionRaw": "", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"That hole you put in the ceiling during the last match? It's comin' outta your next paycheck!\" - Karl, Arena Kingpin", + "artistName": "Valentin Gloaguen", + "name": "Bouncer & Bolt", + "cardCode": "05BC082", + "keywords": [ + "Challenger", + "Impact" + ], + "keywordRefs": [ + "Challenger", + "Impact" + ], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "None", + "rarityRef": "None", + "subtypes": [ + "MECHA-YORDLE", + "YORDLE" + ], + "supertype": "", + "type": "Unit", + "collectible": false, + "set": "Set5" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set5/en_us/img/cards/05BC167T1.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set5/en_us/img/cards/05BC167T1-full.png" + } + ], + "regions": [ + "Bandle City", + "Ionia" + ], + "regionRefs": [ + "BandleCity", + "Ionia" + ], + "attack": 2, + "cost": 1, + "health": 1, + "description": "", + "descriptionRaw": "", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"...But one day he arrived, empty-handed,\nAnd one by one, the greedy birds landed.\nThey pecked and scratched and mauled\n'Til there was nothing left of him at all!\"\n- Bandle City tall tale", + "artistName": "Kudos Productions", + "name": "Hungry Owlcat", + "cardCode": "05BC167T1", + "keywords": [ + "SpellShield" + ], + "keywordRefs": [ + "SpellShield" + ], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "None", + "rarityRef": "None", + "subtypes": [ + "FAE" + ], + "supertype": "", + "type": "Unit", + "collectible": false, + "set": "Set5" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set5/en_us/img/cards/05BC026.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set5/en_us/img/cards/05BC026-full.png" + } + ], + "regions": [ + "Bandle City" + ], + "regionRefs": [ + "BandleCity" + ], + "attack": 0, + "cost": 6, + "health": 0, + "description": "Costs 2 less if you've created 2+ cards this game. Draw 2.", + "descriptionRaw": "Costs 2 less if you've created 2+ cards this game. Draw 2.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "Very few outsiders know the way to Bandle City, but strange markings in the rocks and trees of Runeterra offer hints to those who know what to look for.", + "artistName": "Kudos Productions", + "name": "Hidden Pathways", + "cardCode": "05BC026", + "keywords": [ + "Burst" + ], + "keywordRefs": [ + "Burst" + ], + "spellSpeed": "Burst", + "spellSpeedRef": "Burst", + "rarity": "COMMON", + "rarityRef": "Common", + "subtypes": [], + "supertype": "", + "type": "Spell", + "collectible": true, + "set": "Set5" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set5/en_us/img/cards/05BC152.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set5/en_us/img/cards/05BC152-full.png" + } + ], + "regions": [ + "Bandle City", + "Piltover & Zaun" + ], + "regionRefs": [ + "BandleCity", + "PiltoverZaun" + ], + "attack": 2, + "cost": 4, + "health": 3, + "description": "When I’m summoned, ALL players draw 1, then your opponent discards their highest cost card.", + "descriptionRaw": "When I’m summoned, ALL players draw 1, then your opponent discards their highest cost card.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"Worst. Trip. Ever.\" - Elle", + "artistName": "Kudos Productions", + "name": "Aloof Travelers", + "cardCode": "05BC152", + "keywords": [], + "keywordRefs": [], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "COMMON", + "rarityRef": "Common", + "subtypes": [ + "YORDLE" + ], + "supertype": "", + "type": "Unit", + "collectible": true, + "set": "Set5" + }, + { + "associatedCards": [], + "associatedCardRefs": [ + "01PZ022" + ], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set5/en_us/img/cards/05BC070.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set5/en_us/img/cards/05BC070-full.png" + } + ], + "regions": [ + "Bandle City" + ], + "regionRefs": [ + "BandleCity" + ], + "attack": 4, + "cost": 6, + "health": 4, + "description": "When I'm summoned or Round End: Plant 3 Poison Puffcaps on random cards in the enemy deck. \r\nTraps on enemy cards are doubled when activated.", + "descriptionRaw": "When I'm summoned or Round End: Plant 3 Poison Puffcaps on random cards in the enemy deck. \r\nTraps on enemy cards are doubled when activated.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"Rule 378: A good scout is always brave, always prepared, and always daring!\"", + "artistName": "Kudos Productions", + "name": "Ava Achiever", + "cardCode": "05BC070", + "keywords": [], + "keywordRefs": [], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "EPIC", + "rarityRef": "Epic", + "subtypes": [ + "YORDLE" + ], + "supertype": "", + "type": "Unit", + "collectible": true, + "set": "Set5" + }, + { + "associatedCards": [], + "associatedCardRefs": [ + "05BC015T1" + ], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set5/en_us/img/cards/05BC015.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set5/en_us/img/cards/05BC015-full.png" + } + ], + "regions": [ + "Bandle City" + ], + "regionRefs": [ + "BandleCity" + ], + "attack": 1, + "cost": 2, + "health": 2, + "description": "Round End: If you've damaged the enemy Nexus this round, transform me into Lava Lizard.", + "descriptionRaw": "Round End: If you've damaged the enemy Nexus this round, transform me into Lava Lizard.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"Eat the pepper!\" barked Nakotak, probably. \"No, YOU eat the pepper!\" replied Jojo, also probably. As they argued, a small lizard scuttled by, chasing a smaller fly. The two yordles looked at the lizard, then the pepper, then each other. If lightbulbs existed, one would've gone off.", + "artistName": "Polar Engine", + "name": "Bitsy Lizard", + "cardCode": "05BC015", + "keywords": [], + "keywordRefs": [], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "COMMON", + "rarityRef": "Common", + "subtypes": [], + "supertype": "", + "type": "Unit", + "collectible": true, + "set": "Set5" + }, + { + "associatedCards": [], + "associatedCardRefs": [ + "05BC145T1", + "05BC145T2" + ], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set5/en_us/img/cards/05BC145.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set5/en_us/img/cards/05BC145-full.png" + } + ], + "regions": [ + "Bandle City" + ], + "regionRefs": [ + "BandleCity" + ], + "attack": 2, + "cost": 1, + "health": 1, + "description": "Play: Create a Tiny Spear or a Tiny Shield in hand.", + "descriptionRaw": "Play: Create a Tiny Spear or a Tiny Shield in hand.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"My spear used to belong to a great hero, too... I made Poppy hold it for a minute!\"", + "artistName": "Kudos Productions", + "name": "Yordle Squire", + "cardCode": "05BC145", + "keywords": [], + "keywordRefs": [], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "COMMON", + "rarityRef": "Common", + "subtypes": [ + "YORDLE" + ], + "supertype": "", + "type": "Unit", + "collectible": true, + "set": "Set5" + }, + { + "associatedCards": [], + "associatedCardRefs": [ + "05BC015" + ], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set5/en_us/img/cards/05BC015T1.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set5/en_us/img/cards/05BC015T1-full.png" + } + ], + "regions": [ + "Bandle City" + ], + "regionRefs": [ + "BandleCity" + ], + "attack": 3, + "cost": 2, + "health": 4, + "description": "", + "descriptionRaw": "", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "Jojo and Nakotak screamed out giggles and giggled out screams as they fled. The Lava Lizard's flames had already singed their back fur, consumed trees, and was now starting to melt the delicate snowdrift. It was AWESOME.", + "artistName": "Polar Engine", + "name": "Lava Lizard", + "cardCode": "05BC015T1", + "keywords": [ + "Impact" + ], + "keywordRefs": [ + "Impact" + ], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "None", + "rarityRef": "None", + "subtypes": [], + "supertype": "", + "type": "Unit", + "collectible": false, + "set": "Set5" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set5/en_us/img/cards/05BC140.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set5/en_us/img/cards/05BC140-full.png" + } + ], + "regions": [ + "Bandle City", + "Freljord" + ], + "regionRefs": [ + "BandleCity", + "Freljord" + ], + "attack": 5, + "cost": 5, + "health": 5, + "description": "Attack: Summon an attacking random 1 cost Poro.", + "descriptionRaw": "Attack: Summon an attacking random 1 cost Poro.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"An' den DAT Bobjim da poro was like \"DAT WAY!\" an' so off dey went into da horizahn, with da other poros scamperin' behind, tryin' their bestest to keep up!\" - Ingvar the Younger", + "artistName": "Dao Le", + "name": "Poro Sled", + "cardCode": "05BC140", + "keywords": [ + "Impact" + ], + "keywordRefs": [ + "Impact" + ], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "EPIC", + "rarityRef": "Epic", + "subtypes": [ + "PORO" + ], + "supertype": "", + "type": "Unit", + "collectible": true, + "set": "Set5" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set5/en_us/img/cards/05BC129.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set5/en_us/img/cards/05BC129-full.png" + } + ], + "regions": [ + "Bandle City", + "Noxus" + ], + "regionRefs": [ + "BandleCity", + "Noxus" + ], + "attack": 4, + "cost": 3, + "health": 2, + "description": "", + "descriptionRaw": "", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"There's a sucker born every minute, and I'm gonna take 'em for all they got... this mech arena's gonna be a GOLD MINE.\"", + "artistName": "Kudos Productions", + "name": "Arena Kingpin", + "cardCode": "05BC129", + "keywords": [ + "Quick Attack" + ], + "keywordRefs": [ + "QuickStrike" + ], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "COMMON", + "rarityRef": "Common", + "subtypes": [ + "YORDLE" + ], + "supertype": "", + "type": "Unit", + "collectible": true, + "set": "Set5" + }, + { + "associatedCards": [], + "associatedCardRefs": [ + "05BC195" + ], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set5/en_us/img/cards/05BC004.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set5/en_us/img/cards/05BC004-full.png" + } + ], + "regions": [ + "Bandle City" + ], + "regionRefs": [ + "BandleCity" + ], + "attack": 1, + "cost": 1, + "health": 1, + "description": "When I'm summoned, create a Prank in hand.", + "descriptionRaw": "When I'm summoned, create a Prank in hand.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"Curious and playful, the otterpus are an immensely cheery bunch. Or is it otterpi? Say, didn't I pack a third sandwich?\" \n- Conchologist Ecological Entry, Day 7", + "artistName": "Kudos Productions", + "name": "Otterpus", + "cardCode": "05BC004", + "keywords": [ + "Attune" + ], + "keywordRefs": [ + "Attune" + ], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "COMMON", + "rarityRef": "Common", + "subtypes": [], + "supertype": "", + "type": "Unit", + "collectible": true, + "set": "Set5" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set5/en_us/img/cards/05BC155.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set5/en_us/img/cards/05BC155-full.png" + } + ], + "regions": [ + "Bandle City" + ], + "regionRefs": [ + "BandleCity" + ], + "attack": 2, + "cost": 3, + "health": 3, + "description": "When you summon another ally, grant me +1|+0.", + "descriptionRaw": "When you summon another ally, grant me +1|+0.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"Small sparks become a raging blaze. We are the embers of your destruction!\"", + "artistName": "Kudos Productions", + "name": "Ember Monk", + "cardCode": "05BC155", + "keywords": [ + "Quick Attack" + ], + "keywordRefs": [ + "QuickStrike" + ], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "RARE", + "rarityRef": "Rare", + "subtypes": [ + "YORDLE" + ], + "supertype": "", + "type": "Unit", + "collectible": true, + "set": "Set5" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set5/en_us/img/cards/05BC104.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set5/en_us/img/cards/05BC104-full.png" + } + ], + "regions": [ + "Bandle City" + ], + "regionRefs": [ + "BandleCity" + ], + "attack": 0, + "cost": 4, + "health": 0, + "description": "Grant an ally +2|+2 and Impact.", + "descriptionRaw": "Grant an ally +2|+2 and Impact.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "Yes, he's very cute. Yes, he has a temper. No, you don't want to see it.", + "artistName": "Kudos Productions", + "name": "Primal Strength", + "cardCode": "05BC104", + "keywords": [ + "Burst" + ], + "keywordRefs": [ + "Burst" + ], + "spellSpeed": "Burst", + "spellSpeedRef": "Burst", + "rarity": "COMMON", + "rarityRef": "Common", + "subtypes": [], + "supertype": "", + "type": "Spell", + "collectible": true, + "set": "Set5" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set5/en_us/img/cards/05BC073T1.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set5/en_us/img/cards/05BC073T1-full.png" + } + ], + "regions": [ + "Bandle City" + ], + "regionRefs": [ + "BandleCity" + ], + "attack": 0, + "cost": 1, + "health": 0, + "description": "Countdown 3: or when I'm destroyed: Deal 1 to the enemy Nexus.", + "descriptionRaw": "Countdown 3: or when I'm destroyed: Deal 1 to the enemy Nexus.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"It's a real work of art, isn't it!\" - Giselle, Inventive Chemist", + "artistName": "Kudos Productions", + "name": "Scrappy Bomb", + "cardCode": "05BC073T1", + "keywords": [ + "Countdown", + "Landmark" + ], + "keywordRefs": [ + "Countdown", + "LandmarkVisualOnly" + ], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "None", + "rarityRef": "None", + "subtypes": [], + "supertype": "", + "type": "Landmark", + "collectible": false, + "set": "Set5" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set5/en_us/img/cards/05BC106.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set5/en_us/img/cards/05BC106-full.png" + } + ], + "regions": [ + "Bandle City", + "Bilgewater" + ], + "regionRefs": [ + "BandleCity", + "Bilgewater" + ], + "attack": 2, + "cost": 2, + "health": 3, + "description": "", + "descriptionRaw": "", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"Though quite small, the grumbleslug has a large appetite and possesses what I can only describe as a 'real attitude problem.'\" \n- Conchologist Ecological Entry, Day 17", + "artistName": "Kudos Productions", + "name": "Grumbleslug", + "cardCode": "05BC106", + "keywords": [ + "Attune" + ], + "keywordRefs": [ + "Attune" + ], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "COMMON", + "rarityRef": "Common", + "subtypes": [], + "supertype": "", + "type": "Unit", + "collectible": true, + "set": "Set5" + }, + { + "associatedCards": [], + "associatedCardRefs": [ + "05BC167T1" + ], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set5/en_us/img/cards/05BC218.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set5/en_us/img/cards/05BC218-full.png" + } + ], + "regions": [ + "Bandle City" + ], + "regionRefs": [ + "BandleCity" + ], + "attack": 0, + "cost": 3, + "health": 0, + "description": "Create a Hungry Owlcat in hand, then grant Fae allies in hand +1|+1.", + "descriptionRaw": "Create a Hungry Owlcat in hand, then grant Fae allies in hand +1|+1.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"Who keeps feeding these things?\" - Poppy", + "artistName": "Kudos Productions", + "name": "Fae Aid", + "cardCode": "05BC218", + "keywords": [ + "Burst" + ], + "keywordRefs": [ + "Burst" + ], + "spellSpeed": "Burst", + "spellSpeedRef": "Burst", + "rarity": "RARE", + "rarityRef": "Rare", + "subtypes": [], + "supertype": "", + "type": "Spell", + "collectible": true, + "set": "Set5" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set5/en_us/img/cards/05BC221.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set5/en_us/img/cards/05BC221-full.png" + } + ], + "regions": [ + "Bandle City", + "Ionia" + ], + "regionRefs": [ + "BandleCity", + "Ionia" + ], + "attack": 2, + "cost": 3, + "health": 2, + "description": "When I'm summoned or Round Start: Give me Power this round equal to the number of other allied Fae in play or Attached.", + "descriptionRaw": "When I'm summoned or Round Start: Give me Power this round equal to the number of other allied Fae in play or Attached.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "The little pinheads are rather cute, and by themselves, have mushroom to grow.", + "artistName": "Caravan Studio", + "name": "Mushroom Ring", + "cardCode": "05BC221", + "keywords": [ + "Quick Attack" + ], + "keywordRefs": [ + "QuickStrike" + ], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "RARE", + "rarityRef": "Rare", + "subtypes": [ + "FAE" + ], + "supertype": "", + "type": "Unit", + "collectible": true, + "set": "Set5" + }, + { + "associatedCards": [], + "associatedCardRefs": [ + "05BC168" + ], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set5/en_us/img/cards/05BC168T1.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set5/en_us/img/cards/05BC168T1-full.png" + } + ], + "regions": [ + "Bandle City" + ], + "regionRefs": [ + "BandleCity" + ], + "attack": 6, + "cost": 5, + "health": 7, + "description": "When I transform, deal 1 to all enemies.", + "descriptionRaw": "When I transform, deal 1 to all enemies.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "So, it turns out that poking Nakotak Valley gromps with a stick causes them to react very... expansively! If only those yordles had known this through extensive, generational testing. If. Only.", + "artistName": "Polar Engine", + "name": "Giga Gromp", + "cardCode": "05BC168T1", + "keywords": [ + "Impact" + ], + "keywordRefs": [ + "Impact" + ], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "None", + "rarityRef": "None", + "subtypes": [], + "supertype": "", + "type": "Unit", + "collectible": false, + "set": "Set5" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set5/en_us/img/cards/05BC066T1.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set5/en_us/img/cards/05BC066T1-full.png" + } + ], + "regions": [ + "Bandle City" + ], + "regionRefs": [ + "BandleCity" + ], + "attack": 1, + "cost": 2, + "health": 1, + "description": "Attach me to an ally to give it my stats and keywords while I'm Attached. When that ally leaves play, Recall me.", + "descriptionRaw": "Attach me to an ally to give it my stats and keywords while I'm Attached. When that ally leaves play, Recall me.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"Show 'em what you can do, quills!\" - Yuumi", + "artistName": "Kudos Productions", + "name": "Quick Quill", + "cardCode": "05BC066T1", + "keywords": [ + "Attach", + "Quick Attack" + ], + "keywordRefs": [ + "Attach", + "QuickStrike" + ], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "None", + "rarityRef": "None", + "subtypes": [ + "FAE" + ], + "supertype": "", + "type": "Unit", + "collectible": false, + "set": "Set5" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set5/en_us/img/cards/05BC066T2.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set5/en_us/img/cards/05BC066T2-full.png" + } + ], + "regions": [ + "Bandle City" + ], + "regionRefs": [ + "BandleCity" + ], + "attack": 1, + "cost": 2, + "health": 1, + "description": "", + "descriptionRaw": "", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"W... h... e... r... e... s... N... o... r... r... a...? Oh dear, what should I tell it?\" - Mouse steward", + "artistName": "Kudos Productions", + "name": "Quick Quill", + "cardCode": "05BC066T2", + "keywords": [ + "Quick Attack" + ], + "keywordRefs": [ + "QuickStrike" + ], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "None", + "rarityRef": "None", + "subtypes": [ + "FAE" + ], + "supertype": "", + "type": "Unit", + "collectible": false, + "set": "Set5" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set5/en_us/img/cards/05BC192.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set5/en_us/img/cards/05BC192-full.png" + } + ], + "regions": [ + "Bandle City", + "Shurima" + ], + "regionRefs": [ + "BandleCity", + "Shurima" + ], + "attack": 3, + "cost": 2, + "health": 2, + "description": "When I'm summoned, create a random landmark that costs 2 or less in hand.", + "descriptionRaw": "When I'm summoned, create a random landmark that costs 2 or less in hand.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "The Fussyfoot Bomberator-X did precisely what it was meant to do: sow chaos. Plus, it was easy to parallel park. ", + "artistName": "Kudos Productions", + "name": "Bomber Twins", + "cardCode": "05BC192", + "keywords": [], + "keywordRefs": [], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "COMMON", + "rarityRef": "Common", + "subtypes": [ + "YORDLE" + ], + "supertype": "", + "type": "Unit", + "collectible": true, + "set": "Set5" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set5/en_us/img/cards/05BC169.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set5/en_us/img/cards/05BC169-full.png" + } + ], + "regions": [ + "Bandle City", + "Ionia" + ], + "regionRefs": [ + "BandleCity", + "Ionia" + ], + "attack": 2, + "cost": 4, + "health": 5, + "description": "", + "descriptionRaw": "", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "Now you see him. Now you don't. And now you're dead.", + "artistName": "Envar Studio", + "name": "Shadowtech Walker", + "cardCode": "05BC169", + "keywords": [ + "Elusive", + "Impact" + ], + "keywordRefs": [ + "Elusive", + "Impact" + ], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "None", + "rarityRef": "None", + "subtypes": [ + "MECHA-YORDLE", + "YORDLE" + ], + "supertype": "", + "type": "Unit", + "collectible": false, + "set": "Set5" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set5/en_us/img/cards/05BC162.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set5/en_us/img/cards/05BC162-full.png" + } + ], + "regions": [ + "Bandle City" + ], + "regionRefs": [ + "BandleCity" + ], + "attack": 2, + "cost": 3, + "health": 4, + "description": "When an ally transforms, fully heal it and grant it +1|+1 and Impact.", + "descriptionRaw": "When an ally transforms, fully heal it and grant it +1|+1 and Impact.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "Chief Nakotak declared himself leader of the tribe after finding a large dinosaur bone in the snowdrifts surrounding their lands. None of the others were aware that dinosaur bones equated to tribe leadership, but also none of the others were really all that bothered. So Nakotak it was.", + "artistName": "Dao Le", + "name": "Chief Nakotak", + "cardCode": "05BC162", + "keywords": [], + "keywordRefs": [], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "RARE", + "rarityRef": "Rare", + "subtypes": [ + "YORDLE" + ], + "supertype": "", + "type": "Unit", + "collectible": true, + "set": "Set5" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set5/en_us/img/cards/05BC032.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set5/en_us/img/cards/05BC032-full.png" + } + ], + "regions": [ + "Bandle City" + ], + "regionRefs": [ + "BandleCity" + ], + "attack": 3, + "cost": 3, + "health": 2, + "description": "Each round, the first Fae you play costs 2 less.", + "descriptionRaw": "Each round, the first Fae you play costs 2 less.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"Lantern follows Norra, moon moths follow Lantern, mouses follow moon moths! Follow, follow!\"", + "artistName": "Kudos Productions", + "name": "Gleaming Lantern", + "cardCode": "05BC032", + "keywords": [], + "keywordRefs": [], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "RARE", + "rarityRef": "Rare", + "subtypes": [ + "FAE" + ], + "supertype": "", + "type": "Unit", + "collectible": true, + "set": "Set5" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set5/en_us/img/cards/05BC166.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set5/en_us/img/cards/05BC166-full.png" + } + ], + "regions": [ + "Bandle City" + ], + "regionRefs": [ + "BandleCity" + ], + "attack": 0, + "cost": 2, + "health": 0, + "description": "Deal 1 to anything. Draw 1.", + "descriptionRaw": "Deal 1 to anything. Draw 1.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "The first rule of experimentation: poke it, and see what happens.", + "artistName": "Kudos Productions", + "name": "Pokey Stick", + "cardCode": "05BC166", + "keywords": [ + "Fast" + ], + "keywordRefs": [ + "Fast" + ], + "spellSpeed": "Fast", + "spellSpeedRef": "Fast", + "rarity": "COMMON", + "rarityRef": "Common", + "subtypes": [], + "supertype": "", + "type": "Spell", + "collectible": true, + "set": "Set5" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set5/en_us/img/cards/05BC006.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set5/en_us/img/cards/05BC006-full.png" + } + ], + "regions": [ + "Bandle City" + ], + "regionRefs": [ + "BandleCity" + ], + "attack": 9, + "cost": 8, + "health": 7, + "description": "When I'm summoned, grant me a random keyword for each allied landmark you've destroyed this game. \r\nWhen you destroy an allied landmark, grant me a random keyword.", + "descriptionRaw": "When I'm summoned, grant me a random keyword for each allied landmark you've destroyed this game. \r\nWhen you destroy an allied landmark, grant me a random keyword.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "Wherever Ziggs went, Arnie followed, his serene demeanor a natural foil to Ziggs' chaotic zeal. His duties ranged from making sure the munitions were stocked, to putting out fires, to clapping his hands over Ziggs' ears when Ziggs (inevitably) forgot hearing protection. ", + "artistName": "Kudos Productions", + "name": "The Arsenal", + "cardCode": "05BC006", + "keywords": [], + "keywordRefs": [], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "EPIC", + "rarityRef": "Epic", + "subtypes": [ + "YORDLE" + ], + "supertype": "", + "type": "Unit", + "collectible": true, + "set": "Set5" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set5/en_us/img/cards/05BC110.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set5/en_us/img/cards/05BC110-full.png" + } + ], + "regions": [ + "Bandle City", + "Targon" + ], + "regionRefs": [ + "BandleCity", + "Targon" + ], + "attack": 5, + "cost": 4, + "health": 4, + "description": "", + "descriptionRaw": "", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"Yes, yes, you've told me all about how much she likes tea, socks, you, buttons, and collecting little bits and bobs, but you still haven't told me anything about what she LOOKS like!\" ", + "artistName": "Kudos Productions", + "name": "Scholarly Climber", + "cardCode": "05BC110", + "keywords": [ + "SpellShield" + ], + "keywordRefs": [ + "SpellShield" + ], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "COMMON", + "rarityRef": "Common", + "subtypes": [ + "YORDLE" + ], + "supertype": "", + "type": "Unit", + "collectible": true, + "set": "Set5" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set5/en_us/img/cards/05BC063.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set5/en_us/img/cards/05BC063-full.png" + } + ], + "regions": [ + "Bandle City" + ], + "regionRefs": [ + "BandleCity" + ], + "attack": 2, + "cost": 2, + "health": 2, + "description": "When I'm summoned, grant me +1|+0 and a random keyword.\r\nI keep these stat buffs and keywords when I'm Recalled.", + "descriptionRaw": "When I'm summoned, grant me +1|+0 and a random keyword.\r\nI keep these stat buffs and keywords when I'm Recalled.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "The Tornado maintains her calm with breathing exercises... and by channeling her inner turmoil into a vicious hurricane of deadly blades. ", + "artistName": "Kudos Productions", + "name": "Tornado Warrior", + "cardCode": "05BC063", + "keywords": [], + "keywordRefs": [], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "COMMON", + "rarityRef": "Common", + "subtypes": [ + "YORDLE" + ], + "supertype": "", + "type": "Unit", + "collectible": true, + "set": "Set5" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set5/en_us/img/cards/05BC217.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set5/en_us/img/cards/05BC217-full.png" + } + ], + "regions": [ + "Bandle City" + ], + "regionRefs": [ + "BandleCity" + ], + "attack": 0, + "cost": 1, + "health": 0, + "description": "Manifest a Fae and grant it +1|+1.", + "descriptionRaw": "Manifest a Fae and grant it +1|+1.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "Every living thing requires sustenance. The fae are no different, though it can be hard to tell how exactly they use it.", + "artistName": "Kudos Productions", + "name": "Fae Sprout", + "cardCode": "05BC217", + "keywords": [ + "Burst" + ], + "keywordRefs": [ + "Burst" + ], + "spellSpeed": "Burst", + "spellSpeedRef": "Burst", + "rarity": "RARE", + "rarityRef": "Rare", + "subtypes": [], + "supertype": "", + "type": "Spell", + "collectible": true, + "set": "Set5" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set5/en_us/img/cards/05BC180.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set5/en_us/img/cards/05BC180-full.png" + } + ], + "regions": [ + "Bandle City" + ], + "regionRefs": [ + "BandleCity" + ], + "attack": 0, + "cost": 2, + "health": 0, + "description": "Recall a unit with 3 or less Power.", + "descriptionRaw": "Recall a unit with 3 or less Power.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"We are quick! We are the wind!\" - Kennen", + "artistName": "Kudos Productions", + "name": "Quicken", + "cardCode": "05BC180", + "keywords": [ + "Fast" + ], + "keywordRefs": [ + "Fast" + ], + "spellSpeed": "Fast", + "spellSpeedRef": "Fast", + "rarity": "COMMON", + "rarityRef": "Common", + "subtypes": [], + "supertype": "", + "type": "Spell", + "collectible": true, + "set": "Set5" + }, + { + "associatedCards": [], + "associatedCardRefs": [ + "05BC004" + ], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set5/en_us/img/cards/05BC040.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set5/en_us/img/cards/05BC040-full.png" + } + ], + "regions": [ + "Bandle City" + ], + "regionRefs": [ + "BandleCity" + ], + "attack": 0, + "cost": 1, + "health": 0, + "description": "Manifest an Otterpus or one of 2 spells from your regions that cost 3 or less.", + "descriptionRaw": "Manifest an Otterpus or one of 2 spells from your regions that cost 3 or less.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"Unhand my sandwich this instant!\" - Conchologist", + "artistName": "Kudos Productions", + "name": "Trinket Trade", + "cardCode": "05BC040", + "keywords": [ + "Burst" + ], + "keywordRefs": [ + "Burst" + ], + "spellSpeed": "Burst", + "spellSpeedRef": "Burst", + "rarity": "RARE", + "rarityRef": "Rare", + "subtypes": [], + "supertype": "", + "type": "Spell", + "collectible": true, + "set": "Set5" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set5/en_us/img/cards/05BC213.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set5/en_us/img/cards/05BC213-full.png" + } + ], + "regions": [ + "Bandle City" + ], + "regionRefs": [ + "BandleCity" + ], + "attack": 0, + "cost": 3, + "health": 0, + "description": "Deal 1 to an enemy and Stun it. ", + "descriptionRaw": "Deal 1 to an enemy and Stun it. ", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"Ahanga!\" - Gnar", + "artistName": "Kudos Productions", + "name": "Wallop", + "cardCode": "05BC213", + "keywords": [ + "Fast" + ], + "keywordRefs": [ + "Fast" + ], + "spellSpeed": "Fast", + "spellSpeedRef": "Fast", + "rarity": "COMMON", + "rarityRef": "Common", + "subtypes": [], + "supertype": "", + "type": "Spell", + "collectible": true, + "set": "Set5" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set5/en_us/img/cards/05BC208.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set5/en_us/img/cards/05BC208-full.png" + } + ], + "regions": [ + "Bandle City" + ], + "regionRefs": [ + "BandleCity" + ], + "attack": 0, + "cost": 5, + "health": 0, + "description": "An ally strikes an enemy. If it survives, Stun it.", + "descriptionRaw": "An ally strikes an enemy. If it survives, Stun it.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"Move it!\" - Poppy", + "artistName": "Kudos Productions", + "name": "Heroic Charge", + "cardCode": "05BC208", + "keywords": [ + "Slow" + ], + "keywordRefs": [ + "Slow" + ], + "spellSpeed": "Slow", + "spellSpeedRef": "Slow", + "rarity": "RARE", + "rarityRef": "Rare", + "subtypes": [], + "supertype": "", + "type": "Spell", + "collectible": true, + "set": "Set5" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set5/en_us/img/cards/05BC085.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set5/en_us/img/cards/05BC085-full.png" + } + ], + "regions": [ + "Bandle City" + ], + "regionRefs": [ + "BandleCity" + ], + "attack": 3, + "cost": 3, + "health": 2, + "description": "Play: Discard 1 to Manifest a Mecha-Yordle and grant it SpellShield.", + "descriptionRaw": "Play: Discard 1 to Manifest a Mecha-Yordle and grant it SpellShield.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"Turn it down, will ya?! I can barely hear myself counting all this money!\" - Karl, Arena Kingpin", + "artistName": "Envar Studio", + "name": "Bilgerat Rascal", + "cardCode": "05BC085", + "keywords": [], + "keywordRefs": [], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "RARE", + "rarityRef": "Rare", + "subtypes": [ + "YORDLE" + ], + "supertype": "", + "type": "Unit", + "collectible": true, + "set": "Set5" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set5/en_us/img/cards/05BC135.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set5/en_us/img/cards/05BC135-full.png" + } + ], + "regions": [ + "Bandle City" + ], + "regionRefs": [ + "BandleCity" + ], + "attack": 0, + "cost": 6, + "health": 0, + "description": "An ally strikes an enemy. If the ally is multi-region, it strikes the enemy again.", + "descriptionRaw": "An ally strikes an enemy. If the ally is multi-region, it strikes the enemy again.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"The Acorn M1-85: a fully-automatic, oak caliber rifle with a bandlewood scope, and a purpleberry finish. Yeah, mama's cookin' up something good tonight!\" - Bandle Commando", + "artistName": "Kudos Productions", + "name": "Double Tap", + "cardCode": "05BC135", + "keywords": [ + "Fast" + ], + "keywordRefs": [ + "Fast" + ], + "spellSpeed": "Fast", + "spellSpeedRef": "Fast", + "rarity": "COMMON", + "rarityRef": "Common", + "subtypes": [], + "supertype": "", + "type": "Spell", + "collectible": true, + "set": "Set5" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set5/en_us/img/cards/05BC084.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set5/en_us/img/cards/05BC084-full.png" + } + ], + "regions": [ + "Bandle City" + ], + "regionRefs": [ + "BandleCity" + ], + "attack": 1, + "cost": 2, + "health": 2, + "description": "Play: Discard 1 to Manifest a Mecha-Yordle.", + "descriptionRaw": "Play: Discard 1 to Manifest a Mecha-Yordle.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "Small stature, BIG personality.", + "artistName": "Envar Studio", + "name": "Squeaker", + "cardCode": "05BC084", + "keywords": [ + "Augment" + ], + "keywordRefs": [ + "Augment" + ], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "COMMON", + "rarityRef": "Common", + "subtypes": [], + "supertype": "", + "type": "Unit", + "collectible": true, + "set": "Set5" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set5/en_us/img/cards/05BC171.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set5/en_us/img/cards/05BC171-full.png" + } + ], + "regions": [ + "Bandle City", + "Targon" + ], + "regionRefs": [ + "BandleCity", + "Targon" + ], + "attack": 1, + "cost": 2, + "health": 4, + "description": "Support: Give my supported ally SpellShield and +2|+2 this round.", + "descriptionRaw": "Support: Give my supported ally SpellShield and +2|+2 this round.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "Powered by gems mined from the caves beneath Bandle City, the Mechaforcer emits a defensive shield that can withstand even the strongest of weapons. It's pretty to look at too.\n", + "artistName": "Caravan Studio", + "name": "Geode Mechaforcer", + "cardCode": "05BC171", + "keywords": [ + "Impact", + "Support" + ], + "keywordRefs": [ + "Impact", + "Support" + ], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "None", + "rarityRef": "None", + "subtypes": [ + "MECHA-YORDLE", + "YORDLE" + ], + "supertype": "", + "type": "Unit", + "collectible": false, + "set": "Set5" + }, + { + "associatedCards": [], + "associatedCardRefs": [ + "05BC167T1" + ], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set5/en_us/img/cards/05BC184.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set5/en_us/img/cards/05BC184-full.png" + } + ], + "regions": [ + "Bandle City" + ], + "regionRefs": [ + "BandleCity" + ], + "attack": 2, + "cost": 3, + "health": 4, + "description": "When I'm summoned, create a Hungry Owlcat in hand. ", + "descriptionRaw": "When I'm summoned, create a Hungry Owlcat in hand. ", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"This is a song\nAbout Poppy the strong!\nPoppy the mightiest, frightiest... sprong!\" \n- Scratched-out lyrics from the 'Songbook of Reginaldactyl and Faltimisquee, Bards Extraordinaire'", + "artistName": "Dao Le", + "name": "Babbling Balladeers", + "cardCode": "05BC184", + "keywords": [], + "keywordRefs": [], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "COMMON", + "rarityRef": "Common", + "subtypes": [ + "YORDLE" + ], + "supertype": "", + "type": "Unit", + "collectible": true, + "set": "Set5" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set5/en_us/img/cards/05BC080.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set5/en_us/img/cards/05BC080-full.png" + } + ], + "regions": [ + "Bandle City" + ], + "regionRefs": [ + "BandleCity" + ], + "attack": 4, + "cost": 3, + "health": 4, + "description": "When I'm summoned, grant me Impact twice.", + "descriptionRaw": "When I'm summoned, grant me Impact twice.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"I didn't choose the smash life, the smash life chose ME!\"\n- Post-match interview", + "artistName": "Envar Studio", + "name": "Smash & Dash", + "cardCode": "05BC080", + "keywords": [], + "keywordRefs": [], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "None", + "rarityRef": "None", + "subtypes": [ + "MECHA-YORDLE", + "YORDLE" + ], + "supertype": "", + "type": "Unit", + "collectible": false, + "set": "Set5" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set5/en_us/img/cards/05BC116.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set5/en_us/img/cards/05BC116-full.png" + } + ], + "regions": [ + "Bandle City" + ], + "regionRefs": [ + "BandleCity" + ], + "attack": 2, + "cost": 3, + "health": 2, + "description": "Each round, the first multi-region unit you play costs 1 less.\r\nPlay: Manifest a multi-region follower.", + "descriptionRaw": "Each round, the first multi-region unit you play costs 1 less.\r\nPlay: Manifest a multi-region follower.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "It's unclear whether Bandle City ever really elected a mayor, but an enormous mustache would almost certainly be a prerequisite.", + "artistName": "Polar Engine", + "name": "Bandle City Mayor", + "cardCode": "05BC116", + "keywords": [], + "keywordRefs": [], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "EPIC", + "rarityRef": "Epic", + "subtypes": [ + "YORDLE" + ], + "supertype": "", + "type": "Unit", + "collectible": true, + "set": "Set5" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set5/en_us/img/cards/05BC111.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set5/en_us/img/cards/05BC111-full.png" + } + ], + "regions": [ + "Bandle City" + ], + "regionRefs": [ + "BandleCity" + ], + "attack": 0, + "cost": 5, + "health": 0, + "description": "Give allies +2|+2 this round. If you've played cards from 4+ regions, give allies +3|+3 instead. ", + "descriptionRaw": "Give allies +2|+2 this round. If you've played cards from 4+ regions, give allies +3|+3 instead. ", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"We... look so cool right now.\" - Tristana", + "artistName": "Kudos Productions", + "name": "Yordles in Arms ", + "cardCode": "05BC111", + "keywords": [ + "Slow" + ], + "keywordRefs": [ + "Slow" + ], + "spellSpeed": "Slow", + "spellSpeedRef": "Slow", + "rarity": "RARE", + "rarityRef": "Rare", + "subtypes": [], + "supertype": "", + "type": "Spell", + "collectible": true, + "set": "Set5" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set5/en_us/img/cards/05BC145T2.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set5/en_us/img/cards/05BC145T2-full.png" + } + ], + "regions": [ + "Bandle City" + ], + "regionRefs": [ + "BandleCity" + ], + "attack": 0, + "cost": 1, + "health": 0, + "description": "Grant an ally +0|+1.", + "descriptionRaw": "Grant an ally +0|+1.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"I found it! But you can use it!!\" - Yordle Squire", + "artistName": "Kudos Productions", + "name": "Tiny Shield", + "cardCode": "05BC145T2", + "keywords": [ + "Focus" + ], + "keywordRefs": [ + "Focus" + ], + "spellSpeed": "Burst", + "spellSpeedRef": "Burst", + "rarity": "None", + "rarityRef": "None", + "subtypes": [], + "supertype": "", + "type": "Spell", + "collectible": false, + "set": "Set5" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set5/en_us/img/cards/05BC145T1.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set5/en_us/img/cards/05BC145T1-full.png" + } + ], + "regions": [ + "Bandle City" + ], + "regionRefs": [ + "BandleCity" + ], + "attack": 0, + "cost": 1, + "health": 0, + "description": "Grant an ally +1|+0.", + "descriptionRaw": "Grant an ally +1|+0.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"A small spear is still a spear.\" - Yordle saying, probably", + "artistName": "Kudos Productions", + "name": "Tiny Spear", + "cardCode": "05BC145T1", + "keywords": [ + "Focus" + ], + "keywordRefs": [ + "Focus" + ], + "spellSpeed": "Burst", + "spellSpeedRef": "Burst", + "rarity": "None", + "rarityRef": "None", + "subtypes": [], + "supertype": "", + "type": "Spell", + "collectible": false, + "set": "Set5" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set5/en_us/img/cards/05BC224.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set5/en_us/img/cards/05BC224-full.png" + } + ], + "regions": [ + "Bandle City" + ], + "regionRefs": [ + "BandleCity" + ], + "attack": 0, + "cost": 4, + "health": 0, + "description": "Recall an ally. The next ally you play this round with equal or less cost, costs 0 instead.", + "descriptionRaw": "Recall an ally. The next ally you play this round with equal or less cost, costs 0 instead.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"Speed of body, speed of mind!\" - Kennen", + "artistName": "Kudos Productions", + "name": "Transposition", + "cardCode": "05BC224", + "keywords": [ + "Fast" + ], + "keywordRefs": [ + "Fast" + ], + "spellSpeed": "Fast", + "spellSpeedRef": "Fast", + "rarity": "RARE", + "rarityRef": "Rare", + "subtypes": [], + "supertype": "", + "type": "Spell", + "collectible": true, + "set": "Set5" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set5/en_us/img/cards/05BC130.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set5/en_us/img/cards/05BC130-full.png" + } + ], + "regions": [ + "Bandle City", + "Shurima" + ], + "regionRefs": [ + "BandleCity", + "Shurima" + ], + "attack": 3, + "cost": 3, + "health": 3, + "description": "Attack: Grant the top champion in your deck +1|+1 and a random keyword.", + "descriptionRaw": "Attack: Grant the top champion in your deck +1|+1 and a random keyword.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "Otto's summer barbecues had something of a reputation. While enthusiastic about grilling, he left his guests few choices for the steaks other than \"well done\" or \"extremely well done\".", + "artistName": "Kudos Productions", + "name": "Hothead", + "cardCode": "05BC130", + "keywords": [], + "keywordRefs": [], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "COMMON", + "rarityRef": "Common", + "subtypes": [ + "YORDLE" + ], + "supertype": "", + "type": "Unit", + "collectible": true, + "set": "Set5" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set5/en_us/img/cards/05BC191.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set5/en_us/img/cards/05BC191-full.png" + } + ], + "regions": [ + "Bandle City" + ], + "regionRefs": [ + "BandleCity" + ], + "attack": 0, + "cost": 6, + "health": 0, + "description": "Place an enemy unit on top of the enemy deck. ", + "descriptionRaw": "Place an enemy unit on top of the enemy deck. ", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"And don't come back!\" - Poppy", + "artistName": "Kudos Productions", + "name": "Keeper's Verdict", + "cardCode": "05BC191", + "keywords": [ + "Slow" + ], + "keywordRefs": [ + "Slow" + ], + "spellSpeed": "Slow", + "spellSpeedRef": "Slow", + "rarity": "RARE", + "rarityRef": "Rare", + "subtypes": [], + "supertype": "", + "type": "Spell", + "collectible": true, + "set": "Set5" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set5/en_us/img/cards/05BC112T2.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set5/en_us/img/cards/05BC112T2-full.png" + } + ], + "regions": [ + "Bandle City", + "Ionia" + ], + "regionRefs": [ + "BandleCity", + "Ionia" + ], + "attack": 2, + "cost": 2, + "health": 2, + "description": "Play: Give me Barrier this round.", + "descriptionRaw": "Play: Give me Barrier this round.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "... some will stand their ground!", + "artistName": "Caravan Studio", + "name": "Blastcone Seedling", + "cardCode": "05BC112T2", + "keywords": [], + "keywordRefs": [], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "None", + "rarityRef": "None", + "subtypes": [ + "FAE" + ], + "supertype": "", + "type": "Unit", + "collectible": false, + "set": "Set5" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set5/en_us/img/cards/05BC112T1.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set5/en_us/img/cards/05BC112T1-full.png" + } + ], + "regions": [ + "Bandle City", + "Ionia" + ], + "regionRefs": [ + "BandleCity", + "Ionia" + ], + "attack": 2, + "cost": 2, + "health": 2, + "description": "Play: Grant me Impact.", + "descriptionRaw": "Play: Grant me Impact.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "... some will attack!", + "artistName": "Caravan Studio", + "name": "Blastcone Seedling", + "cardCode": "05BC112T1", + "keywords": [], + "keywordRefs": [], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "None", + "rarityRef": "None", + "subtypes": [ + "FAE" + ], + "supertype": "", + "type": "Unit", + "collectible": false, + "set": "Set5" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set5/en_us/img/cards/05BC052.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set5/en_us/img/cards/05BC052-full.png" + } + ], + "regions": [ + "Bandle City" + ], + "regionRefs": [ + "BandleCity" + ], + "attack": 0, + "cost": 10, + "health": 0, + "description": "Fill your hand with random cards. They cost 0 and areFleeting. You can only play 3 more cards this round.", + "descriptionRaw": "Fill your hand with random cards. They cost 0 and areFleeting. You can only play 3 more cards this round.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "One mortal's trash is another yordle's giant pile of scrap parts.\n", + "artistName": "Kudos Productions", + "name": "Treasured Trash", + "cardCode": "05BC052", + "keywords": [ + "Slow" + ], + "keywordRefs": [ + "Slow" + ], + "spellSpeed": "Slow", + "spellSpeedRef": "Slow", + "rarity": "RARE", + "rarityRef": "Rare", + "subtypes": [], + "supertype": "", + "type": "Spell", + "collectible": true, + "set": "Set5" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set5/en_us/img/cards/05BC089.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set5/en_us/img/cards/05BC089-full.png" + } + ], + "regions": [ + "Bandle City", + "Demacia" + ], + "regionRefs": [ + "BandleCity", + "Demacia" + ], + "attack": 5, + "cost": 5, + "health": 5, + "description": "When I'm summoned, grant other allies +1|+1.", + "descriptionRaw": "When I'm summoned, grant other allies +1|+1.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "The mechs and yordles were bruised, battered, beaten. Then a clarion call sounded, granting them new steam, new life: Doot doot!", + "artistName": "Envar Studio", + "name": "Trumpetecher", + "cardCode": "05BC089", + "keywords": [ + "Impact" + ], + "keywordRefs": [ + "Impact" + ], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "None", + "rarityRef": "None", + "subtypes": [ + "MECHA-YORDLE", + "YORDLE" + ], + "supertype": "", + "type": "Unit", + "collectible": false, + "set": "Set5" + }, + { + "associatedCards": [], + "associatedCardRefs": [ + "05BC195" + ], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set5/en_us/img/cards/05BC050.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set5/en_us/img/cards/05BC050-full.png" + } + ], + "regions": [ + "Bandle City" + ], + "regionRefs": [ + "BandleCity" + ], + "attack": 4, + "cost": 4, + "health": 3, + "description": "When I'm summoned, create 2 Pranks in hand.", + "descriptionRaw": "When I'm summoned, create 2 Pranks in hand.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"Those who are prone to nausea should approach this gentle giant with EXTREME caution. Your insides will thank you... On a related note, I really shouldn't have eaten that second mushroom sandwich...\" \n- Conchologist Ecological Entry, Day 3", + "artistName": "Kudos Productions", + "name": "Benemone", + "cardCode": "05BC050", + "keywords": [], + "keywordRefs": [], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "COMMON", + "rarityRef": "Common", + "subtypes": [], + "supertype": "", + "type": "Unit", + "collectible": true, + "set": "Set5" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set5/en_us/img/cards/05BC021T1.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set5/en_us/img/cards/05BC021T1-full.png" + } + ], + "regions": [ + "Bandle City" + ], + "regionRefs": [ + "BandleCity" + ], + "attack": 0, + "cost": 3, + "health": 0, + "description": "Deal 2 to a unit.", + "descriptionRaw": "Deal 2 to a unit.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"Fire in the hole!\" - Ziggs", + "artistName": "Kudos Productions", + "name": "Bouncing Bomb", + "cardCode": "05BC021T1", + "keywords": [ + "Slow" + ], + "keywordRefs": [ + "Slow" + ], + "spellSpeed": "Slow", + "spellSpeedRef": "Slow", + "rarity": "None", + "rarityRef": "None", + "subtypes": [], + "supertype": "", + "type": "Spell", + "collectible": false, + "set": "Set5" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set5/en_us/img/cards/05BC021T2.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set5/en_us/img/cards/05BC021T2-full.png" + } + ], + "regions": [ + "Bandle City" + ], + "regionRefs": [ + "BandleCity" + ], + "attack": 0, + "cost": 3, + "health": 0, + "description": "Deal 1 to two enemies.", + "descriptionRaw": "Deal 1 to two enemies.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"Fire in the hole!\" - Ziggs", + "artistName": "Kudos Productions", + "name": "Bouncing Bomb", + "cardCode": "05BC021T2", + "keywords": [ + "Slow" + ], + "keywordRefs": [ + "Slow" + ], + "spellSpeed": "Slow", + "spellSpeedRef": "Slow", + "rarity": "None", + "rarityRef": "None", + "subtypes": [], + "supertype": "", + "type": "Spell", + "collectible": false, + "set": "Set5" + }, + { + "associatedCards": [], + "associatedCardRefs": [ + "05SI029" + ], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set5/en_us/img/cards/05BC094.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set5/en_us/img/cards/05BC094-full.png" + } + ], + "regions": [ + "Bandle City" + ], + "regionRefs": [ + "BandleCity" + ], + "attack": 2, + "cost": 2, + "health": 2, + "description": "When I'm summoned, create a Darkness in hand if you don't have one. ", + "descriptionRaw": "When I'm summoned, create a Darkness in hand if you don't have one. ", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"Yes, I'm quite sure the fellow up on the roof has many stories to tell. We all know he has lots to say. We just don't have any idea exactly WHAT it is he's saying.\" - Stilted Robemaker", + "artistName": "Kudos Productions", + "name": "Darkbulb Acolyte", + "cardCode": "05BC094", + "keywords": [ + "Augment" + ], + "keywordRefs": [ + "Augment" + ], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "COMMON", + "rarityRef": "Common", + "subtypes": [ + "YORDLE" + ], + "supertype": "", + "type": "Unit", + "collectible": true, + "set": "Set5" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set5/en_us/img/cards/05BC001T1.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set5/en_us/img/cards/05BC001T1-full.png" + } + ], + "regions": [ + "Bandle City" + ], + "regionRefs": [ + "BandleCity" + ], + "attack": 3, + "cost": 3, + "health": 3, + "description": "", + "descriptionRaw": "", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "Oh, the wee minitee!", + "artistName": "Polar Engine", + "name": "Mini-Minitee", + "cardCode": "05BC001T1", + "keywords": [], + "keywordRefs": [], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "None", + "rarityRef": "None", + "subtypes": [], + "supertype": "", + "type": "Unit", + "collectible": false, + "set": "Set5" + }, + { + "associatedCards": [], + "associatedCardRefs": [ + "05BC014" + ], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set5/en_us/img/cards/05BC014T1.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set5/en_us/img/cards/05BC014T1-full.png" + } + ], + "regions": [ + "Bandle City" + ], + "regionRefs": [ + "BandleCity" + ], + "attack": 6, + "cost": 4, + "health": 5, + "description": "Round Start: Deal 1 to the enemy Nexus.", + "descriptionRaw": "Round Start: Deal 1 to the enemy Nexus.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "Once enraged, the Terrordactyls tear erratically through the skies, leaving mayhem and enraptured yordles in their colorful wake.", + "artistName": "Caravan Studio", + "name": "Terrordactyl", + "cardCode": "05BC014T1", + "keywords": [ + "Impact" + ], + "keywordRefs": [ + "Impact" + ], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "None", + "rarityRef": "None", + "subtypes": [], + "supertype": "", + "type": "Unit", + "collectible": false, + "set": "Set5" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set5/en_us/img/cards/05BC146.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set5/en_us/img/cards/05BC146-full.png" + } + ], + "regions": [ + "Bandle City" + ], + "regionRefs": [ + "BandleCity" + ], + "attack": 2, + "cost": 3, + "health": 3, + "description": "Play: Discard 1 to create a multi-region follower in hand.", + "descriptionRaw": "Play: Discard 1 to create a multi-region follower in hand.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"Painting's not about copying what you see, it's about expressing how YOU see the world. And right now, I'm seeing that you moved again. Hold still please!\"", + "artistName": "Dao Le", + "name": "Bandle Painter", + "cardCode": "05BC146", + "keywords": [ + "Augment" + ], + "keywordRefs": [ + "Augment" + ], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "COMMON", + "rarityRef": "Common", + "subtypes": [ + "YORDLE" + ], + "supertype": "", + "type": "Unit", + "collectible": true, + "set": "Set5" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set5/en_us/img/cards/05BC235.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set5/en_us/img/cards/05BC235-full.png" + } + ], + "regions": [ + "Bandle City" + ], + "regionRefs": [ + "BandleCity" + ], + "attack": 2, + "cost": 2, + "health": 2, + "description": "Attack: Give all allies with equal or less Power than me Quick Attack this round.", + "descriptionRaw": "Attack: Give all allies with equal or less Power than me Quick Attack this round.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"Poppy never listens t'me, so you better: It's not about the hammer, it's about the yordle who swings it.\"\n", + "artistName": "Kudos Productions", + "name": "Yordle Smith", + "cardCode": "05BC235", + "keywords": [], + "keywordRefs": [], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "COMMON", + "rarityRef": "Common", + "subtypes": [ + "YORDLE" + ], + "supertype": "", + "type": "Unit", + "collectible": true, + "set": "Set5" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set5/en_us/img/cards/05BC175.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set5/en_us/img/cards/05BC175-full.png" + } + ], + "regions": [ + "Bandle City", + "Targon" + ], + "regionRefs": [ + "BandleCity", + "Targon" + ], + "attack": 2, + "cost": 3, + "health": 2, + "description": "Play: Manifest a Celestial that costs 3 or less, Epic, or multi-region follower.", + "descriptionRaw": "Play: Manifest a Celestial that costs 3 or less, Epic, or multi-region follower.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "The strangest part wasn't that the telescope got up, stretched, and started walking around, but that it insisted on dressing for the weather, so it had to find a suitably comfortable scarf.", + "artistName": "Kudos Productions", + "name": "Loping Telescope", + "cardCode": "05BC175", + "keywords": [], + "keywordRefs": [], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "RARE", + "rarityRef": "Rare", + "subtypes": [ + "FAE" + ], + "supertype": "", + "type": "Unit", + "collectible": true, + "set": "Set5" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set5/en_us/img/cards/05BC182.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set5/en_us/img/cards/05BC182-full.png" + } + ], + "regions": [ + "Bandle City" + ], + "regionRefs": [ + "BandleCity" + ], + "attack": 0, + "cost": 3, + "health": 0, + "description": "Recall an ally to deal 2 to anything.", + "descriptionRaw": "Recall an ally to deal 2 to anything.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"First the crack, then the boom!\" - Kennen", + "artistName": "Kudos Productions", + "name": "Lightning Rush", + "cardCode": "05BC182", + "keywords": [ + "Fast" + ], + "keywordRefs": [ + "Fast" + ], + "spellSpeed": "Fast", + "spellSpeedRef": "Fast", + "rarity": "RARE", + "rarityRef": "Rare", + "subtypes": [], + "supertype": "", + "type": "Spell", + "collectible": true, + "set": "Set5" + }, + { + "associatedCards": [], + "associatedCardRefs": [ + "05BC164" + ], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set5/en_us/img/cards/05BC069.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set5/en_us/img/cards/05BC069-full.png" + } + ], + "regions": [ + "Bandle City" + ], + "regionRefs": [ + "BandleCity" + ], + "attack": 3, + "cost": 4, + "health": 5, + "description": "Attack: Create a Fleeting Poison Dart in hand.", + "descriptionRaw": "Attack: Create a Fleeting Poison Dart in hand.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "Don't get him started.", + "artistName": "Kudos Productions", + "name": "Lecturing Yordle", + "cardCode": "05BC069", + "keywords": [], + "keywordRefs": [], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "RARE", + "rarityRef": "Rare", + "subtypes": [ + "YORDLE" + ], + "supertype": "", + "type": "Unit", + "collectible": true, + "set": "Set5" + }, + { + "associatedCards": [], + "associatedCardRefs": [ + "05SI029" + ], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set5/en_us/img/cards/05BC057.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set5/en_us/img/cards/05BC057-full.png" + } + ], + "regions": [ + "Bandle City" + ], + "regionRefs": [ + "BandleCity" + ], + "attack": 3, + "cost": 4, + "health": 4, + "description": "When I'm summoned, reduce the cost of your Darkness everywhere by 1.", + "descriptionRaw": "When I'm summoned, reduce the cost of your Darkness everywhere by 1.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"It is important, when assembling one's cabal, that each maniacal member brings something unique to the supervillain table. One of my fellows, for instance, has a lethal sense of style...\"\n- Excerpt from Ch. 4 of \"How to be a Supervillain\", by Lord Veigar", + "artistName": "Kudos Productions", + "name": "Stilted Robemaker", + "cardCode": "05BC057", + "keywords": [], + "keywordRefs": [], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "RARE", + "rarityRef": "Rare", + "subtypes": [ + "YORDLE" + ], + "supertype": "", + "type": "Unit", + "collectible": true, + "set": "Set5" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set5/en_us/img/cards/05BC108.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set5/en_us/img/cards/05BC108-full.png" + } + ], + "regions": [ + "Bandle City" + ], + "regionRefs": [ + "BandleCity" + ], + "attack": 2, + "cost": 2, + "health": 2, + "description": "When you summon another Yordle, grant it +1|+0.", + "descriptionRaw": "When you summon another Yordle, grant it +1|+0.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"Priceless is the glory of exploration, but the greatest discoveries are always... ahem... profitable.\"", + "artistName": "Alessandro Poli", + "name": "Yordle Explorer", + "cardCode": "05BC108", + "keywords": [], + "keywordRefs": [], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "COMMON", + "rarityRef": "Common", + "subtypes": [ + "YORDLE" + ], + "supertype": "", + "type": "Unit", + "collectible": true, + "set": "Set5" + }, + { + "associatedCards": [], + "associatedCardRefs": [ + "05BC167T1" + ], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set5/en_us/img/cards/05BC183.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set5/en_us/img/cards/05BC183-full.png" + } + ], + "regions": [ + "Bandle City", + "Ionia" + ], + "regionRefs": [ + "BandleCity", + "Ionia" + ], + "attack": 1, + "cost": 2, + "health": 2, + "description": "When I'm summoned, create a Hungry Owlcat in hand.\r\nWhen you summon another Fae, grant it +1|+0.", + "descriptionRaw": "When I'm summoned, create a Hungry Owlcat in hand.\r\nWhen you summon another Fae, grant it +1|+0.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"Gather 'round, hear what I say,\nThe sad tale of Grandfather Fae.\nEach day he'd feed the hungry birds,\nAn odd mixture of seed and curds...\"\n- Bandle City Tall Tale", + "artistName": "Caravan Studio", + "name": "Grandfather Fae", + "cardCode": "05BC183", + "keywords": [], + "keywordRefs": [], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "RARE", + "rarityRef": "Rare", + "subtypes": [ + "FAE" + ], + "supertype": "", + "type": "Unit", + "collectible": true, + "set": "Set5" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set5/en_us/img/cards/05BC188.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set5/en_us/img/cards/05BC188-full.png" + } + ], + "regions": [ + "Bandle City" + ], + "regionRefs": [ + "BandleCity" + ], + "attack": 4, + "cost": 6, + "health": 4, + "description": "When you pick a non-champion card from randomly selected options, create a copy in hand and reduce its cost by 1.", + "descriptionRaw": "When you pick a non-champion card from randomly selected options, create a copy in hand and reduce its cost by 1.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "Famously shy, the elusive shellfolk are known to hide in their shells until their curiosity gets the better of them. Once emerged, their playful personalities become fully engaged, including a propensity to play tricks by expertly mimicking the sound of other sea life.", + "artistName": "Kudos Productions", + "name": "Curious Shellfolk", + "cardCode": "05BC188", + "keywords": [], + "keywordRefs": [], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "EPIC", + "rarityRef": "Epic", + "subtypes": [], + "supertype": "", + "type": "Unit", + "collectible": true, + "set": "Set5" + }, + { + "associatedCards": [], + "associatedCardRefs": [ + "05FR001T1" + ], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set5/en_us/img/cards/05FR001.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set5/en_us/img/cards/05FR001-full.png" + } + ], + "regions": [ + "Freljord" + ], + "regionRefs": [ + "Freljord" + ], + "attack": 2, + "cost": 4, + "health": 4, + "description": "Round End: If you've damaged the enemy Nexus this round, transform me into Murkwolf Rager.", + "descriptionRaw": "Round End: If you've damaged the enemy Nexus this round, transform me into Murkwolf Rager.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"We do not die as cowards! Instead, we fall with claws drawn and teeth bared. In doing so, we honor The Wolf.\" - Hyara Allseer", + "artistName": "Kudos Productions", + "name": "Murkwolf Shaman", + "cardCode": "05FR001", + "keywords": [ + "Regeneration" + ], + "keywordRefs": [ + "Regeneration" + ], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "COMMON", + "rarityRef": "Common", + "subtypes": [], + "supertype": "", + "type": "Unit", + "collectible": true, + "set": "Set5" + }, + { + "associatedCards": [], + "associatedCardRefs": [ + "05FR001" + ], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set5/en_us/img/cards/05FR001T1.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set5/en_us/img/cards/05FR001T1-full.png" + } + ], + "regions": [ + "Freljord" + ], + "regionRefs": [ + "Freljord" + ], + "attack": 4, + "cost": 4, + "health": 6, + "description": "When I transform, draw a unit.", + "descriptionRaw": "When I transform, draw a unit.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "A shaman of the Murkwolf never truly dies alone. In death, they are joined by the spirits of other fallen shaman and begin their journey through the Great Beyond as a new pack.", + "artistName": "Kudos Productions", + "name": "Murkwolf Rager", + "cardCode": "05FR001T1", + "keywords": [ + "Regeneration" + ], + "keywordRefs": [ + "Regeneration" + ], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "None", + "rarityRef": "None", + "subtypes": [], + "supertype": "", + "type": "Unit", + "collectible": false, + "set": "Set5" + }, + { + "associatedCards": [], + "associatedCardRefs": [ + "05FR002T1" + ], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set5/en_us/img/cards/05FR002.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set5/en_us/img/cards/05FR002-full.png" + } + ], + "regions": [ + "Freljord" + ], + "regionRefs": [ + "Freljord" + ], + "attack": 4, + "cost": 6, + "health": 4, + "description": "Round End: If you've damaged the enemy Nexus this round, transform me into Mammoth Rager.", + "descriptionRaw": "Round End: If you've damaged the enemy Nexus this round, transform me into Mammoth Rager.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "When faced with predators, mammoth herds will surround their young calves and pregnant cows. And so the shamans of the great mammoth spirit call not just upon their spirit's physical strength but also upon the strength of unity with which it protects its family.", + "artistName": "Kudos Productions", + "name": "Mammoth Shaman", + "cardCode": "05FR002", + "keywords": [ + "Overwhelm" + ], + "keywordRefs": [ + "Overwhelm" + ], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "RARE", + "rarityRef": "Rare", + "subtypes": [], + "supertype": "", + "type": "Unit", + "collectible": true, + "set": "Set5" + }, + { + "associatedCards": [], + "associatedCardRefs": [ + "05FR002" + ], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set5/en_us/img/cards/05FR002T1.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set5/en_us/img/cards/05FR002T1-full.png" + } + ], + "regions": [ + "Freljord" + ], + "regionRefs": [ + "Freljord" + ], + "attack": 6, + "cost": 6, + "health": 6, + "description": "Round Start: Grant me +2|+2.", + "descriptionRaw": "Round Start: Grant me +2|+2.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "Few Freljodian beasts are as fearsome as a mammoth protecting its herd.", + "artistName": "Kudos Productions", + "name": "Mammoth Rager", + "cardCode": "05FR002T1", + "keywords": [ + "Overwhelm" + ], + "keywordRefs": [ + "Overwhelm" + ], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "None", + "rarityRef": "None", + "subtypes": [], + "supertype": "", + "type": "Unit", + "collectible": false, + "set": "Set5" + }, + { + "associatedCards": [], + "associatedCardRefs": [ + "05FR013T4", + "05FR010", + "05FR010T2", + "05FR010T1", + "05FR010T3", + "05FR010T4", + "05FR013T5" + ], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set5/en_us/img/cards/05FR013.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set5/en_us/img/cards/05FR013-full.png" + } + ], + "regions": [ + "Freljord" + ], + "regionRefs": [ + "Freljord" + ], + "attack": 5, + "cost": 5, + "health": 4, + "description": "When I'm summoned or Strike: Create a Stance Swap in hand or, if you have one, reduce its cost to 0.", + "descriptionRaw": "When I'm summoned or Strike: Create a Stance Swap in hand or, if you have one, reduce its cost to 0.", + "levelupDescription": "You've played Stance Swap 3+ times this game.", + "levelupDescriptionRaw": "You've played Stance Swap 3+ times this game.", + "flavorText": "\"The Spirits shape our world just as we and our world shapes the Spirits. By drawing power from them we take power from within ourselves.\"", + "artistName": "SIXMOREVODKA", + "name": "Udyr", + "cardCode": "05FR013", + "keywords": [], + "keywordRefs": [], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "Champion", + "rarityRef": "Champion", + "subtypes": [], + "supertype": "Champion", + "type": "Unit", + "collectible": true, + "set": "Set5" + }, + { + "associatedCards": [], + "associatedCardRefs": [ + "05FR013T4", + "05FR013" + ], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set5/en_us/img/cards/05FR013T5.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set5/en_us/img/cards/05FR013T5-full.png" + } + ], + "regions": [ + "Freljord" + ], + "regionRefs": [ + "Freljord" + ], + "attack": 0, + "cost": 5, + "health": 0, + "description": "Grant your allies +1|+1. Then deal 1 to EVERYTHING.\r\nCreate an Udyr in your deck.", + "descriptionRaw": "Grant your allies +1|+1. Then deal 1 to EVERYTHING.\r\nCreate an Udyr in your deck.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"Ancient ones, bolster our strength against the encroaching cold, and drive away our foes with storms of wind and ice. For we have not forgotten you or the honors you are due.\"\n- Murkwolf Shaman's Benediction", + "artistName": "Kudos Productions", + "name": "Udyr's Spirits Unleashed", + "cardCode": "05FR013T5", + "keywords": [ + "Slow" + ], + "keywordRefs": [ + "Slow" + ], + "spellSpeed": "Slow", + "spellSpeedRef": "Slow", + "rarity": "None", + "rarityRef": "None", + "subtypes": [], + "supertype": "Champion", + "type": "Spell", + "collectible": false, + "set": "Set5" + }, + { + "associatedCards": [], + "associatedCardRefs": [ + "05FR013", + "05FR010", + "05FR010T2", + "05FR010T1", + "05FR010T3", + "05FR010T4", + "05FR013T5" + ], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set5/en_us/img/cards/05FR013T4.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set5/en_us/img/cards/05FR013T4-full.png" + } + ], + "regions": [ + "Freljord" + ], + "regionRefs": [ + "Freljord" + ], + "attack": 6, + "cost": 5, + "health": 5, + "description": "When I'm summoned or Strike: Create a Stance Swap in hand or, if you have one, reduce its cost to 0. \r\nI have +1|+1 for each stance you've played this game. ", + "descriptionRaw": "When I'm summoned or Strike: Create a Stance Swap in hand or, if you have one, reduce its cost to 0. \r\nI have +1|+1 for each stance you've played this game. ", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"We are united as one, heart and Spirit! Together, we will drive our foes into the cold, eternal night!\"", + "artistName": "SIXMOREVODKA", + "name": "Udyr", + "cardCode": "05FR013T4", + "keywords": [], + "keywordRefs": [], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "None", + "rarityRef": "None", + "subtypes": [], + "supertype": "Champion", + "type": "Unit", + "collectible": false, + "set": "Set5" + }, + { + "associatedCards": [], + "associatedCardRefs": [ + "05FR010", + "05FR010T2", + "05FR010T1", + "05FR010T3", + "05FR010T4" + ], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set5/en_us/img/cards/05FR016.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set5/en_us/img/cards/05FR016-full.png" + } + ], + "regions": [ + "Freljord" + ], + "regionRefs": [ + "Freljord" + ], + "attack": 0, + "cost": 6, + "health": 0, + "description": "Create 2 Fleeting 0 cost Stance Swaps in hand. ", + "descriptionRaw": "Create 2 Fleeting 0 cost Stance Swaps in hand. ", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"You will see them... great Spirits of teeth and claw, scale and feather. And in that moment, you will tremble in fear and awe, and you will know that the Old Gods have not forgotten us.\" - Hyara Allseer", + "artistName": "Kudos Productions", + "name": "Shaman's Call", + "cardCode": "05FR016", + "keywords": [ + "Burst" + ], + "keywordRefs": [ + "Burst" + ], + "spellSpeed": "Burst", + "spellSpeedRef": "Burst", + "rarity": "COMMON", + "rarityRef": "Common", + "subtypes": [], + "supertype": "", + "type": "Spell", + "collectible": true, + "set": "Set5" + }, + { + "associatedCards": [], + "associatedCardRefs": [ + "05FR010", + "05FR010T2", + "05FR010T1", + "05FR010T3", + "05FR010T4" + ], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set5/en_us/img/cards/05FR012.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set5/en_us/img/cards/05FR012-full.png" + } + ], + "regions": [ + "Freljord" + ], + "regionRefs": [ + "Freljord" + ], + "attack": 5, + "cost": 6, + "health": 5, + "description": "When I'm summoned, create a Stance Swap in hand. \r\nThe first Stance Swap you play each round costs 0.", + "descriptionRaw": "When I'm summoned, create a Stance Swap in hand. \r\nThe first Stance Swap you play each round costs 0.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "Revered by all, the great shaman, Hyara Allseer, lost her sight long ago and now sees through the eyes of the hawks and eagles that nest on her mountaintop home. Now, troublesome tidings have brought her down from the mountain... she hopes the omens remain but mere visions.", + "artistName": "Kudos Productions", + "name": "Hyara Allseer", + "cardCode": "05FR012", + "keywords": [], + "keywordRefs": [], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "RARE", + "rarityRef": "Rare", + "subtypes": [], + "supertype": "", + "type": "Unit", + "collectible": true, + "set": "Set5" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set5/en_us/img/cards/05FR014.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set5/en_us/img/cards/05FR014-full.png" + } + ], + "regions": [ + "Freljord" + ], + "regionRefs": [ + "Freljord" + ], + "attack": 8, + "cost": 8, + "health": 8, + "description": "Enemies with 3 or less Power can't block.", + "descriptionRaw": "Enemies with 3 or less Power can't block.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"I was there, years ago... first came the cold, biting and unrelenting. Then a storm, angry and uncaring. Last came a roar, so sharp it cut me to the bone. I fell to my knees and prayed we hadn't made a grave mistake. To call upon a great spirit is to ask for its vengeance... and its mercy.\" - Hyara Allseer ", + "artistName": "Kudos Productions", + "name": "Wrath of the Freljord", + "cardCode": "05FR014", + "keywords": [ + "Overwhelm", + "Missing Translation" + ], + "keywordRefs": [ + "Overwhelm", + "AuraVisualFakeKeyword" + ], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "EPIC", + "rarityRef": "Epic", + "subtypes": [], + "supertype": "", + "type": "Unit", + "collectible": true, + "set": "Set5" + }, + { + "associatedCards": [], + "associatedCardRefs": [ + "05FR010T2", + "05FR010T1", + "05FR010T3", + "05FR010T4" + ], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set5/en_us/img/cards/05FR010.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set5/en_us/img/cards/05FR010-full.png" + } + ], + "regions": [ + "Freljord" + ], + "regionRefs": [ + "Freljord" + ], + "attack": 0, + "cost": 3, + "health": 0, + "description": "Grant a Stance to an ally.", + "descriptionRaw": "Grant a Stance to an ally.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"Spirits, I call upon you!\" - Udyr", + "artistName": "Kudos Productions", + "name": "Stance Swap", + "cardCode": "05FR010", + "keywords": [ + "Slow" + ], + "keywordRefs": [ + "Slow" + ], + "spellSpeed": "Slow", + "spellSpeedRef": "Slow", + "rarity": "COMMON", + "rarityRef": "Common", + "subtypes": [], + "supertype": "", + "type": "Spell", + "collectible": false, + "set": "Set5" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set5/en_us/img/cards/05FR010T4.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set5/en_us/img/cards/05FR010T4-full.png" + } + ], + "regions": [ + "Freljord" + ], + "regionRefs": [ + "Freljord" + ], + "attack": 0, + "cost": 3, + "health": 0, + "description": "Pick an ally. Deal 1 to EVERYTHING else.", + "descriptionRaw": "Pick an ally. Deal 1 to EVERYTHING else.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"Against the freezing night you warm us. Against our foes you bring protective flame... Spirit of fire, AID US!\" - Udyr ", + "artistName": "Kudos Productions", + "name": "Ram Stance", + "cardCode": "05FR010T4", + "keywords": [ + "Slow" + ], + "keywordRefs": [ + "Slow" + ], + "spellSpeed": "Slow", + "spellSpeedRef": "Slow", + "rarity": "COMMON", + "rarityRef": "Common", + "subtypes": [], + "supertype": "", + "type": "Spell", + "collectible": false, + "set": "Set5" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set5/en_us/img/cards/05FR010T1.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set5/en_us/img/cards/05FR010T1-full.png" + } + ], + "regions": [ + "Freljord" + ], + "regionRefs": [ + "Freljord" + ], + "attack": 0, + "cost": 3, + "health": 0, + "description": "Grant an ally +2|+0 and Overwhelm.", + "descriptionRaw": "Grant an ally +2|+0 and Overwhelm.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"Claws and TEETH!\" - Udyr\n", + "artistName": "Kudos Productions", + "name": "Wildclaw Stance", + "cardCode": "05FR010T1", + "keywords": [ + "Slow" + ], + "keywordRefs": [ + "Slow" + ], + "spellSpeed": "Slow", + "spellSpeedRef": "Slow", + "rarity": "COMMON", + "rarityRef": "Common", + "subtypes": [], + "supertype": "", + "type": "Spell", + "collectible": false, + "set": "Set5" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set5/en_us/img/cards/05FR010T3.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set5/en_us/img/cards/05FR010T3-full.png" + } + ], + "regions": [ + "Freljord" + ], + "regionRefs": [ + "Freljord" + ], + "attack": 0, + "cost": 3, + "health": 0, + "description": "Grant an ally +0|+2 and Regeneration.", + "descriptionRaw": "Grant an ally +0|+2 and Regeneration.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"It is not the absence of pain I seek. It is the tenacity to fight through it.\" - Hyara Allseer", + "artistName": "Kudos Productions", + "name": "Boar Stance", + "cardCode": "05FR010T3", + "keywords": [ + "Slow" + ], + "keywordRefs": [ + "Slow" + ], + "spellSpeed": "Slow", + "spellSpeedRef": "Slow", + "rarity": "COMMON", + "rarityRef": "Common", + "subtypes": [], + "supertype": "", + "type": "Spell", + "collectible": false, + "set": "Set5" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set5/en_us/img/cards/05FR010T2.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set5/en_us/img/cards/05FR010T2-full.png" + } + ], + "regions": [ + "Freljord" + ], + "regionRefs": [ + "Freljord" + ], + "attack": 0, + "cost": 3, + "health": 0, + "description": "Grant an ally +2|+2.", + "descriptionRaw": "Grant an ally +2|+2.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"The Great Bear is indomitable, and in taking it's blessing, we shall know no fear... or mercy.\" - Hyara Allseer", + "artistName": "Kudos Productions", + "name": "Bear Stance", + "cardCode": "05FR010T2", + "keywords": [ + "Slow" + ], + "keywordRefs": [ + "Slow" + ], + "spellSpeed": "Slow", + "spellSpeedRef": "Slow", + "rarity": "COMMON", + "rarityRef": "Common", + "subtypes": [], + "supertype": "", + "type": "Spell", + "collectible": false, + "set": "Set5" + }, + { + "associatedCards": [], + "associatedCardRefs": [ + "05FR010T1", + "05FR010T3", + "05FR010T2", + "05FR010T4", + "05FR010", + "05FR010" + ], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set5/en_us/img/cards/05FR017.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set5/en_us/img/cards/05FR017-full.png" + } + ], + "regions": [ + "Freljord" + ], + "regionRefs": [ + "Freljord" + ], + "attack": 0, + "cost": 2, + "health": 0, + "description": "Give an ally +1|+1 this round. Create a Stance Swap in hand.", + "descriptionRaw": "Give an ally +1|+1 this round. Create a Stance Swap in hand.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"Gather, spirits, gather...\" - Udyr", + "artistName": "Kudos Productions", + "name": "Inner Beast", + "cardCode": "05FR017", + "keywords": [ + "Burst" + ], + "keywordRefs": [ + "Burst" + ], + "spellSpeed": "Burst", + "spellSpeedRef": "Burst", + "rarity": "COMMON", + "rarityRef": "Common", + "subtypes": [], + "supertype": "", + "type": "Spell", + "collectible": true, + "set": "Set5" + }, + { + "associatedCards": [], + "associatedCardRefs": [ + "05FR006T1" + ], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set5/en_us/img/cards/05FR006.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set5/en_us/img/cards/05FR006-full.png" + } + ], + "regions": [ + "Freljord" + ], + "regionRefs": [ + "Freljord" + ], + "attack": 3, + "cost": 2, + "health": 2, + "description": "Play: Deal 1 to ALL Nexuses.", + "descriptionRaw": "Play: Deal 1 to ALL Nexuses.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "Few shaman families have served the Winter's Claw tribe as long as Chuluun's. As a shaman of great walrus, he heralds and portends the sea's bounty... and its dangers. ", + "artistName": "Kudos Productions", + "name": "Tusk Speaker", + "cardCode": "05FR006", + "keywords": [ + "Overwhelm" + ], + "keywordRefs": [ + "Overwhelm" + ], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "COMMON", + "rarityRef": "Common", + "subtypes": [], + "supertype": "", + "type": "Unit", + "collectible": true, + "set": "Set5" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set5/en_us/img/cards/05FR015.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set5/en_us/img/cards/05FR015-full.png" + } + ], + "regions": [ + "Freljord" + ], + "regionRefs": [ + "Freljord" + ], + "attack": 0, + "cost": 5, + "health": 0, + "description": "Grant your allies +1|+1. Then deal 1 to EVERYTHING.", + "descriptionRaw": "Grant your allies +1|+1. Then deal 1 to EVERYTHING.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"Ancient ones, bolster our strength against the encroaching cold, and drive away our foes with storms of wind and ice. For we have not forgotten you or the honors you are due.\"\n- Murkwolf Shaman's Prayer", + "artistName": "Kudos Productions", + "name": "Spirits Unleashed", + "cardCode": "05FR015", + "keywords": [ + "Slow" + ], + "keywordRefs": [ + "Slow" + ], + "spellSpeed": "Slow", + "spellSpeedRef": "Slow", + "rarity": "RARE", + "rarityRef": "Rare", + "subtypes": [], + "supertype": "", + "type": "Spell", + "collectible": true, + "set": "Set5" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set5/en_us/img/cards/05FR005.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set5/en_us/img/cards/05FR005-full.png" + } + ], + "regions": [ + "Freljord" + ], + "regionRefs": [ + "Freljord" + ], + "attack": 0, + "cost": 2, + "health": 5, + "description": "When I survive damage, deal 1 to the enemy Nexus.", + "descriptionRaw": "When I survive damage, deal 1 to the enemy Nexus.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "Few scry the future as well as the shamans serving the Elk of Bones. Fewer still can stomach seeing the looming death of any who come seeking their foresight.", + "artistName": "Kudos Productions", + "name": "Bone Scryer", + "cardCode": "05FR005", + "keywords": [], + "keywordRefs": [], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "COMMON", + "rarityRef": "Common", + "subtypes": [], + "supertype": "", + "type": "Unit", + "collectible": true, + "set": "Set5" + }, + { + "associatedCards": [], + "associatedCardRefs": [ + "05FR010", + "05FR010T2", + "05FR010T1", + "05FR010T3", + "05FR010T4" + ], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set5/en_us/img/cards/05FR004.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set5/en_us/img/cards/05FR004-full.png" + } + ], + "regions": [ + "Freljord" + ], + "regionRefs": [ + "Freljord" + ], + "attack": 2, + "cost": 2, + "health": 2, + "description": "When I'm summoned, create a Stance Swap in hand.", + "descriptionRaw": "When I'm summoned, create a Stance Swap in hand.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"Eager and cautious. Quick and quiet. The way of the fox is the joy of seeing but not being seen. In travel and war, a wise leader honors those who follow the fox spirit. For no battle is won without pathfinders and scouts.\" - Scarmother Vrynna", + "artistName": "Kudos Productions", + "name": "Vulpine Wanderer", + "cardCode": "05FR004", + "keywords": [], + "keywordRefs": [], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "COMMON", + "rarityRef": "Common", + "subtypes": [], + "supertype": "", + "type": "Unit", + "collectible": true, + "set": "Set5" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set5/en_us/img/cards/05FR006T1.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set5/en_us/img/cards/05FR006T1-full.png" + } + ], + "regions": [ + "Freljord" + ], + "regionRefs": [ + "Freljord" + ], + "attack": 3, + "cost": 0, + "health": 2, + "description": "Deal 1 to ALL Nexuses.", + "descriptionRaw": "Deal 1 to ALL Nexuses.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"Many songs can touch your heart. My songs shake the heavens.\" - Chuluun ", + "artistName": "Kudos Productions", + "name": "Dance of Tusks", + "cardCode": "05FR006T1", + "keywords": [ + "Skill" + ], + "keywordRefs": [ + "Skill" + ], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "None", + "rarityRef": "None", + "subtypes": [], + "supertype": "", + "type": "Ability", + "collectible": false, + "set": "Set5" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set5/en_us/img/cards/05IO003.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set5/en_us/img/cards/05IO003-full.png" + } + ], + "regions": [ + "Ionia" + ], + "regionRefs": [ + "Ionia" + ], + "attack": 4, + "cost": 4, + "health": 3, + "description": "Costs 2 less if you've Recalled a unit this round.", + "descriptionRaw": "Costs 2 less if you've Recalled a unit this round.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"Himon'she, it is an honor to travel with you. The others tell me you are wise beyond measure. Where are we heading?\"\n\"Oh dear. I was following you!\" - Ahri and the Pathless Ancient", + "artistName": "Kudos Productions", + "name": "Pathless Ancient", + "cardCode": "05IO003", + "keywords": [], + "keywordRefs": [], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "COMMON", + "rarityRef": "Common", + "subtypes": [], + "supertype": "", + "type": "Unit", + "collectible": true, + "set": "Set5" + }, + { + "associatedCards": [], + "associatedCardRefs": [ + "05IO004T1", + "05IO004T2" + ], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set5/en_us/img/cards/05IO004.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set5/en_us/img/cards/05IO004-full.png" + } + ], + "regions": [ + "Ionia" + ], + "regionRefs": [ + "Ionia" + ], + "attack": 2, + "cost": 2, + "health": 2, + "description": "Attack: The first time I attack strike, swap me with the ally to my right, then Recall it.", + "descriptionRaw": "Attack: The first time I attack strike, swap me with the ally to my right, then Recall it.", + "levelupDescription": "You've Recalled 6+ units this game.", + "levelupDescriptionRaw": "You've Recalled 6+ units this game.", + "flavorText": "She searched for herself in other peoples' secrets. Saw herself through the eyes of so many. As she approached the forest, she wondered if it would be just another lens--or if, just this once, she'd found a mirror.", + "artistName": "SIXMOREVODKA", + "name": "Ahri", + "cardCode": "05IO004", + "keywords": [ + "Quick Attack" + ], + "keywordRefs": [ + "QuickStrike" + ], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "Champion", + "rarityRef": "Champion", + "subtypes": [], + "supertype": "Champion", + "type": "Unit", + "collectible": true, + "set": "Set5" + }, + { + "associatedCards": [], + "associatedCardRefs": [ + "05IO004", + "05IO004T1" + ], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set5/en_us/img/cards/05IO004T2.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set5/en_us/img/cards/05IO004T2-full.png" + } + ], + "regions": [ + "Ionia" + ], + "regionRefs": [ + "Ionia" + ], + "attack": 3, + "cost": 2, + "health": 3, + "description": "When you Recall an ally, reduce its cost by 1.\r\nAttack: Each time I attack strike, swap me with the ally to my right, then Recall it.", + "descriptionRaw": "When you Recall an ally, reduce its cost by 1.\r\nAttack: Each time I attack strike, swap me with the ally to my right, then Recall it.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"I can remember a thousand memories I've never had. From now on, I'll make my own.\" - Ahri", + "artistName": "SIXMOREVODKA", + "name": "Ahri", + "cardCode": "05IO004T2", + "keywords": [ + "Quick Attack", + "Elusive", + "Missing Translation" + ], + "keywordRefs": [ + "QuickStrike", + "Elusive", + "AuraVisualFakeKeyword" + ], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "None", + "rarityRef": "None", + "subtypes": [], + "supertype": "Champion", + "type": "Unit", + "collectible": false, + "set": "Set5" + }, + { + "associatedCards": [], + "associatedCardRefs": [ + "05IO004T2", + "05IO004" + ], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set5/en_us/img/cards/05IO004T1.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set5/en_us/img/cards/05IO004T1-full.png" + } + ], + "regions": [ + "Ionia" + ], + "regionRefs": [ + "Ionia" + ], + "attack": 0, + "cost": 2, + "health": 0, + "description": "Recall an ally to give an enemy Vulnerable this round.\r\nCreate an Ahri in your deck.", + "descriptionRaw": "Recall an ally to give an enemy Vulnerable this round.\r\nCreate an Ahri in your deck.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"Tell me a secret.\" - Ahri", + "artistName": "Kudos Productions", + "name": "Ahri's Charm", + "cardCode": "05IO004T1", + "keywords": [ + "Focus" + ], + "keywordRefs": [ + "Focus" + ], + "spellSpeed": "Burst", + "spellSpeedRef": "Burst", + "rarity": "None", + "rarityRef": "None", + "subtypes": [], + "supertype": "Champion", + "type": "Spell", + "collectible": false, + "set": "Set5" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set5/en_us/img/cards/05IO023.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set5/en_us/img/cards/05IO023-full.png" + } + ], + "regions": [ + "Ionia" + ], + "regionRefs": [ + "Ionia" + ], + "attack": 0, + "cost": 2, + "health": 0, + "description": "Recall an ally to give an enemy Vulnerable this round.", + "descriptionRaw": "Recall an ally to give an enemy Vulnerable this round.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"Tell me a secret.\" - Ahri", + "artistName": "Kudos Productions", + "name": "Charm", + "cardCode": "05IO023", + "keywords": [ + "Focus" + ], + "keywordRefs": [ + "Focus" + ], + "spellSpeed": "Burst", + "spellSpeedRef": "Burst", + "rarity": "COMMON", + "rarityRef": "Common", + "subtypes": [], + "supertype": "", + "type": "Spell", + "collectible": true, + "set": "Set5" + }, + { + "associatedCards": [], + "associatedCardRefs": [ + "05IO020T1" + ], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set5/en_us/img/cards/05IO020.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set5/en_us/img/cards/05IO020-full.png" + } + ], + "regions": [ + "Ionia" + ], + "regionRefs": [ + "Ionia" + ], + "attack": 4, + "cost": 6, + "health": 3, + "description": "Play: Recall a unit.", + "descriptionRaw": "Play: Recall a unit.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "Chaos gives claws to the meek. A wolf hounds its prey and is stalled by a felled branch. A hawk dives and tumbles amidst a sudden gale. We are the branch. We are the wind.", + "artistName": "Kudos Productions", + "name": "Windsinger", + "cardCode": "05IO020", + "keywords": [], + "keywordRefs": [], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "COMMON", + "rarityRef": "Common", + "subtypes": [], + "supertype": "", + "type": "Unit", + "collectible": true, + "set": "Set5" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set5/en_us/img/cards/05IO020T1.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set5/en_us/img/cards/05IO020T1-full.png" + } + ], + "regions": [ + "Ionia" + ], + "regionRefs": [ + "Ionia" + ], + "attack": 0, + "cost": 0, + "health": 0, + "description": "Recall a unit.", + "descriptionRaw": "Recall a unit.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "The wind moves all, in its own time.", + "artistName": "Kudos Productions", + "name": "Gust", + "cardCode": "05IO020T1", + "keywords": [ + "Skill" + ], + "keywordRefs": [ + "Skill" + ], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "None", + "rarityRef": "None", + "subtypes": [], + "supertype": "", + "type": "Ability", + "collectible": false, + "set": "Set5" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set5/en_us/img/cards/05IO007.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set5/en_us/img/cards/05IO007-full.png" + } + ], + "regions": [ + "Ionia" + ], + "regionRefs": [ + "Ionia" + ], + "attack": 3, + "cost": 6, + "health": 5, + "description": "When I'm summoned, draw 2 and give all allies +1|+1 this round.", + "descriptionRaw": "When I'm summoned, draw 2 and give all allies +1|+1 this round.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "The forest offers its secrets freely... but few bear the courage to ask questions of it.", + "artistName": "SIXMOREVODKA", + "name": "Sai'nen Thousand-Tailed", + "cardCode": "05IO007", + "keywords": [], + "keywordRefs": [], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "EPIC", + "rarityRef": "Epic", + "subtypes": [], + "supertype": "", + "type": "Unit", + "collectible": true, + "set": "Set5" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set5/en_us/img/cards/05IO021.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set5/en_us/img/cards/05IO021-full.png" + } + ], + "regions": [ + "Ionia" + ], + "regionRefs": [ + "Ionia" + ], + "attack": 0, + "cost": 3, + "health": 0, + "description": "Play: Recall an ally to summon an Ephemeral copy of it.\r\nCountdown 3: Summon another Ephemeral copy of it.", + "descriptionRaw": "Play: Recall an ally to summon an Ephemeral copy of it.\r\nCountdown 3: Summon another Ephemeral copy of it.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "Once, the God-Willow grew within Omikayalan. What springs forth from that place now may be stronger, may be weaker. What matters is that it is new.", + "artistName": "Kudos Productions", + "name": "God-Willow Seedling", + "cardCode": "05IO021", + "keywords": [ + "Landmark", + "Countdown" + ], + "keywordRefs": [ + "LandmarkVisualOnly", + "Countdown" + ], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "RARE", + "rarityRef": "Rare", + "subtypes": [], + "supertype": "", + "type": "Landmark", + "collectible": true, + "set": "Set5" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set5/en_us/img/cards/05IO001.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set5/en_us/img/cards/05IO001-full.png" + } + ], + "regions": [ + "Ionia" + ], + "regionRefs": [ + "Ionia" + ], + "attack": 3, + "cost": 3, + "health": 2, + "description": "When I’m summoned, give me +1|+0 and Elusive this round.", + "descriptionRaw": "When I’m summoned, give me +1|+0 and Elusive this round.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"They say you don't speak to save others from the weight of your knowledge. Hmm... I bet you just got tired of answering questions.\" - Ahri", + "artistName": "Kudos Productions", + "name": "Woodland Keeper", + "cardCode": "05IO001", + "keywords": [], + "keywordRefs": [], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "COMMON", + "rarityRef": "Common", + "subtypes": [], + "supertype": "", + "type": "Unit", + "collectible": true, + "set": "Set5" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set5/en_us/img/cards/05IO024.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set5/en_us/img/cards/05IO024-full.png" + } + ], + "regions": [ + "Ionia" + ], + "regionRefs": [ + "Ionia" + ], + "attack": 0, + "cost": 8, + "health": 0, + "description": "Summon Ephemeral copies of the 3 strongest followers you've Recalled this game.", + "descriptionRaw": "Summon Ephemeral copies of the 3 strongest followers you've Recalled this game.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "Memories have fangs.", + "artistName": "Kudos Productions", + "name": "Children of the Forest", + "cardCode": "05IO024", + "keywords": [ + "Slow" + ], + "keywordRefs": [ + "Slow" + ], + "spellSpeed": "Slow", + "spellSpeedRef": "Slow", + "rarity": "EPIC", + "rarityRef": "Epic", + "subtypes": [], + "supertype": "", + "type": "Spell", + "collectible": true, + "set": "Set5" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set5/en_us/img/cards/05IO025.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set5/en_us/img/cards/05IO025-full.png" + } + ], + "regions": [ + "Ionia" + ], + "regionRefs": [ + "Ionia" + ], + "attack": 4, + "cost": 5, + "health": 5, + "description": "Each round, the first time you Recall a follower, summon an exact Ephemeral copy of it.", + "descriptionRaw": "Each round, the first time you Recall a follower, summon an exact Ephemeral copy of it.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "Mystery is a greater thing than its conclusion.", + "artistName": "SIXMOREVODKA", + "name": "Tail-Cloak Matriarch", + "cardCode": "05IO025", + "keywords": [], + "keywordRefs": [], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "RARE", + "rarityRef": "Rare", + "subtypes": [], + "supertype": "", + "type": "Unit", + "collectible": true, + "set": "Set5" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set5/en_us/img/cards/05IO026.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set5/en_us/img/cards/05IO026-full.png" + } + ], + "regions": [ + "Ionia" + ], + "regionRefs": [ + "Ionia" + ], + "attack": 2, + "cost": 1, + "health": 1, + "description": "Nexus Strike: Recall me.", + "descriptionRaw": "Nexus Strike: Recall me.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "If one is to venerate the hunt, one must pause to weep for the hunted.", + "artistName": "Kudos Productions", + "name": "The Mourned", + "cardCode": "05IO026", + "keywords": [ + "Elusive" + ], + "keywordRefs": [ + "Elusive" + ], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "RARE", + "rarityRef": "Rare", + "subtypes": [], + "supertype": "", + "type": "Unit", + "collectible": true, + "set": "Set5" + }, + { + "associatedCards": [], + "associatedCardRefs": [ + "05IO006T1" + ], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set5/en_us/img/cards/05IO006.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set5/en_us/img/cards/05IO006-full.png" + } + ], + "regions": [ + "Ionia" + ], + "regionRefs": [ + "Ionia" + ], + "attack": 0, + "cost": 5, + "health": 0, + "description": "Summon a Liminal Guardian.", + "descriptionRaw": "Summon a Liminal Guardian.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "The forest needed a guardian, someone who could stand sentry at its borders for years, maybe centuries, without moving. Gai'sh was an eager volunteer and promptly proved his dedication with a ten-year nap.", + "artistName": "Kudos Productions", + "name": "Nine Lives", + "cardCode": "05IO006", + "keywords": [ + "Burst" + ], + "keywordRefs": [ + "Burst" + ], + "spellSpeed": "Burst", + "spellSpeedRef": "Burst", + "rarity": "EPIC", + "rarityRef": "Epic", + "subtypes": [], + "supertype": "", + "type": "Spell", + "collectible": true, + "set": "Set5" + }, + { + "associatedCards": [], + "associatedCardRefs": [ + "05IO006" + ], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set5/en_us/img/cards/05IO006T1.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set5/en_us/img/cards/05IO006T1-full.png" + } + ], + "regions": [ + "Ionia" + ], + "regionRefs": [ + "Ionia" + ], + "attack": 3, + "cost": 5, + "health": 2, + "description": "When I'm summoned, summon a random 1 cost follower from your regions.\r\nWhen I'm Recalled, transform me into Nine Lives.", + "descriptionRaw": "When I'm summoned, summon a random 1 cost follower from your regions.\r\nWhen I'm Recalled, transform me into Nine Lives.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"My best quality? I sleep like a rock.\"", + "artistName": "Kudos Productions", + "name": "Liminal Guardian", + "cardCode": "05IO006T1", + "keywords": [], + "keywordRefs": [], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "None", + "rarityRef": "None", + "subtypes": [], + "supertype": "", + "type": "Unit", + "collectible": false, + "set": "Set5" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set5/en_us/img/cards/05IO002.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set5/en_us/img/cards/05IO002-full.png" + } + ], + "regions": [ + "Ionia" + ], + "regionRefs": [ + "Ionia" + ], + "attack": 0, + "cost": 3, + "health": 0, + "description": "Pick an ally being targeted by enemy Fast spells, Slow spells, or Skills with only 1 allied target. Stop them.", + "descriptionRaw": "Pick an ally being targeted by enemy Fast spells, Slow spells, or Skills with only 1 allied target. Stop them.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "An arrow knows neither the intent of the hunter, nor the worth of its prey.", + "artistName": "Kudos Productions", + "name": "Memory's Cloak", + "cardCode": "05IO002", + "keywords": [ + "Fast" + ], + "keywordRefs": [ + "Fast" + ], + "spellSpeed": "Fast", + "spellSpeedRef": "Fast", + "rarity": "COMMON", + "rarityRef": "Common", + "subtypes": [], + "supertype": "", + "type": "Spell", + "collectible": true, + "set": "Set5" + }, + { + "associatedCards": [], + "associatedCardRefs": [ + "05SH014T1", + "05SH014T2", + "04SH062", + "05SH014T3" + ], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set5/en_us/img/cards/05SH014.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set5/en_us/img/cards/05SH014-full.png" + } + ], + "regions": [ + "Shurima" + ], + "regionRefs": [ + "Shurima" + ], + "attack": 3, + "cost": 4, + "health": 4, + "description": "When an allied landmark is destroyed, deal 1 to the weakest enemy. ", + "descriptionRaw": "When an allied landmark is destroyed, deal 1 to the weakest enemy. ", + "levelupDescription": "You've destroyed 4+ allied landmarks this game.", + "levelupDescriptionRaw": "You've destroyed 4+ allied landmarks this game.", + "flavorText": "\"The two were once friends, but time and affinity made them into brothers. Certainly Azir could not have achieved all that he was able without Xerath by his side.\" \n- Scribe Kah'nir, History of the Ascended Host", + "artistName": "SIXMOREVODKA", + "name": "Xerath", + "cardCode": "05SH014", + "keywords": [], + "keywordRefs": [], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "Champion", + "rarityRef": "Champion", + "subtypes": [ + "ASCENDED" + ], + "supertype": "Champion", + "type": "Unit", + "collectible": true, + "set": "Set5" + }, + { + "associatedCards": [], + "associatedCardRefs": [ + "05SH014T2", + "05SH014T1", + "05SH014", + "05SH014T3" + ], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set5/en_us/img/cards/05SH014T3.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set5/en_us/img/cards/05SH014T3-full.png" + } + ], + "regions": [ + "Shurima" + ], + "regionRefs": [ + "Shurima" + ], + "attack": 0, + "cost": 3, + "health": 0, + "description": "Destroy an allied landmark or one of your mana gems to deal 4 to a unit.\r\nCreate a Xerath in your deck.", + "descriptionRaw": "Destroy an allied landmark or one of your mana gems to deal 4 to a unit.\r\nCreate a Xerath in your deck.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"A small sacrifice in exchange for great power.\" - Xerath", + "artistName": "Kudos Productions", + "name": "Xerath's Rite of the Arcane", + "cardCode": "05SH014T3", + "keywords": [ + "Slow" + ], + "keywordRefs": [ + "Slow" + ], + "spellSpeed": "Slow", + "spellSpeedRef": "Slow", + "rarity": "None", + "rarityRef": "None", + "subtypes": [], + "supertype": "Champion", + "type": "Spell", + "collectible": false, + "set": "Set5" + }, + { + "associatedCards": [], + "associatedCardRefs": [ + "05SH014T2", + "05SH014T1", + "05SH014", + "05SH014T3" + ], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set5/en_us/img/cards/05SH014T4.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set5/en_us/img/cards/05SH014T4-full.png" + } + ], + "regions": [ + "Shurima" + ], + "regionRefs": [ + "Shurima" + ], + "attack": 0, + "cost": 3, + "health": 0, + "description": "Destroy one of your mana gems to deal 4 to a unit.", + "descriptionRaw": "Destroy one of your mana gems to deal 4 to a unit.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"Pitiful.\" - Xerath", + "artistName": "Kudos Productions", + "name": "Xerath's Rite of the Arcane", + "cardCode": "05SH014T4", + "keywords": [ + "Slow" + ], + "keywordRefs": [ + "Slow" + ], + "spellSpeed": "Slow", + "spellSpeedRef": "Slow", + "rarity": "None", + "rarityRef": "None", + "subtypes": [], + "supertype": "Champion", + "type": "Spell", + "collectible": false, + "set": "Set5" + }, + { + "associatedCards": [], + "associatedCardRefs": [ + "05SH014T2", + "05SH014T1", + "05SH014", + "05SH014T3" + ], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set5/en_us/img/cards/05SH014T5.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set5/en_us/img/cards/05SH014T5-full.png" + } + ], + "regions": [ + "Shurima" + ], + "regionRefs": [ + "Shurima" + ], + "attack": 0, + "cost": 3, + "health": 0, + "description": "Destroy an allied landmark to deal 4 to a unit.", + "descriptionRaw": "Destroy an allied landmark to deal 4 to a unit.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"Pitiful.\" - Xerath", + "artistName": "Kudos Productions", + "name": "Xerath's Rite of the Arcane", + "cardCode": "05SH014T5", + "keywords": [ + "Slow" + ], + "keywordRefs": [ + "Slow" + ], + "spellSpeed": "Slow", + "spellSpeedRef": "Slow", + "rarity": "None", + "rarityRef": "None", + "subtypes": [], + "supertype": "Champion", + "type": "Spell", + "collectible": false, + "set": "Set5" + }, + { + "associatedCards": [], + "associatedCardRefs": [ + "05SH014T2", + "05SH014", + "04SH062", + "05SH014T3" + ], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set5/en_us/img/cards/05SH014T1.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set5/en_us/img/cards/05SH014T1-full.png" + } + ], + "regions": [ + "Shurima" + ], + "regionRefs": [ + "Shurima" + ], + "attack": 4, + "cost": 4, + "health": 5, + "description": "When an allied landmark is destroyed, deal 3 to the weakest enemy. ", + "descriptionRaw": "When an allied landmark is destroyed, deal 3 to the weakest enemy. ", + "levelupDescription": "You've restored the Sun Disc.", + "levelupDescriptionRaw": "You've restored the Sun Disc.", + "flavorText": "\"If only Xerath had known that Azir planned to free him of his bondage, it might have prevented Shurima's demise... but some part of a mortal's humanity is lost when they Ascend, and any forgiveness or leniency was quickly erased from Xerath's mind.\" \n- Scribe Kah'nir, History of the Ascended Host", + "artistName": "SIXMOREVODKA", + "name": "Xerath", + "cardCode": "05SH014T1", + "keywords": [], + "keywordRefs": [], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "None", + "rarityRef": "None", + "subtypes": [ + "ASCENDED" + ], + "supertype": "Champion", + "type": "Unit", + "collectible": false, + "set": "Set5" + }, + { + "associatedCards": [], + "associatedCardRefs": [ + "05SH014", + "05SH014T1", + "05SH007", + "05SH014T3" + ], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set5/en_us/img/cards/05SH014T2.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set5/en_us/img/cards/05SH014T2-full.png" + } + ], + "regions": [ + "Shurima" + ], + "regionRefs": [ + "Shurima" + ], + "attack": 5, + "cost": 4, + "health": 9, + "description": "When an allied landmark is destroyed or Round Start: Deal 5 to the weakest enemy or the enemy Nexus if there are none.\r\nIf an enemy unit would die, Obliterate it instead.", + "descriptionRaw": "When an allied landmark is destroyed or Round Start: Deal 5 to the weakest enemy or the enemy Nexus if there are none.\r\nIf an enemy unit would die, Obliterate it instead.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"For years he sowed seeds of revenge, plotting against Azir in the dark of the Emperor's Tomb. Xerath would see a new Shurima made in his own image, gathering the acolytes who had studied his arcane magics to serve as his army. Now, he marches on Shurima just as Azir has revived it.\" \n- Scribe Kah'nir, History of the Ascended Host", + "artistName": "SIXMOREVODKA", + "name": "Xerath", + "cardCode": "05SH014T2", + "keywords": [], + "keywordRefs": [], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "None", + "rarityRef": "None", + "subtypes": [ + "ASCENDED" + ], + "supertype": "Champion", + "type": "Unit", + "collectible": false, + "set": "Set5" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set5/en_us/img/cards/05SH017.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set5/en_us/img/cards/05SH017-full.png" + } + ], + "regions": [ + "Shurima" + ], + "regionRefs": [ + "Shurima" + ], + "attack": 4, + "cost": 5, + "health": 4, + "description": "When I'm summoned, if you've destroyed 4+ allied landmarks this game, grant your champions everywhere +2|+2 and Overwhelm. ", + "descriptionRaw": "When I'm summoned, if you've destroyed 4+ allied landmarks this game, grant your champions everywhere +2|+2 and Overwhelm. ", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "The Herald spread her arms wide as she lifted her face to the sun, which hung bloody and red above Shurima. \"Hail, the Magus Ascendant,\" she breathed beatifically, her voice echoing off the ring of ruined columns. \"Hail, Xerath!\"", + "artistName": "Kudos Productions", + "name": "Herald of the Magus", + "cardCode": "05SH017", + "keywords": [], + "keywordRefs": [], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "RARE", + "rarityRef": "Rare", + "subtypes": [], + "supertype": "", + "type": "Unit", + "collectible": true, + "set": "Set5" + }, + { + "associatedCards": [], + "associatedCardRefs": [ + "05SH011T2", + "05SH011T1" + ], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set5/en_us/img/cards/05SH011.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set5/en_us/img/cards/05SH011-full.png" + } + ], + "regions": [ + "Shurima" + ], + "regionRefs": [ + "Shurima" + ], + "attack": 3, + "cost": 3, + "health": 3, + "description": "Last Breath: Summon a Sarcophagus.", + "descriptionRaw": "Last Breath: Summon a Sarcophagus.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "As richly appointed as the tomb was, it did little good for the banished and the dead.", + "artistName": "Chris Kintner", + "name": "Endless Devout", + "cardCode": "05SH011", + "keywords": [ + "Last Breath" + ], + "keywordRefs": [ + "LastBreath" + ], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "RARE", + "rarityRef": "Rare", + "subtypes": [], + "supertype": "", + "type": "Unit", + "collectible": true, + "set": "Set5" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set5/en_us/img/cards/05SH011T1.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set5/en_us/img/cards/05SH011T1-full.png" + } + ], + "regions": [ + "Shurima" + ], + "regionRefs": [ + "Shurima" + ], + "attack": 5, + "cost": 1, + "health": 3, + "description": "", + "descriptionRaw": "", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "Xerath's new army would make better use of the tomb's many artifacts, turning useless extravagance into a powerful conduit for the Magus Ascendant's magic.", + "artistName": "Chris Kintner", + "name": "Restored Devout", + "cardCode": "05SH011T1", + "keywords": [ + "Fearsome" + ], + "keywordRefs": [ + "Fearsome" + ], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "None", + "rarityRef": "None", + "subtypes": [], + "supertype": "", + "type": "Unit", + "collectible": false, + "set": "Set5" + }, + { + "associatedCards": [], + "associatedCardRefs": [ + "05SH011T1" + ], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set5/en_us/img/cards/05SH011T2.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set5/en_us/img/cards/05SH011T2-full.png" + } + ], + "regions": [ + "Shurima" + ], + "regionRefs": [ + "Shurima" + ], + "attack": 0, + "cost": 1, + "health": 0, + "description": "Countdown 3: or when I'm destroyed: summon a Restored Devout.", + "descriptionRaw": "Countdown 3: or when I'm destroyed: summon a Restored Devout.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "The Tomb of Emperors is no less lavish for serving as Xerath's prison. Indeed, the beauty of the place and its trappings is nothing if not a reminder of the inhabitants' fall from grace - a gilded prison.", + "artistName": "Kudos Productions", + "name": "Sarcophagus", + "cardCode": "05SH011T2", + "keywords": [ + "Countdown", + "Landmark" + ], + "keywordRefs": [ + "Countdown", + "LandmarkVisualOnly" + ], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "None", + "rarityRef": "None", + "subtypes": [], + "supertype": "", + "type": "Landmark", + "collectible": false, + "set": "Set5" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set5/en_us/img/cards/05SH022.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set5/en_us/img/cards/05SH022-full.png" + } + ], + "regions": [ + "Shurima" + ], + "regionRefs": [ + "Shurima" + ], + "attack": 0, + "cost": 3, + "health": 0, + "description": "Give an enemy -2|-0 this round. An ally and that enemy strike each other.", + "descriptionRaw": "Give an enemy -2|-0 this round. An ally and that enemy strike each other.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"A traveler who does not fear the desert, does not know the desert.\" - Shuriman adage", + "artistName": "Kudos Productions", + "name": "Desert Duel", + "cardCode": "05SH022", + "keywords": [ + "Slow" + ], + "keywordRefs": [ + "Slow" + ], + "spellSpeed": "Slow", + "spellSpeedRef": "Slow", + "rarity": "COMMON", + "rarityRef": "Common", + "subtypes": [], + "supertype": "", + "type": "Spell", + "collectible": true, + "set": "Set5" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set5/en_us/img/cards/05SH003.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set5/en_us/img/cards/05SH003-full.png" + } + ], + "regions": [ + "Shurima" + ], + "regionRefs": [ + "Shurima" + ], + "attack": 0, + "cost": 1, + "health": 0, + "description": "Countdown 3 or when I'm summoned or destroyed: Grant the strongest ally +2|+0.", + "descriptionRaw": "Countdown 3 or when I'm summoned or destroyed: Grant the strongest ally +2|+0.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "Sparking, crackling pillars rose from the sands, subverted places of power that would reinforce Xerath's already powerful army.", + "artistName": "Chris Kintner", + "name": "Obelisk of Power", + "cardCode": "05SH003", + "keywords": [ + "Countdown", + "Landmark" + ], + "keywordRefs": [ + "Countdown", + "LandmarkVisualOnly" + ], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "COMMON", + "rarityRef": "Common", + "subtypes": [], + "supertype": "", + "type": "Landmark", + "collectible": true, + "set": "Set5" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set5/en_us/img/cards/05SH016.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set5/en_us/img/cards/05SH016-full.png" + } + ], + "regions": [ + "Shurima" + ], + "regionRefs": [ + "Shurima" + ], + "attack": 2, + "cost": 2, + "health": 1, + "description": "Play: Destroy an allied landmark to grant allied Ruinous Acolytes everywhere +1|+1.", + "descriptionRaw": "Play: Destroy an allied landmark to grant allied Ruinous Acolytes everywhere +1|+1.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "All of Xerath's acolytes gave something of themselves in exchange for power, but his most powerful devotees were hardly more than husks of their former selves, serving as both conduit and power source for their new emperor's energy.", + "artistName": "Kudos Productions", + "name": "Ruinous Acolyte", + "cardCode": "05SH016", + "keywords": [ + "Fearsome" + ], + "keywordRefs": [ + "Fearsome" + ], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "COMMON", + "rarityRef": "Common", + "subtypes": [], + "supertype": "", + "type": "Unit", + "collectible": true, + "set": "Set5" + }, + { + "associatedCards": [], + "associatedCardRefs": [ + "04SH076T1" + ], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set5/en_us/img/cards/05SH018.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set5/en_us/img/cards/05SH018-full.png" + } + ], + "regions": [ + "Shurima" + ], + "regionRefs": [ + "Shurima" + ], + "attack": 0, + "cost": 7, + "health": 0, + "description": "Summon a Stasis Statue to store all allied units and landmarks that died or were destroyed this round inside.", + "descriptionRaw": "Summon a Stasis Statue to store all allied units and landmarks that died or were destroyed this round inside.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "Magical energy does not dissipate. It is merely repurposed.", + "artistName": "Kudos Productions", + "name": "Servitude of Desolation", + "cardCode": "05SH018", + "keywords": [ + "Burst" + ], + "keywordRefs": [ + "Burst" + ], + "spellSpeed": "Burst", + "spellSpeedRef": "Burst", + "rarity": "EPIC", + "rarityRef": "Epic", + "subtypes": [], + "supertype": "", + "type": "Spell", + "collectible": true, + "set": "Set5" + }, + { + "associatedCards": [], + "associatedCardRefs": [ + "05SH012T1" + ], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set5/en_us/img/cards/05SH012.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set5/en_us/img/cards/05SH012-full.png" + } + ], + "regions": [ + "Shurima" + ], + "regionRefs": [ + "Shurima" + ], + "attack": 0, + "cost": 6, + "health": 0, + "description": "Countdown 3: or when I'm destroyed: Summon a Dami'yin the Unbound.", + "descriptionRaw": "Countdown 3: or when I'm destroyed: Summon a Dami'yin the Unbound.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"At each place of power shall an obelisk be raised, an instrument through which the Magus Ascendant may draw the power from beneath the sands.\" - Herald of the Magus", + "artistName": "Kudos Productions", + "name": "Risen Altar", + "cardCode": "05SH012", + "keywords": [ + "Countdown", + "Landmark" + ], + "keywordRefs": [ + "Countdown", + "LandmarkVisualOnly" + ], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "EPIC", + "rarityRef": "Epic", + "subtypes": [], + "supertype": "", + "type": "Landmark", + "collectible": true, + "set": "Set5" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set5/en_us/img/cards/05SH012T1.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set5/en_us/img/cards/05SH012T1-full.png" + } + ], + "regions": [ + "Shurima" + ], + "regionRefs": [ + "Shurima" + ], + "attack": 7, + "cost": 6, + "health": 6, + "description": "", + "descriptionRaw": "", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"At each place of power shall we draw forth the magical energy of the land, and in so doing, bolster our great emperor's armies!\" - Herald of the Magus", + "artistName": "Michael Ivan", + "name": "Dami'yin the Unbound", + "cardCode": "05SH012T1", + "keywords": [ + "SpellShield", + "Overwhelm" + ], + "keywordRefs": [ + "SpellShield", + "Overwhelm" + ], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "None", + "rarityRef": "None", + "subtypes": [], + "supertype": "", + "type": "Unit", + "collectible": false, + "set": "Set5" + }, + { + "associatedCards": [], + "associatedCardRefs": [ + "05SH016", + "05SH003" + ], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set5/en_us/img/cards/05SH020.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set5/en_us/img/cards/05SH020-full.png" + } + ], + "regions": [ + "Shurima" + ], + "regionRefs": [ + "Shurima" + ], + "attack": 0, + "cost": 1, + "health": 0, + "description": "Create a Ruinous Acolyte or an Obelisk of Power in hand.", + "descriptionRaw": "Create a Ruinous Acolyte or an Obelisk of Power in hand.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"I will fashion Shurima in MY image.\" - Xerath", + "artistName": "Kudos Productions", + "name": "Construct of Desolation", + "cardCode": "05SH020", + "keywords": [ + "Burst" + ], + "keywordRefs": [ + "Burst" + ], + "spellSpeed": "Burst", + "spellSpeedRef": "Burst", + "rarity": "COMMON", + "rarityRef": "Common", + "subtypes": [], + "supertype": "", + "type": "Spell", + "collectible": true, + "set": "Set5" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set5/en_us/img/cards/05SH015.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set5/en_us/img/cards/05SH015-full.png" + } + ], + "regions": [ + "Shurima" + ], + "regionRefs": [ + "Shurima" + ], + "attack": 5, + "cost": 5, + "health": 4, + "description": "When I'm summoned, draw 1. If you drew a landmark, repeat this effect.", + "descriptionRaw": "When I'm summoned, draw 1. If you drew a landmark, repeat this effect.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "The horizon before her sang with energy. Where others saw sand and silt, she saw the ley lines, blinding lattices of pure energy that were hers for the taking.", + "artistName": "Michal Ivan", + "name": "Sandseer", + "cardCode": "05SH015", + "keywords": [ + "Fearsome" + ], + "keywordRefs": [ + "Fearsome" + ], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "EPIC", + "rarityRef": "Epic", + "subtypes": [], + "supertype": "", + "type": "Unit", + "collectible": true, + "set": "Set5" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set5/en_us/img/cards/05SH004.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set5/en_us/img/cards/05SH004-full.png" + } + ], + "regions": [ + "Shurima" + ], + "regionRefs": [ + "Shurima" + ], + "attack": 0, + "cost": 3, + "health": 0, + "description": "Give an ally +2|+1 this round or destroy an allied landmark to give an ally +4|+2 this round.", + "descriptionRaw": "Give an ally +2|+1 this round or destroy an allied landmark to give an ally +4|+2 this round.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"I will rip the power from the desert, and destroy those who would oppose me!\" - Xerath", + "artistName": "Kudos Productions", + "name": "Unleashed Energy", + "cardCode": "05SH004", + "keywords": [ + "Burst" + ], + "keywordRefs": [ + "Burst" + ], + "spellSpeed": "Burst", + "spellSpeedRef": "Burst", + "rarity": "COMMON", + "rarityRef": "Common", + "subtypes": [], + "supertype": "", + "type": "Spell", + "collectible": true, + "set": "Set5" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set5/en_us/img/cards/05SH004T2.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set5/en_us/img/cards/05SH004T2-full.png" + } + ], + "regions": [ + "Shurima" + ], + "regionRefs": [ + "Shurima" + ], + "attack": 0, + "cost": 3, + "health": 0, + "description": "Give an ally +2|+1 this round.", + "descriptionRaw": "Give an ally +2|+1 this round.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"I will rip the power from the desert, and destroy those who would oppose me!\" - Xerath", + "artistName": "Kudos Productions", + "name": "Unleashed Energy", + "cardCode": "05SH004T2", + "keywords": [ + "Burst" + ], + "keywordRefs": [ + "Burst" + ], + "spellSpeed": "Burst", + "spellSpeedRef": "Burst", + "rarity": "None", + "rarityRef": "None", + "subtypes": [], + "supertype": "", + "type": "Spell", + "collectible": false, + "set": "Set5" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set5/en_us/img/cards/05SH004T1.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set5/en_us/img/cards/05SH004T1-full.png" + } + ], + "regions": [ + "Shurima" + ], + "regionRefs": [ + "Shurima" + ], + "attack": 0, + "cost": 3, + "health": 0, + "description": "Destroy an allied landmark to give an ally +4|+2 this round.", + "descriptionRaw": "Destroy an allied landmark to give an ally +4|+2 this round.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"I will rip the power from the desert, and destroy those who would oppose me!\" - Xerath", + "artistName": "Kudos Productions", + "name": "Unleashed Energy", + "cardCode": "05SH004T1", + "keywords": [ + "Burst" + ], + "keywordRefs": [ + "Burst" + ], + "spellSpeed": "Burst", + "spellSpeedRef": "Burst", + "rarity": "None", + "rarityRef": "None", + "subtypes": [], + "supertype": "", + "type": "Spell", + "collectible": false, + "set": "Set5" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set5/en_us/img/cards/05SH002.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set5/en_us/img/cards/05SH002-full.png" + } + ], + "regions": [ + "Shurima" + ], + "regionRefs": [ + "Shurima" + ], + "attack": 3, + "cost": 3, + "health": 3, + "description": "When an allied landmark is destroyed, grant me +1|+1.", + "descriptionRaw": "When an allied landmark is destroyed, grant me +1|+1.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "The acolytes had been accomplished before they sought out Xerath. Now that they had studied what he had once studied himself, they were unstoppable.", + "artistName": "Kudos Productions", + "name": "Waste Walker", + "cardCode": "05SH002", + "keywords": [ + "Overwhelm" + ], + "keywordRefs": [ + "Overwhelm" + ], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "COMMON", + "rarityRef": "Common", + "subtypes": [], + "supertype": "", + "type": "Unit", + "collectible": true, + "set": "Set5" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set5/en_us/img/cards/05SH007.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set5/en_us/img/cards/05SH007-full.png" + } + ], + "regions": [ + "Shurima" + ], + "regionRefs": [ + "Shurima" + ], + "attack": 0, + "cost": 3, + "health": 0, + "description": "Destroy an allied landmark or one of your mana gems to deal 4 to a unit.", + "descriptionRaw": "Destroy an allied landmark or one of your mana gems to deal 4 to a unit.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"A small sacrifice in exchange for great power.\" - Xerath", + "artistName": "Kudos Productions", + "name": "Rite of the Arcane", + "cardCode": "05SH007", + "keywords": [ + "Slow" + ], + "keywordRefs": [ + "Slow" + ], + "spellSpeed": "Slow", + "spellSpeedRef": "Slow", + "rarity": "RARE", + "rarityRef": "Rare", + "subtypes": [], + "supertype": "", + "type": "Spell", + "collectible": true, + "set": "Set5" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set5/en_us/img/cards/05SH007T1.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set5/en_us/img/cards/05SH007T1-full.png" + } + ], + "regions": [ + "Shurima" + ], + "regionRefs": [ + "Shurima" + ], + "attack": 0, + "cost": 3, + "health": 0, + "description": "Destroy an allied landmark to deal 4 to a unit.", + "descriptionRaw": "Destroy an allied landmark to deal 4 to a unit.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"Pitiful.\" - Xerath", + "artistName": "Kudos Productions", + "name": "Rite of the Arcane", + "cardCode": "05SH007T1", + "keywords": [ + "Slow" + ], + "keywordRefs": [ + "Slow" + ], + "spellSpeed": "Slow", + "spellSpeedRef": "Slow", + "rarity": "None", + "rarityRef": "None", + "subtypes": [], + "supertype": "", + "type": "Spell", + "collectible": false, + "set": "Set5" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set5/en_us/img/cards/05SH007T2.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set5/en_us/img/cards/05SH007T2-full.png" + } + ], + "regions": [ + "Shurima" + ], + "regionRefs": [ + "Shurima" + ], + "attack": 0, + "cost": 3, + "health": 0, + "description": "Destroy one of your mana gems to deal 4 to a unit.", + "descriptionRaw": "Destroy one of your mana gems to deal 4 to a unit.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"Pitiful.\" - Xerath", + "artistName": "Kudos Productions", + "name": "Rite of the Arcane", + "cardCode": "05SH007T2", + "keywords": [ + "Slow" + ], + "keywordRefs": [ + "Slow" + ], + "spellSpeed": "Slow", + "spellSpeedRef": "Slow", + "rarity": "None", + "rarityRef": "None", + "subtypes": [], + "supertype": "", + "type": "Spell", + "collectible": false, + "set": "Set5" + }, + { + "associatedCards": [], + "associatedCardRefs": [ + "05NX007" + ], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set5/en_us/img/cards/05NX009.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set5/en_us/img/cards/05NX009-full.png" + } + ], + "regions": [ + "Noxus" + ], + "regionRefs": [ + "Noxus" + ], + "attack": 5, + "cost": 8, + "health": 4, + "description": "When I'm summoned or discarded, create a Twinblade Revenant in hand.", + "descriptionRaw": "When I'm summoned or discarded, create a Twinblade Revenant in hand.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "The Demacians crawled to their ramparts to find death itself descending upon their walls. Though they were able to fell some of the Gray Legion, the dark tide of war soon proved unstoppable.", + "artistName": "Wild Blue Studio", + "name": "Lost Soul", + "cardCode": "05NX009", + "keywords": [], + "keywordRefs": [], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "EPIC", + "rarityRef": "Epic", + "subtypes": [], + "supertype": "", + "type": "Unit", + "collectible": true, + "set": "Set5" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set5/en_us/img/cards/05NX006.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set5/en_us/img/cards/05NX006-full.png" + } + ], + "regions": [ + "Noxus" + ], + "regionRefs": [ + "Noxus" + ], + "attack": 3, + "cost": 1, + "health": 2, + "description": "To play, discard 1.\r\nWhen I'm discarded, summon an exact copy of me.", + "descriptionRaw": "To play, discard 1.\r\nWhen I'm discarded, summon an exact copy of me.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"We have an irregularity in our midst. Though most of those we revive abhor their return to life, this fellow seems to both understand his lot, and revels in the subsequent opportunities. Curious.\"\n- Notes from Dr. Esslanger", + "artistName": "Concept Art House", + "name": "Reborn Grenadier", + "cardCode": "05NX006", + "keywords": [ + "Ephemeral" + ], + "keywordRefs": [ + "Ephemeral" + ], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "COMMON", + "rarityRef": "Common", + "subtypes": [], + "supertype": "", + "type": "Unit", + "collectible": true, + "set": "Set5" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set5/en_us/img/cards/05NX017.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set5/en_us/img/cards/05NX017-full.png" + } + ], + "regions": [ + "Noxus" + ], + "regionRefs": [ + "Noxus" + ], + "attack": 6, + "cost": 3, + "health": 3, + "description": "When I'm summoned, grant Can't Block to the weakest enemy.", + "descriptionRaw": "When I'm summoned, grant Can't Block to the weakest enemy.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"It was the good Lady's suggestion that finally woke the creature. A small dose of iodine salt into the bloodstream, lethal to any mortal, but simply agonizing to our patient. To the risen, there is no greater motivator than pain.\"\n- Notes from Dr. Esslanger", + "artistName": "Kudos Productions", + "name": "Risen Reckoner", + "cardCode": "05NX017", + "keywords": [ + "Overwhelm", + "Ephemeral" + ], + "keywordRefs": [ + "Overwhelm", + "Ephemeral" + ], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "None", + "rarityRef": "None", + "subtypes": [], + "supertype": "", + "type": "Unit", + "collectible": false, + "set": "Set5" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set5/en_us/img/cards/05NX005.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set5/en_us/img/cards/05NX005-full.png" + } + ], + "regions": [ + "Noxus" + ], + "regionRefs": [ + "Noxus" + ], + "attack": 5, + "cost": 5, + "health": 5, + "description": "When I'm discarded, grant your strongest ally +2|+0.", + "descriptionRaw": "When I'm discarded, grant your strongest ally +2|+0.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "As Lady Noradi's powers grew, she pondered whether her powers would take root in the corpses lining Noxus's oldest tombs. She found the light of life a mere flicker in the husks, but from those wilting flames, the shadows of war still danced.", + "artistName": "Kudos Productions", + "name": "Ancient Warmonger", + "cardCode": "05NX005", + "keywords": [ + "Overwhelm" + ], + "keywordRefs": [ + "Overwhelm" + ], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "RARE", + "rarityRef": "Rare", + "subtypes": [], + "supertype": "", + "type": "Unit", + "collectible": true, + "set": "Set5" + }, + { + "associatedCards": [], + "associatedCardRefs": [ + "05NX001T1", + "05NX001T2", + "05NX001T3" + ], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set5/en_us/img/cards/05NX001.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set5/en_us/img/cards/05NX001-full.png" + } + ], + "regions": [ + "Noxus" + ], + "regionRefs": [ + "Noxus" + ], + "attack": 2, + "cost": 7, + "health": 6, + "description": "When I'm discarded, grant your strongest ally Overwhelm and place me into your deck.\r\nI have +1|+0 for each card you've discarded this game (Max +7|+0).\r\n", + "descriptionRaw": "When I'm discarded, grant your strongest ally Overwhelm and place me into your deck.\r\nI have +1|+0 for each card you've discarded this game (Max +7|+0).\r\n", + "levelupDescription": "You've discarded or summoned 35+ Power.", + "levelupDescriptionRaw": "You've discarded or summoned 35+ Power.", + "flavorText": "Sion glimpsed fleeting flashes of opaque memories. Legions standing before him. Accolades. Crowns. War. A king's deathrattle. The Great Nothing. Blood. But just as soon as they floated by, they floated past, pale ribbons in the wind.", + "artistName": "SIXMOREVODKA", + "name": "Sion", + "cardCode": "05NX001", + "keywords": [ + "Overwhelm" + ], + "keywordRefs": [ + "Overwhelm" + ], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "Champion", + "rarityRef": "Champion", + "subtypes": [], + "supertype": "Champion", + "type": "Unit", + "collectible": true, + "set": "Set5" + }, + { + "associatedCards": [], + "associatedCardRefs": [ + "05NX006" + ], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set5/en_us/img/cards/05NX003.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set5/en_us/img/cards/05NX003-full.png" + } + ], + "regions": [ + "Noxus" + ], + "regionRefs": [ + "Noxus" + ], + "attack": 0, + "cost": 2, + "health": 0, + "description": "To play, discard a card.\r\nSummon a Reborn Grenadier and give it +2|+0 this round.", + "descriptionRaw": "To play, discard a card.\r\nSummon a Reborn Grenadier and give it +2|+0 this round.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"Rise again, my child...\" - Dr. Esslanger, Pensive Physician", + "artistName": "Kudos Productions", + "name": "Salt And Stitches", + "cardCode": "05NX003", + "keywords": [ + "Focus" + ], + "keywordRefs": [ + "Focus" + ], + "spellSpeed": "Burst", + "spellSpeedRef": "Burst", + "rarity": "RARE", + "rarityRef": "Rare", + "subtypes": [], + "supertype": "", + "type": "Spell", + "collectible": true, + "set": "Set5" + }, + { + "associatedCards": [], + "associatedCardRefs": [ + "05NX017" + ], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set5/en_us/img/cards/05NX015.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set5/en_us/img/cards/05NX015-full.png" + } + ], + "regions": [ + "Noxus" + ], + "regionRefs": [ + "Noxus" + ], + "attack": 4, + "cost": 5, + "health": 3, + "description": "When I'm summoned, grant Can't Block to the weakest enemy.\r\nLast Breath: Create a Risen Reckoner in hand.", + "descriptionRaw": "When I'm summoned, grant Can't Block to the weakest enemy.\r\nLast Breath: Create a Risen Reckoner in hand.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"The first minotaurs I revived were docile, useless beasts. Neither the thrum of war nor the threat of death could stir their senses.\"\n- Notes from Dr. Esslanger", + "artistName": "Kudos Productions", + "name": "Fallen Reckoner", + "cardCode": "05NX015", + "keywords": [ + "Overwhelm", + "Last Breath" + ], + "keywordRefs": [ + "Overwhelm", + "LastBreath" + ], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "RARE", + "rarityRef": "Rare", + "subtypes": [], + "supertype": "", + "type": "Unit", + "collectible": true, + "set": "Set5" + }, + { + "associatedCards": [], + "associatedCardRefs": [ + "01NX031" + ], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set5/en_us/img/cards/05NX019.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set5/en_us/img/cards/05NX019-full.png" + } + ], + "regions": [ + "Noxus" + ], + "regionRefs": [ + "Noxus" + ], + "attack": 0, + "cost": 6, + "health": 0, + "description": "Reputation: I cost 3. Summon 2 Trifarian Gloryseekers.", + "descriptionRaw": "Reputation: I cost 3. Summon 2 Trifarian Gloryseekers.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "Those seeking glory will stop at nothing to find it.", + "artistName": "Kudos Productions", + "name": "For Glory!", + "cardCode": "05NX019", + "keywords": [ + "Slow" + ], + "keywordRefs": [ + "Slow" + ], + "spellSpeed": "Slow", + "spellSpeedRef": "Slow", + "rarity": "RARE", + "rarityRef": "Rare", + "subtypes": [], + "supertype": "", + "type": "Spell", + "collectible": true, + "set": "Set5" + }, + { + "associatedCards": [], + "associatedCardRefs": [ + "05NX018" + ], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set5/en_us/img/cards/05NX013.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set5/en_us/img/cards/05NX013-full.png" + } + ], + "regions": [ + "Noxus" + ], + "regionRefs": [ + "Noxus" + ], + "attack": 3, + "cost": 2, + "health": 1, + "description": "When I'm discarded, create a Risen Rider in hand.", + "descriptionRaw": "When I'm discarded, create a Risen Rider in hand.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"It was only after rubbing the rider's armor with Blackshade leaves that they were spared from the basilisk's viciousness. The plants are native to the hinterlands, just as the beasts, and are as pungent as they are poisonous.\"\n- Notes from Dr. Esslanger", + "artistName": "Kudos Productions", + "name": "Fallen Rider", + "cardCode": "05NX013", + "keywords": [ + "Fearsome" + ], + "keywordRefs": [ + "Fearsome" + ], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "COMMON", + "rarityRef": "Common", + "subtypes": [], + "supertype": "", + "type": "Unit", + "collectible": true, + "set": "Set5" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set5/en_us/img/cards/05NX018.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set5/en_us/img/cards/05NX018-full.png" + } + ], + "regions": [ + "Noxus" + ], + "regionRefs": [ + "Noxus" + ], + "attack": 4, + "cost": 2, + "health": 2, + "description": "", + "descriptionRaw": "", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"Upon the night, death rode.\" - The Lady of Blood", + "artistName": "Kudos Productions", + "name": "Risen Rider", + "cardCode": "05NX018", + "keywords": [ + "Fearsome" + ], + "keywordRefs": [ + "Fearsome" + ], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "None", + "rarityRef": "None", + "subtypes": [], + "supertype": "", + "type": "Unit", + "collectible": false, + "set": "Set5" + }, + { + "associatedCards": [], + "associatedCardRefs": [ + "05NX001T2", + "05NX001T3", + "05NX001" + ], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set5/en_us/img/cards/05NX001T1.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set5/en_us/img/cards/05NX001T1-full.png" + } + ], + "regions": [ + "Noxus" + ], + "regionRefs": [ + "Noxus" + ], + "attack": 9, + "cost": 7, + "health": 4, + "description": "When I'm summoned, Rally.", + "descriptionRaw": "When I'm summoned, Rally.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"Though the fog lingers as we first wake Sion, the full spectrum of war stirs a life within him that is both furious and reluctant to end.\"\n- Notes from Dr. Esslanger", + "artistName": "SIXMOREVODKA", + "name": "Sion Returned", + "cardCode": "05NX001T1", + "keywords": [ + "Overwhelm", + "Ephemeral" + ], + "keywordRefs": [ + "Overwhelm", + "Ephemeral" + ], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "None", + "rarityRef": "None", + "subtypes": [], + "supertype": "Champion", + "type": "Unit", + "collectible": false, + "set": "Set5" + }, + { + "associatedCards": [], + "associatedCardRefs": [ + "05NX001T1", + "05NX001T2", + "05NX001" + ], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set5/en_us/img/cards/05NX001T3.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set5/en_us/img/cards/05NX001T3-full.png" + } + ], + "regions": [ + "Noxus" + ], + "regionRefs": [ + "Noxus" + ], + "attack": 9, + "cost": 7, + "health": 6, + "description": "Last Breath: Summon Sion Returned. \r\nWhen I'm discarded, grant your strongest ally Overwhelm and place me into your deck.", + "descriptionRaw": "Last Breath: Summon Sion Returned. \r\nWhen I'm discarded, grant your strongest ally Overwhelm and place me into your deck.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "Through the din of battle, he remembered. He remembered his life, a proud servant of Noxus. A revered general who gave his life felling Demacia's king. He remembered his death, and the empty expanse that followed. His was a good life, and a good death. But this... this was madness.", + "artistName": "SIXMOREVODKA", + "name": "Sion", + "cardCode": "05NX001T3", + "keywords": [ + "Overwhelm", + "Last Breath" + ], + "keywordRefs": [ + "Overwhelm", + "LastBreath" + ], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "None", + "rarityRef": "None", + "subtypes": [], + "supertype": "Champion", + "type": "Unit", + "collectible": false, + "set": "Set5" + }, + { + "associatedCards": [], + "associatedCardRefs": [ + "05NX001T1", + "05NX001T3", + "05NX001" + ], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set5/en_us/img/cards/05NX001T2.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set5/en_us/img/cards/05NX001T2-full.png" + } + ], + "regions": [ + "Noxus" + ], + "regionRefs": [ + "Noxus" + ], + "attack": 0, + "cost": 3, + "health": 0, + "description": "To play, discard 1. Kill the weakest enemy.\r\nCreate a Sion in your deck.", + "descriptionRaw": "To play, discard 1. Kill the weakest enemy.\r\nCreate a Sion in your deck.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"Ally, enemy... I don't care.\" - Sion", + "artistName": "Kudos Productions", + "name": "Sion's Roar of the Slayer", + "cardCode": "05NX001T2", + "keywords": [ + "Fast" + ], + "keywordRefs": [ + "Fast" + ], + "spellSpeed": "Fast", + "spellSpeedRef": "Fast", + "rarity": "None", + "rarityRef": "None", + "subtypes": [], + "supertype": "Champion", + "type": "Spell", + "collectible": false, + "set": "Set5" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set5/en_us/img/cards/05NX012.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set5/en_us/img/cards/05NX012-full.png" + } + ], + "regions": [ + "Noxus" + ], + "regionRefs": [ + "Noxus" + ], + "attack": 0, + "cost": 3, + "health": 0, + "description": "To play, discard 1. Kill the weakest enemy.", + "descriptionRaw": "To play, discard 1. Kill the weakest enemy.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"Ally, enemy... I don't care.\" - Sion", + "artistName": "Kudos Productions", + "name": "Roar of the Slayer", + "cardCode": "05NX012", + "keywords": [ + "Fast" + ], + "keywordRefs": [ + "Fast" + ], + "spellSpeed": "Fast", + "spellSpeedRef": "Fast", + "rarity": "COMMON", + "rarityRef": "Common", + "subtypes": [], + "supertype": "", + "type": "Spell", + "collectible": true, + "set": "Set5" + }, + { + "associatedCards": [], + "associatedCardRefs": [ + "01NX041" + ], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set5/en_us/img/cards/05NX014.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set5/en_us/img/cards/05NX014-full.png" + } + ], + "regions": [ + "Noxus" + ], + "regionRefs": [ + "Noxus" + ], + "attack": 0, + "cost": 8, + "health": 0, + "description": "Deal 3 to a unit and summon a Trifarian Shieldbreaker.", + "descriptionRaw": "Deal 3 to a unit and summon a Trifarian Shieldbreaker.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"Shieldbreaker!\" - Sion", + "artistName": "Kudos Productions", + "name": "Weapons of the Lost", + "cardCode": "05NX014", + "keywords": [ + "Slow" + ], + "keywordRefs": [ + "Slow" + ], + "spellSpeed": "Slow", + "spellSpeedRef": "Slow", + "rarity": "COMMON", + "rarityRef": "Common", + "subtypes": [], + "supertype": "", + "type": "Spell", + "collectible": true, + "set": "Set5" + }, + { + "associatedCards": [], + "associatedCardRefs": [ + "05NX009" + ], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set5/en_us/img/cards/05NX007.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set5/en_us/img/cards/05NX007-full.png" + } + ], + "regions": [ + "Noxus" + ], + "regionRefs": [ + "Noxus" + ], + "attack": 4, + "cost": 4, + "health": 3, + "description": "Last Breath: Create a Lost Soul in hand.", + "descriptionRaw": "Last Breath: Create a Lost Soul in hand.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"The Demacians palpably lost their will to fight upon seeing our fallen--who were so selflessly cut down by those brave Vanguard--rise once more. Victory was never in question.\"\n- Excerpt from the Lady of Blood's field report, recipient unknown", + "artistName": "Wild Blue Studio", + "name": "Twinblade Revenant", + "cardCode": "05NX007", + "keywords": [ + "Last Breath", + "Fearsome" + ], + "keywordRefs": [ + "LastBreath", + "Fearsome" + ], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "None", + "rarityRef": "None", + "subtypes": [], + "supertype": "", + "type": "Unit", + "collectible": false, + "set": "Set5" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set5/en_us/img/cards/05NX004.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set5/en_us/img/cards/05NX004-full.png" + } + ], + "regions": [ + "Noxus" + ], + "regionRefs": [ + "Noxus" + ], + "attack": 2, + "cost": 2, + "health": 2, + "description": "Play: Discard 1 to draw a unit.", + "descriptionRaw": "Play: Discard 1 to draw a unit.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "Dr. Esslanger was once a respected and retiring physician who garnered his credible reputation through years of hard work. But it wasn't until a young noblewoman was brought to his study, her blood blackened by betrayal, that he truly began serving Noxus.", + "artistName": "Wild Blue Studio", + "name": "Grave Physician", + "cardCode": "05NX004", + "keywords": [], + "keywordRefs": [], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "COMMON", + "rarityRef": "Common", + "subtypes": [], + "supertype": "", + "type": "Unit", + "collectible": true, + "set": "Set5" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set5/en_us/img/cards/05NX016.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set5/en_us/img/cards/05NX016-full.png" + } + ], + "regions": [ + "Noxus" + ], + "regionRefs": [ + "Noxus" + ], + "attack": 3, + "cost": 4, + "health": 4, + "description": "When a non-Fleeting ally in hand is discarded, create a Fleeting copy of it in hand.", + "descriptionRaw": "When a non-Fleeting ally in hand is discarded, create a Fleeting copy of it in hand.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "Under cover of night, Lady Faris Noradi led her Gray Legion out of the Noxian capital. It took three hard, bloody weeks, but they finally neared the small Demacian outpost her scouts had identified. It was time for the demonstration.", + "artistName": "SIXMOREVODKA", + "name": "The Lady of Blood", + "cardCode": "05NX016", + "keywords": [], + "keywordRefs": [], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "EPIC", + "rarityRef": "Epic", + "subtypes": [], + "supertype": "", + "type": "Unit", + "collectible": true, + "set": "Set5" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set5/en_us/img/cards/05NX002.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set5/en_us/img/cards/05NX002-full.png" + } + ], + "regions": [ + "Noxus" + ], + "regionRefs": [ + "Noxus" + ], + "attack": 3, + "cost": 3, + "health": 2, + "description": "Grant me +2|+1 once you've discarded 3+ cards this game. ", + "descriptionRaw": "Grant me +2|+1 once you've discarded 3+ cards this game. ", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"What could better instill loyalty in a would-be traitor than the sight of a butchered conspirator, brought back to fight under the Noxian banner? They will all serve, one way or another.\" - The Lady of Blood", + "artistName": "Kudos Productions", + "name": "Noble Rebel", + "cardCode": "05NX002", + "keywords": [ + "Overwhelm" + ], + "keywordRefs": [ + "Overwhelm" + ], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "COMMON", + "rarityRef": "Common", + "subtypes": [], + "supertype": "", + "type": "Unit", + "collectible": true, + "set": "Set5" + }, + { + "associatedCards": [], + "associatedCardRefs": [ + "05BW005T1", + "05BW005T2", + "05BW006T2", + "05BW006T1" + ], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set5/en_us/img/cards/05BW005.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set5/en_us/img/cards/05BW005-full.png" + } + ], + "regions": [ + "Bilgewater" + ], + "regionRefs": [ + "Bilgewater" + ], + "attack": 2, + "cost": 3, + "health": 3, + "description": "When you play a spell, grant +1|+0 to the weakest other ally that isn't Immobile.", + "descriptionRaw": "When you play a spell, grant +1|+0 to the weakest other ally that isn't Immobile.", + "levelupDescription": "You've gained 8+ spell mana this game.", + "levelupDescriptionRaw": "You've gained 8+ spell mana this game.", + "flavorText": "\"Have you said your goodbyes, young Tidecaller?\"\n\"Yes, greatmother.\"\n\"Are you afraid?\"\n\"...Yes, greatmother.\"\n\"Good. To be afraid is to be cautious. But trust yourself, as we trust you. Now, go. And may the currents keep you.\"", + "artistName": "SIXMOREVODKA", + "name": "Nami", + "cardCode": "05BW005", + "keywords": [ + "Attune", + "Imbue" + ], + "keywordRefs": [ + "Attune", + "Imbue" + ], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "Champion", + "rarityRef": "Champion", + "subtypes": [], + "supertype": "Champion", + "type": "Unit", + "collectible": true, + "set": "Set5" + }, + { + "associatedCards": [], + "associatedCardRefs": [ + "05BW005T1", + "05BW005", + "05BW006T2", + "05BW006T1" + ], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set5/en_us/img/cards/05BW005T2.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set5/en_us/img/cards/05BW005T2-full.png" + } + ], + "regions": [ + "Bilgewater" + ], + "regionRefs": [ + "Bilgewater" + ], + "attack": 0, + "cost": 2, + "health": 0, + "description": "Deal 2 randomly to an enemy or the enemy Nexus and create a Flow in hand.\r\nCreate a Nami in your deck.", + "descriptionRaw": "Deal 2 randomly to an enemy or the enemy Nexus and create a Flow in hand.\r\nCreate a Nami in your deck.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"Heed the tide's temper...\" - Nami", + "artistName": "Kudos Productions", + "name": "Nami's Ebb", + "cardCode": "05BW005T2", + "keywords": [ + "Fast" + ], + "keywordRefs": [ + "Fast" + ], + "spellSpeed": "Fast", + "spellSpeedRef": "Fast", + "rarity": "None", + "rarityRef": "None", + "subtypes": [], + "supertype": "Champion", + "type": "Spell", + "collectible": false, + "set": "Set5" + }, + { + "associatedCards": [], + "associatedCardRefs": [ + "05BW005", + "05BW005T2", + "05BW006T2", + "05BW006T1" + ], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set5/en_us/img/cards/05BW005T1.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set5/en_us/img/cards/05BW005T1-full.png" + } + ], + "regions": [ + "Bilgewater" + ], + "regionRefs": [ + "Bilgewater" + ], + "attack": 3, + "cost": 3, + "health": 4, + "description": "When you play a spell, grant +2|+1 to the weakest other ally that isn't Immobile.", + "descriptionRaw": "When you play a spell, grant +2|+1 to the weakest other ally that isn't Immobile.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"Do you think she's far along in her journey?\"\n\"We can only hope, Tama.\"\n\"I can see her now... Beautiful eyes glowing in the light of the moon, the shine of saltwater glistening on her scales.\"\n\"This burden... the fate of our people. It should not be hers alone.\"\n\"She is doing her part, as we are doing ours, Loto. All we can do is believe in her, and love her with all our hearts.\"", + "artistName": "SIXMOREVODKA", + "name": "Nami", + "cardCode": "05BW005T1", + "keywords": [ + "Attune", + "Imbue" + ], + "keywordRefs": [ + "Attune", + "Imbue" + ], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "None", + "rarityRef": "None", + "subtypes": [], + "supertype": "Champion", + "type": "Unit", + "collectible": false, + "set": "Set5" + }, + { + "associatedCards": [], + "associatedCardRefs": [ + "05BW006T2", + "05BW006T1" + ], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set5/en_us/img/cards/05BW006.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set5/en_us/img/cards/05BW006-full.png" + } + ], + "regions": [ + "Bilgewater" + ], + "regionRefs": [ + "Bilgewater" + ], + "attack": 0, + "cost": 2, + "health": 0, + "description": "Deal 2 randomly to an enemy or the enemy Nexus and create a Flow in hand.", + "descriptionRaw": "Deal 2 randomly to an enemy or the enemy Nexus and create a Flow in hand.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"Heed the tide's temper...\" - Nami", + "artistName": "Kudos Productions", + "name": "Ebb", + "cardCode": "05BW006", + "keywords": [ + "Fast" + ], + "keywordRefs": [ + "Fast" + ], + "spellSpeed": "Fast", + "spellSpeedRef": "Fast", + "rarity": "COMMON", + "rarityRef": "Common", + "subtypes": [], + "supertype": "", + "type": "Spell", + "collectible": true, + "set": "Set5" + }, + { + "associatedCards": [], + "associatedCardRefs": [ + "05BW006T1" + ], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set5/en_us/img/cards/05BW006T2.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set5/en_us/img/cards/05BW006T2-full.png" + } + ], + "regions": [ + "Bilgewater" + ], + "regionRefs": [ + "Bilgewater" + ], + "attack": 0, + "cost": 2, + "health": 0, + "description": "Heal an ally or your Nexus 2, and create an Ebb and Flow in hand.", + "descriptionRaw": "Heal an ally or your Nexus 2, and create an Ebb and Flow in hand.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"...And cherish the swell's calm.\" - Nami", + "artistName": "Kudos Productions", + "name": "Flow", + "cardCode": "05BW006T2", + "keywords": [ + "Fleeting", + "Burst" + ], + "keywordRefs": [ + "Fleeting", + "Burst" + ], + "spellSpeed": "Burst", + "spellSpeedRef": "Burst", + "rarity": "None", + "rarityRef": "None", + "subtypes": [], + "supertype": "", + "type": "Spell", + "collectible": false, + "set": "Set5" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set5/en_us/img/cards/05BW006T1.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set5/en_us/img/cards/05BW006T1-full.png" + } + ], + "regions": [ + "Bilgewater" + ], + "regionRefs": [ + "Bilgewater" + ], + "attack": 0, + "cost": 2, + "health": 0, + "description": "Deal 2 randomly to an enemy or the enemy Nexus and heal an ally or your Nexus 2.", + "descriptionRaw": "Deal 2 randomly to an enemy or the enemy Nexus and heal an ally or your Nexus 2.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"I decide what the tide will bring.\" - Nami", + "artistName": "Kudos Productions", + "name": "Ebb and Flow", + "cardCode": "05BW006T1", + "keywords": [ + "Fast", + "Fleeting" + ], + "keywordRefs": [ + "Fast", + "Fleeting" + ], + "spellSpeed": "Fast", + "spellSpeedRef": "Fast", + "rarity": "None", + "rarityRef": "None", + "subtypes": [], + "supertype": "", + "type": "Spell", + "collectible": false, + "set": "Set5" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set5/en_us/img/cards/05BW002.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set5/en_us/img/cards/05BW002-full.png" + } + ], + "regions": [ + "Bilgewater" + ], + "regionRefs": [ + "Bilgewater" + ], + "attack": 4, + "cost": 3, + "health": 3, + "description": "", + "descriptionRaw": "", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"Sure, a few of 'em hunt us, like they hunt everything. But y'know, most landwalkers I meet are just looking to enjoy their time in the big blue, same as us. We're all just people.\"", + "artistName": "Concept Art House", + "name": "Journeying Sandhopper", + "cardCode": "05BW002", + "keywords": [ + "Attune" + ], + "keywordRefs": [ + "Attune" + ], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "COMMON", + "rarityRef": "Common", + "subtypes": [], + "supertype": "", + "type": "Unit", + "collectible": true, + "set": "Set5" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set5/en_us/img/cards/05BW008.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set5/en_us/img/cards/05BW008-full.png" + } + ], + "regions": [ + "Bilgewater" + ], + "regionRefs": [ + "Bilgewater" + ], + "attack": 2, + "cost": 4, + "health": 3, + "description": "When you play a spell, give me +2|+0 this round.", + "descriptionRaw": "When you play a spell, give me +2|+0 this round.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"Many of our tribe find Loto somewhat unnerving. They see only a tireless fighter, and the distance in his troubled gaze. But I know what's truly in his heart--fear that he is not strong enough to save us... and extraordinary love.\" - Tama, Marai Songstress", + "artistName": "Envar Studio", + "name": "Abyssal Guard", + "cardCode": "05BW008", + "keywords": [ + "Fearsome", + "Imbue" + ], + "keywordRefs": [ + "Fearsome", + "Imbue" + ], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "COMMON", + "rarityRef": "Common", + "subtypes": [], + "supertype": "", + "type": "Unit", + "collectible": true, + "set": "Set5" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set5/en_us/img/cards/05BW011.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set5/en_us/img/cards/05BW011-full.png" + } + ], + "regions": [ + "Bilgewater" + ], + "regionRefs": [ + "Bilgewater" + ], + "attack": 3, + "cost": 5, + "health": 3, + "description": "When you play 2 spells each round, grant other allies +1|+1. ", + "descriptionRaw": "When you play 2 spells each round, grant other allies +1|+1. ", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"LISTEN HERE, SOWDIER. I'LL HAVE YOU KNOW I HAVE OVA FWEE-HUNDWED CONFIRMED KWILLS AND I'M DA TOP ADMIWAL IN ALL DA MAWINE'S FORCES SO WHEN I SAY SWIM, YOU BETTA SWIM, OKAY? OKAY THANK YOU!\"", + "artistName": "Kudos Productions", + "name": "Fleet Admiral Shelly", + "cardCode": "05BW011", + "keywords": [ + "Attune", + "Elusive", + "Imbue" + ], + "keywordRefs": [ + "Attune", + "Elusive", + "Imbue" + ], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "EPIC", + "rarityRef": "Epic", + "subtypes": [], + "supertype": "", + "type": "Unit", + "collectible": true, + "set": "Set5" + }, + { + "associatedCards": [], + "associatedCardRefs": [ + "05BW003T1", + "05BW003T2" + ], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set5/en_us/img/cards/05BW003.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set5/en_us/img/cards/05BW003-full.png" + } + ], + "regions": [ + "Bilgewater" + ], + "regionRefs": [ + "Bilgewater" + ], + "attack": 0, + "cost": 3, + "health": 0, + "description": "Deal 1 to two different randomly targeted enemies and create a Crashing Wave in your deck.", + "descriptionRaw": "Deal 1 to two different randomly targeted enemies and create a Crashing Wave in your deck.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"Oceans spill forth!\" - Nami", + "artistName": "Kudos Productions", + "name": "Tidal Wave", + "cardCode": "05BW003", + "keywords": [ + "Slow" + ], + "keywordRefs": [ + "Slow" + ], + "spellSpeed": "Slow", + "spellSpeedRef": "Slow", + "rarity": "RARE", + "rarityRef": "Rare", + "subtypes": [], + "supertype": "", + "type": "Spell", + "collectible": true, + "set": "Set5" + }, + { + "associatedCards": [], + "associatedCardRefs": [ + "05BW003T2" + ], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set5/en_us/img/cards/05BW003T1.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set5/en_us/img/cards/05BW003T1-full.png" + } + ], + "regions": [ + "Bilgewater" + ], + "regionRefs": [ + "Bilgewater" + ], + "attack": 0, + "cost": 3, + "health": 0, + "description": "Deal 2 to four different randomly targeted enemies and create a Colossal Wave in your deck.", + "descriptionRaw": "Deal 2 to four different randomly targeted enemies and create a Colossal Wave in your deck.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"Roiling seas engulf them!\" - Nami", + "artistName": "Kudos Productions", + "name": "Crashing Wave", + "cardCode": "05BW003T1", + "keywords": [ + "Slow" + ], + "keywordRefs": [ + "Slow" + ], + "spellSpeed": "Slow", + "spellSpeedRef": "Slow", + "rarity": "None", + "rarityRef": "None", + "subtypes": [], + "supertype": "", + "type": "Spell", + "collectible": false, + "set": "Set5" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set5/en_us/img/cards/05BW003T2.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set5/en_us/img/cards/05BW003T2-full.png" + } + ], + "regions": [ + "Bilgewater" + ], + "regionRefs": [ + "Bilgewater" + ], + "attack": 0, + "cost": 3, + "health": 0, + "description": "Deal 4 to all enemies and the enemy Nexus. ", + "descriptionRaw": "Deal 4 to all enemies and the enemy Nexus. ", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"Rolling tides, heed my call!\" - Nami", + "artistName": "Kudos Productions", + "name": "Colossal Wave", + "cardCode": "05BW003T2", + "keywords": [ + "Slow" + ], + "keywordRefs": [ + "Slow" + ], + "spellSpeed": "Slow", + "spellSpeedRef": "Slow", + "rarity": "None", + "rarityRef": "None", + "subtypes": [], + "supertype": "", + "type": "Spell", + "collectible": false, + "set": "Set5" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set5/en_us/img/cards/05BW004.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set5/en_us/img/cards/05BW004-full.png" + } + ], + "regions": [ + "Bilgewater" + ], + "regionRefs": [ + "Bilgewater" + ], + "attack": 4, + "cost": 6, + "health": 6, + "description": "If you would get a mana gem, instead refill your spell mana.\r\nWhen you play a spell, create in hand a random spell that costs 3 or less and give it Fleeting.", + "descriptionRaw": "If you would get a mana gem, instead refill your spell mana.\r\nWhen you play a spell, create in hand a random spell that costs 3 or less and give it Fleeting.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "To the Marai, the Leo'lei is a herald of great change. It is said each flourish of its graceful wings influences the flow of the tides.", + "artistName": "Michael Ivan", + "name": "Avatar of the Tides", + "cardCode": "05BW004", + "keywords": [ + "Imbue" + ], + "keywordRefs": [ + "Imbue" + ], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "EPIC", + "rarityRef": "Epic", + "subtypes": [], + "supertype": "", + "type": "Unit", + "collectible": true, + "set": "Set5" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set5/en_us/img/cards/05BW001.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set5/en_us/img/cards/05BW001-full.png" + } + ], + "regions": [ + "Bilgewater" + ], + "regionRefs": [ + "Bilgewater" + ], + "attack": 2, + "cost": 2, + "health": 1, + "description": "When I'm summoned, summon a random 1 cost follower.", + "descriptionRaw": "When I'm summoned, summon a random 1 cost follower.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "The Marai rarely desire to venture far from home. But Ai'la was born with curiosity in her heart--and though she is bound by duty to her tribe, she spends each waking moment dreaming of the day she can truly be free.", + "artistName": "Kudos Productions", + "name": "Marai Warden", + "cardCode": "05BW001", + "keywords": [], + "keywordRefs": [], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "RARE", + "rarityRef": "Rare", + "subtypes": [], + "supertype": "", + "type": "Unit", + "collectible": true, + "set": "Set5" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set5/en_us/img/cards/05BW010.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set5/en_us/img/cards/05BW010-full.png" + } + ], + "regions": [ + "Bilgewater" + ], + "regionRefs": [ + "Bilgewater" + ], + "attack": 3, + "cost": 4, + "health": 3, + "description": "When I'm summoned, create 5 random 6+ cost spells in your deck and lower their cost to 3.", + "descriptionRaw": "When I'm summoned, create 5 random 6+ cost spells in your deck and lower their cost to 3.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "The Marai's ancestral home is protected by the celestial light of a moonstone. Every hundred years, its light begins to wane, and a new Tidecaller is tasked with finding another--for without it, the Marai people would be plunged into darkness, and fall prey to the horrors that lurk in the depths.", + "artistName": "Kudos Productions", + "name": "Marai Greatmother", + "cardCode": "05BW010", + "keywords": [], + "keywordRefs": [], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "COMMON", + "rarityRef": "Common", + "subtypes": [], + "supertype": "", + "type": "Unit", + "collectible": true, + "set": "Set5" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set5/en_us/img/cards/05BW013.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set5/en_us/img/cards/05BW013-full.png" + } + ], + "regions": [ + "Bilgewater" + ], + "regionRefs": [ + "Bilgewater" + ], + "attack": 3, + "cost": 2, + "health": 2, + "description": "When I'm summoned, if you've played a spell this round, grant me Elusive.", + "descriptionRaw": "When I'm summoned, if you've played a spell this round, grant me Elusive.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"The ocean believes that the wave will return,\ngives trust to the ebb, to the flow, to the churn.\nSo 'ere the wave crashes against the shore, \nthe ocean delights in the crest's bold roar.\"\n- A verse from 'Serenade for the Tidecaller'", + "artistName": "Kudos Productions", + "name": "Marai Songstress", + "cardCode": "05BW013", + "keywords": [], + "keywordRefs": [], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "RARE", + "rarityRef": "Rare", + "subtypes": [], + "supertype": "", + "type": "Unit", + "collectible": true, + "set": "Set5" + }, + { + "associatedCards": [], + "associatedCardRefs": [ + "05PZ008" + ], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set5/en_us/img/cards/05PZ015.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set5/en_us/img/cards/05PZ015-full.png" + } + ], + "regions": [ + "Piltover & Zaun" + ], + "regionRefs": [ + "PiltoverZaun" + ], + "attack": 3, + "cost": 4, + "health": 5, + "description": "Whenever your opponent draws, plant 1 Flashbomb Trap randomly in the top 8 cards in the enemy deck. ", + "descriptionRaw": "Whenever your opponent draws, plant 1 Flashbomb Trap randomly in the top 8 cards in the enemy deck. ", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"Officer was witnessed pursuing suspect at a high speed into a trap of her own making. Following the arrest, officer proceeded to submit her own speeding citation and fine, claiming (somewhat dramatically) 'Justice is a two-way street.'\" \n- Excerpt from a Warden beat report", + "artistName": "SIXMOREVODKA", + "name": "Justice Rider", + "cardCode": "05PZ015", + "keywords": [], + "keywordRefs": [], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "EPIC", + "rarityRef": "Epic", + "subtypes": [], + "supertype": "", + "type": "Unit", + "collectible": true, + "set": "Set5" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set5/en_us/img/cards/05PZ012.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set5/en_us/img/cards/05PZ012-full.png" + } + ], + "regions": [ + "Piltover & Zaun" + ], + "regionRefs": [ + "PiltoverZaun" + ], + "attack": 3, + "cost": 3, + "health": 3, + "description": "Play: Pick a spell in the top 5 cards of your deck and create an exact Fleeting copy in hand.", + "descriptionRaw": "Play: Pick a spell in the top 5 cards of your deck and create an exact Fleeting copy in hand.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "Detectives are nothing without leads. An archivist's job is to collect every scrap of intel and create new possibilities where none previously existed.", + "artistName": "SIXMOREVODKA", + "name": "Station Archivist", + "cardCode": "05PZ012", + "keywords": [], + "keywordRefs": [], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "RARE", + "rarityRef": "Rare", + "subtypes": [], + "supertype": "", + "type": "Unit", + "collectible": true, + "set": "Set5" + }, + { + "associatedCards": [], + "associatedCardRefs": [ + "05PZ023" + ], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set5/en_us/img/cards/05PZ026.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set5/en_us/img/cards/05PZ026-full.png" + } + ], + "regions": [ + "Piltover & Zaun" + ], + "regionRefs": [ + "PiltoverZaun" + ], + "attack": 0, + "cost": 6, + "health": 0, + "description": "Summon 2 Forge Workers.", + "descriptionRaw": "Summon 2 Forge Workers.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"Shift change!\" - Forge Chief", + "artistName": "Kudos Productions", + "name": "Assembly Line", + "cardCode": "05PZ026", + "keywords": [ + "Slow" + ], + "keywordRefs": [ + "Slow" + ], + "spellSpeed": "Slow", + "spellSpeedRef": "Slow", + "rarity": "COMMON", + "rarityRef": "Common", + "subtypes": [], + "supertype": "", + "type": "Spell", + "collectible": true, + "set": "Set5" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set5/en_us/img/cards/05PZ019.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set5/en_us/img/cards/05PZ019-full.png" + } + ], + "regions": [ + "Piltover & Zaun" + ], + "regionRefs": [ + "PiltoverZaun" + ], + "attack": 0, + "cost": 5, + "health": 0, + "description": "Pick a player to discard their lowest cost card to draw 3.", + "descriptionRaw": "Pick a player to discard their lowest cost card to draw 3.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"Everything has a cost.\" - Corina Veraza", + "artistName": "Kudos Productions", + "name": "Most Wanted", + "cardCode": "05PZ019", + "keywords": [ + "Slow" + ], + "keywordRefs": [ + "Slow" + ], + "spellSpeed": "Slow", + "spellSpeedRef": "Slow", + "rarity": "EPIC", + "rarityRef": "Epic", + "subtypes": [], + "supertype": "", + "type": "Spell", + "collectible": true, + "set": "Set5" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set5/en_us/img/cards/05PZ023.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set5/en_us/img/cards/05PZ023-full.png" + } + ], + "regions": [ + "Piltover & Zaun" + ], + "regionRefs": [ + "PiltoverZaun" + ], + "attack": 3, + "cost": 3, + "health": 3, + "description": "", + "descriptionRaw": "", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"Yeah so I've been 'elping Jayce an' them lot 'tinker around with this new thing. Powerformative technology, we call it. Truth be told, Jayce said I'll be listed as co-inventor once the documentation's done! Them bigwigs know where the real smarts is, eh?\"", + "artistName": "Envar Studio", + "name": "Forge Worker", + "cardCode": "05PZ023", + "keywords": [], + "keywordRefs": [], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "None", + "rarityRef": "None", + "subtypes": [], + "supertype": "", + "type": "Unit", + "collectible": false, + "set": "Set5" + }, + { + "associatedCards": [], + "associatedCardRefs": [ + "05PZ022", + "05PZ031T1" + ], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set5/en_us/img/cards/05PZ031.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set5/en_us/img/cards/05PZ031-full.png" + } + ], + "regions": [ + "Piltover & Zaun" + ], + "regionRefs": [ + "PiltoverZaun" + ], + "attack": 6, + "cost": 7, + "health": 5, + "description": "When I'm summoned, draw Jayce. Attack: Deal 1 to the enemy Nexus. For each 6+ cost spell you've played this game, increase it by 1.", + "descriptionRaw": "When I'm summoned, draw Jayce. Attack: Deal 1 to the enemy Nexus. For each 6+ cost spell you've played this game, increase it by 1.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"The magnanimous Albus Ferros has once again THRUST himself into the spotlight, dramatically outbidding Clans Cadwalder and Giopara for the rights to sponsor Jayce's Hexgate research. 'A fine day for Ferros is a fine day for Piltover', as the saying goes, and yesterday was a very fine day for Clan Ferros, indeed!\"\n- Excerpt from a sponsored spread in the Piltover Daily", + "artistName": "Kudos Productions", + "name": "Albus Ferros", + "cardCode": "05PZ031", + "keywords": [ + "Quick Attack" + ], + "keywordRefs": [ + "QuickStrike" + ], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "EPIC", + "rarityRef": "Epic", + "subtypes": [], + "supertype": "", + "type": "Unit", + "collectible": true, + "set": "Set5" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set5/en_us/img/cards/05PZ031T1.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set5/en_us/img/cards/05PZ031T1-full.png" + } + ], + "regions": [ + "Piltover & Zaun" + ], + "regionRefs": [ + "PiltoverZaun" + ], + "attack": 0, + "cost": 0, + "health": 0, + "description": "Deal 1 to the enemy Nexus.", + "descriptionRaw": "Deal 1 to the enemy Nexus.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"First, the investment. Then, the dividend.\" - Albus Ferros", + "artistName": "Kudos Productions", + "name": "Ferros' Dividend", + "cardCode": "05PZ031T1", + "keywords": [ + "Skill" + ], + "keywordRefs": [ + "Skill" + ], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "None", + "rarityRef": "None", + "subtypes": [], + "supertype": "", + "type": "Ability", + "collectible": false, + "set": "Set5" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set5/en_us/img/cards/05PZ027.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set5/en_us/img/cards/05PZ027-full.png" + } + ], + "regions": [ + "Piltover & Zaun" + ], + "regionRefs": [ + "PiltoverZaun" + ], + "attack": 0, + "cost": 6, + "health": 0, + "description": "Deal 3 to an enemy or the enemy Nexus, and 3 to another.", + "descriptionRaw": "Deal 3 to an enemy or the enemy Nexus, and 3 to another.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"Firing!\" - Jayce", + "artistName": "Kudos Productions", + "name": "Shock Blast", + "cardCode": "05PZ027", + "keywords": [ + "Slow" + ], + "keywordRefs": [ + "Slow" + ], + "spellSpeed": "Slow", + "spellSpeedRef": "Slow", + "rarity": "RARE", + "rarityRef": "Rare", + "subtypes": [], + "supertype": "", + "type": "Spell", + "collectible": true, + "set": "Set5" + }, + { + "associatedCards": [], + "associatedCardRefs": [ + "05PZ022T1", + "05PZ022T2", + "05PZ022T3" + ], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set5/en_us/img/cards/05PZ022.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set5/en_us/img/cards/05PZ022-full.png" + } + ], + "regions": [ + "Piltover & Zaun" + ], + "regionRefs": [ + "PiltoverZaun" + ], + "attack": 4, + "cost": 4, + "health": 4, + "description": "Play: Grant me Quick Attack or Challenger.", + "descriptionRaw": "Play: Grant me Quick Attack or Challenger.", + "levelupDescription": "You've played two 6+ cost spells. When I level up, create an Acceleration Gate in hand.", + "levelupDescriptionRaw": "You've played two 6+ cost spells. When I level up, create an Acceleration Gate in hand.", + "flavorText": "\"So, Rosa, as you know, this powerformative tech promises to change the world.\"\n\"Truly groundbreaking work, Jayce. The way those coinhiberators splice together. It's breathtaking.\"\n\"It sure is. All Axel's idea, too! Right, my good man?\"\n\"Well, you know me, mate. Don't like to brag...\"", + "artistName": "Kudos Productions", + "name": "Jayce", + "cardCode": "05PZ022", + "keywords": [], + "keywordRefs": [], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "Champion", + "rarityRef": "Champion", + "subtypes": [], + "supertype": "Champion", + "type": "Unit", + "collectible": true, + "set": "Set5" + }, + { + "associatedCards": [], + "associatedCardRefs": [ + "05PZ022", + "05PZ022T2" + ], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set5/en_us/img/cards/05PZ022T8.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set5/en_us/img/cards/05PZ022T8-full.png" + } + ], + "regions": [ + "Piltover & Zaun" + ], + "regionRefs": [ + "PiltoverZaun" + ], + "attack": 5, + "cost": 4, + "health": 5, + "description": "Each round, the first time you play a 6+ cost spell, copy it with the same targets.", + "descriptionRaw": "Each round, the first time you play a 6+ cost spell, copy it with the same targets.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"Cannon's primed, and hammer's engaged. This is going to be one for the history books, folks.\"", + "artistName": "Kudos Productions", + "name": "Jayce", + "cardCode": "05PZ022T8", + "keywords": [ + "Quick Attack" + ], + "keywordRefs": [ + "QuickStrike" + ], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "None", + "rarityRef": "None", + "subtypes": [], + "supertype": "Champion", + "type": "Unit", + "collectible": false, + "set": "Set5" + }, + { + "associatedCards": [], + "associatedCardRefs": [ + "05PZ022", + "05PZ022T2" + ], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set5/en_us/img/cards/05PZ022T1.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set5/en_us/img/cards/05PZ022T1-full.png" + } + ], + "regions": [ + "Piltover & Zaun" + ], + "regionRefs": [ + "PiltoverZaun" + ], + "attack": 5, + "cost": 4, + "health": 5, + "description": "Play: Grant me Quick Attack or Challenger.\r\nEach round, the first time you play a 6+ cost spell, copy it with the same targets.", + "descriptionRaw": "Play: Grant me Quick Attack or Challenger.\r\nEach round, the first time you play a 6+ cost spell, copy it with the same targets.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"Cannon's primed, and hammer's engaged. This is going to be one for the history books, folks.\"", + "artistName": "Kudos Productions", + "name": "Jayce", + "cardCode": "05PZ022T1", + "keywords": [], + "keywordRefs": [], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "None", + "rarityRef": "None", + "subtypes": [], + "supertype": "Champion", + "type": "Unit", + "collectible": false, + "set": "Set5" + }, + { + "associatedCards": [], + "associatedCardRefs": [ + "05PZ022", + "05PZ022T1" + ], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set5/en_us/img/cards/05PZ022T2.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set5/en_us/img/cards/05PZ022T2-full.png" + } + ], + "regions": [ + "Piltover & Zaun" + ], + "regionRefs": [ + "PiltoverZaun" + ], + "attack": 0, + "cost": 6, + "health": 0, + "description": "Deal 3 to an enemy or the enemy Nexus, and 3 to another. Create a Jayce in your deck.", + "descriptionRaw": "Deal 3 to an enemy or the enemy Nexus, and 3 to another. Create a Jayce in your deck.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"Firing!\" - Jayce", + "artistName": "Kudos Productions", + "name": "Jayce's Shock Blast", + "cardCode": "05PZ022T2", + "keywords": [ + "Slow" + ], + "keywordRefs": [ + "Slow" + ], + "spellSpeed": "Slow", + "spellSpeedRef": "Slow", + "rarity": "None", + "rarityRef": "None", + "subtypes": [], + "supertype": "Champion", + "type": "Spell", + "collectible": false, + "set": "Set5" + }, + { + "associatedCards": [], + "associatedCardRefs": [ + "05PZ022T9", + "05PZ022T2", + "05PZ022T3" + ], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set5/en_us/img/cards/05PZ022T7.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set5/en_us/img/cards/05PZ022T7-full.png" + } + ], + "regions": [ + "Piltover & Zaun" + ], + "regionRefs": [ + "PiltoverZaun" + ], + "attack": 4, + "cost": 4, + "health": 4, + "description": "", + "descriptionRaw": "", + "levelupDescription": "You've played two 6+ cost spells. When I level up, create an Acceleration Gate in hand.", + "levelupDescriptionRaw": "You've played two 6+ cost spells. When I level up, create an Acceleration Gate in hand.", + "flavorText": "\"So, Rosa, as you know, this powerformative tech promises to change the world.\"\n\"Truly groundbreaking work, Jayce. The way those coinhiberators splice together. It's breathtaking.\"\n\"It sure is. All Axel's idea, too! Right, my good man?\"\n\"Well, you know me, mate. Don't like to brag...\"", + "artistName": "Kudos Productions", + "name": "Jayce", + "cardCode": "05PZ022T7", + "keywords": [ + "Challenger" + ], + "keywordRefs": [ + "Challenger" + ], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "Champion", + "rarityRef": "Champion", + "subtypes": [], + "supertype": "Champion", + "type": "Unit", + "collectible": false, + "set": "Set5" + }, + { + "associatedCards": [], + "associatedCardRefs": [ + "05PZ022T8", + "05PZ022T2", + "05PZ022T3" + ], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set5/en_us/img/cards/05PZ022T6.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set5/en_us/img/cards/05PZ022T6-full.png" + } + ], + "regions": [ + "Piltover & Zaun" + ], + "regionRefs": [ + "PiltoverZaun" + ], + "attack": 4, + "cost": 4, + "health": 4, + "description": "", + "descriptionRaw": "", + "levelupDescription": "You've played two 6+ cost spells. When I level up, create an Acceleration Gate in hand.", + "levelupDescriptionRaw": "You've played two 6+ cost spells. When I level up, create an Acceleration Gate in hand.", + "flavorText": "\"So, Rosa, as you know, this powerformative tech promises to change the world.\"\n\"Truly groundbreaking work, Jayce. The way those coinhiberators splice together. It's breathtaking.\"\n\"It sure is. All Axel's idea, too! Right, my good man?\"\n\"Well, you know me, mate. Don't like to brag...\"", + "artistName": "Kudos Productions", + "name": "Jayce", + "cardCode": "05PZ022T6", + "keywords": [ + "Quick Attack" + ], + "keywordRefs": [ + "QuickStrike" + ], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "Champion", + "rarityRef": "Champion", + "subtypes": [], + "supertype": "Champion", + "type": "Unit", + "collectible": false, + "set": "Set5" + }, + { + "associatedCards": [], + "associatedCardRefs": [ + "05PZ022", + "05PZ022T2" + ], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set5/en_us/img/cards/05PZ022T9.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set5/en_us/img/cards/05PZ022T9-full.png" + } + ], + "regions": [ + "Piltover & Zaun" + ], + "regionRefs": [ + "PiltoverZaun" + ], + "attack": 5, + "cost": 4, + "health": 5, + "description": "Each round, the first time you play a 6+ cost spell, copy it with the same targets.", + "descriptionRaw": "Each round, the first time you play a 6+ cost spell, copy it with the same targets.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"Cannon's primed, and hammer's engaged. This is going to be one for the history books, folks.\"", + "artistName": "Kudos Productions", + "name": "Jayce", + "cardCode": "05PZ022T9", + "keywords": [ + "Challenger" + ], + "keywordRefs": [ + "Challenger" + ], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "None", + "rarityRef": "None", + "subtypes": [], + "supertype": "Champion", + "type": "Unit", + "collectible": false, + "set": "Set5" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set5/en_us/img/cards/05PZ022T3.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set5/en_us/img/cards/05PZ022T3-full.png" + } + ], + "regions": [ + "Piltover & Zaun" + ], + "regionRefs": [ + "PiltoverZaun" + ], + "attack": 0, + "cost": 6, + "health": 0, + "description": "Give your allies +2|+0 and Quick Attack this round. If they already have it or Double Attack, give them a random keyword instead.", + "descriptionRaw": "Give your allies +2|+0 and Quick Attack this round. If they already have it or Double Attack, give them a random keyword instead.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"Gate is a go.\" - Jayce", + "artistName": "Kudos Productions", + "name": "Acceleration Gate", + "cardCode": "05PZ022T3", + "keywords": [ + "Slow" + ], + "keywordRefs": [ + "Slow" + ], + "spellSpeed": "Slow", + "spellSpeedRef": "Slow", + "rarity": "None", + "rarityRef": "None", + "subtypes": [], + "supertype": "", + "type": "Spell", + "collectible": false, + "set": "Set5" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set5/en_us/img/cards/05PZ017.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set5/en_us/img/cards/05PZ017-full.png" + } + ], + "regions": [ + "Piltover & Zaun" + ], + "regionRefs": [ + "PiltoverZaun" + ], + "attack": 0, + "cost": 3, + "health": 0, + "description": "Deal 2 to a unit. If you've added 2+ cards to your hand this round, deal 3 to it instead.", + "descriptionRaw": "Deal 2 to a unit. If you've added 2+ cards to your hand this round, deal 3 to it instead.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"Better let 'em air out a minute. Greenies can't take the smell. But lemme tells ya... once you're accustomed, nothin' like it!\" - Puffcap Peddler", + "artistName": "Kudos Productions", + "name": "Sump Fumes", + "cardCode": "05PZ017", + "keywords": [ + "Fast" + ], + "keywordRefs": [ + "Fast" + ], + "spellSpeed": "Fast", + "spellSpeedRef": "Fast", + "rarity": "COMMON", + "rarityRef": "Common", + "subtypes": [], + "supertype": "", + "type": "Spell", + "collectible": true, + "set": "Set5" + }, + { + "associatedCards": [], + "associatedCardRefs": [ + "05PZ008" + ], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set5/en_us/img/cards/05PZ013.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set5/en_us/img/cards/05PZ013-full.png" + } + ], + "regions": [ + "Piltover & Zaun" + ], + "regionRefs": [ + "PiltoverZaun" + ], + "attack": 0, + "cost": 3, + "health": 0, + "description": "Deal 2 to a unit and plant 2 Flashbomb Traps randomly in the top 8 cards of the enemy deck.", + "descriptionRaw": "Deal 2 to a unit and plant 2 Flashbomb Traps randomly in the top 8 cards of the enemy deck.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"Here's MY calling card.\" - Caitlyn", + "artistName": "Kudos Productions", + "name": "Piltover Peacemaker", + "cardCode": "05PZ013", + "keywords": [ + "Fast" + ], + "keywordRefs": [ + "Fast" + ], + "spellSpeed": "Fast", + "spellSpeedRef": "Fast", + "rarity": "COMMON", + "rarityRef": "Common", + "subtypes": [], + "supertype": "", + "type": "Spell", + "collectible": true, + "set": "Set5" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set5/en_us/img/cards/05PZ020.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set5/en_us/img/cards/05PZ020-full.png" + } + ], + "regions": [ + "Piltover & Zaun" + ], + "regionRefs": [ + "PiltoverZaun" + ], + "attack": 0, + "cost": 3, + "health": 0, + "description": "Give an ally +2|+0 this round. If you've added 2+ cards to your hand this round, give it Elusive this round.", + "descriptionRaw": "Give an ally +2|+0 this round. If you've added 2+ cards to your hand this round, give it Elusive this round.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"We'll surround the location while using smokespinners to mask our movements...\" - Caitlyn", + "artistName": "Kudos Productions", + "name": "Ambush", + "cardCode": "05PZ020", + "keywords": [ + "Burst" + ], + "keywordRefs": [ + "Burst" + ], + "spellSpeed": "Burst", + "spellSpeedRef": "Burst", + "rarity": "COMMON", + "rarityRef": "Common", + "subtypes": [], + "supertype": "", + "type": "Spell", + "collectible": true, + "set": "Set5" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set5/en_us/img/cards/05PZ024.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set5/en_us/img/cards/05PZ024-full.png" + } + ], + "regions": [ + "Piltover & Zaun" + ], + "regionRefs": [ + "PiltoverZaun" + ], + "attack": 2, + "cost": 2, + "health": 1, + "description": "Play: Manifest a 6+ cost spell from your regions.", + "descriptionRaw": "Play: Manifest a 6+ cost spell from your regions.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"About the only good part of Ferros financing my work was getting to team up with Reggie. Not only is the man one of the most competent people I've ever worked with, he's a heck of a guy, too.\"\n- Excerpt from Jayce's journal", + "artistName": "Kudos Productions", + "name": "Ferros Financier", + "cardCode": "05PZ024", + "keywords": [], + "keywordRefs": [], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "COMMON", + "rarityRef": "Common", + "subtypes": [], + "supertype": "", + "type": "Unit", + "collectible": true, + "set": "Set5" + }, + { + "associatedCards": [], + "associatedCardRefs": [ + "05PZ008" + ], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set5/en_us/img/cards/05PZ010.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set5/en_us/img/cards/05PZ010-full.png" + } + ], + "regions": [ + "Piltover & Zaun" + ], + "regionRefs": [ + "PiltoverZaun" + ], + "attack": 0, + "cost": 1, + "health": 0, + "description": "Plant 2 Flashbomb Traps randomly in the top 8 cards of the enemy deck.", + "descriptionRaw": "Plant 2 Flashbomb Traps randomly in the top 8 cards of the enemy deck.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"On my signal.\" - Caitlyn", + "artistName": "Kudos Productions", + "name": "Advanced Intel", + "cardCode": "05PZ010", + "keywords": [ + "Burst" + ], + "keywordRefs": [ + "Burst" + ], + "spellSpeed": "Burst", + "spellSpeedRef": "Burst", + "rarity": "COMMON", + "rarityRef": "Common", + "subtypes": [], + "supertype": "", + "type": "Spell", + "collectible": true, + "set": "Set5" + }, + { + "associatedCards": [], + "associatedCardRefs": [ + "05PZ008", + "05PZ014T1", + "05PZ014T2" + ], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set5/en_us/img/cards/05PZ014.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set5/en_us/img/cards/05PZ014-full.png" + } + ], + "regions": [ + "Piltover & Zaun" + ], + "regionRefs": [ + "PiltoverZaun" + ], + "attack": 5, + "cost": 6, + "health": 5, + "description": "Play: Plant 5 Flashbomb Traps randomly or activate the effects of all traps in the top 5 cards of the enemy deck.", + "descriptionRaw": "Play: Plant 5 Flashbomb Traps randomly or activate the effects of all traps in the top 5 cards of the enemy deck.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "Corina smiled as the Piltover Wardens burst down her door, as they trampled her precious flowers underfoot, as they sent up clouds of toxic pollen. All as planned.", + "artistName": "SIXMOREVODKA", + "name": "Corina, Mastermind", + "cardCode": "05PZ014", + "keywords": [], + "keywordRefs": [], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "EPIC", + "rarityRef": "Epic", + "subtypes": [], + "supertype": "", + "type": "Unit", + "collectible": true, + "set": "Set5" + }, + { + "associatedCards": [], + "associatedCardRefs": [ + "05PZ008" + ], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set5/en_us/img/cards/05PZ014T1.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set5/en_us/img/cards/05PZ014T1-full.png" + } + ], + "regions": [ + "Piltover & Zaun" + ], + "regionRefs": [ + "PiltoverZaun" + ], + "attack": 0, + "cost": 0, + "health": 0, + "description": "Play: Plant 5 Flashbomb Traps randomly in the top 5 cards of the enemy deck.", + "descriptionRaw": "Play: Plant 5 Flashbomb Traps randomly in the top 5 cards of the enemy deck.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"Watch your step...\" - Corina Veraza", + "artistName": "Kudos Productions", + "name": "Beguiling Blossom", + "cardCode": "05PZ014T1", + "keywords": [ + "Skill" + ], + "keywordRefs": [ + "Skill" + ], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "None", + "rarityRef": "None", + "subtypes": [], + "supertype": "", + "type": "Ability", + "collectible": false, + "set": "Set5" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set5/en_us/img/cards/05PZ014T2.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set5/en_us/img/cards/05PZ014T2-full.png" + } + ], + "regions": [ + "Piltover & Zaun" + ], + "regionRefs": [ + "PiltoverZaun" + ], + "attack": 0, + "cost": 0, + "health": 0, + "description": "Play: Activate the effects of all traps in the top 5 cards of the enemy deck.", + "descriptionRaw": "Play: Activate the effects of all traps in the top 5 cards of the enemy deck.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"Right where I want you.\" - Corina Veraza", + "artistName": "Kudos Productions", + "name": "Volatile Bloom", + "cardCode": "05PZ014T2", + "keywords": [ + "Skill" + ], + "keywordRefs": [ + "Skill" + ], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "None", + "rarityRef": "None", + "subtypes": [], + "supertype": "", + "type": "Ability", + "collectible": false, + "set": "Set5" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set5/en_us/img/cards/05PZ002.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set5/en_us/img/cards/05PZ002-full.png" + } + ], + "regions": [ + "Piltover & Zaun" + ], + "regionRefs": [ + "PiltoverZaun" + ], + "attack": 0, + "cost": 3, + "health": 0, + "description": "ALL players draw 2.", + "descriptionRaw": "ALL players draw 2.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"This a popular case, you know. Just had a chap in here earlier looking at it. Enjoy!\" - Station Archivist", + "artistName": "Kudos Productions", + "name": "Insider Knowledge", + "cardCode": "05PZ002", + "keywords": [ + "Fast" + ], + "keywordRefs": [ + "Fast" + ], + "spellSpeed": "Fast", + "spellSpeedRef": "Fast", + "rarity": "COMMON", + "rarityRef": "Common", + "subtypes": [], + "supertype": "", + "type": "Spell", + "collectible": true, + "set": "Set5" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set5/en_us/img/cards/05PZ008.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set5/en_us/img/cards/05PZ008-full.png" + } + ], + "regions": [ + "Piltover & Zaun" + ], + "regionRefs": [ + "PiltoverZaun" + ], + "attack": 0, + "cost": 0, + "health": 0, + "description": "Deal 1 damage to a random ally.", + "descriptionRaw": "Deal 1 damage to a random ally.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"Boom.\" - Caitlyn", + "artistName": "Kudos Productions", + "name": "Flashbomb Trap", + "cardCode": "05PZ008", + "keywords": [ + "Trap" + ], + "keywordRefs": [ + "Autoplay" + ], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "None", + "rarityRef": "None", + "subtypes": [], + "supertype": "", + "type": "Trap", + "collectible": false, + "set": "Set5" + }, + { + "associatedCards": [], + "associatedCardRefs": [ + "05PZ023" + ], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set5/en_us/img/cards/05PZ021.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set5/en_us/img/cards/05PZ021-full.png" + } + ], + "regions": [ + "Piltover & Zaun" + ], + "regionRefs": [ + "PiltoverZaun" + ], + "attack": 0, + "cost": 3, + "health": 0, + "description": "When I am summoned, summon a Forge Worker. When you play a 6+ cost spell, destroy me and refill your spell mana.", + "descriptionRaw": "When I am summoned, summon a Forge Worker. When you play a 6+ cost spell, destroy me and refill your spell mana.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "If Piltover is a city driven by invention, then its forges are its engines.", + "artistName": "Kudos Productions", + "name": "The Forge Of Tomorrow", + "cardCode": "05PZ021", + "keywords": [ + "Landmark" + ], + "keywordRefs": [ + "LandmarkVisualOnly" + ], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "RARE", + "rarityRef": "Rare", + "subtypes": [], + "supertype": "", + "type": "Landmark", + "collectible": true, + "set": "Set5" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set5/en_us/img/cards/05PZ025.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set5/en_us/img/cards/05PZ025-full.png" + } + ], + "regions": [ + "Piltover & Zaun" + ], + "regionRefs": [ + "PiltoverZaun" + ], + "attack": 2, + "cost": 1, + "health": 1, + "description": "Strike: Refill 1 spell mana.", + "descriptionRaw": "Strike: Refill 1 spell mana.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"Takes two things to get an idea off the page and into your hands. Funding's one half of the equation, the other's a good forge. And it's not just the tools or the hardware in the forge; if your chief doesn't have what it takes to run things, well, your idea's staying on paper.\" - Jayce", + "artistName": "Kudos Productions", + "name": "Forge Chief", + "cardCode": "05PZ025", + "keywords": [], + "keywordRefs": [], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "COMMON", + "rarityRef": "Common", + "subtypes": [], + "supertype": "", + "type": "Unit", + "collectible": true, + "set": "Set5" + }, + { + "associatedCards": [], + "associatedCardRefs": [ + "05PZ008", + "05PZ006T1", + "05PZ006T2" + ], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set5/en_us/img/cards/05PZ006.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set5/en_us/img/cards/05PZ006-full.png" + } + ], + "regions": [ + "Piltover & Zaun" + ], + "regionRefs": [ + "PiltoverZaun" + ], + "attack": 3, + "cost": 3, + "health": 3, + "description": "Strike: Plant 2 Flashbomb Traps randomly in the top 8 cards in the enemy deck.", + "descriptionRaw": "Strike: Plant 2 Flashbomb Traps randomly in the top 8 cards in the enemy deck.", + "levelupDescription": "5 of your traps have been activated.", + "levelupDescriptionRaw": "5 of your traps have been activated.", + "flavorText": "Caitlyn was always a dogged and thorough investigator, a quality that helped propel her fast through the ranks of Piltover enforcement. But when a case concerning a certain 'C' came along, one that countless other enforcers had abandoned, it seemed almost as though Caitlyn had finally met her match. Almost.", + "artistName": "SIXMOREVODKA", + "name": "Caitlyn", + "cardCode": "05PZ006", + "keywords": [ + "Quick Attack" + ], + "keywordRefs": [ + "QuickStrike" + ], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "Champion", + "rarityRef": "Champion", + "subtypes": [], + "supertype": "Champion", + "type": "Unit", + "collectible": true, + "set": "Set5" + }, + { + "associatedCards": [], + "associatedCardRefs": [ + "05PZ019" + ], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set5/en_us/img/cards/05PZ004.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set5/en_us/img/cards/05PZ004-full.png" + } + ], + "regions": [ + "Piltover & Zaun" + ], + "regionRefs": [ + "PiltoverZaun" + ], + "attack": 4, + "cost": 5, + "health": 5, + "description": "When I’m summoned, create a Most Wanted in hand.", + "descriptionRaw": "When I’m summoned, create a Most Wanted in hand.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "From unloading silently into the street to prepping the ram, setup didn't take long. It was just a matter of waiting on Caitlyn's cue.", + "artistName": "SIXMOREVODKA", + "name": "Officer Squad", + "cardCode": "05PZ004", + "keywords": [], + "keywordRefs": [], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "RARE", + "rarityRef": "Rare", + "subtypes": [], + "supertype": "", + "type": "Unit", + "collectible": true, + "set": "Set5" + }, + { + "associatedCards": [], + "associatedCardRefs": [ + "05PZ008" + ], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set5/en_us/img/cards/05PZ009.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set5/en_us/img/cards/05PZ009-full.png" + } + ], + "regions": [ + "Piltover & Zaun" + ], + "regionRefs": [ + "PiltoverZaun" + ], + "attack": 2, + "cost": 2, + "health": 1, + "description": "Nexus Strike: Plant 2 Flashbomb Traps randomly in the top 8 cards of the enemy deck.", + "descriptionRaw": "Nexus Strike: Plant 2 Flashbomb Traps randomly in the top 8 cards of the enemy deck.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "Zayne Asako, like all Zaunite kids, had to grow up fast on those violent and dark understreets. After losing his brother to yet another senseless gang crime, he committed himself to Piltover enforcement, hoping reason and law would make his home finally safe.", + "artistName": "SIXMOREVODKA", + "name": "Sting Officer", + "cardCode": "05PZ009", + "keywords": [ + "Elusive" + ], + "keywordRefs": [ + "Elusive" + ], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "COMMON", + "rarityRef": "Common", + "subtypes": [], + "supertype": "", + "type": "Unit", + "collectible": true, + "set": "Set5" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set5/en_us/img/cards/05PZ016.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set5/en_us/img/cards/05PZ016-full.png" + } + ], + "regions": [ + "Piltover & Zaun" + ], + "regionRefs": [ + "PiltoverZaun" + ], + "attack": 0, + "cost": 5, + "health": 0, + "description": "Place an enemy follower into the enemy deck, then your opponent draws 1.", + "descriptionRaw": "Place an enemy follower into the enemy deck, then your opponent draws 1.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "The grand city of Piltover is home to some of the finest minds in Runeterra. Piltover's jails are also home to some of the finest minds in Runeterra.", + "artistName": "Kudos Productions", + "name": "Coup de Grace", + "cardCode": "05PZ016", + "keywords": [ + "Fast" + ], + "keywordRefs": [ + "Fast" + ], + "spellSpeed": "Fast", + "spellSpeedRef": "Fast", + "rarity": "RARE", + "rarityRef": "Rare", + "subtypes": [], + "supertype": "", + "type": "Spell", + "collectible": true, + "set": "Set5" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set5/en_us/img/cards/05PZ030.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set5/en_us/img/cards/05PZ030-full.png" + } + ], + "regions": [ + "Piltover & Zaun" + ], + "regionRefs": [ + "PiltoverZaun" + ], + "attack": 0, + "cost": 6, + "health": 0, + "description": "When you draw or create me in hand or each Round Start: while I'm in your hand, transform me into a random 6+ cost spell.", + "descriptionRaw": "When you draw or create me in hand or each Round Start: while I'm in your hand, transform me into a random 6+ cost spell.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"...configuring hextech into a stable state was the most difficult hurdle I faced. Most nights, it felt like the crystals and hexite were actively conspiring to trip me up, and it was only through extensive trial and error that I was able to get the component parts working in harmony...\"\n- Excerpt from Jayce's journal", + "artistName": "Kudos Productions", + "name": "Hextech Anomaly", + "cardCode": "05PZ030", + "keywords": [ + "Focus" + ], + "keywordRefs": [ + "Focus" + ], + "spellSpeed": "Burst", + "spellSpeedRef": "Burst", + "rarity": "RARE", + "rarityRef": "Rare", + "subtypes": [], + "supertype": "", + "type": "Spell", + "collectible": true, + "set": "Set5" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set5/en_us/img/cards/05PZ028.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set5/en_us/img/cards/05PZ028-full.png" + } + ], + "regions": [ + "Piltover & Zaun" + ], + "regionRefs": [ + "PiltoverZaun" + ], + "attack": 2, + "cost": 4, + "health": 4, + "description": "Grant me +2|+0 once you've play a 6+ cost spell this game.", + "descriptionRaw": "Grant me +2|+0 once you've play a 6+ cost spell this game.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"The people of this city worship at the feet of 'intelligence'. But what good is the greatest mind without the means to express itself? No. I will show Piltover true greatness. It will tower over them. It will blot out the sun. And it will carry my name.\" - Albus Ferros", + "artistName": "Kudos Productions", + "name": "Ferros Skycruiser", + "cardCode": "05PZ028", + "keywords": [ + "Elusive" + ], + "keywordRefs": [ + "Elusive" + ], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "COMMON", + "rarityRef": "Common", + "subtypes": [], + "supertype": "", + "type": "Unit", + "collectible": true, + "set": "Set5" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set5/en_us/img/cards/05PZ038.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set5/en_us/img/cards/05PZ038-full.png" + } + ], + "regions": [ + "Piltover & Zaun" + ], + "regionRefs": [ + "PiltoverZaun" + ], + "attack": 0, + "cost": 5, + "health": 0, + "description": "Deal 3 to an enemy and 1 to all other enemies.", + "descriptionRaw": "Deal 3 to an enemy and 1 to all other enemies.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"They're supposed to go up, not EVERYWHERE! Oh, my!\" - Heimerdinger", + "artistName": "Kudos Productions", + "name": "Rocket Barrage", + "cardCode": "05PZ038", + "keywords": [ + "Slow" + ], + "keywordRefs": [ + "Slow" + ], + "spellSpeed": "Slow", + "spellSpeedRef": "Slow", + "rarity": "COMMON", + "rarityRef": "Common", + "subtypes": [], + "supertype": "", + "type": "Spell", + "collectible": true, + "set": "Set5" + }, + { + "associatedCards": [], + "associatedCardRefs": [ + "01PZ022" + ], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set5/en_us/img/cards/05PZ035.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set5/en_us/img/cards/05PZ035-full.png" + } + ], + "regions": [ + "Piltover & Zaun" + ], + "regionRefs": [ + "PiltoverZaun" + ], + "attack": 2, + "cost": 1, + "health": 1, + "description": "Last Breath: Create a copy of me in the enemy deck with 2 Poison Puffcaps attached. ", + "descriptionRaw": "Last Breath: Create a copy of me in the enemy deck with 2 Poison Puffcaps attached. ", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "The stink of a whump in the height of puffcap season is unlike any other. Imagine an open sewer full of week-old fish and rotten eggs, and you're halfway there.", + "artistName": "Kudos Productions", + "name": "Stinky Whump", + "cardCode": "05PZ035", + "keywords": [ + "Last Breath" + ], + "keywordRefs": [ + "LastBreath" + ], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "RARE", + "rarityRef": "Rare", + "subtypes": [], + "supertype": "", + "type": "Unit", + "collectible": true, + "set": "Set5" + }, + { + "associatedCards": [], + "associatedCardRefs": [ + "05PZ006", + "05PZ008", + "05PZ006T1" + ], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set5/en_us/img/cards/05PZ006T2.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set5/en_us/img/cards/05PZ006T2-full.png" + } + ], + "regions": [ + "Piltover & Zaun" + ], + "regionRefs": [ + "PiltoverZaun" + ], + "attack": 4, + "cost": 3, + "health": 4, + "description": "Strike: Plant 4 Flashbomb Traps randomly in the top 8 cards in the enemy deck and deal damage to the enemy Nexus equal to the number of your traps activated this round. ", + "descriptionRaw": "Strike: Plant 4 Flashbomb Traps randomly in the top 8 cards in the enemy deck and deal damage to the enemy Nexus equal to the number of your traps activated this round. ", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "She burst in, leveled her rifle at the culprit, and looked down the scope. There, smiling through the looking glass, was a familiar face.", + "artistName": "SIXMOREVODKA", + "name": "Caitlyn", + "cardCode": "05PZ006T2", + "keywords": [ + "Quick Attack" + ], + "keywordRefs": [ + "QuickStrike" + ], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "None", + "rarityRef": "None", + "subtypes": [], + "supertype": "Champion", + "type": "Unit", + "collectible": false, + "set": "Set5" + }, + { + "associatedCards": [], + "associatedCardRefs": [ + "05PZ008", + "05PZ006T2", + "05PZ006" + ], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set5/en_us/img/cards/05PZ006T1.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set5/en_us/img/cards/05PZ006T1-full.png" + } + ], + "regions": [ + "Piltover & Zaun" + ], + "regionRefs": [ + "PiltoverZaun" + ], + "attack": 0, + "cost": 3, + "health": 0, + "description": "Deal 2 to a unit and plant 2 Flashbomb Traps randomly in the top 8 cards of the enemy deck.\r\nCreate a Caitlyn in your deck.", + "descriptionRaw": "Deal 2 to a unit and plant 2 Flashbomb Traps randomly in the top 8 cards of the enemy deck.\r\nCreate a Caitlyn in your deck.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"Here's MY calling card.\" - Caitlyn", + "artistName": "Kudos Productions", + "name": "Caitlyn's Piltover Peacemaker", + "cardCode": "05PZ006T1", + "keywords": [ + "Fast" + ], + "keywordRefs": [ + "Fast" + ], + "spellSpeed": "Fast", + "spellSpeedRef": "Fast", + "rarity": "None", + "rarityRef": "None", + "subtypes": [], + "supertype": "Champion", + "type": "Spell", + "collectible": false, + "set": "Set5" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set5/en_us/img/cards/05PZ029.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set5/en_us/img/cards/05PZ029-full.png" + } + ], + "regions": [ + "Piltover & Zaun" + ], + "regionRefs": [ + "PiltoverZaun" + ], + "attack": 3, + "cost": 3, + "health": 2, + "description": "Grant Tech allies everywhere +1|+1 once you've played a 6+ cost spell this game.", + "descriptionRaw": "Grant Tech allies everywhere +1|+1 once you've played a 6+ cost spell this game.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "The Hextech Handler was initially constructed to transport raw materials through Piltover, but as time went on, the locals apparently developed a soft spot for him. Jayce's forge crew nicknamed him Nugget, a Piltovan lord reportedly donated a hat, and passing kids now adorn him with whatever they have to hand.", + "artistName": "Kudos Productions", + "name": "Hextech Handler", + "cardCode": "05PZ029", + "keywords": [ + "Quick Attack" + ], + "keywordRefs": [ + "QuickStrike" + ], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "RARE", + "rarityRef": "Rare", + "subtypes": [ + "TECH" + ], + "supertype": "", + "type": "Unit", + "collectible": true, + "set": "Set5" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set5/en_us/img/cards/05SI014.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set5/en_us/img/cards/05SI014-full.png" + } + ], + "regions": [ + "Shadow Isles" + ], + "regionRefs": [ + "ShadowIsles" + ], + "attack": 0, + "cost": 4, + "health": 0, + "description": "Round Start: Create in hand a Fleeting copy of a non-Fleeting spell you played last round.", + "descriptionRaw": "Round Start: Create in hand a Fleeting copy of a non-Fleeting spell you played last round.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "The Blessed Isles forget. The Shadow Isles remember. The Shadow Isles forget. The Blessed Isles remember.", + "artistName": "Chris Kintner", + "name": "Catalogue of Regrets", + "cardCode": "05SI014", + "keywords": [ + "Landmark" + ], + "keywordRefs": [ + "LandmarkVisualOnly" + ], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "EPIC", + "rarityRef": "Epic", + "subtypes": [], + "supertype": "", + "type": "Landmark", + "collectible": true, + "set": "Set5" + }, + { + "associatedCards": [], + "associatedCardRefs": [ + "01SI014" + ], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set5/en_us/img/cards/05SI013.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set5/en_us/img/cards/05SI013-full.png" + } + ], + "regions": [ + "Shadow Isles" + ], + "regionRefs": [ + "ShadowIsles" + ], + "attack": 3, + "cost": 5, + "health": 4, + "description": "Each round, the first time you kill a unit with a spell, summon an Ephemeral Mistwraith.", + "descriptionRaw": "Each round, the first time you kill a unit with a spell, summon an Ephemeral Mistwraith.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "The Black Mist traps its victims in endless cycles of self-imposed torment. Through the Mistcatchers, Tek and Kana give those souls a chance to break that cycle for themselves.\n", + "artistName": "SIXMOREVODKA", + "name": "Mistkeepers", + "cardCode": "05SI013", + "keywords": [], + "keywordRefs": [], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "RARE", + "rarityRef": "Rare", + "subtypes": [], + "supertype": "", + "type": "Unit", + "collectible": true, + "set": "Set5" + }, + { + "associatedCards": [], + "associatedCardRefs": [ + "01DE022", + "05SI009T1", + "05SI009T2", + "05SI029" + ], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set5/en_us/img/cards/05SI009.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set5/en_us/img/cards/05SI009-full.png" + } + ], + "regions": [ + "Shadow Isles" + ], + "regionRefs": [ + "ShadowIsles" + ], + "attack": 4, + "cost": 5, + "health": 4, + "description": "When I'm summoned or Attack: Create a Darkness in hand if you don't have one. Your damage and kill spells accelerate to Fast.", + "descriptionRaw": "When I'm summoned or Attack: Create a Darkness in hand if you don't have one. Your damage and kill spells accelerate to Fast.", + "levelupDescription": "I've seen you kill 3+ units with spells or an allied Lucian die.", + "levelupDescriptionRaw": "I've seen you kill 3+ units with spells or an allied Lucian die.", + "flavorText": "\"To be a Sentinel is to fight. To lose yourself or to lose the ones you love. But more than that? It means to live. For yourself... and for the ones you love.\"", + "artistName": "SIXMOREVODKA", + "name": "Senna", + "cardCode": "05SI009", + "keywords": [ + "Quick Attack", + "Missing Translation" + ], + "keywordRefs": [ + "QuickStrike", + "AuraVisualFakeKeyword" + ], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "Champion", + "rarityRef": "Champion", + "subtypes": [], + "supertype": "Champion", + "type": "Unit", + "collectible": true, + "set": "Set5" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set5/en_us/img/cards/05SI016.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set5/en_us/img/cards/05SI016-full.png" + } + ], + "regions": [ + "Shadow Isles" + ], + "regionRefs": [ + "ShadowIsles" + ], + "attack": 0, + "cost": 7, + "health": 0, + "description": "Kill a unit and give all enemies -2|-0 this round.", + "descriptionRaw": "Kill a unit and give all enemies -2|-0 this round.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"No shadow without light. No death without life.\" - Senna", + "artistName": "Kudos Productions", + "name": "Dawning Shadow", + "cardCode": "05SI016", + "keywords": [ + "Slow" + ], + "keywordRefs": [ + "Slow" + ], + "spellSpeed": "Slow", + "spellSpeedRef": "Slow", + "rarity": "COMMON", + "rarityRef": "Common", + "subtypes": [], + "supertype": "", + "type": "Spell", + "collectible": true, + "set": "Set5" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set5/en_us/img/cards/05SI004.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set5/en_us/img/cards/05SI004-full.png" + } + ], + "regions": [ + "Shadow Isles" + ], + "regionRefs": [ + "ShadowIsles" + ], + "attack": 2, + "cost": 4, + "health": 4, + "description": "Each round, the first time you kill a unit with a spell, deal 2 to the enemy Nexus.", + "descriptionRaw": "Each round, the first time you kill a unit with a spell, deal 2 to the enemy Nexus.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"Pups is pups.\" - Wisdom scrawled upon the soul", + "artistName": "SIXMOREVODKA", + "name": "Watcher on the Isles", + "cardCode": "05SI004", + "keywords": [], + "keywordRefs": [], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "RARE", + "rarityRef": "Rare", + "subtypes": [], + "supertype": "", + "type": "Unit", + "collectible": true, + "set": "Set5" + }, + { + "associatedCards": [], + "associatedCardRefs": [ + "05SI029" + ], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set5/en_us/img/cards/05SI012.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set5/en_us/img/cards/05SI012-full.png" + } + ], + "regions": [ + "Shadow Isles" + ], + "regionRefs": [ + "ShadowIsles" + ], + "attack": 3, + "cost": 3, + "health": 2, + "description": "When I'm summoned, create a Darkness in hand if you don't have one.", + "descriptionRaw": "When I'm summoned, create a Darkness in hand if you don't have one.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"I can feel the sun no longer. Even so, I wield its memory--and that is enough.\"", + "artistName": "SIXMOREVODKA", + "name": "Solari Sentinel", + "cardCode": "05SI012", + "keywords": [], + "keywordRefs": [], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "COMMON", + "rarityRef": "Common", + "subtypes": [], + "supertype": "", + "type": "Unit", + "collectible": true, + "set": "Set5" + }, + { + "associatedCards": [], + "associatedCardRefs": [ + "05SI029" + ], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set5/en_us/img/cards/05SI008.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set5/en_us/img/cards/05SI008-full.png" + } + ], + "regions": [ + "Shadow Isles" + ], + "regionRefs": [ + "ShadowIsles" + ], + "attack": 4, + "cost": 6, + "health": 5, + "description": "When I'm summoned, create a Darkness in hand if you don't have one. When you play your next Darkness this round, copy it targeting the enemy Nexus.", + "descriptionRaw": "When I'm summoned, create a Darkness in hand if you don't have one. When you play your next Darkness this round, copy it targeting the enemy Nexus.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"You asked me, Senna, what brought me to this fight. I have lost nothing to the Mist, it does not threaten my home. It exists, and it should not. I am here to discover why. Do I need sentiment to join your cause?\"", + "artistName": "SIXMOREVODKA", + "name": "Ixtali Sentinel", + "cardCode": "05SI008", + "keywords": [ + "Lifesteal" + ], + "keywordRefs": [ + "Lifesteal" + ], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "RARE", + "rarityRef": "Rare", + "subtypes": [], + "supertype": "", + "type": "Unit", + "collectible": true, + "set": "Set5" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set5/en_us/img/cards/05SI003.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set5/en_us/img/cards/05SI003-full.png" + } + ], + "regions": [ + "Shadow Isles" + ], + "regionRefs": [ + "ShadowIsles" + ], + "attack": 0, + "cost": 6, + "health": 0, + "description": "Drain 5 from a unit.", + "descriptionRaw": "Drain 5 from a unit.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"Death is drawn to life.\" - Senna", + "artistName": "Kudos Productions", + "name": "Piercing Darkness", + "cardCode": "05SI003", + "keywords": [ + "Slow" + ], + "keywordRefs": [ + "Slow" + ], + "spellSpeed": "Slow", + "spellSpeedRef": "Slow", + "rarity": "COMMON", + "rarityRef": "Common", + "subtypes": [], + "supertype": "", + "type": "Spell", + "collectible": true, + "set": "Set5" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set5/en_us/img/cards/05SI029.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set5/en_us/img/cards/05SI029-full.png" + } + ], + "regions": [ + "Shadow Isles" + ], + "regionRefs": [ + "ShadowIsles" + ], + "attack": 0, + "cost": 3, + "health": 0, + "description": "Deal 2 to an enemy.", + "descriptionRaw": "Deal 2 to an enemy.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "There is a little of fear in everything. It lays quietly at the heart of mystery. It is the spark of joy in awe and wonder. It grants life its purpose - death, its power. It is everything. It is nothing.", + "artistName": "Kudos Productions", + "name": "Darkness", + "cardCode": "05SI029", + "keywords": [ + "Slow" + ], + "keywordRefs": [ + "Slow" + ], + "spellSpeed": "Slow", + "spellSpeedRef": "Slow", + "rarity": "None", + "rarityRef": "None", + "subtypes": [], + "supertype": "", + "type": "Spell", + "collectible": false, + "set": "Set5" + }, + { + "associatedCards": [], + "associatedCardRefs": [ + "05SI029" + ], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set5/en_us/img/cards/05SI010.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set5/en_us/img/cards/05SI010-full.png" + } + ], + "regions": [ + "Shadow Isles" + ], + "regionRefs": [ + "ShadowIsles" + ], + "attack": 7, + "cost": 8, + "health": 6, + "description": "When I'm summoned, create a Darkness in hand if you don't have one. Your next Darkness this round costs 0 and gains “I deal damage to all enemy targets.”", + "descriptionRaw": "When I'm summoned, create a Darkness in hand if you don't have one. Your next Darkness this round costs 0 and gains “I deal damage to all enemy targets.”", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"Another nightmare?\"\n\"Wasn't all bad. You weren't there.\"\n\"Dolt. What was the bad part?\"\n\"You weren't there.\"", + "artistName": "SIXMOREVODKA", + "name": "Dess & Ada", + "cardCode": "05SI010", + "keywords": [], + "keywordRefs": [], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "EPIC", + "rarityRef": "Epic", + "subtypes": [], + "supertype": "", + "type": "Unit", + "collectible": true, + "set": "Set5" + }, + { + "associatedCards": [], + "associatedCardRefs": [ + "05SI029", + "05SI009T2", + "05SI009" + ], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set5/en_us/img/cards/05SI009T1.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set5/en_us/img/cards/05SI009T1-full.png" + } + ], + "regions": [ + "Shadow Isles" + ], + "regionRefs": [ + "ShadowIsles" + ], + "attack": 5, + "cost": 5, + "health": 5, + "description": "When I'm summoned or Attack: Create a Darkness in hand if you don't have one. Your damage and kill spells accelerate to Fast and cost 1 less.", + "descriptionRaw": "When I'm summoned or Attack: Create a Darkness in hand if you don't have one. Your damage and kill spells accelerate to Fast and cost 1 less.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"We were wrong. The Black Mist isn't heartless. It's not random. It has a goal. But that means we can track it. Means it can bleed.\"", + "artistName": "SIXMOREVODKA", + "name": "Senna", + "cardCode": "05SI009T1", + "keywords": [ + "Quick Attack", + "Missing Translation" + ], + "keywordRefs": [ + "QuickStrike", + "AuraVisualFakeKeyword" + ], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "None", + "rarityRef": "None", + "subtypes": [], + "supertype": "Champion", + "type": "Unit", + "collectible": false, + "set": "Set5" + }, + { + "associatedCards": [], + "associatedCardRefs": [ + "05SI009T1", + "05SI009" + ], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set5/en_us/img/cards/05SI009T2.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set5/en_us/img/cards/05SI009T2-full.png" + } + ], + "regions": [ + "Shadow Isles" + ], + "regionRefs": [ + "ShadowIsles" + ], + "attack": 0, + "cost": 7, + "health": 0, + "description": "Kill a unit and give all enemies -2|-0 this round.\r\nCreate a Senna in your deck.", + "descriptionRaw": "Kill a unit and give all enemies -2|-0 this round.\r\nCreate a Senna in your deck.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"No shadow without light. No death without life.\" - Senna", + "artistName": "Kudos Productions", + "name": "Senna's Dawning Shadow", + "cardCode": "05SI009T2", + "keywords": [ + "Slow" + ], + "keywordRefs": [ + "Slow" + ], + "spellSpeed": "Slow", + "spellSpeedRef": "Slow", + "rarity": "None", + "rarityRef": "None", + "subtypes": [], + "supertype": "Champion", + "type": "Spell", + "collectible": false, + "set": "Set5" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set5/en_us/img/cards/05SI011.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set5/en_us/img/cards/05SI011-full.png" + } + ], + "regions": [ + "Shadow Isles" + ], + "regionRefs": [ + "ShadowIsles" + ], + "attack": 1, + "cost": 1, + "health": 2, + "description": "The first time you kill a unit with a spell, grant me +2|+1.", + "descriptionRaw": "The first time you kill a unit with a spell, grant me +2|+1.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "What must the Mist see when it looks upon Maeve? Exuberance, confidence--irrepressible optimism. How it must long to snuff that taunting flame. For what can death fear, but life?", + "artistName": "Wild Blue Studio", + "name": "Burgeoning Sentinel", + "cardCode": "05SI011", + "keywords": [ + "Fearsome" + ], + "keywordRefs": [ + "Fearsome" + ], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "COMMON", + "rarityRef": "Common", + "subtypes": [], + "supertype": "", + "type": "Unit", + "collectible": true, + "set": "Set5" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set5/en_us/img/cards/05SI015.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set5/en_us/img/cards/05SI015-full.png" + } + ], + "regions": [ + "Shadow Isles" + ], + "regionRefs": [ + "ShadowIsles" + ], + "attack": 3, + "cost": 3, + "health": 3, + "description": "The first time you kill a unit with a spell, grant me +2|+1.", + "descriptionRaw": "The first time you kill a unit with a spell, grant me +2|+1.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "The Buhru and Sentinel philosophy align on a single crucial point: all things must end, and some must be made to end.", + "artistName": "SIXMOREVODKA", + "name": "Buhru Sentinel", + "cardCode": "05SI015", + "keywords": [ + "Fearsome" + ], + "keywordRefs": [ + "Fearsome" + ], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "COMMON", + "rarityRef": "Common", + "subtypes": [], + "supertype": "", + "type": "Unit", + "collectible": true, + "set": "Set5" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set5/en_us/img/cards/05MT004.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set5/en_us/img/cards/05MT004-full.png" + } + ], + "regions": [ + "Targon" + ], + "regionRefs": [ + "Targon" + ], + "attack": 6, + "cost": 6, + "health": 5, + "description": "When I'm summoned, if you've targeted allies in 4 different rounds, grant me Spellshield, Overwhelm, and Challenger. ", + "descriptionRaw": "When I'm summoned, if you've targeted allies in 4 different rounds, grant me Spellshield, Overwhelm, and Challenger. ", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "For centuries, the demon Camphor stalked the lands of Targon, pulling from her victims the very strengths that defined them. From the mighty, she would take strength; from the wise, wisdom. But she had no interest in these boons. Instead, she feasted on the suffering, doubt, and misery she inflicted. Camphor was a monster in every sense of the word.", + "artistName": "SIXMOREVODKA", + "name": "Camphor, the Doubt", + "cardCode": "05MT004", + "keywords": [], + "keywordRefs": [], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "EPIC", + "rarityRef": "Epic", + "subtypes": [], + "supertype": "", + "type": "Unit", + "collectible": true, + "set": "Set5" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set5/en_us/img/cards/05MT006.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set5/en_us/img/cards/05MT006-full.png" + } + ], + "regions": [ + "Targon" + ], + "regionRefs": [ + "Targon" + ], + "attack": 2, + "cost": 3, + "health": 3, + "description": "", + "descriptionRaw": "", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"Targonians need no further proof of the gods' cruelty. Look at what they have done to us. Look at what they have done to our most cherished companions.\" - Pantheon", + "artistName": "Kudos Productions", + "name": "Wounded Whiteflame", + "cardCode": "05MT006", + "keywords": [ + "Fury" + ], + "keywordRefs": [ + "Fury" + ], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "RARE", + "rarityRef": "Rare", + "subtypes": [ + "DRAGON" + ], + "supertype": "", + "type": "Unit", + "collectible": true, + "set": "Set5" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set5/en_us/img/cards/05MT008.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set5/en_us/img/cards/05MT008-full.png" + } + ], + "regions": [ + "Targon" + ], + "regionRefs": [ + "Targon" + ], + "attack": 0, + "cost": 2, + "health": 0, + "description": "Grant an ally +1|+1 and Stun an enemy.", + "descriptionRaw": "Grant an ally +1|+1 and Stun an enemy.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "Pantheon was well-versed in warfare. He knew from countless fights that his enemies would always track his spear, and rarely his shield.", + "artistName": "Kudos Productions", + "name": "Shield Vault", + "cardCode": "05MT008", + "keywords": [ + "Slow" + ], + "keywordRefs": [ + "Slow" + ], + "spellSpeed": "Slow", + "spellSpeedRef": "Slow", + "rarity": "RARE", + "rarityRef": "Rare", + "subtypes": [], + "supertype": "", + "type": "Spell", + "collectible": true, + "set": "Set5" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set5/en_us/img/cards/05MT014.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set5/en_us/img/cards/05MT014-full.png" + } + ], + "regions": [ + "Targon" + ], + "regionRefs": [ + "Targon" + ], + "attack": 0, + "cost": 5, + "health": 0, + "description": "Stun two enemies.", + "descriptionRaw": "Stun two enemies.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"Targon's night sky is a wondrous thing of unimaginable beauty. It is all too easy to lose oneself gazing at that expanse, not knowing how far the stars stretch, and what manner of being might be looking back...\" - Targonian climber", + "artistName": "Kudos Productions", + "name": "Celestial Wonder", + "cardCode": "05MT014", + "keywords": [ + "Fast" + ], + "keywordRefs": [ + "Fast" + ], + "spellSpeed": "Fast", + "spellSpeedRef": "Fast", + "rarity": "COMMON", + "rarityRef": "Common", + "subtypes": [], + "supertype": "", + "type": "Spell", + "collectible": true, + "set": "Set5" + }, + { + "associatedCards": [], + "associatedCardRefs": [ + "05MT003T1", + "05MT003T2" + ], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set5/en_us/img/cards/05MT003.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set5/en_us/img/cards/05MT003-full.png" + } + ], + "regions": [ + "Targon" + ], + "regionRefs": [ + "Targon" + ], + "attack": 3, + "cost": 4, + "health": 2, + "description": "", + "descriptionRaw": "", + "levelupDescription": "You've targeted allies in 5 different rounds.", + "levelupDescriptionRaw": "You've targeted allies in 5 different rounds.", + "flavorText": "Here stands Atreus, who had his freedoms stripped from him by the very Aspects he revered. Here stands the embers of War, who left Atreus with gifts few mortals can comprehend. Here stands a man, ready to fight and die for those he cherishes.", + "artistName": "SIXMOREVODKA", + "name": "Pantheon", + "cardCode": "05MT003", + "keywords": [ + "Overwhelm", + "Barrier" + ], + "keywordRefs": [ + "Overwhelm", + "Barrier" + ], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "Champion", + "rarityRef": "Champion", + "subtypes": [], + "supertype": "Champion", + "type": "Unit", + "collectible": true, + "set": "Set5" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set5/en_us/img/cards/05MT013.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set5/en_us/img/cards/05MT013-full.png" + } + ], + "regions": [ + "Targon" + ], + "regionRefs": [ + "Targon" + ], + "attack": 3, + "cost": 3, + "health": 3, + "description": "Play: Give an ally Spellshield and Overwhelm this round.", + "descriptionRaw": "Play: Give an ally Spellshield and Overwhelm this round.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "Iula still remembers the burning grief that coursed through her after she learned of her husband's death. When Pantheon came to her, asking if she would help him destroy a creature that feasted on this very pain, her answer was swift.", + "artistName": "Kudos Productions", + "name": "Iula", + "cardCode": "05MT013", + "keywords": [], + "keywordRefs": [], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "COMMON", + "rarityRef": "Common", + "subtypes": [], + "supertype": "", + "type": "Unit", + "collectible": true, + "set": "Set5" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set5/en_us/img/cards/05MT009.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set5/en_us/img/cards/05MT009-full.png" + } + ], + "regions": [ + "Targon" + ], + "regionRefs": [ + "Targon" + ], + "attack": 0, + "cost": 4, + "health": 0, + "description": "Grant 2 allies +2|+2.", + "descriptionRaw": "Grant 2 allies +2|+2.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "Warring against the gods seemed a fool's errand, but through the scars and through the screams, those brave few learned lessons. The gods thought singularly, selfishly, and had lost the gift of camaraderie. This would be their weapon. This would be their armor.", + "artistName": "Kudos Productions", + "name": "Battle Bonds", + "cardCode": "05MT009", + "keywords": [ + "Slow" + ], + "keywordRefs": [ + "Slow" + ], + "spellSpeed": "Slow", + "spellSpeedRef": "Slow", + "rarity": "COMMON", + "rarityRef": "Common", + "subtypes": [], + "supertype": "", + "type": "Spell", + "collectible": true, + "set": "Set5" + }, + { + "associatedCards": [], + "associatedCardRefs": [ + "05MT003T1", + "05MT003" + ], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set5/en_us/img/cards/05MT003T2.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set5/en_us/img/cards/05MT003T2-full.png" + } + ], + "regions": [ + "Targon" + ], + "regionRefs": [ + "Targon" + ], + "attack": 4, + "cost": 4, + "health": 3, + "description": "Once a Pantheon has leveled up, grant me a random keyword for each round you've targeted allies this game. ", + "descriptionRaw": "Once a Pantheon has leveled up, grant me a random keyword for each round you've targeted allies this game. ", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "Here stands Pantheon, who took up his spear and swore to drive all gods and demons from this land we call home.", + "artistName": "SIXMOREVODKA", + "name": "Pantheon", + "cardCode": "05MT003T2", + "keywords": [ + "Overwhelm", + "Barrier" + ], + "keywordRefs": [ + "Overwhelm", + "Barrier" + ], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "None", + "rarityRef": "None", + "subtypes": [], + "supertype": "Champion", + "type": "Unit", + "collectible": false, + "set": "Set5" + }, + { + "associatedCards": [], + "associatedCardRefs": [ + "05MT003T2", + "05MT003" + ], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set5/en_us/img/cards/05MT003T1.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set5/en_us/img/cards/05MT003T1-full.png" + } + ], + "regions": [ + "Targon" + ], + "regionRefs": [ + "Targon" + ], + "attack": 0, + "cost": 2, + "health": 0, + "description": "Grant an ally +1|+1 and Stun an enemy.\r\nCreate a Pantheon in your deck.", + "descriptionRaw": "Grant an ally +1|+1 and Stun an enemy.\r\nCreate a Pantheon in your deck.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "Pantheon was well-versed in warfare. He knew from countless fights that his enemies would always track his spear, and rarely his shield.", + "artistName": "Kudos Productions", + "name": "Pantheon's Shield Vault", + "cardCode": "05MT003T1", + "keywords": [ + "Slow" + ], + "keywordRefs": [ + "Slow" + ], + "spellSpeed": "Slow", + "spellSpeedRef": "Slow", + "rarity": "None", + "rarityRef": "None", + "subtypes": [], + "supertype": "Champion", + "type": "Spell", + "collectible": false, + "set": "Set5" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set5/en_us/img/cards/05MT010.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set5/en_us/img/cards/05MT010-full.png" + } + ], + "regions": [ + "Targon" + ], + "regionRefs": [ + "Targon" + ], + "attack": 3, + "cost": 4, + "health": 2, + "description": "Play: Grant an ally +1|+1 and Silence an enemy follower.", + "descriptionRaw": "Play: Grant an ally +1|+1 and Silence an enemy follower.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "Eshiyme was once a revered oracle who used her Sight to guide those in need. But this gift was stolen from her by Camphor, who intended to feast on her inevitable anguish. How sorely the demon underestimated brave Eshiyme.", + "artistName": "Kudos Productions", + "name": "Blinded Mystic", + "cardCode": "05MT010", + "keywords": [], + "keywordRefs": [], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "COMMON", + "rarityRef": "Common", + "subtypes": [], + "supertype": "", + "type": "Unit", + "collectible": true, + "set": "Set5" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set5/en_us/img/cards/05MT002.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set5/en_us/img/cards/05MT002-full.png" + } + ], + "regions": [ + "Targon" + ], + "regionRefs": [ + "Targon" + ], + "attack": 0, + "cost": 3, + "health": 0, + "description": "Give 2 allies +1|+2 this round.", + "descriptionRaw": "Give 2 allies +1|+2 this round.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"It is in the bonds of kinship that we must find our strength.\" - Pantheon", + "artistName": "Kudos Productions", + "name": "We Stand Together", + "cardCode": "05MT002", + "keywords": [ + "Burst" + ], + "keywordRefs": [ + "Burst" + ], + "spellSpeed": "Burst", + "spellSpeedRef": "Burst", + "rarity": "RARE", + "rarityRef": "Rare", + "subtypes": [], + "supertype": "", + "type": "Spell", + "collectible": true, + "set": "Set5" + }, + { + "associatedCards": [], + "associatedCardRefs": [ + "03MT092T1" + ], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set5/en_us/img/cards/05MT012.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set5/en_us/img/cards/05MT012-full.png" + } + ], + "regions": [ + "Targon" + ], + "regionRefs": [ + "Targon" + ], + "attack": 4, + "cost": 5, + "health": 5, + "description": "When I'm summoned or Attack: Create a Gem in hand.", + "descriptionRaw": "When I'm summoned or Attack: Create a Gem in hand.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "The colossi are ancient and venerated protectors of Targon's most revered sites. To harm them is to insult the mountain itself. To torture them is a crime no Targonian can forgive.", + "artistName": "Kudos Productions", + "name": "Freed Colossus", + "cardCode": "05MT012", + "keywords": [], + "keywordRefs": [], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "COMMON", + "rarityRef": "Common", + "subtypes": [], + "supertype": "", + "type": "Unit", + "collectible": true, + "set": "Set5" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set5/en_us/img/cards/05MT011.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set5/en_us/img/cards/05MT011-full.png" + } + ], + "regions": [ + "Targon" + ], + "regionRefs": [ + "Targon" + ], + "attack": 0, + "cost": 3, + "health": 0, + "description": "If your opponent has more units than you, grant an ally +1|+1 for each extra unit they have. ", + "descriptionRaw": "If your opponent has more units than you, grant an ally +1|+1 for each extra unit they have. ", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "These brave few knew they were stepping into warfare with beings of unimaginable power. They knew death was likely. But still, they stepped.", + "artistName": "Kudos Productions", + "name": "Against the Odds", + "cardCode": "05MT011", + "keywords": [ + "Focus" + ], + "keywordRefs": [ + "Focus" + ], + "spellSpeed": "Burst", + "spellSpeedRef": "Burst", + "rarity": "EPIC", + "rarityRef": "Epic", + "subtypes": [], + "supertype": "", + "type": "Spell", + "collectible": true, + "set": "Set5" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set5/en_us/img/cards/05MT005.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set5/en_us/img/cards/05MT005-full.png" + } + ], + "regions": [ + "Targon" + ], + "regionRefs": [ + "Targon" + ], + "attack": 1, + "cost": 1, + "health": 2, + "description": "", + "descriptionRaw": "", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "Tor felt his life fading with every heartbeat, but in that grave and looming darkness, where he was expected to embrace dread, he instead found purpose. He would not only face death willingly, but would bring with him the very demon who had dared to cut his life short. This is how he would be remembered. This would be Tor's saga.", + "artistName": "Kudos Productions", + "name": "Saga Seeker", + "cardCode": "05MT005", + "keywords": [], + "keywordRefs": [], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "COMMON", + "rarityRef": "Common", + "subtypes": [], + "supertype": "", + "type": "Unit", + "collectible": true, + "set": "Set5" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set5/en_us/img/cards/05DE003.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set5/en_us/img/cards/05DE003-full.png" + } + ], + "regions": [ + "Demacia" + ], + "regionRefs": [ + "Demacia" + ], + "attack": 0, + "cost": 9, + "health": 10, + "description": "When I'm summoned, swap my Health and your Nexus' Health. \r\nI can't be blocked by enemies with less Health than me.", + "descriptionRaw": "When I'm summoned, swap my Health and your Nexus' Health. \r\nI can't be blocked by enemies with less Health than me.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"An honorable tribute to those gone, but never forgotten: When the people of Demacia see the sun's rays shining off his form, they will know hope, and the indomitable spirit that inspired his construction will live on through him.\" \n- Durand workshop plaque", + "artistName": "Kudos Productions", + "name": "Gorlith the Unscalable", + "cardCode": "05DE003", + "keywords": [ + "Formidable", + "Tough" + ], + "keywordRefs": [ + "Formidable", + "Tough" + ], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "EPIC", + "rarityRef": "Epic", + "subtypes": [], + "supertype": "", + "type": "Unit", + "collectible": true, + "set": "Set5" + }, + { + "associatedCards": [], + "associatedCardRefs": [ + "05DE009T3", + "05DE009T1" + ], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set5/en_us/img/cards/05DE009.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set5/en_us/img/cards/05DE009-full.png" + } + ], + "regions": [ + "Demacia" + ], + "regionRefs": [ + "Demacia" + ], + "attack": 0, + "cost": 7, + "health": 8, + "description": "When I'm summoned, grant other allies +0|+3.", + "descriptionRaw": "When I'm summoned, grant other allies +0|+3.", + "levelupDescription": "Round End: Your allies have 25+ total Health.", + "levelupDescriptionRaw": "Round End: Your allies have 25+ total Health.", + "flavorText": "For many years after his creation, Galio lay dormant, unfeeling, unknowing. It wasn't until magic brought him to life and he experienced the resulting thrill of battle that he knew the joy of being among the living. Now, when he slept, he missed such wonderful things!", + "artistName": "SIXMOREVODKA", + "name": "Galio", + "cardCode": "05DE009", + "keywords": [ + "Formidable", + "SpellShield" + ], + "keywordRefs": [ + "Formidable", + "SpellShield" + ], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "Champion", + "rarityRef": "Champion", + "subtypes": [], + "supertype": "Champion", + "type": "Unit", + "collectible": true, + "set": "Set5" + }, + { + "associatedCards": [], + "associatedCardRefs": [ + "05DE009T1", + "05DE009" + ], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set5/en_us/img/cards/05DE009T3.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set5/en_us/img/cards/05DE009T3-full.png" + } + ], + "regions": [ + "Demacia" + ], + "regionRefs": [ + "Demacia" + ], + "attack": 0, + "cost": 3, + "health": 0, + "description": "Grant an ally +0|+3. At the next Round Start, grant it +0|+2. Create a Galio in your deck.", + "descriptionRaw": "Grant an ally +0|+3. At the next Round Start, grant it +0|+2. Create a Galio in your deck.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "Even the sight of Galio is enough to inspire the noble hearts of Demacians.", + "artistName": "Kudos Productions", + "name": "Galio's Shield of Durand", + "cardCode": "05DE009T3", + "keywords": [ + "Burst" + ], + "keywordRefs": [ + "Burst" + ], + "spellSpeed": "Burst", + "spellSpeedRef": "Burst", + "rarity": "None", + "rarityRef": "None", + "subtypes": [], + "supertype": "Champion", + "type": "Spell", + "collectible": false, + "set": "Set5" + }, + { + "associatedCards": [], + "associatedCardRefs": [ + "05DE009T3", + "05DE009" + ], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set5/en_us/img/cards/05DE009T1.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set5/en_us/img/cards/05DE009T1-full.png" + } + ], + "regions": [ + "Demacia" + ], + "regionRefs": [ + "Demacia" + ], + "attack": 0, + "cost": 7, + "health": 10, + "description": "When I'm summoned, grant other allies +0|+3. \r\nEach round, the first time an ally takes damage, Rally.", + "descriptionRaw": "When I'm summoned, grant other allies +0|+3. \r\nEach round, the first time an ally takes damage, Rally.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "When he awoke, Galio was overjoyed to find a whole family had been crafted for him, a facsimile of the same family that would carry on the legacy of his maker for years to come. They were just like him - they wouldn't break.", + "artistName": "SIXMOREVODKA", + "name": "Galio", + "cardCode": "05DE009T1", + "keywords": [ + "Formidable", + "SpellShield" + ], + "keywordRefs": [ + "Formidable", + "SpellShield" + ], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "None", + "rarityRef": "None", + "subtypes": [], + "supertype": "Champion", + "type": "Unit", + "collectible": false, + "set": "Set5" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set5/en_us/img/cards/05DE020.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set5/en_us/img/cards/05DE020-full.png" + } + ], + "regions": [ + "Demacia" + ], + "regionRefs": [ + "Demacia" + ], + "attack": 0, + "cost": 3, + "health": 0, + "description": "Grant an ally +0|+3. At the next Round Start, grant it +0|+2.", + "descriptionRaw": "Grant an ally +0|+3. At the next Round Start, grant it +0|+2.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "Even the sight of Galio is enough to inspire the noble hearts of Demacians.", + "artistName": "Kudos Productions", + "name": "Shield of Durand", + "cardCode": "05DE020", + "keywords": [ + "Burst" + ], + "keywordRefs": [ + "Burst" + ], + "spellSpeed": "Burst", + "spellSpeedRef": "Burst", + "rarity": "RARE", + "rarityRef": "Rare", + "subtypes": [], + "supertype": "", + "type": "Spell", + "collectible": true, + "set": "Set5" + }, + { + "associatedCards": [], + "associatedCardRefs": [ + "01DE016" + ], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set5/en_us/img/cards/05DE021.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set5/en_us/img/cards/05DE021-full.png" + } + ], + "regions": [ + "Demacia" + ], + "regionRefs": [ + "Demacia" + ], + "attack": 0, + "cost": 3, + "health": 0, + "description": "To play, spend all of your mana. Summon a Dauntless Vanguard and grow its stats to that amount. If 9+ mana was spent, grant other allied Elites +2|+2.", + "descriptionRaw": "To play, spend all of your mana. Summon a Dauntless Vanguard and grow its stats to that amount. If 9+ mana was spent, grant other allied Elites +2|+2.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "When it seems all hope is lost, the soldiers of Demacia look to the Vanguard.", + "artistName": "Kudos Productions", + "name": "Might of the Vanguard", + "cardCode": "05DE021", + "keywords": [ + "Slow" + ], + "keywordRefs": [ + "Slow" + ], + "spellSpeed": "Slow", + "spellSpeedRef": "Slow", + "rarity": "EPIC", + "rarityRef": "Epic", + "subtypes": [], + "supertype": "", + "type": "Spell", + "collectible": true, + "set": "Set5" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set5/en_us/img/cards/05DE017.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set5/en_us/img/cards/05DE017-full.png" + } + ], + "regions": [ + "Demacia" + ], + "regionRefs": [ + "Demacia" + ], + "attack": 0, + "cost": 3, + "health": 0, + "description": "Fully heal an ally. Then, that ally and an enemy strike each other.", + "descriptionRaw": "Fully heal an ally. Then, that ally and an enemy strike each other.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"Let's crack on, then!\" - Galio", + "artistName": "Kudos Productions", + "name": "Winds of War", + "cardCode": "05DE017", + "keywords": [ + "Slow" + ], + "keywordRefs": [ + "Slow" + ], + "spellSpeed": "Slow", + "spellSpeedRef": "Slow", + "rarity": "RARE", + "rarityRef": "Rare", + "subtypes": [], + "supertype": "", + "type": "Spell", + "collectible": true, + "set": "Set5" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set5/en_us/img/cards/05DE010.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set5/en_us/img/cards/05DE010-full.png" + } + ], + "regions": [ + "Demacia" + ], + "regionRefs": [ + "Demacia" + ], + "attack": 2, + "cost": 2, + "health": 2, + "description": "When you summon another ally, grant it +0|+1.", + "descriptionRaw": "When you summon another ally, grant it +0|+1.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"It may not be evident to the untrained, but the work of a great artist is in one chip of the chisel to the next.\"", + "artistName": "Kudos Productions", + "name": "Durand Sculptor", + "cardCode": "05DE010", + "keywords": [], + "keywordRefs": [], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "COMMON", + "rarityRef": "Common", + "subtypes": [], + "supertype": "", + "type": "Unit", + "collectible": true, + "set": "Set5" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set5/en_us/img/cards/05DE013.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set5/en_us/img/cards/05DE013-full.png" + } + ], + "regions": [ + "Demacia" + ], + "regionRefs": [ + "Demacia" + ], + "attack": 3, + "cost": 4, + "health": 5, + "description": "Support: I take all damage for my supported ally this round.", + "descriptionRaw": "Support: I take all damage for my supported ally this round.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "Following the stag-mounted Ranger's lead, the petricite guardian dwarfed the very creature that had inspired its elegant design.", + "artistName": "Kudos Productions", + "name": "Petricite Stag", + "cardCode": "05DE013", + "keywords": [ + "Support" + ], + "keywordRefs": [ + "Support" + ], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "EPIC", + "rarityRef": "Epic", + "subtypes": [], + "supertype": "", + "type": "Unit", + "collectible": true, + "set": "Set5" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set5/en_us/img/cards/05DE015.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set5/en_us/img/cards/05DE015-full.png" + } + ], + "regions": [ + "Demacia" + ], + "regionRefs": [ + "Demacia" + ], + "attack": 0, + "cost": 5, + "health": 6, + "description": "Fury grants me +0|+2 instead of +1|+1.", + "descriptionRaw": "Fury grants me +0|+2 instead of +1|+1.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "The placid mountain drakes are slow to anger despite their appearance, and their stoicism around other mountain beasts makes them natural protectors of otherwise vulnerable flocks.", + "artistName": "Kudos Productions", + "name": "Mountain Drake", + "cardCode": "05DE015", + "keywords": [ + "Fury", + "Formidable" + ], + "keywordRefs": [ + "Fury", + "Formidable" + ], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "EPIC", + "rarityRef": "Epic", + "subtypes": [ + "DRAGON" + ], + "supertype": "", + "type": "Unit", + "collectible": true, + "set": "Set5" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set5/en_us/img/cards/05DE019.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set5/en_us/img/cards/05DE019-full.png" + } + ], + "regions": [ + "Demacia" + ], + "regionRefs": [ + "Demacia" + ], + "attack": 1, + "cost": 3, + "health": 4, + "description": "Support: Give my supported ally +0|+2 and Formidable this round.", + "descriptionRaw": "Support: Give my supported ally +0|+2 and Formidable this round.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"The Ranger Elmheart has brought us grim news,\" the architect said calmly, focusing on rerolling the parchment to hide how his hands shook. He turned to the waiting sculptors and gave them a stiff nod. \"It seems the time has come for Demacia's unseen protectors to come out of hiding.\"", + "artistName": "Kudos Productions", + "name": "Durand Architect", + "cardCode": "05DE019", + "keywords": [ + "Support" + ], + "keywordRefs": [ + "Support" + ], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "RARE", + "rarityRef": "Rare", + "subtypes": [], + "supertype": "", + "type": "Unit", + "collectible": true, + "set": "Set5" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set5/en_us/img/cards/05DE014.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set5/en_us/img/cards/05DE014-full.png" + } + ], + "regions": [ + "Demacia" + ], + "regionRefs": [ + "Demacia" + ], + "attack": 3, + "cost": 3, + "health": 2, + "description": "Play: Grant an ally +0|+1 and Tough.", + "descriptionRaw": "Play: Grant an ally +0|+1 and Tough.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "Shireen looked up from her work at the sound of pounding hoofbeats. The ranger's haste left her uneasy, but curious. She urged her petricite bird to take flight, and followed in the ranger's wake.", + "artistName": "Kudos Productions", + "name": "Durand Protege", + "cardCode": "05DE014", + "keywords": [], + "keywordRefs": [], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "COMMON", + "rarityRef": "Common", + "subtypes": [], + "supertype": "", + "type": "Unit", + "collectible": true, + "set": "Set5" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set5/en_us/img/cards/05DE012.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set5/en_us/img/cards/05DE012-full.png" + } + ], + "regions": [ + "Demacia" + ], + "regionRefs": [ + "Demacia" + ], + "attack": 0, + "cost": 2, + "health": 3, + "description": "When you summon another ally, grant me Challenger.", + "descriptionRaw": "When you summon another ally, grant me Challenger.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "As the Broadwing passed overhead, the battered Demacian soldiers below let out a cheer, inspired by its enduring form.", + "artistName": "Kudos Productions", + "name": "Petricite Broadwing", + "cardCode": "05DE012", + "keywords": [ + "Formidable" + ], + "keywordRefs": [ + "Formidable" + ], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "RARE", + "rarityRef": "Rare", + "subtypes": [], + "supertype": "", + "type": "Unit", + "collectible": true, + "set": "Set5" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set5/en_us/img/cards/05DE018.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set5/en_us/img/cards/05DE018-full.png" + } + ], + "regions": [ + "Demacia" + ], + "regionRefs": [ + "Demacia" + ], + "attack": 0, + "cost": 1, + "health": 2, + "description": "", + "descriptionRaw": "", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"It's always a joy to see them come to life. You forget how distinct each is, their personalities reflections of the artist who made them.\" - Durand Sculptor", + "artistName": "Kudos Productions", + "name": "Petricite Hound", + "cardCode": "05DE018", + "keywords": [ + "Formidable" + ], + "keywordRefs": [ + "Formidable" + ], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "COMMON", + "rarityRef": "Common", + "subtypes": [], + "supertype": "", + "type": "Unit", + "collectible": true, + "set": "Set5" + } +] \ No newline at end of file diff --git a/data/set5-en_us/metadata.json b/data/set5-en_us/metadata.json new file mode 100644 index 0000000..73ddb2d --- /dev/null +++ b/data/set5-en_us/metadata.json @@ -0,0 +1,5 @@ +{ + "locales": [ + "en_us" + ] +} \ No newline at end of file diff --git a/data/set6-en_us/COPYRIGHT b/data/set6-en_us/COPYRIGHT new file mode 100644 index 0000000..095081a --- /dev/null +++ b/data/set6-en_us/COPYRIGHT @@ -0,0 +1 @@ +Copyright Riot Games, Inc. 2019 \ No newline at end of file diff --git a/data/set6-en_us/README.md b/data/set6-en_us/README.md new file mode 100644 index 0000000..378a7b6 --- /dev/null +++ b/data/set6-en_us/README.md @@ -0,0 +1,40 @@ +metadata.json +{ + "locales": ["{string}", ...], + "clientHash": "{string}" + "gameplayDataHash": "{string}", + "timestamp": "{YYYYMMDDhhmm}", + "patchlineRef": "{string}" +} + +cards.json +[ + { + "id": "{cardCode}", + "idComponents": + { + "set": "setNumber", + "region": + { + "id": "{shortRegionCode}", + "name": "{regionName}" + } + } + "name": "{name}", + "type": "{type}", + "subType": "{subType}", + "superType": "{superType}", + "description": "{description}", + "keywords": [], + "associatedCards": [{cardCode}, ...] + "health": "{health}", + "attack": "{attack}", + "cost": "{cost}", + "assets": + { + "gameAbsolutePath": "http://{cdn}/{bundleName}/set1/en_us/img/card/game/{cardCode}.png" + } + + }, + {...} +] diff --git a/data/set6-en_us/en_us/data/set6-en_us.json b/data/set6-en_us/en_us/data/set6-en_us.json new file mode 100644 index 0000000..7c03a03 --- /dev/null +++ b/data/set6-en_us/en_us/data/set6-en_us.json @@ -0,0 +1,7934 @@ +[ + { + "associatedCards": [], + "associatedCardRefs": [ + "06RU025T14", + "06RU025T6", + "06RU025T5" + ], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set6/en_us/img/cards/06RU025.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set6/en_us/img/cards/06RU025-full.png" + } + ], + "regions": [ + "Runeterra" + ], + "regionRefs": [ + "Runeterra" + ], + "attack": 0, + "cost": 4, + "health": 5, + "description": "Origin: Agony's Embrace.\r\nWhen I'm summoned, summon a random Husk.", + "descriptionRaw": "Origin: Agony's Embrace.\r\nWhen I'm summoned, summon a random Husk.", + "levelupDescription": "When you or an ally kill an allied Husk, give me its positive keywords this round and I level up.", + "levelupDescriptionRaw": "When you or an ally kill an allied Husk, give me its positive keywords this round and I level up.", + "flavorText": "The priestess' pupils were blown wide, and her hand trembled with nervous excitement. She was ready. This was the single moment Evelynn craved more than any other. She grinned, and slowly shed her visage. Then, as always, the screaming began.", + "artistName": "Kudos Productions", + "name": "Evelynn", + "cardCode": "06RU025", + "keywords": [], + "keywordRefs": [], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "Champion", + "rarityRef": "Champion", + "subtypes": [], + "supertype": "Champion", + "type": "Unit", + "collectible": true, + "set": "Set6" + }, + { + "associatedCards": [], + "associatedCardRefs": [ + "06RU025" + ], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set6/en_us/img/cards/06RU025T4.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set6/en_us/img/cards/06RU025T4-full.png" + } + ], + "regions": [ + "Piltover & Zaun" + ], + "regionRefs": [ + "PiltoverZaun" + ], + "attack": 0, + "cost": 1, + "health": 1, + "description": "When you play an ally, kill me to grant it my stats and positive keywords.", + "descriptionRaw": "When you play an ally, kill me to grant it my stats and positive keywords.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"Look me in the eye. Tell me I hurt you.\" - Solitude", + "artistName": "Kudos Productions", + "name": "Breakneck Husk", + "cardCode": "06RU025T4", + "keywords": [ + "Immobile", + "Quick Attack" + ], + "keywordRefs": [ + "Immobile", + "QuickStrike" + ], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "None", + "rarityRef": "None", + "subtypes": [], + "supertype": "", + "type": "Unit", + "collectible": false, + "set": "Set6" + }, + { + "associatedCards": [], + "associatedCardRefs": [ + "06RU025" + ], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set6/en_us/img/cards/06RU025T7.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set6/en_us/img/cards/06RU025T7-full.png" + } + ], + "regions": [ + "Shadow Isles" + ], + "regionRefs": [ + "ShadowIsles" + ], + "attack": 0, + "cost": 1, + "health": 1, + "description": "When you play an ally, kill me to grant it my stats and positive keywords.", + "descriptionRaw": "When you play an ally, kill me to grant it my stats and positive keywords.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"Figured you were Vora's type...\" - Sultur", + "artistName": "Kudos Productions", + "name": "Haunted Husk", + "cardCode": "06RU025T7", + "keywords": [ + "Immobile", + "Fearsome" + ], + "keywordRefs": [ + "Immobile", + "Fearsome" + ], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "None", + "rarityRef": "None", + "subtypes": [], + "supertype": "", + "type": "Unit", + "collectible": false, + "set": "Set6" + }, + { + "associatedCards": [], + "associatedCardRefs": [ + "06RU025" + ], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set6/en_us/img/cards/06RU025T14.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set6/en_us/img/cards/06RU025T14-full.png" + } + ], + "regions": [ + "Runeterra" + ], + "regionRefs": [ + "Runeterra" + ], + "attack": 0, + "cost": 0, + "health": 0, + "description": "You may put any cards that summon Husks into your deck during deckbuilding.", + "descriptionRaw": "You may put any cards that summon Husks into your deck during deckbuilding.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"I'll eat anything...\" - Evelynn", + "artistName": "Kudos Productions", + "name": "Agony's Embrace", + "cardCode": "06RU025T14", + "keywords": [], + "keywordRefs": [], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "None", + "rarityRef": "None", + "subtypes": [], + "supertype": "", + "type": "Ability", + "collectible": false, + "set": "Set6" + }, + { + "associatedCards": [], + "associatedCardRefs": [ + "06RU025T6", + "06RU025", + "06RU025T14" + ], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set6/en_us/img/cards/06RU025T5.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set6/en_us/img/cards/06RU025T5-full.png" + } + ], + "regions": [ + "Runeterra" + ], + "regionRefs": [ + "Runeterra" + ], + "attack": 5, + "cost": 4, + "health": 5, + "description": "When you or an ally kill an allied Husk, give me its positive keywords this round.\r\nRound End: Summon a random Husk. If fewer than 6 allies have died this game, transform me back into Evelynn. ", + "descriptionRaw": "When you or an ally kill an allied Husk, give me its positive keywords this round.\r\nRound End: Summon a random Husk. If fewer than 6 allies have died this game, transform me back into Evelynn. ", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "As Evelynn stalked Runeterra, she attracted the attentions of lesser demons, each hoping to destroy the Widowmaker and feast on her power. She butchered most, of course, but a few talented individuals caught her eye. Today, they live on, bound to their mistress, and when the mood strikes, Evelynn lets them out to play.", + "artistName": "Kudos Productions", + "name": "Evelynn", + "cardCode": "06RU025T5", + "keywords": [], + "keywordRefs": [], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "None", + "rarityRef": "None", + "subtypes": [], + "supertype": "Champion", + "type": "Unit", + "collectible": false, + "set": "Set6" + }, + { + "associatedCards": [], + "associatedCardRefs": [ + "06RU025" + ], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set6/en_us/img/cards/06RU025T8.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set6/en_us/img/cards/06RU025T8-full.png" + } + ], + "regions": [ + "Shurima" + ], + "regionRefs": [ + "Shurima" + ], + "attack": 0, + "cost": 1, + "health": 1, + "description": "When you play an ally, kill me to grant it my stats and positive keywords.", + "descriptionRaw": "When you play an ally, kill me to grant it my stats and positive keywords.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"Look at you. You are a pathetic, useless worm.\" - Domination", + "artistName": "Kudos Productions", + "name": "Warded Husk", + "cardCode": "06RU025T8", + "keywords": [ + "Immobile", + "SpellShield" + ], + "keywordRefs": [ + "Immobile", + "SpellShield" + ], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "None", + "rarityRef": "None", + "subtypes": [], + "supertype": "", + "type": "Unit", + "collectible": false, + "set": "Set6" + }, + { + "associatedCards": [], + "associatedCardRefs": [ + "06RU025" + ], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set6/en_us/img/cards/06RU025T12.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set6/en_us/img/cards/06RU025T12-full.png" + } + ], + "regions": [ + "Ionia" + ], + "regionRefs": [ + "Ionia" + ], + "attack": 0, + "cost": 1, + "health": 1, + "description": "When you play an ally, kill me to grant it my stats and positive keywords.", + "descriptionRaw": "When you play an ally, kill me to grant it my stats and positive keywords.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"Feed. FEED.\" - Vora", + "artistName": "Kudos Productions", + "name": "Fading Husk", + "cardCode": "06RU025T12", + "keywords": [ + "Immobile", + "Elusive" + ], + "keywordRefs": [ + "Immobile", + "Elusive" + ], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "None", + "rarityRef": "None", + "subtypes": [], + "supertype": "", + "type": "Unit", + "collectible": false, + "set": "Set6" + }, + { + "associatedCards": [], + "associatedCardRefs": [ + "06RU025" + ], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set6/en_us/img/cards/06RU025T10.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set6/en_us/img/cards/06RU025T10-full.png" + } + ], + "regions": [ + "Bilgewater" + ], + "regionRefs": [ + "Bilgewater" + ], + "attack": 0, + "cost": 1, + "health": 1, + "description": "When you play an ally, kill me to grant it my stats and positive keywords.", + "descriptionRaw": "When you play an ally, kill me to grant it my stats and positive keywords.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"Stings good, doesn't it?\" - Steem", + "artistName": "Kudos Productions", + "name": "Thrashing Husk", + "cardCode": "06RU025T10", + "keywords": [ + "Immobile", + "Overwhelm" + ], + "keywordRefs": [ + "Immobile", + "Overwhelm" + ], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "None", + "rarityRef": "None", + "subtypes": [], + "supertype": "", + "type": "Unit", + "collectible": false, + "set": "Set6" + }, + { + "associatedCards": [], + "associatedCardRefs": [ + "06RU025" + ], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set6/en_us/img/cards/06RU025T3.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set6/en_us/img/cards/06RU025T3-full.png" + } + ], + "regions": [ + "Bandle City" + ], + "regionRefs": [ + "BandleCity" + ], + "attack": 0, + "cost": 1, + "health": 1, + "description": "When you play an ally, kill me to grant it my stats and positive keywords.", + "descriptionRaw": "When you play an ally, kill me to grant it my stats and positive keywords.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"Oh, the look on your face!\" - Solitude", + "artistName": "Kudos Productions", + "name": "Scattered Husk", + "cardCode": "06RU025T3", + "keywords": [ + "Immobile", + "Impact" + ], + "keywordRefs": [ + "Immobile", + "Impact" + ], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "None", + "rarityRef": "None", + "subtypes": [], + "supertype": "", + "type": "Unit", + "collectible": false, + "set": "Set6" + }, + { + "associatedCards": [], + "associatedCardRefs": [ + "06RU025" + ], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set6/en_us/img/cards/06RU025T1.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set6/en_us/img/cards/06RU025T1-full.png" + } + ], + "regions": [ + "Noxus" + ], + "regionRefs": [ + "Noxus" + ], + "attack": 0, + "cost": 1, + "health": 1, + "description": "When you play an ally, kill me to grant it my stats and positive keywords.", + "descriptionRaw": "When you play an ally, kill me to grant it my stats and positive keywords.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"Not enough! More.\" - Vora", + "artistName": "Kudos Productions", + "name": "Desperate Husk", + "cardCode": "06RU025T1", + "keywords": [ + "Immobile", + "Challenger" + ], + "keywordRefs": [ + "Immobile", + "Challenger" + ], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "None", + "rarityRef": "None", + "subtypes": [], + "supertype": "", + "type": "Unit", + "collectible": false, + "set": "Set6" + }, + { + "associatedCards": [], + "associatedCardRefs": [ + "06RU025" + ], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set6/en_us/img/cards/06RU025T9.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set6/en_us/img/cards/06RU025T9-full.png" + } + ], + "regions": [ + "Targon" + ], + "regionRefs": [ + "Targon" + ], + "attack": 0, + "cost": 1, + "health": 1, + "description": "When you play an ally, kill me to grant it my stats and positive keywords.", + "descriptionRaw": "When you play an ally, kill me to grant it my stats and positive keywords.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"I wore you out? Already? Shame.\" - Evelynn", + "artistName": "Kudos Productions", + "name": "Enraged Husk", + "cardCode": "06RU025T9", + "keywords": [ + "Immobile", + "Fury" + ], + "keywordRefs": [ + "Immobile", + "Fury" + ], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "None", + "rarityRef": "None", + "subtypes": [], + "supertype": "", + "type": "Unit", + "collectible": false, + "set": "Set6" + }, + { + "associatedCards": [], + "associatedCardRefs": [ + "06RU025" + ], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set6/en_us/img/cards/06RU025T11.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set6/en_us/img/cards/06RU025T11-full.png" + } + ], + "regions": [ + "Demacia" + ], + "regionRefs": [ + "Demacia" + ], + "attack": 0, + "cost": 1, + "health": 1, + "description": "When you play an ally, kill me to grant it my stats and positive keywords.", + "descriptionRaw": "When you play an ally, kill me to grant it my stats and positive keywords.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"Told you it'd be a good time. Didn't say whose.\" - Sultur", + "artistName": "Kudos Productions", + "name": "Hardy Husk", + "cardCode": "06RU025T11", + "keywords": [ + "Immobile", + "Tough" + ], + "keywordRefs": [ + "Immobile", + "Tough" + ], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "None", + "rarityRef": "None", + "subtypes": [], + "supertype": "", + "type": "Unit", + "collectible": false, + "set": "Set6" + }, + { + "associatedCards": [], + "associatedCardRefs": [ + "06RU025" + ], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set6/en_us/img/cards/06RU025T2.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set6/en_us/img/cards/06RU025T2-full.png" + } + ], + "regions": [ + "Freljord" + ], + "regionRefs": [ + "Freljord" + ], + "attack": 0, + "cost": 1, + "health": 1, + "description": "When you play an ally, kill me to grant it my stats and positive keywords.", + "descriptionRaw": "When you play an ally, kill me to grant it my stats and positive keywords.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"Flesh. Bone. Screams. I want it all.\" - Vora", + "artistName": "Kudos Productions", + "name": "Stubborn Husk", + "cardCode": "06RU025T2", + "keywords": [ + "Immobile", + "Regeneration" + ], + "keywordRefs": [ + "Immobile", + "Regeneration" + ], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "None", + "rarityRef": "None", + "subtypes": [], + "supertype": "", + "type": "Unit", + "collectible": false, + "set": "Set6" + }, + { + "associatedCards": [], + "associatedCardRefs": [ + "06RU025T5", + "06RU025" + ], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set6/en_us/img/cards/06RU025T6.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set6/en_us/img/cards/06RU025T6-full.png" + } + ], + "regions": [ + "Runeterra" + ], + "regionRefs": [ + "Runeterra" + ], + "attack": 0, + "cost": 4, + "health": 0, + "description": "Stop all enemy spells and skills targeting Evelynn and she strikes an enemy.\r\nCreate an Evelynn in your deck.", + "descriptionRaw": "Stop all enemy spells and skills targeting Evelynn and she strikes an enemy.\r\nCreate an Evelynn in your deck.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"We're playing by my rules.\" - Evelynn", + "artistName": "Kudos Productions", + "name": "Evelynn's Last Caress", + "cardCode": "06RU025T6", + "keywords": [ + "Fast" + ], + "keywordRefs": [ + "Fast" + ], + "spellSpeed": "Fast", + "spellSpeedRef": "Fast", + "rarity": "None", + "rarityRef": "None", + "subtypes": [], + "supertype": "Champion", + "type": "Spell", + "collectible": false, + "set": "Set6" + }, + { + "associatedCards": [], + "associatedCardRefs": [ + "06RU001T9", + "06RU001T3", + "06RU001T8", + "06RU001T4" + ], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set6/en_us/img/cards/06RU001.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set6/en_us/img/cards/06RU001-full.png" + } + ], + "regions": [ + "Runeterra" + ], + "regionRefs": [ + "Runeterra" + ], + "attack": 2, + "cost": 4, + "health": 5, + "description": "Origin: The Wandering Caretaker.\r\nAttack: Plant 3 Chimes on random cards in your deck.", + "descriptionRaw": "Origin: The Wandering Caretaker.\r\nAttack: Plant 3 Chimes on random cards in your deck.", + "levelupDescription": "You've increased the total stats of allies in play or hand by 20+.", + "levelupDescriptionRaw": "You've increased the total stats of allies in play or hand by 20+.", + "flavorText": "\"Aye, Old Gaff's seen his share o' strange! First time was the Caretaker 'imself, I reckon. Like a star streamin' 'cross the sky, he was. Felt like the whole world stopped a minute, and it was just me 'n' him…\" - Old Gaff’s tale, part 1", + "artistName": "Caravan Studio", + "name": "Bard", + "cardCode": "06RU001", + "keywords": [], + "keywordRefs": [], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "Champion", + "rarityRef": "Champion", + "subtypes": [], + "supertype": "Champion", + "type": "Unit", + "collectible": true, + "set": "Set6" + }, + { + "associatedCards": [], + "associatedCardRefs": [ + "06RU001T3", + "06RU001T4", + "06RU001" + ], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set6/en_us/img/cards/06RU001T8.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set6/en_us/img/cards/06RU001T8-full.png" + } + ], + "regions": [ + "Runeterra" + ], + "regionRefs": [ + "Runeterra" + ], + "attack": 0, + "cost": 3, + "health": 0, + "description": "Draw a follower, then activate the effects of all boons in the top 3 cards of your deck.\r\nCreate a Bard in your deck.", + "descriptionRaw": "Draw a follower, then activate the effects of all boons in the top 3 cards of your deck.\r\nCreate a Bard in your deck.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "Songs tell of Bard hiding chimes amongst the towns of Runeterra, said to raise spirits and inspire spontaneous bouts of joyful dance.", + "artistName": "Kudos Productions", + "name": "Bard's Traveler's Call", + "cardCode": "06RU001T8", + "keywords": [ + "Burst" + ], + "keywordRefs": [ + "Burst" + ], + "spellSpeed": "Burst", + "spellSpeedRef": "Burst", + "rarity": "None", + "rarityRef": "None", + "subtypes": [], + "supertype": "Champion", + "type": "Spell", + "collectible": false, + "set": "Set6" + }, + { + "associatedCards": [], + "associatedCardRefs": [ + "06RU001T3", + "06RU001T8", + "06RU001", + "06RU001T9" + ], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set6/en_us/img/cards/06RU001T4.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set6/en_us/img/cards/06RU001T4-full.png" + } + ], + "regions": [ + "Runeterra" + ], + "regionRefs": [ + "Runeterra" + ], + "attack": 3, + "cost": 4, + "health": 6, + "description": "Attack: Plant 6 Chimes on random cards in your deck.\r\nWhen you activate a Chime, grant +1|+1 to a random ally in play.", + "descriptionRaw": "Attack: Plant 6 Chimes on random cards in your deck.\r\nWhen you activate a Chime, grant +1|+1 to a random ally in play.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"Sound the horn for the young and old\nSound it loud for all to behold. \nKings bow down and sing their praise\nTo The Caretaker and his curious ways.\" - Runeterran Ballad", + "artistName": "Caravan Studio", + "name": "Bard", + "cardCode": "06RU001T4", + "keywords": [], + "keywordRefs": [], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "None", + "rarityRef": "None", + "subtypes": [], + "supertype": "Champion", + "type": "Unit", + "collectible": false, + "set": "Set6" + }, + { + "associatedCards": [], + "associatedCardRefs": [ + "06RU001T3", + "06RU001" + ], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set6/en_us/img/cards/06RU001T9.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set6/en_us/img/cards/06RU001T9-full.png" + } + ], + "regions": [ + "Runeterra" + ], + "regionRefs": [ + "Runeterra" + ], + "attack": 0, + "cost": 0, + "health": 0, + "description": "You may put any cards that plant Chimes into your deck during deckbuilding. \r\nRound Start: Plant a Chime in your deck for each Bard that started the game in your deck.", + "descriptionRaw": "You may put any cards that plant Chimes into your deck during deckbuilding. \r\nRound Start: Plant a Chime in your deck for each Bard that started the game in your deck.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "A mysterious traveler from beyond the cosmos, Bard is a being of harmony and balance, whose ear is attuned to the symphony of creation and the discord within. Surrounded by a choir of peculiar creatures, known as meeps, the Wandering Caretaker's curious works are celebrated in songs and stories across Runeterra.", + "artistName": "Caravan Studio", + "name": "The Wandering Caretaker", + "cardCode": "06RU001T9", + "keywords": [], + "keywordRefs": [], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "None", + "rarityRef": "None", + "subtypes": [], + "supertype": "", + "type": "Ability", + "collectible": false, + "set": "Set6" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set6/en_us/img/cards/06RU001T3.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set6/en_us/img/cards/06RU001T3-full.png" + } + ], + "regions": [ + "Runeterra" + ], + "regionRefs": [ + "Runeterra" + ], + "attack": 0, + "cost": 0, + "health": 0, + "description": "Grant a random ally in hand +1|+1.", + "descriptionRaw": "Grant a random ally in hand +1|+1.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "On still windless nights, cast your eyes to the heavens and listen for the soft symphony of tinkling chimes. In that moment you will know that He is watching.", + "artistName": "Kudos Productions", + "name": "Chime", + "cardCode": "06RU001T3", + "keywords": [ + "Boon" + ], + "keywordRefs": [ + "Boon" + ], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "None", + "rarityRef": "None", + "subtypes": [], + "supertype": "", + "type": "Trap", + "collectible": false, + "set": "Set6" + }, + { + "associatedCards": [], + "associatedCardRefs": [ + "06RU002T6", + "06RU002T5", + "06RU002T4", + "06RU002T2", + "06RU002T1", + "06RU002T13", + "06RU002T12" + ], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set6/en_us/img/cards/06RU002.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set6/en_us/img/cards/06RU002-full.png" + } + ], + "regions": [ + "Runeterra" + ], + "regionRefs": [ + "Runeterra" + ], + "attack": 4, + "cost": 4, + "health": 4, + "description": "Origin: The Virtuoso. \r\nAttack: Deal 2 to all Stunned enemies.", + "descriptionRaw": "Origin: The Virtuoso. \r\nAttack: Deal 2 to all Stunned enemies.", + "levelupDescription": "You've played 12+ Fast spells, Slow spells, or Skills.", + "levelupDescriptionRaw": "You've played 12+ Fast spells, Slow spells, or Skills.", + "flavorText": "\"Overture: We open on the city of Qayanvi, where an old master summons a young pupil. He is tasked with disposing a group of nefarious villains and recovering stolen sacred artifacts. The actor is keen, but he does not as yet take his place. For now he simply prepares, waiting in the wings.\"", + "artistName": "Alessandro Poli", + "name": "Jhin", + "cardCode": "06RU002", + "keywords": [], + "keywordRefs": [], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "Champion", + "rarityRef": "Champion", + "subtypes": [], + "supertype": "Champion", + "type": "Unit", + "collectible": true, + "set": "Set6" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set6/en_us/img/cards/06RU002T6.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set6/en_us/img/cards/06RU002T6-full.png" + } + ], + "regions": [ + "Runeterra" + ], + "regionRefs": [ + "Runeterra" + ], + "attack": 0, + "cost": 0, + "health": 0, + "description": "Deal 4 to a unit.", + "descriptionRaw": "Deal 4 to a unit.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"...then, the response.\" - Jhin", + "artistName": "Kudos Productions", + "name": "Second Bounce", + "cardCode": "06RU002T6", + "keywords": [ + "Slow", + "Fleeting" + ], + "keywordRefs": [ + "Slow", + "Fleeting" + ], + "spellSpeed": "Slow", + "spellSpeedRef": "Slow", + "rarity": "None", + "rarityRef": "None", + "subtypes": [], + "supertype": "", + "type": "Spell", + "collectible": false, + "set": "Set6" + }, + { + "associatedCards": [], + "associatedCardRefs": [ + "06RU002", + "06RU002T2", + "06RU002T6", + "06RU002T5", + "06RU002T4", + "06RU002T12" + ], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set6/en_us/img/cards/06RU002T1.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set6/en_us/img/cards/06RU002T1-full.png" + } + ], + "regions": [ + "Runeterra" + ], + "regionRefs": [ + "Runeterra" + ], + "attack": 4, + "cost": 4, + "health": 4, + "description": "\r\nAttack: Deal 4 to all Stunned enemies and the enemy Nexus.\r\n", + "descriptionRaw": "\r\nAttack: Deal 4 to all Stunned enemies and the enemy Nexus.\r\n", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"And then: the finale.\"", + "artistName": "Alessandro Poli", + "name": "Jhin", + "cardCode": "06RU002T1", + "keywords": [ + "Quick Attack" + ], + "keywordRefs": [ + "QuickStrike" + ], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "None", + "rarityRef": "None", + "subtypes": [], + "supertype": "Champion", + "type": "Unit", + "collectible": false, + "set": "Set6" + }, + { + "associatedCards": [], + "associatedCardRefs": [ + "06RU002T4", + "06RU002" + ], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set6/en_us/img/cards/06RU002T5.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set6/en_us/img/cards/06RU002T5-full.png" + } + ], + "regions": [ + "Runeterra" + ], + "regionRefs": [ + "Runeterra" + ], + "attack": 0, + "cost": 0, + "health": 0, + "description": "If a Jhin started in your deck, for every 3 Fast spells, Slow spells, or Skills you play while you Behold Jhin, play Lotus Trap.\r\nYou may put any follower that has a Skill into your deck during deckbuilding.\r\n", + "descriptionRaw": "If a Jhin started in your deck, for every 3 Fast spells, Slow spells, or Skills you play while you Behold Jhin, play Lotus Trap.\r\nYou may put any follower that has a Skill into your deck during deckbuilding.\r\n", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"The gun, my instrument; the bullet, my song.\" - Jhin", + "artistName": "Alessandro Poli", + "name": "The Virtuoso", + "cardCode": "06RU002T5", + "keywords": [], + "keywordRefs": [], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "None", + "rarityRef": "None", + "subtypes": [], + "supertype": "", + "type": "Ability", + "collectible": false, + "set": "Set6" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set6/en_us/img/cards/06RU002T12.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set6/en_us/img/cards/06RU002T12-full.png" + } + ], + "regions": [ + "Runeterra" + ], + "regionRefs": [ + "Runeterra" + ], + "attack": 0, + "cost": 0, + "health": 0, + "description": "Deal 4 to all Stunned enemies and the enemy Nexus.", + "descriptionRaw": "Deal 4 to all Stunned enemies and the enemy Nexus.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"Your final scene begins.\" - Jhin", + "artistName": "Kudos Productions", + "name": "Curtain Call", + "cardCode": "06RU002T12", + "keywords": [ + "Skill" + ], + "keywordRefs": [ + "Skill" + ], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "None", + "rarityRef": "None", + "subtypes": [], + "supertype": "", + "type": "Ability", + "collectible": false, + "set": "Set6" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set6/en_us/img/cards/06RU002T13.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set6/en_us/img/cards/06RU002T13-full.png" + } + ], + "regions": [ + "Runeterra" + ], + "regionRefs": [ + "Runeterra" + ], + "attack": 0, + "cost": 0, + "health": 0, + "description": "Deal 2 to all Stunned enemies.", + "descriptionRaw": "Deal 2 to all Stunned enemies.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"I like a violent composition.\" - Jhin", + "artistName": "Kudos Productions", + "name": "Deadly Flourish", + "cardCode": "06RU002T13", + "keywords": [ + "Skill" + ], + "keywordRefs": [ + "Skill" + ], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "None", + "rarityRef": "None", + "subtypes": [], + "supertype": "", + "type": "Ability", + "collectible": false, + "set": "Set6" + }, + { + "associatedCards": [], + "associatedCardRefs": [ + "06RU002" + ], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set6/en_us/img/cards/06RU002T4.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set6/en_us/img/cards/06RU002T4-full.png" + } + ], + "regions": [ + "Runeterra" + ], + "regionRefs": [ + "Runeterra" + ], + "attack": 0, + "cost": 0, + "health": 0, + "description": "Deal 1 to the enemy Nexus. If Jhin is in play, Stun the weakest enemy.", + "descriptionRaw": "Deal 1 to the enemy Nexus. If Jhin is in play, Stun the weakest enemy.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"Smile! Everyone is watching!\" - Jhin", + "artistName": "Kudos Productions", + "name": "Lotus Trap", + "cardCode": "06RU002T4", + "keywords": [ + "Skill" + ], + "keywordRefs": [ + "Skill" + ], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "None", + "rarityRef": "None", + "subtypes": [], + "supertype": "", + "type": "Ability", + "collectible": false, + "set": "Set6" + }, + { + "associatedCards": [], + "associatedCardRefs": [ + "06RU002", + "06RU002T1", + "06RU002T6" + ], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set6/en_us/img/cards/06RU002T2.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set6/en_us/img/cards/06RU002T2-full.png" + } + ], + "regions": [ + "Runeterra" + ], + "regionRefs": [ + "Runeterra" + ], + "attack": 0, + "cost": 4, + "health": 0, + "description": "Deal 1 to a unit. Create a Second Bounce in hand at the next Round Start.\r\nCreate a Jhin in your deck.", + "descriptionRaw": "Deal 1 to a unit. Create a Second Bounce in hand at the next Round Start.\r\nCreate a Jhin in your deck.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"First, the call...\" - Jhin", + "artistName": "Kudos Productions", + "name": "Jhin's Dancing Grenade", + "cardCode": "06RU002T2", + "keywords": [ + "Slow" + ], + "keywordRefs": [ + "Slow" + ], + "spellSpeed": "Slow", + "spellSpeedRef": "Slow", + "rarity": "None", + "rarityRef": "None", + "subtypes": [], + "supertype": "Champion", + "type": "Spell", + "collectible": false, + "set": "Set6" + }, + { + "associatedCards": [], + "associatedCardRefs": [ + "06RU002T6" + ], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set6/en_us/img/cards/06RU046.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set6/en_us/img/cards/06RU046-full.png" + } + ], + "regions": [ + "Runeterra" + ], + "regionRefs": [ + "Runeterra" + ], + "attack": 0, + "cost": 4, + "health": 0, + "description": "Deal 1 to a unit. Create a Second Bounce in hand at the next Round Start.", + "descriptionRaw": "Deal 1 to a unit. Create a Second Bounce in hand at the next Round Start.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"First, the call...\" - Jhin", + "artistName": "Kudos Productions", + "name": "Dancing Grenade", + "cardCode": "06RU046", + "keywords": [ + "Slow" + ], + "keywordRefs": [ + "Slow" + ], + "spellSpeed": "Slow", + "spellSpeedRef": "Slow", + "rarity": "None", + "rarityRef": "None", + "subtypes": [], + "supertype": "", + "type": "Spell", + "collectible": false, + "set": "Set6" + }, + { + "associatedCards": [], + "associatedCardRefs": [ + "06RU025", + "06RU025T5" + ], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set6/en_us/img/cards/06RU044.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set6/en_us/img/cards/06RU044-full.png" + } + ], + "regions": [ + "Runeterra" + ], + "regionRefs": [ + "Runeterra" + ], + "attack": 0, + "cost": 4, + "health": 0, + "description": "Stop all enemy spells and skills targeting Evelynn and she strikes an enemy.", + "descriptionRaw": "Stop all enemy spells and skills targeting Evelynn and she strikes an enemy.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"We're playing by my rules.\" - Evelynn", + "artistName": "Kudos Productions", + "name": "Last Caress", + "cardCode": "06RU044", + "keywords": [ + "Fast" + ], + "keywordRefs": [ + "Fast" + ], + "spellSpeed": "Fast", + "spellSpeedRef": "Fast", + "rarity": "None", + "rarityRef": "None", + "subtypes": [], + "supertype": "", + "type": "Spell", + "collectible": false, + "set": "Set6" + }, + { + "associatedCards": [], + "associatedCardRefs": [ + "06RU001T3" + ], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set6/en_us/img/cards/06RU045.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set6/en_us/img/cards/06RU045-full.png" + } + ], + "regions": [ + "Runeterra" + ], + "regionRefs": [ + "Runeterra" + ], + "attack": 0, + "cost": 3, + "health": 0, + "description": "Draw a follower, then activate the effects of all boons in the top 3 cards of your deck.", + "descriptionRaw": "Draw a follower, then activate the effects of all boons in the top 3 cards of your deck.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "Songs tell of Bard hiding chimes amongst the towns of Runeterra, said to raise spirits and inspire spontaneous bouts of joyful dance.", + "artistName": "Kudos Productions", + "name": "Traveler's Call", + "cardCode": "06RU045", + "keywords": [ + "Burst" + ], + "keywordRefs": [ + "Burst" + ], + "spellSpeed": "Burst", + "spellSpeedRef": "Burst", + "rarity": "None", + "rarityRef": "None", + "subtypes": [], + "supertype": "", + "type": "Spell", + "collectible": false, + "set": "Set6" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set6/en_us/img/cards/06BC045.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set6/en_us/img/cards/06BC045-full.png" + } + ], + "regions": [ + "Bandle City" + ], + "regionRefs": [ + "BandleCity" + ], + "attack": 0, + "cost": 4, + "health": 0, + "description": "Give allies +1|+1 this round. If they're created, give them +2|+2 instead.", + "descriptionRaw": "Give allies +1|+1 this round. If they're created, give them +2|+2 instead.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"HELLO. I MUSHROOM I TALKING I DON'T KNOW WHY OR HOW OR WHAT IS HAPPEN PLEASE LET ME BE MUSHROOM. PLEASE. THANK. BYE.\" - Mushroom", + "artistName": "Kudos Productions", + "name": "Sneezy Biggledust!", + "cardCode": "06BC045", + "keywords": [ + "Focus" + ], + "keywordRefs": [ + "Focus" + ], + "spellSpeed": "Burst", + "spellSpeedRef": "Burst", + "rarity": "EPIC", + "rarityRef": "Epic", + "subtypes": [], + "supertype": "", + "type": "Spell", + "collectible": true, + "set": "Set6" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set6/en_us/img/cards/06BC036.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set6/en_us/img/cards/06BC036-full.png" + } + ], + "regions": [ + "Bandle City" + ], + "regionRefs": [ + "BandleCity" + ], + "attack": 2, + "cost": 3, + "health": 2, + "description": "When I'm summoned, create a random Yordle in hand.\r\nAttack: Grant other allied Yordles +1|+0.", + "descriptionRaw": "When I'm summoned, create a random Yordle in hand.\r\nAttack: Grant other allied Yordles +1|+0.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"EVERYONE loves Paparo! Every summer, he brings us trinkets from all across the world, and they're always either tasty, pretty, or topsy-turvy! Sometimes, all three!\" - Ava Achiever", + "artistName": "Kudos Productions", + "name": "Paparo the Great", + "cardCode": "06BC036", + "keywords": [], + "keywordRefs": [], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "EPIC", + "rarityRef": "Epic", + "subtypes": [ + "YORDLE" + ], + "supertype": "", + "type": "Unit", + "collectible": true, + "set": "Set6" + }, + { + "associatedCards": [], + "associatedCardRefs": [ + "05BC141", + "05BC216", + "05BC191" + ], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set6/en_us/img/cards/06BC040.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set6/en_us/img/cards/06BC040-full.png" + } + ], + "regions": [ + "Bandle City" + ], + "regionRefs": [ + "BandleCity" + ], + "attack": 0, + "cost": 1, + "health": 0, + "description": "Create a Fleeting Heroic Refrain, Yordle Contraption, or Keeper's Verdict in hand.", + "descriptionRaw": "Create a Fleeting Heroic Refrain, Yordle Contraption, or Keeper's Verdict in hand.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "Yordles are always down for a game... but don't be surprised if the rules change in the middle of one!", + "artistName": "Kudos Productions", + "name": "Bandle Tellstones", + "cardCode": "06BC040", + "keywords": [ + "Burst" + ], + "keywordRefs": [ + "Burst" + ], + "spellSpeed": "Burst", + "spellSpeedRef": "Burst", + "rarity": "RARE", + "rarityRef": "Rare", + "subtypes": [], + "supertype": "", + "type": "Spell", + "collectible": true, + "set": "Set6" + }, + { + "associatedCards": [], + "associatedCardRefs": [ + "05BC073T1" + ], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set6/en_us/img/cards/06BC039.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set6/en_us/img/cards/06BC039-full.png" + } + ], + "regions": [ + "Bandle City" + ], + "regionRefs": [ + "BandleCity" + ], + "attack": 0, + "cost": 2, + "health": 0, + "description": "Deal 2 to a unit and summon a Scrappy Bomb.", + "descriptionRaw": "Deal 2 to a unit and summon a Scrappy Bomb.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"Well, that's not good,\" Giselle said quietly, ducking behind cover.", + "artistName": "Kudos Productions", + "name": "Drop the Bomb", + "cardCode": "06BC039", + "keywords": [ + "Slow" + ], + "keywordRefs": [ + "Slow" + ], + "spellSpeed": "Slow", + "spellSpeedRef": "Slow", + "rarity": "COMMON", + "rarityRef": "Common", + "subtypes": [], + "supertype": "", + "type": "Spell", + "collectible": true, + "set": "Set6" + }, + { + "associatedCards": [], + "associatedCardRefs": [ + "06RU001T3" + ], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set6/en_us/img/cards/06BC044.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set6/en_us/img/cards/06BC044-full.png" + } + ], + "regions": [ + "Bandle City" + ], + "regionRefs": [ + "BandleCity" + ], + "attack": 0, + "cost": 5, + "health": 0, + "description": "Deal 2 to an enemy and Stun another. Plant 3 Chimes on random cards in your deck.", + "descriptionRaw": "Deal 2 to an enemy and Stun another. Plant 3 Chimes on random cards in your deck.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"Mama, where does the Caretaker go?\"\n\"He goes everywhere, love. As far as the eye can reach.\"\n\"Why?\"\n\"Ah, my sweet. Do not think on why. Not even our wisest elders can understand the Caretaker's ways...\"\n- A mother and child", + "artistName": "Kudos Productions", + "name": "Cosmic Binding", + "cardCode": "06BC044", + "keywords": [ + "Fast" + ], + "keywordRefs": [ + "Fast" + ], + "spellSpeed": "Fast", + "spellSpeedRef": "Fast", + "rarity": "RARE", + "rarityRef": "Rare", + "subtypes": [], + "supertype": "", + "type": "Spell", + "collectible": true, + "set": "Set6" + }, + { + "associatedCards": [], + "associatedCardRefs": [ + "06RU001T3" + ], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set6/en_us/img/cards/06BC026.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set6/en_us/img/cards/06BC026-full.png" + } + ], + "regions": [ + "Bandle City" + ], + "regionRefs": [ + "BandleCity" + ], + "attack": 2, + "cost": 1, + "health": 1, + "description": "When I'm summoned, plant a Chime on the top card of your deck.", + "descriptionRaw": "When I'm summoned, plant a Chime on the top card of your deck.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"..second time was the big 'un. I was sweepin' the floors, when all a sudden I spot me dinner spilt on the table and me pots 'n' pans waddlin' on two legs, hurryin’ out the door! I followed fast as these knees’d go, and I found ‘em at that temple, rummagin’ through the shelves like they was lookin’ for somethin’.” - Old Gaff’s tale, part 2", + "artistName": "Caravan Studio", + "name": "Byrd, The Bellringer", + "cardCode": "06BC026", + "keywords": [], + "keywordRefs": [], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "COMMON", + "rarityRef": "Common", + "subtypes": [], + "supertype": "", + "type": "Unit", + "collectible": true, + "set": "Set6" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set6/en_us/img/cards/06BC030.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set6/en_us/img/cards/06BC030-full.png" + } + ], + "regions": [ + "Bandle City" + ], + "regionRefs": [ + "BandleCity" + ], + "attack": 0, + "cost": 2, + "health": 0, + "description": "Deal 1 to a unit. If one of your traps or boons activated this round, deal 3 to it instead.", + "descriptionRaw": "Deal 1 to a unit. If one of your traps or boons activated this round, deal 3 to it instead.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"If it starts to glow, it's gonna blow!\" - Bandle Scout rule number 463", + "artistName": "Kudos Productions", + "name": "Proximity Puffcap", + "cardCode": "06BC030", + "keywords": [ + "Slow" + ], + "keywordRefs": [ + "Slow" + ], + "spellSpeed": "Slow", + "spellSpeedRef": "Slow", + "rarity": "COMMON", + "rarityRef": "Common", + "subtypes": [], + "supertype": "", + "type": "Spell", + "collectible": true, + "set": "Set6" + }, + { + "associatedCards": [], + "associatedCardRefs": [ + "06RU001T3" + ], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set6/en_us/img/cards/06BC031.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set6/en_us/img/cards/06BC031-full.png" + } + ], + "regions": [ + "Bandle City" + ], + "regionRefs": [ + "BandleCity" + ], + "attack": 4, + "cost": 6, + "health": 6, + "description": "When I'm summoned, plant a Chime on the top card of your deck, then double the boons in your deck.", + "descriptionRaw": "When I'm summoned, plant a Chime on the top card of your deck, then double the boons in your deck.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"Gave me a right fright, it did. Arms sproutin' all over. Teeth big as boulders. Oh, and when that creature ran that mallet 'cross its teeth, made a song so eerie, thought I'd die. Ran for my life, I did. But not before I seen it... holes in the sky! Musta been hundreds of 'em!\"\n- Old Gaff’s tale, part 4", + "artistName": "Caravan Studio", + "name": "Maduli, The Gatekeeper", + "cardCode": "06BC031", + "keywords": [], + "keywordRefs": [], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "RARE", + "rarityRef": "Rare", + "subtypes": [], + "supertype": "", + "type": "Unit", + "collectible": true, + "set": "Set6" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set6/en_us/img/cards/06BC035.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set6/en_us/img/cards/06BC035-full.png" + } + ], + "regions": [ + "Bandle City" + ], + "regionRefs": [ + "BandleCity" + ], + "attack": 0, + "cost": 2, + "health": 0, + "description": "When an ally with an attachment attacks, grant that ally +1|+0.", + "descriptionRaw": "When an ally with an attachment attacks, grant that ally +1|+0.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "The leaves of the papertree shimmer with the same fae magic that created the tree itself. And, just like the birds that inspired their form, they find the allure of shiny things impossible to resist.", + "artistName": "Kudos Productions", + "name": "The Papertree", + "cardCode": "06BC035", + "keywords": [ + "Landmark" + ], + "keywordRefs": [ + "LandmarkVisualOnly" + ], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "RARE", + "rarityRef": "Rare", + "subtypes": [], + "supertype": "", + "type": "Landmark", + "collectible": true, + "set": "Set6" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set6/en_us/img/cards/06IO005.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set6/en_us/img/cards/06IO005-full.png" + } + ], + "regions": [ + "Ionia" + ], + "regionRefs": [ + "Ionia" + ], + "attack": 0, + "cost": 2, + "health": 0, + "description": "Recall a unit with 3 or less Health.", + "descriptionRaw": "Recall a unit with 3 or less Health.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"Artistry cannot be rushed.\" - Jhin", + "artistName": "Kudos Productions", + "name": "Gruesome Theater", + "cardCode": "06IO005", + "keywords": [ + "Fast" + ], + "keywordRefs": [ + "Fast" + ], + "spellSpeed": "Fast", + "spellSpeedRef": "Fast", + "rarity": "COMMON", + "rarityRef": "Common", + "subtypes": [], + "supertype": "", + "type": "Spell", + "collectible": true, + "set": "Set6" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set6/en_us/img/cards/06IO038.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set6/en_us/img/cards/06IO038-full.png" + } + ], + "regions": [ + "Ionia" + ], + "regionRefs": [ + "Ionia" + ], + "attack": 0, + "cost": 4, + "health": 0, + "description": "Costs 2 less if you have supported an ally this game.
Give an ally Barrier this round.", + "descriptionRaw": "Costs 2 less if you have supported an ally this game.Give an ally Barrier this round.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"Trust the balance. Walk the divide.\" - Shen", + "artistName": "Kudos Productions", + "name": "Moral Support", + "cardCode": "06IO038", + "keywords": [ + "Burst" + ], + "keywordRefs": [ + "Burst" + ], + "spellSpeed": "Burst", + "spellSpeedRef": "Burst", + "rarity": "COMMON", + "rarityRef": "Common", + "subtypes": [], + "supertype": "", + "type": "Spell", + "collectible": true, + "set": "Set6" + }, + { + "associatedCards": [], + "associatedCardRefs": [ + "01IO020" + ], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set6/en_us/img/cards/06IO012.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set6/en_us/img/cards/06IO012-full.png" + } + ], + "regions": [ + "Ionia" + ], + "regionRefs": [ + "Ionia" + ], + "attack": 0, + "cost": 4, + "health": 0, + "description": "Summon a Keeper of Masks now or at the next Round Start. Draw 1.", + "descriptionRaw": "Summon a Keeper of Masks now or at the next Round Start. Draw 1.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"Old masks let young eyes see clearly.\"\n- Keeper of Masks", + "artistName": "Kudos Productions", + "name": "Kinkou's Call", + "cardCode": "06IO012", + "keywords": [ + "Slow" + ], + "keywordRefs": [ + "Slow" + ], + "spellSpeed": "Slow", + "spellSpeedRef": "Slow", + "rarity": "COMMON", + "rarityRef": "Common", + "subtypes": [], + "supertype": "", + "type": "Spell", + "collectible": true, + "set": "Set6" + }, + { + "associatedCards": [], + "associatedCardRefs": [ + "02IO003T1" + ], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set6/en_us/img/cards/06IO009.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set6/en_us/img/cards/06IO009-full.png" + } + ], + "regions": [ + "Ionia" + ], + "regionRefs": [ + "Ionia" + ], + "attack": 0, + "cost": 5, + "health": 0, + "description": "Start a free attack with 2 Dragonlings.", + "descriptionRaw": "Start a free attack with 2 Dragonlings.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"Desire made manifest.\"\n- The Dragonmaster", + "artistName": "Kudos Productions", + "name": "Dragon Ambush", + "cardCode": "06IO009", + "keywords": [ + "Slow" + ], + "keywordRefs": [ + "Slow" + ], + "spellSpeed": "Slow", + "spellSpeedRef": "Slow", + "rarity": "COMMON", + "rarityRef": "Common", + "subtypes": [], + "supertype": "", + "type": "Spell", + "collectible": true, + "set": "Set6" + }, + { + "associatedCards": [], + "associatedCardRefs": [ + "04IO010" + ], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set6/en_us/img/cards/06IO033.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set6/en_us/img/cards/06IO033-full.png" + } + ], + "regions": [ + "Ionia" + ], + "regionRefs": [ + "Ionia" + ], + "attack": 0, + "cost": 5, + "health": 0, + "description": "For the rest of the game, when you Blade Dance, summon another attacking Blade.\r\nBlade Dance 1.", + "descriptionRaw": "For the rest of the game, when you Blade Dance, summon another attacking Blade.\r\nBlade Dance 1.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"Lead the dance, and I'll follow!\" - Ribbon Dancer", + "artistName": "Kudos Productions", + "name": "Storm of Blades", + "cardCode": "06IO033", + "keywords": [ + "Slow" + ], + "keywordRefs": [ + "Slow" + ], + "spellSpeed": "Slow", + "spellSpeedRef": "Slow", + "rarity": "EPIC", + "rarityRef": "Epic", + "subtypes": [], + "supertype": "", + "type": "Spell", + "collectible": true, + "set": "Set6" + }, + { + "associatedCards": [], + "associatedCardRefs": [ + "06IO004T1" + ], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set6/en_us/img/cards/06IO004.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set6/en_us/img/cards/06IO004-full.png" + } + ], + "regions": [ + "Ionia" + ], + "regionRefs": [ + "Ionia" + ], + "attack": 3, + "cost": 3, + "health": 2, + "description": "Play: Recall a unit with less Power than me.", + "descriptionRaw": "Play: Recall a unit with less Power than me.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"An extraordinary creator, The Maker. A legendary artisan! Her art, peerless! Her execution, flawless! It is a great honor to be in her presence, let alone wield an instrument of her making.\" - Kashuri Witness", + "artistName": "Valentin Gloaguen", + "name": "The Maker", + "cardCode": "06IO004", + "keywords": [], + "keywordRefs": [], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "RARE", + "rarityRef": "Rare", + "subtypes": [], + "supertype": "", + "type": "Unit", + "collectible": true, + "set": "Set6" + }, + { + "associatedCards": [], + "associatedCardRefs": [ + "01IO015" + ], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set6/en_us/img/cards/06IO010.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set6/en_us/img/cards/06IO010-full.png" + } + ], + "regions": [ + "Ionia" + ], + "regionRefs": [ + "Ionia" + ], + "attack": 0, + "cost": 5, + "health": 0, + "description": "When I'm summoned, draw a Yasuo and Stun the strongest enemy.\r\nWhen you gain the attack token, Stun the strongest enemy.", + "descriptionRaw": "When I'm summoned, draw a Yasuo and Stun the strongest enemy.\r\nWhen you gain the attack token, Stun the strongest enemy.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "For most, peace is a happy home and the warm quiet found in a loved one's hold. For Yasuo, it is that rare moment when the winds calm and offer promise instead of remembrance. ", + "artistName": "Kudos Productions", + "name": "Windswept Hillock", + "cardCode": "06IO010", + "keywords": [ + "Landmark" + ], + "keywordRefs": [ + "LandmarkVisualOnly" + ], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "EPIC", + "rarityRef": "Epic", + "subtypes": [], + "supertype": "", + "type": "Landmark", + "collectible": true, + "set": "Set6" + }, + { + "associatedCards": [], + "associatedCardRefs": [ + "01IO004", + "03IO005", + "01IO010" + ], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set6/en_us/img/cards/06IO036.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set6/en_us/img/cards/06IO036-full.png" + } + ], + "regions": [ + "Ionia" + ], + "regionRefs": [ + "Ionia" + ], + "attack": 0, + "cost": 1, + "health": 0, + "description": "Create a Fleeting Health Potion, Homecoming, or Stand United in hand.", + "descriptionRaw": "Create a Fleeting Health Potion, Homecoming, or Stand United in hand.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"Learning to read your opponent is an essential skill, even outside of a fight. But most importantly, the purpose of a game is to have fun. Now, fetch me my footbath!\" - Inspiring Mentor", + "artistName": "Kudos Productions", + "name": "Ionian Tellstones", + "cardCode": "06IO036", + "keywords": [ + "Burst" + ], + "keywordRefs": [ + "Burst" + ], + "spellSpeed": "Burst", + "spellSpeedRef": "Burst", + "rarity": "RARE", + "rarityRef": "Rare", + "subtypes": [], + "supertype": "", + "type": "Spell", + "collectible": true, + "set": "Set6" + }, + { + "associatedCards": [], + "associatedCardRefs": [ + "01IO020" + ], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set6/en_us/img/cards/06IO012T1.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set6/en_us/img/cards/06IO012T1-full.png" + } + ], + "regions": [ + "Ionia" + ], + "regionRefs": [ + "Ionia" + ], + "attack": 0, + "cost": 4, + "health": 0, + "description": "Summon a Keeper of Masks at the next Round Start. Draw 1. ", + "descriptionRaw": "Summon a Keeper of Masks at the next Round Start. Draw 1. ", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"Old masks let young eyes see clearly.\"\n- Keeper of Masks", + "artistName": "Kudos Productions", + "name": "Kinkou's Call", + "cardCode": "06IO012T1", + "keywords": [ + "Slow" + ], + "keywordRefs": [ + "Slow" + ], + "spellSpeed": "Slow", + "spellSpeedRef": "Slow", + "rarity": "None", + "rarityRef": "None", + "subtypes": [], + "supertype": "", + "type": "Spell", + "collectible": false, + "set": "Set6" + }, + { + "associatedCards": [], + "associatedCardRefs": [ + "01IO020" + ], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set6/en_us/img/cards/06IO012T2.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set6/en_us/img/cards/06IO012T2-full.png" + } + ], + "regions": [ + "Ionia" + ], + "regionRefs": [ + "Ionia" + ], + "attack": 0, + "cost": 4, + "health": 0, + "description": "Summon a Keeper of Masks. Draw 1.", + "descriptionRaw": "Summon a Keeper of Masks. Draw 1.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"Old masks let young eyes see clearly.\"\n- Keeper of Masks", + "artistName": "Kudos Productions", + "name": "Kinkou's Call", + "cardCode": "06IO012T2", + "keywords": [ + "Slow" + ], + "keywordRefs": [ + "Slow" + ], + "spellSpeed": "Slow", + "spellSpeedRef": "Slow", + "rarity": "None", + "rarityRef": "None", + "subtypes": [], + "supertype": "", + "type": "Spell", + "collectible": false, + "set": "Set6" + }, + { + "associatedCards": [], + "associatedCardRefs": [ + "06IO003T1" + ], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set6/en_us/img/cards/06IO003.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set6/en_us/img/cards/06IO003-full.png" + } + ], + "regions": [ + "Ionia" + ], + "regionRefs": [ + "Ionia" + ], + "attack": 4, + "cost": 2, + "health": 4, + "description": "Play: Stun an enemy.", + "descriptionRaw": "Play: Stun an enemy.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"Act Four: A young priestess enters our story. Her tale is one of tragedy, conveyed on the pale lips of those she betrayed. Desperate to repent for her transgression, she carries in her arms a great burden, a gilded gift for the Noxians she welcomed to her land. We are left to wonder: was it sorrow or the bullet that broke her heart?\"", + "artistName": "Envar Studio", + "name": "The Stagehand", + "cardCode": "06IO003", + "keywords": [ + "Ephemeral" + ], + "keywordRefs": [ + "Ephemeral" + ], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "COMMON", + "rarityRef": "Common", + "subtypes": [], + "supertype": "", + "type": "Unit", + "collectible": true, + "set": "Set6" + }, + { + "associatedCards": [], + "associatedCardRefs": [ + "06IO003" + ], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set6/en_us/img/cards/06IO003T1.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set6/en_us/img/cards/06IO003T1-full.png" + } + ], + "regions": [ + "Ionia" + ], + "regionRefs": [ + "Ionia" + ], + "attack": 0, + "cost": 0, + "health": 0, + "description": "Stun an enemy.", + "descriptionRaw": "Stun an enemy.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"An actor must not shy from the spotlight.\" - Jhin", + "artistName": "Kudos Productions", + "name": "Stunning Performance", + "cardCode": "06IO003T1", + "keywords": [ + "Skill" + ], + "keywordRefs": [ + "Skill" + ], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "None", + "rarityRef": "None", + "subtypes": [], + "supertype": "", + "type": "Ability", + "collectible": false, + "set": "Set6" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set6/en_us/img/cards/06IO004T1.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set6/en_us/img/cards/06IO004T1-full.png" + } + ], + "regions": [ + "Ionia" + ], + "regionRefs": [ + "Ionia" + ], + "attack": 0, + "cost": 0, + "health": 0, + "description": "Recall a unit with less Power than me.", + "descriptionRaw": "Recall a unit with less Power than me.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"Training is a path, and at its end lies perfection.\" - The Maker", + "artistName": "Kudos Productions", + "name": "Peerless Artistry", + "cardCode": "06IO004T1", + "keywords": [ + "Skill" + ], + "keywordRefs": [ + "Skill" + ], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "None", + "rarityRef": "None", + "subtypes": [], + "supertype": "", + "type": "Ability", + "collectible": false, + "set": "Set6" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set6/en_us/img/cards/06IO035.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set6/en_us/img/cards/06IO035-full.png" + } + ], + "regions": [ + "Ionia" + ], + "regionRefs": [ + "Ionia" + ], + "attack": 3, + "cost": 2, + "health": 1, + "description": "When another ally gets Barrier, give me Barrier this round if I don't have it.", + "descriptionRaw": "When another ally gets Barrier, give me Barrier this round if I don't have it.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"Embrace the Balance on every level. Mind, body, spirit. Resist the impetuous urges of youth. Elevate your perspective.\" - Shen", + "artistName": "Kudos Productions", + "name": "Kinkou Student", + "cardCode": "06IO035", + "keywords": [], + "keywordRefs": [], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "RARE", + "rarityRef": "Rare", + "subtypes": [], + "supertype": "", + "type": "Unit", + "collectible": true, + "set": "Set6" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set6/en_us/img/cards/06MT044.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set6/en_us/img/cards/06MT044-full.png" + } + ], + "regions": [ + "Targon" + ], + "regionRefs": [ + "Targon" + ], + "attack": 4, + "cost": 5, + "health": 6, + "description": "Daybreak: Heal all allies 3.", + "descriptionRaw": "Daybreak: Heal all allies 3.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "Stellacorns are born of stars, with some burning hotter than others.", + "artistName": "Kudos Productions", + "name": "Solari Stellacorn", + "cardCode": "06MT044", + "keywords": [], + "keywordRefs": [], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "COMMON", + "rarityRef": "Common", + "subtypes": [], + "supertype": "", + "type": "Unit", + "collectible": true, + "set": "Set6" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set6/en_us/img/cards/06MT036.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set6/en_us/img/cards/06MT036-full.png" + } + ], + "regions": [ + "Targon" + ], + "regionRefs": [ + "Targon" + ], + "attack": 0, + "cost": 6, + "health": 0, + "description": "Fully heal an ally, then grow its Power equal to its Health.", + "descriptionRaw": "Fully heal an ally, then grow its Power equal to its Health.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"We must show ourselves compassion first of all. The rest will follow.\" - Soraka", + "artistName": "Kudos Productions", + "name": "Consult the Heavens", + "cardCode": "06MT036", + "keywords": [ + "Burst" + ], + "keywordRefs": [ + "Burst" + ], + "spellSpeed": "Burst", + "spellSpeedRef": "Burst", + "rarity": "EPIC", + "rarityRef": "Epic", + "subtypes": [], + "supertype": "", + "type": "Spell", + "collectible": true, + "set": "Set6" + }, + { + "associatedCards": [], + "associatedCardRefs": [ + "03MT006" + ], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set6/en_us/img/cards/06MT039.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set6/en_us/img/cards/06MT039-full.png" + } + ], + "regions": [ + "Targon" + ], + "regionRefs": [ + "Targon" + ], + "attack": 0, + "cost": 3, + "health": 0, + "description": "Countdown 3: Summon Inviolus Vox.", + "descriptionRaw": "Countdown 3: Summon Inviolus Vox.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"It is said the celestial dragons are born from the nebulae themselves, springing forth fully formed from hazy cosmic dust. But how would we mere mortals know? From far away, all we see is their light.\" - Herald of Dragons", + "artistName": "Kudos Productions", + "name": "Dragon Roost", + "cardCode": "06MT039", + "keywords": [ + "Landmark", + "Countdown" + ], + "keywordRefs": [ + "LandmarkVisualOnly", + "Countdown" + ], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "EPIC", + "rarityRef": "Epic", + "subtypes": [], + "supertype": "", + "type": "Landmark", + "collectible": true, + "set": "Set6" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set6/en_us/img/cards/06MT045.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set6/en_us/img/cards/06MT045-full.png" + } + ], + "regions": [ + "Targon" + ], + "regionRefs": [ + "Targon" + ], + "attack": 0, + "cost": 6, + "health": 0, + "description": "Invoke a low, medium, and high cost Celestial card.", + "descriptionRaw": "Invoke a low, medium, and high cost Celestial card.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"The stars, they are foretelling great potential. Something is coming. What shape will they take? It is not for me to know! What do you think, Kulun?\" - Moondreamer", + "artistName": "Kudos Productions", + "name": "Celestial Trifecta", + "cardCode": "06MT045", + "keywords": [ + "Burst" + ], + "keywordRefs": [ + "Burst" + ], + "spellSpeed": "Burst", + "spellSpeedRef": "Burst", + "rarity": "RARE", + "rarityRef": "Rare", + "subtypes": [], + "supertype": "", + "type": "Spell", + "collectible": true, + "set": "Set6" + }, + { + "associatedCards": [], + "associatedCardRefs": [ + "03MT008", + "03MT093", + "03MT036" + ], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set6/en_us/img/cards/06MT043.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set6/en_us/img/cards/06MT043-full.png" + } + ], + "regions": [ + "Targon" + ], + "regionRefs": [ + "Targon" + ], + "attack": 0, + "cost": 1, + "health": 0, + "description": "Create a Fleeting Wish, Paddle Star, or Blessing of Targon in hand.", + "descriptionRaw": "Create a Fleeting Wish, Paddle Star, or Blessing of Targon in hand.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"It's the strangest thing, Shorin... Even without turning the stone over, I know exactly what constellation is painted on it.\" - Tyari the Traveler", + "artistName": "Kudos Productions", + "name": "Targonian Tellstones", + "cardCode": "06MT043", + "keywords": [ + "Burst" + ], + "keywordRefs": [ + "Burst" + ], + "spellSpeed": "Burst", + "spellSpeedRef": "Burst", + "rarity": "RARE", + "rarityRef": "Rare", + "subtypes": [], + "supertype": "", + "type": "Spell", + "collectible": true, + "set": "Set6" + }, + { + "associatedCards": [], + "associatedCardRefs": [ + "06RU001T3" + ], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set6/en_us/img/cards/06MT029.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set6/en_us/img/cards/06MT029-full.png" + } + ], + "regions": [ + "Targon" + ], + "regionRefs": [ + "Targon" + ], + "attack": 0, + "cost": 2, + "health": 2, + "description": "When I'm summoned, plant a Chime on the top card of your deck.\r\nSupport: Grant my supported ally +1|+1.", + "descriptionRaw": "When I'm summoned, plant a Chime on the top card of your deck.\r\nSupport: Grant my supported ally +1|+1.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"...but I heard Esmus was created by the Caretaker himself, and with her birth, sound came to the world!\"\n\"I say lies! It is known that Esmus bears the face of an old singer who had the heart of an angel but the voice of the dead... until Bard himself granted her a voice of pure beauty!\"\n\"I say lies! Esmus is...\"\n- An instance of the Birth of Esmus, a popular bard's game", + "artistName": "Caravan Studio", + "name": "Esmus, Breath of the World", + "cardCode": "06MT029", + "keywords": [ + "Elusive", + "Support" + ], + "keywordRefs": [ + "Elusive", + "Support" + ], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "COMMON", + "rarityRef": "Common", + "subtypes": [], + "supertype": "", + "type": "Unit", + "collectible": true, + "set": "Set6" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set6/en_us/img/cards/06MT038.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set6/en_us/img/cards/06MT038-full.png" + } + ], + "regions": [ + "Targon" + ], + "regionRefs": [ + "Targon" + ], + "attack": 6, + "cost": 7, + "health": 5, + "description": "Nightfall: Give other allies +2|+1 and Overwhelm this round.", + "descriptionRaw": "Nightfall: Give other allies +2|+1 and Overwhelm this round.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"Mother Moon, lend us your strength,\nThough darkness surrounds us,\nWith your light, we shall overcome.\"\n- Lunari prayer", + "artistName": "Kudos Productions", + "name": "The Winding Light", + "cardCode": "06MT038", + "keywords": [ + "Overwhelm" + ], + "keywordRefs": [ + "Overwhelm" + ], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "COMMON", + "rarityRef": "Common", + "subtypes": [], + "supertype": "", + "type": "Unit", + "collectible": true, + "set": "Set6" + }, + { + "associatedCards": [], + "associatedCardRefs": [ + "06RU001T3" + ], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set6/en_us/img/cards/06MT047.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set6/en_us/img/cards/06MT047-full.png" + } + ], + "regions": [ + "Targon" + ], + "regionRefs": [ + "Targon" + ], + "attack": 0, + "cost": 2, + "health": 0, + "description": "When I'm summoned or when I count down, plant 3 Chimes on random cards in your deck. Countdown 2: Draw 1.\r\n", + "descriptionRaw": "When I'm summoned or when I count down, plant 3 Chimes on random cards in your deck. Countdown 2: Draw 1.\r\n", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"Then I seen it--thousands of 'em, all singin' and dancin' this way and that-un. Next thing I know, I seen a flash o' light, and they’re all gone, the temple with 'em–not a stone to see. And in me hands? Well Old Gaff was left there holdin' a chime.\" - Old Gaff’s tale, part 3", + "artistName": "Caravan Studio", + "name": "Mystic Vortex", + "cardCode": "06MT047", + "keywords": [ + "Countdown", + "Landmark" + ], + "keywordRefs": [ + "Countdown", + "LandmarkVisualOnly" + ], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "RARE", + "rarityRef": "Rare", + "subtypes": [], + "supertype": "", + "type": "Landmark", + "collectible": true, + "set": "Set6" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set6/en_us/img/cards/06MT041.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set6/en_us/img/cards/06MT041-full.png" + } + ], + "regions": [ + "Targon" + ], + "regionRefs": [ + "Targon" + ], + "attack": 2, + "cost": 4, + "health": 5, + "description": "My Fated buffs are granted to allied Starhound Packs everywhere.", + "descriptionRaw": "My Fated buffs are granted to allied Starhound Packs everywhere.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "The starhounds could not be beckoned or persuaded by climbers on their journey. They were aloof, seemingly inured to the mountain's magics.", + "artistName": "Kudos Productions", + "name": "Starhound Pack", + "cardCode": "06MT041", + "keywords": [], + "keywordRefs": [], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "COMMON", + "rarityRef": "Common", + "subtypes": [], + "supertype": "", + "type": "Unit", + "collectible": true, + "set": "Set6" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set6/en_us/img/cards/06MT049.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set6/en_us/img/cards/06MT049-full.png" + } + ], + "regions": [ + "Targon" + ], + "regionRefs": [ + "Targon" + ], + "attack": 0, + "cost": 3, + "health": 0, + "description": "Grant an ally +1|+2 and remove all negative keywords from it.", + "descriptionRaw": "Grant an ally +1|+2 and remove all negative keywords from it.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "Those that hear the bell ring are struck by the purity of its tone.", + "artistName": "Kudos Productions", + "name": "Mikhael's Blessing", + "cardCode": "06MT049", + "keywords": [ + "Burst" + ], + "keywordRefs": [ + "Burst" + ], + "spellSpeed": "Burst", + "spellSpeedRef": "Burst", + "rarity": "RARE", + "rarityRef": "Rare", + "subtypes": [], + "supertype": "", + "type": "Spell", + "collectible": true, + "set": "Set6" + }, + { + "associatedCards": [], + "associatedCardRefs": [ + "06BW006T3", + "06BW006T1", + "06BW006T2" + ], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set6/en_us/img/cards/06BW006.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set6/en_us/img/cards/06BW006-full.png" + } + ], + "regions": [ + "Bilgewater" + ], + "regionRefs": [ + "Bilgewater" + ], + "attack": 1, + "cost": 4, + "health": 6, + "description": "Attack: Spawn 1, then I gain Power equal to your strongest Tentacle's Power this round.", + "descriptionRaw": "Attack: Spawn 1, then I gain Power equal to your strongest Tentacle's Power this round.", + "levelupDescription": "I've seen Tentacles or I deal 15+ damage. ", + "levelupDescriptionRaw": "I've seen Tentacles or I deal 15+ damage. ", + "flavorText": "The \"Eye of Nagakabouros\" is merely a name, but Illaoi takes it as a challenge to live as if her god is a constant--and easily-bored--companion.", + "artistName": "MICHAEL IVAN", + "name": "Illaoi", + "cardCode": "06BW006", + "keywords": [ + "Overwhelm" + ], + "keywordRefs": [ + "Overwhelm" + ], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "Champion", + "rarityRef": "Champion", + "subtypes": [], + "supertype": "Champion", + "type": "Unit", + "collectible": true, + "set": "Set6" + }, + { + "associatedCards": [], + "associatedCardRefs": [ + "06BW006T3", + "06BW006", + "06BW006T2" + ], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set6/en_us/img/cards/06BW006T1.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set6/en_us/img/cards/06BW006T1-full.png" + } + ], + "regions": [ + "Bilgewater" + ], + "regionRefs": [ + "Bilgewater" + ], + "attack": 2, + "cost": 4, + "health": 7, + "description": "When you Spawn, increase its value by 1.\r\nAttack: Spawn 1, then fully heal your strongest Tentacle and I gain stats equal to its stats this round.", + "descriptionRaw": "When you Spawn, increase its value by 1.\r\nAttack: Spawn 1, then fully heal your strongest Tentacle and I gain stats equal to its stats this round.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "A life lesson: If ever you have the chance to leap from the rigging of a fine ship and crash like thunderous repentance upon your foes, do so. It is most invigorating.", + "artistName": "MICHAEL IVAN", + "name": "Illaoi", + "cardCode": "06BW006T1", + "keywords": [ + "Overwhelm" + ], + "keywordRefs": [ + "Overwhelm" + ], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "None", + "rarityRef": "None", + "subtypes": [], + "supertype": "Champion", + "type": "Unit", + "collectible": false, + "set": "Set6" + }, + { + "associatedCards": [], + "associatedCardRefs": [ + "06BW006T3", + "06BW006T1", + "06BW006" + ], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set6/en_us/img/cards/06BW006T2.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set6/en_us/img/cards/06BW006T2-full.png" + } + ], + "regions": [ + "Bilgewater" + ], + "regionRefs": [ + "Bilgewater" + ], + "attack": 0, + "cost": 4, + "health": 0, + "description": "Spawn 3, then your strongest Tentacle and an enemy strike each other.\r\nCreate an Illaoi in your deck.", + "descriptionRaw": "Spawn 3, then your strongest Tentacle and an enemy strike each other.\r\nCreate an Illaoi in your deck.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"Life is a test. And pain is the teacher more often than we might like.\" - Illaoi", + "artistName": "Kudos Productions", + "name": "Illaoi's Tentacle Smash", + "cardCode": "06BW006T2", + "keywords": [ + "Slow" + ], + "keywordRefs": [ + "Slow" + ], + "spellSpeed": "Slow", + "spellSpeedRef": "Slow", + "rarity": "None", + "rarityRef": "None", + "subtypes": [], + "supertype": "Champion", + "type": "Spell", + "collectible": false, + "set": "Set6" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set6/en_us/img/cards/06BW006T3.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set6/en_us/img/cards/06BW006T3-full.png" + } + ], + "regions": [ + "Bilgewater" + ], + "regionRefs": [ + "Bilgewater" + ], + "attack": 1, + "cost": 1, + "health": 1, + "description": "", + "descriptionRaw": "", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "There is no greater symbol of what lurks below. Whether it means you harm or not is irrelevant to the fear--the panic that rises in your chest. Nature supplies spectacle, but your mind supplies intent.", + "artistName": "Michael Ivan", + "name": "Tentacle", + "cardCode": "06BW006T3", + "keywords": [], + "keywordRefs": [], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "None", + "rarityRef": "None", + "subtypes": [], + "supertype": "", + "type": "Unit", + "collectible": false, + "set": "Set6" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set6/en_us/img/cards/06BW036.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set6/en_us/img/cards/06BW036-full.png" + } + ], + "regions": [ + "Bilgewater" + ], + "regionRefs": [ + "Bilgewater" + ], + "attack": 0, + "cost": 2, + "health": 3, + "description": "I have +1|+0 for each different round you've damaged the enemy Nexus.", + "descriptionRaw": "I have +1|+0 for each different round you've damaged the enemy Nexus.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"Ain't no place bloodier in Bilgewater than the bay. Just look at them rats. Reared on blood, they are. Can't get enough o' the stuff. Creepy little scrits.\" - Jagged Butcher", + "artistName": "Alessandro Poli", + "name": "Wharf Rat", + "cardCode": "06BW036", + "keywords": [ + "Overwhelm" + ], + "keywordRefs": [ + "Overwhelm" + ], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "EPIC", + "rarityRef": "Epic", + "subtypes": [], + "supertype": "", + "type": "Unit", + "collectible": true, + "set": "Set6" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set6/en_us/img/cards/06BW038.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set6/en_us/img/cards/06BW038-full.png" + } + ], + "regions": [ + "Bilgewater" + ], + "regionRefs": [ + "Bilgewater" + ], + "attack": 3, + "cost": 4, + "health": 4, + "description": "Once you're Deep, heal your allies and Nexus 3. \r\n", + "descriptionRaw": "Once you're Deep, heal your allies and Nexus 3. \r\n", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"What does it want?!\"\n\"It... it's after the oranges!\"\n\"By the Bearded Lady, JUST GIVE IT THE WHOLE BUSHEL!\" - Unlucky sailors", + "artistName": "Kudos Productions", + "name": "Megatusk", + "cardCode": "06BW038", + "keywords": [ + "Deep" + ], + "keywordRefs": [ + "Deep" + ], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "COMMON", + "rarityRef": "Common", + "subtypes": [ + "SEA MONSTER" + ], + "supertype": "", + "type": "Unit", + "collectible": true, + "set": "Set6" + }, + { + "associatedCards": [], + "associatedCardRefs": [ + "06BW006T3" + ], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set6/en_us/img/cards/06BW030.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set6/en_us/img/cards/06BW030-full.png" + } + ], + "regions": [ + "Bilgewater" + ], + "regionRefs": [ + "Bilgewater" + ], + "attack": 0, + "cost": 5, + "health": 0, + "description": "Spawn 2.\r\nDraw 2.", + "descriptionRaw": "Spawn 2.\r\nDraw 2.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "Nagakabouros is a god of providence--provided one survives the act of worship.", + "artistName": "Kudos Productions", + "name": "Eye of Nagakabouros", + "cardCode": "06BW030", + "keywords": [ + "Burst" + ], + "keywordRefs": [ + "Burst" + ], + "spellSpeed": "Burst", + "spellSpeedRef": "Burst", + "rarity": "COMMON", + "rarityRef": "Common", + "subtypes": [], + "supertype": "", + "type": "Spell", + "collectible": true, + "set": "Set6" + }, + { + "associatedCards": [], + "associatedCardRefs": [ + "06BW011T2", + "06BW006T3", + "06BW011T1" + ], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set6/en_us/img/cards/06BW011.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set6/en_us/img/cards/06BW011-full.png" + } + ], + "regions": [ + "Bilgewater" + ], + "regionRefs": [ + "Bilgewater" + ], + "attack": 5, + "cost": 8, + "health": 8, + "description": "Round Start: Spawn 2. Then, if your strongest Tentacle has 12+ Power, create a Nagakabouros' Tantrum in hand.", + "descriptionRaw": "Round Start: Spawn 2. Then, if your strongest Tentacle has 12+ Power, create a Nagakabouros' Tantrum in hand.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"The Mother Serpent. The Great Kraken. The Bearded Lady. Nagakabouros cares little for names, and less for the restless dead.\" - Illaoi", + "artistName": "MICHAEL IVAN", + "name": "Nagakabouros", + "cardCode": "06BW011", + "keywords": [ + "Fearsome" + ], + "keywordRefs": [ + "Fearsome" + ], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "EPIC", + "rarityRef": "Epic", + "subtypes": [], + "supertype": "", + "type": "Unit", + "collectible": true, + "set": "Set6" + }, + { + "associatedCards": [], + "associatedCardRefs": [ + "06BW011T2", + "06BW011", + "06BW006T3" + ], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set6/en_us/img/cards/06BW011T1.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set6/en_us/img/cards/06BW011T1-full.png" + } + ], + "regions": [ + "Bilgewater" + ], + "regionRefs": [ + "Bilgewater" + ], + "attack": 0, + "cost": 0, + "health": 0, + "description": "Nagakabouros starts a free attack with 4 Nagakabouros' Tentacle.", + "descriptionRaw": "Nagakabouros starts a free attack with 4 Nagakabouros' Tentacle.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "It is a common Buhru story that the land was once whole, and Nagakabouros shattered it into islands to provide greater challenge for navigators. It's a story, of course. Nagakabouros didn't shatter the land. Nobody questions, however, whether she could if she felt like it.", + "artistName": "Kudos Productions", + "name": "Nagakabouros' Tantrum", + "cardCode": "06BW011T1", + "keywords": [ + "Focus", + "Fleeting" + ], + "keywordRefs": [ + "Focus", + "Fleeting" + ], + "spellSpeed": "Burst", + "spellSpeedRef": "Burst", + "rarity": "None", + "rarityRef": "None", + "subtypes": [], + "supertype": "", + "type": "Spell", + "collectible": false, + "set": "Set6" + }, + { + "associatedCards": [], + "associatedCardRefs": [ + "06BW006T3", + "06BW011T1", + "06BW011" + ], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set6/en_us/img/cards/06BW011T5.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set6/en_us/img/cards/06BW011T5-full.png" + } + ], + "regions": [ + "Bilgewater" + ], + "regionRefs": [ + "Bilgewater" + ], + "attack": 1, + "cost": 1, + "health": 1, + "description": "When I'm summoned, grow my stats to that of your strongest Tentacle and grant me its keywords.", + "descriptionRaw": "When I'm summoned, grow my stats to that of your strongest Tentacle and grant me its keywords.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"To say you've witnessed Nagakabouros after seeing her tendrils is to say you know the sun after witnessing daylight. Nagakabouros is more than enormous. Nagakabouros is unending.\" - Falaweh, Buhru Priestess", + "artistName": "Michael Ivan", + "name": "Nagakabouros' Tentacle", + "cardCode": "06BW011T5", + "keywords": [ + "Ephemeral" + ], + "keywordRefs": [ + "Ephemeral" + ], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "None", + "rarityRef": "None", + "subtypes": [], + "supertype": "", + "type": "Unit", + "collectible": false, + "set": "Set6" + }, + { + "associatedCards": [], + "associatedCardRefs": [ + "06BW006T3", + "06BW011T1", + "06BW011" + ], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set6/en_us/img/cards/06BW011T4.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set6/en_us/img/cards/06BW011T4-full.png" + } + ], + "regions": [ + "Bilgewater" + ], + "regionRefs": [ + "Bilgewater" + ], + "attack": 1, + "cost": 1, + "health": 1, + "description": "When I'm summoned, grow my stats to that of your strongest Tentacle and grant me its keywords.", + "descriptionRaw": "When I'm summoned, grow my stats to that of your strongest Tentacle and grant me its keywords.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"To say you've witnessed Nagakabouros after seeing her tendrils is to say you know the sun after witnessing daylight. Nagakabouros is more than enormous. Nagakabouros is unending.\" - Falaweh, Buhru Priestess", + "artistName": "Michael Ivan", + "name": "Nagakabouros' Tentacle", + "cardCode": "06BW011T4", + "keywords": [ + "Ephemeral" + ], + "keywordRefs": [ + "Ephemeral" + ], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "None", + "rarityRef": "None", + "subtypes": [], + "supertype": "", + "type": "Unit", + "collectible": false, + "set": "Set6" + }, + { + "associatedCards": [], + "associatedCardRefs": [ + "06BW006T3", + "06BW011T1", + "06BW011" + ], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set6/en_us/img/cards/06BW011T3.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set6/en_us/img/cards/06BW011T3-full.png" + } + ], + "regions": [ + "Bilgewater" + ], + "regionRefs": [ + "Bilgewater" + ], + "attack": 1, + "cost": 1, + "health": 1, + "description": "When I'm summoned, grow my stats to that of your strongest Tentacle and grant me its keywords.", + "descriptionRaw": "When I'm summoned, grow my stats to that of your strongest Tentacle and grant me its keywords.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"To say you've witnessed Nagakabouros after seeing her tendrils is to say you know the sun after witnessing daylight. Nagakabouros is more than enormous. Nagakabouros is unending.\" - Falaweh, Buhru Priestess", + "artistName": "Michael Ivan", + "name": "Nagakabouros' Tentacle", + "cardCode": "06BW011T3", + "keywords": [ + "Ephemeral" + ], + "keywordRefs": [ + "Ephemeral" + ], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "None", + "rarityRef": "None", + "subtypes": [], + "supertype": "", + "type": "Unit", + "collectible": false, + "set": "Set6" + }, + { + "associatedCards": [], + "associatedCardRefs": [ + "06BW006T3", + "06BW011T1", + "06BW011" + ], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set6/en_us/img/cards/06BW011T2.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set6/en_us/img/cards/06BW011T2-full.png" + } + ], + "regions": [ + "Bilgewater" + ], + "regionRefs": [ + "Bilgewater" + ], + "attack": 1, + "cost": 1, + "health": 1, + "description": "When I'm summoned, grow my stats to that of your strongest Tentacle and grant me its keywords.", + "descriptionRaw": "When I'm summoned, grow my stats to that of your strongest Tentacle and grant me its keywords.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"To say you've witnessed Nagakabouros after seeing her tendrils is to say you know the sun after witnessing daylight. Nagakabouros is more than enormous. Nagakabouros is unending.\" - Falaweh, Buhru Priestess", + "artistName": "Michael Ivan", + "name": "Nagakabouros' Tentacle", + "cardCode": "06BW011T2", + "keywords": [ + "Ephemeral" + ], + "keywordRefs": [ + "Ephemeral" + ], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "None", + "rarityRef": "None", + "subtypes": [], + "supertype": "", + "type": "Unit", + "collectible": false, + "set": "Set6" + }, + { + "associatedCards": [], + "associatedCardRefs": [ + "06BW006T3" + ], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set6/en_us/img/cards/06BW021.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set6/en_us/img/cards/06BW021-full.png" + } + ], + "regions": [ + "Bilgewater" + ], + "regionRefs": [ + "Bilgewater" + ], + "attack": 0, + "cost": 6, + "health": 0, + "description": "Deal 4 to an enemy unit.\r\nSpawn 3.\r\nDeal 2 to the enemy Nexus.", + "descriptionRaw": "Deal 4 to an enemy unit.\r\nSpawn 3.\r\nDeal 2 to the enemy Nexus.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"We learn as children to ride the dangerous waters. To struggle is to die. It is natural that the first trial a priestess must overcome is forgetting this lesson; to battle the undertow with all her might. For a Truth Bearer is not the swimmer--she is the current.\" - Illaoi", + "artistName": "Kudos Productions", + "name": "Riptide Sermon", + "cardCode": "06BW021", + "keywords": [ + "Slow" + ], + "keywordRefs": [ + "Slow" + ], + "spellSpeed": "Slow", + "spellSpeedRef": "Slow", + "rarity": "EPIC", + "rarityRef": "Epic", + "subtypes": [], + "supertype": "", + "type": "Spell", + "collectible": true, + "set": "Set6" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set6/en_us/img/cards/06BW045.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set6/en_us/img/cards/06BW045-full.png" + } + ], + "regions": [ + "Bilgewater" + ], + "regionRefs": [ + "Bilgewater" + ], + "attack": 0, + "cost": 5, + "health": 0, + "description": "Deal 1 to anything, then Rally.", + "descriptionRaw": "Deal 1 to anything, then Rally.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "Not much keeps the circling sharks of Ripper's Bay away. Once they've had a taste of blood, they're eager for more.", + "artistName": "Kudos Productions", + "name": "Blood in the Water", + "cardCode": "06BW045", + "keywords": [ + "Slow", + "Lurk" + ], + "keywordRefs": [ + "Slow", + "Lurker" + ], + "spellSpeed": "Slow", + "spellSpeedRef": "Slow", + "rarity": "COMMON", + "rarityRef": "Common", + "subtypes": [], + "supertype": "", + "type": "Spell", + "collectible": true, + "set": "Set6" + }, + { + "associatedCards": [], + "associatedCardRefs": [ + "06BW006T3" + ], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set6/en_us/img/cards/06BW028.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set6/en_us/img/cards/06BW028-full.png" + } + ], + "regions": [ + "Bilgewater" + ], + "regionRefs": [ + "Bilgewater" + ], + "attack": 0, + "cost": 4, + "health": 0, + "description": "Spawn 3, then your strongest Tentacle and an enemy strike each other.", + "descriptionRaw": "Spawn 3, then your strongest Tentacle and an enemy strike each other.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"Life is a test. And pain is the teacher more often than we might like.\" - Illaoi", + "artistName": "Kudos Productions", + "name": "Tentacle Smash", + "cardCode": "06BW028", + "keywords": [ + "Slow" + ], + "keywordRefs": [ + "Slow" + ], + "spellSpeed": "Slow", + "spellSpeedRef": "Slow", + "rarity": "RARE", + "rarityRef": "Rare", + "subtypes": [], + "supertype": "", + "type": "Spell", + "collectible": true, + "set": "Set6" + }, + { + "associatedCards": [], + "associatedCardRefs": [ + "06BW006T3" + ], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set6/en_us/img/cards/06BW035.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set6/en_us/img/cards/06BW035-full.png" + } + ], + "regions": [ + "Bilgewater" + ], + "regionRefs": [ + "Bilgewater" + ], + "attack": 3, + "cost": 3, + "health": 3, + "description": "Attack: Spawn 1 and give your strongest Tentacle Overwhelm this round.", + "descriptionRaw": "Attack: Spawn 1 and give your strongest Tentacle Overwhelm this round.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "Summoning Nagakabouros involves little in the way of ritual or rite. She answers the call of those whose soul can rise to match the ocean's, every swell, every thrash. It is a battle few can withstand.", + "artistName": "Michael Ivan", + "name": "The Sea's Voice", + "cardCode": "06BW035", + "keywords": [], + "keywordRefs": [], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "RARE", + "rarityRef": "Rare", + "subtypes": [], + "supertype": "", + "type": "Unit", + "collectible": true, + "set": "Set6" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set6/en_us/img/cards/06BW009.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set6/en_us/img/cards/06BW009-full.png" + } + ], + "regions": [ + "Bilgewater" + ], + "regionRefs": [ + "Bilgewater" + ], + "attack": 3, + "cost": 3, + "health": 2, + "description": "Play: A 1 cost ally starts a free attack.", + "descriptionRaw": "Play: A 1 cost ally starts a free attack.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"Recall the ocean's wisdom! If you do not move, you will be moved! Follow my voice if you've lost your way--for your foe surely knows their own.\" ", + "artistName": "Envar Studio", + "name": "Buhru Leader", + "cardCode": "06BW009", + "keywords": [], + "keywordRefs": [], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "RARE", + "rarityRef": "Rare", + "subtypes": [], + "supertype": "", + "type": "Unit", + "collectible": true, + "set": "Set6" + }, + { + "associatedCards": [], + "associatedCardRefs": [ + "06BW006T3" + ], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set6/en_us/img/cards/06BW015.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set6/en_us/img/cards/06BW015-full.png" + } + ], + "regions": [ + "Bilgewater" + ], + "regionRefs": [ + "Bilgewater" + ], + "attack": 0, + "cost": 2, + "health": 0, + "description": "Spawn 2, or spend 5 mana to Spawn 4 instead.", + "descriptionRaw": "Spawn 2, or spend 5 mana to Spawn 4 instead.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "Prayer to Nagakabouros is not about supplication, nor about asking and receiving. Hers is a blessing not unlike life: strive, struggle, push, and occasionally, reward will find you.", + "artistName": "Kudos Productions", + "name": "Answered Prayer", + "cardCode": "06BW015", + "keywords": [ + "Slow" + ], + "keywordRefs": [ + "Slow" + ], + "spellSpeed": "Slow", + "spellSpeedRef": "Slow", + "rarity": "COMMON", + "rarityRef": "Common", + "subtypes": [], + "supertype": "", + "type": "Spell", + "collectible": true, + "set": "Set6" + }, + { + "associatedCards": [], + "associatedCardRefs": [ + "06BW006T3" + ], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set6/en_us/img/cards/06BW007.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set6/en_us/img/cards/06BW007-full.png" + } + ], + "regions": [ + "Bilgewater" + ], + "regionRefs": [ + "Bilgewater" + ], + "attack": 0, + "cost": 1, + "health": 5, + "description": "Round Start: Deal 2 to me and Spawn 1.", + "descriptionRaw": "Round Start: Deal 2 to me and Spawn 1.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "When terrors swarm out from the Shadow Isles, the idol glows bright--a blazing beacon on the horizon.", + "artistName": "Polar Engine", + "name": "Watchful Idol", + "cardCode": "06BW007", + "keywords": [ + "Immobile" + ], + "keywordRefs": [ + "Immobile" + ], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "COMMON", + "rarityRef": "Common", + "subtypes": [], + "supertype": "", + "type": "Unit", + "collectible": true, + "set": "Set6" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set6/en_us/img/cards/06BW037.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set6/en_us/img/cards/06BW037-full.png" + } + ], + "regions": [ + "Bilgewater" + ], + "regionRefs": [ + "Bilgewater" + ], + "attack": 0, + "cost": 1, + "health": 0, + "description": "Manifest a follower you can afford. ", + "descriptionRaw": "Manifest a follower you can afford. ", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"Alright, Baz. You sure you wanna try again?\"\n\"Third time's a charm, Gav. Besides, I reckon we've fought everything this stinkin' city's got goin' for it.\"\n\"Fought, and lost, Baz.\" - Baz and Gav, aspiring bounty hunters", + "artistName": "Kudos Productions", + "name": "Ransom Riches", + "cardCode": "06BW037", + "keywords": [ + "Burst" + ], + "keywordRefs": [ + "Burst" + ], + "spellSpeed": "Burst", + "spellSpeedRef": "Burst", + "rarity": "EPIC", + "rarityRef": "Epic", + "subtypes": [], + "supertype": "", + "type": "Spell", + "collectible": true, + "set": "Set6" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set6/en_us/img/cards/06BW041.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set6/en_us/img/cards/06BW041-full.png" + } + ], + "regions": [ + "Bilgewater" + ], + "regionRefs": [ + "Bilgewater" + ], + "attack": 0, + "cost": 2, + "health": 0, + "description": "Manifest a non-champion card from the opponent's hand. Plunder: I cost 1 less.", + "descriptionRaw": "Manifest a non-champion card from the opponent's hand. Plunder: I cost 1 less.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"FIVE aces? Looks like I win again!\" - Pool Shark", + "artistName": "Kudos Productions", + "name": "Swindle", + "cardCode": "06BW041", + "keywords": [ + "Burst", + "Plunder" + ], + "keywordRefs": [ + "Burst", + "Plunder" + ], + "spellSpeed": "Burst", + "spellSpeedRef": "Burst", + "rarity": "RARE", + "rarityRef": "Rare", + "subtypes": [], + "supertype": "", + "type": "Spell", + "collectible": true, + "set": "Set6" + }, + { + "associatedCards": [], + "associatedCardRefs": [ + "06BW006T3" + ], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set6/en_us/img/cards/06BW016.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set6/en_us/img/cards/06BW016-full.png" + } + ], + "regions": [ + "Bilgewater" + ], + "regionRefs": [ + "Bilgewater" + ], + "attack": 4, + "cost": 5, + "health": 3, + "description": "When I'm summoned, Spawn 3.", + "descriptionRaw": "When I'm summoned, Spawn 3.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "Life is sweetest in simplicity. Salt spray in your face, birdsong in your ears... and an uncomplicated foe on the horizon.", + "artistName": "Will Gist", + "name": "Buhru Lookout", + "cardCode": "06BW016", + "keywords": [], + "keywordRefs": [], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "COMMON", + "rarityRef": "Common", + "subtypes": [], + "supertype": "", + "type": "Unit", + "collectible": true, + "set": "Set6" + }, + { + "associatedCards": [], + "associatedCardRefs": [ + "02BW012", + "02BW051", + "02BW025", + "02BW032T1", + "02BW046T2" + ], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set6/en_us/img/cards/06BW043.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set6/en_us/img/cards/06BW043-full.png" + } + ], + "regions": [ + "Bilgewater" + ], + "regionRefs": [ + "Bilgewater" + ], + "attack": 0, + "cost": 1, + "health": 0, + "description": "Create a Fleeting More Powder!, Playful Trickster, or Chum the Waters in hand.", + "descriptionRaw": "Create a Fleeting More Powder!, Playful Trickster, or Chum the Waters in hand.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"Don't try to catch someone bluffin' in a match of 'stones. Bilgewater's full of good liars. If you really wanna win, you gotta watch the hands.\" - Twisted Fate", + "artistName": "Kudos Productions", + "name": "Bilgewater Tellstones", + "cardCode": "06BW043", + "keywords": [ + "Burst" + ], + "keywordRefs": [ + "Burst" + ], + "spellSpeed": "Burst", + "spellSpeedRef": "Burst", + "rarity": "RARE", + "rarityRef": "Rare", + "subtypes": [], + "supertype": "", + "type": "Spell", + "collectible": true, + "set": "Set6" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set6/en_us/img/cards/06BW018.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set6/en_us/img/cards/06BW018-full.png" + } + ], + "regions": [ + "Bilgewater" + ], + "regionRefs": [ + "Bilgewater" + ], + "attack": 6, + "cost": 6, + "health": 5, + "description": "When I'm summoned, summon a random Husk.", + "descriptionRaw": "When I'm summoned, summon a random Husk.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "Evelynn's first encounter with Steem was a violent, thrilling affair. Evelynn remembered how he smiled with unbridled pleasure as she flayed him, and how he returned the suffering just as eagerly when it was his turn. After finally overpowering Steem, Evelynn chose then not to destroy the lesser demon, but to bind him to her forever. Perhaps, she thought, they could share their mutual love for butchery with the world.", + "artistName": "Kudos Productions", + "name": "Steem", + "cardCode": "06BW018", + "keywords": [ + "Scout" + ], + "keywordRefs": [ + "Scout" + ], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "COMMON", + "rarityRef": "Common", + "subtypes": [], + "supertype": "", + "type": "Unit", + "collectible": true, + "set": "Set6" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set6/en_us/img/cards/06BW015T4.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set6/en_us/img/cards/06BW015T4-full.png" + } + ], + "regions": [ + "Bilgewater" + ], + "regionRefs": [ + "Bilgewater" + ], + "attack": 0, + "cost": 2, + "health": 0, + "description": "Spawn 2.", + "descriptionRaw": "Spawn 2.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "Prayer to Nagakabouros is not about supplication, nor about asking and receiving. Hers is a blessing not unlike life: strive, struggle, push, and occasionally, reward will find you.", + "artistName": "Kudos Productions", + "name": "Answered Prayer", + "cardCode": "06BW015T4", + "keywords": [ + "Slow" + ], + "keywordRefs": [ + "Slow" + ], + "spellSpeed": "Slow", + "spellSpeedRef": "Slow", + "rarity": "None", + "rarityRef": "None", + "subtypes": [], + "supertype": "", + "type": "Spell", + "collectible": false, + "set": "Set6" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set6/en_us/img/cards/06BW015T5.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set6/en_us/img/cards/06BW015T5-full.png" + } + ], + "regions": [ + "Bilgewater" + ], + "regionRefs": [ + "Bilgewater" + ], + "attack": 0, + "cost": 5, + "health": 0, + "description": "Spawn 4.", + "descriptionRaw": "Spawn 4.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "Prayer to Nagakabouros is not about supplication, nor about asking and receiving. Hers is a blessing not unlike life: strive, struggle, push, and occasionally, reward will find you.", + "artistName": "Kudos Productions", + "name": "Answered Prayer", + "cardCode": "06BW015T5", + "keywords": [ + "Slow" + ], + "keywordRefs": [ + "Slow" + ], + "spellSpeed": "Slow", + "spellSpeedRef": "Slow", + "rarity": "None", + "rarityRef": "None", + "subtypes": [], + "supertype": "", + "type": "Spell", + "collectible": false, + "set": "Set6" + }, + { + "associatedCards": [], + "associatedCardRefs": [ + "06NX024T1" + ], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set6/en_us/img/cards/06NX024.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set6/en_us/img/cards/06NX024-full.png" + } + ], + "regions": [ + "Noxus" + ], + "regionRefs": [ + "Noxus" + ], + "attack": 2, + "cost": 6, + "health": 4, + "description": "Play: Deal 2 to an enemy.\r\nYour Fast spells, Slow spells, and Skills have \"When I damage a Stunned or damaged enemy, kill it.\"", + "descriptionRaw": "Play: Deal 2 to an enemy.\r\nYour Fast spells, Slow spells, and Skills have \"When I damage a Stunned or damaged enemy, kill it.\"", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"Act Two: A duplicitous lord with little to his name but a pilfered Kashuri gauntlet charms an audience of Ionians. However, his mask is crude, and easily seen through. He begs for his life, claiming ignorance. The iron hand he sought to rule with lies empty.\"", + "artistName": "Kudos Productions ", + "name": "Lord Broadmane", + "cardCode": "06NX024", + "keywords": [ + "Missing Translation" + ], + "keywordRefs": [ + "AuraVisualFakeKeyword" + ], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "RARE", + "rarityRef": "Rare", + "subtypes": [], + "supertype": "", + "type": "Unit", + "collectible": true, + "set": "Set6" + }, + { + "associatedCards": [], + "associatedCardRefs": [ + "01NX010" + ], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set6/en_us/img/cards/06NX033.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set6/en_us/img/cards/06NX033-full.png" + } + ], + "regions": [ + "Noxus" + ], + "regionRefs": [ + "Noxus" + ], + "attack": 0, + "cost": 4, + "health": 0, + "description": "Stun 2 enemies or spend 6 mana to summon a Legion General. ", + "descriptionRaw": "Stun 2 enemies or spend 6 mana to summon a Legion General. ", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "Assignment is one of the first great decisions that lies before every battle. A good commander knows that the key to victory...", + "artistName": "Kudos Productions", + "name": "Strategic Execution", + "cardCode": "06NX033", + "keywords": [ + "Slow" + ], + "keywordRefs": [ + "Slow" + ], + "spellSpeed": "Slow", + "spellSpeedRef": "Slow", + "rarity": "RARE", + "rarityRef": "Rare", + "subtypes": [], + "supertype": "", + "type": "Spell", + "collectible": true, + "set": "Set6" + }, + { + "associatedCards": [], + "associatedCardRefs": [ + "01NX010" + ], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set6/en_us/img/cards/06NX033T2.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set6/en_us/img/cards/06NX033T2-full.png" + } + ], + "regions": [ + "Noxus" + ], + "regionRefs": [ + "Noxus" + ], + "attack": 0, + "cost": 6, + "health": 0, + "description": "Summon a Legion General. ", + "descriptionRaw": "Summon a Legion General. ", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "... is a good offense.", + "artistName": "Kudos Productions", + "name": "Strategic Execution", + "cardCode": "06NX033T2", + "keywords": [ + "Slow" + ], + "keywordRefs": [ + "Slow" + ], + "spellSpeed": "Slow", + "spellSpeedRef": "Slow", + "rarity": "COMMON", + "rarityRef": "Common", + "subtypes": [], + "supertype": "", + "type": "Spell", + "collectible": false, + "set": "Set6" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set6/en_us/img/cards/06NX033T1.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set6/en_us/img/cards/06NX033T1-full.png" + } + ], + "regions": [ + "Noxus" + ], + "regionRefs": [ + "Noxus" + ], + "attack": 0, + "cost": 4, + "health": 0, + "description": "Stun 2 enemies.", + "descriptionRaw": "Stun 2 enemies.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "... is a good defense.", + "artistName": "Kudos Productions", + "name": "Strategic Execution", + "cardCode": "06NX033T1", + "keywords": [ + "Slow" + ], + "keywordRefs": [ + "Slow" + ], + "spellSpeed": "Slow", + "spellSpeedRef": "Slow", + "rarity": "COMMON", + "rarityRef": "Common", + "subtypes": [], + "supertype": "", + "type": "Spell", + "collectible": false, + "set": "Set6" + }, + { + "associatedCards": [], + "associatedCardRefs": [ + "06NX012T6", + "06NX012T3", + "06NX012T7", + "06NX012T1" + ], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set6/en_us/img/cards/06NX012.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set6/en_us/img/cards/06NX012-full.png" + } + ], + "regions": [ + "Noxus" + ], + "regionRefs": [ + "Noxus" + ], + "attack": 0, + "cost": 1, + "health": 2, + "description": "Attack: I deal 2 damage to my blocker. If it's dead or gone, I deal 2 damage to the enemy Nexus instead.\r\n", + "descriptionRaw": "Attack: I deal 2 damage to my blocker. If it's dead or gone, I deal 2 damage to the enemy Nexus instead.\r\n", + "levelupDescription": "I've seen you play 6+ Fast spells, Slow spells, or Skills.", + "levelupDescriptionRaw": "I've seen you play 6+ Fast spells, Slow spells, or Skills.", + "flavorText": "Over a decade ago, Amoline Kiosar fled the Ravenbloom Conservatory with an invaluable and incandescent asset in her control. Ravenbloom's scouts searched for her in every corner of the empire, but none of the rumors they heard led them to Amoline. And so, years later, when news arrived of a lost girl burning with rage in the northern Ironspike Mountains, Fynn Retrick reluctantly gathered his things and left to investigate. He expected to find nothing. How wrong he was.", + "artistName": "Polar Engine", + "name": "Annie", + "cardCode": "06NX012", + "keywords": [], + "keywordRefs": [], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "Champion", + "rarityRef": "Champion", + "subtypes": [], + "supertype": "Champion", + "type": "Unit", + "collectible": true, + "set": "Set6" + }, + { + "associatedCards": [], + "associatedCardRefs": [ + "06NX012T7", + "06NX012" + ], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set6/en_us/img/cards/06NX012T3.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set6/en_us/img/cards/06NX012T3-full.png" + } + ], + "regions": [ + "Noxus" + ], + "regionRefs": [ + "Noxus" + ], + "attack": 0, + "cost": 2, + "health": 0, + "description": "Pick a unit. The next time it takes 1 or more damage this round, kill it.\r\nCreate an Annie in your deck.", + "descriptionRaw": "Pick a unit. The next time it takes 1 or more damage this round, kill it.\r\nCreate an Annie in your deck.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "Headmistress Telsi spoke at length about the Noxian tenets, leaving the children before her increasingly bored and restless. But, while most students largely contained their outbursts, Annie acted. First with smoke, then with fire.", + "artistName": "Kudos Productions", + "name": "Annie's Disintegrate", + "cardCode": "06NX012T3", + "keywords": [ + "Fast" + ], + "keywordRefs": [ + "Fast" + ], + "spellSpeed": "Fast", + "spellSpeedRef": "Fast", + "rarity": "None", + "rarityRef": "None", + "subtypes": [], + "supertype": "Champion", + "type": "Spell", + "collectible": false, + "set": "Set6" + }, + { + "associatedCards": [], + "associatedCardRefs": [ + "06NX012" + ], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set6/en_us/img/cards/06NX012T6.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set6/en_us/img/cards/06NX012T6-full.png" + } + ], + "regions": [ + "Noxus" + ], + "regionRefs": [ + "Noxus" + ], + "attack": 0, + "cost": 0, + "health": 0, + "description": "Deal 2 to Annie's blocker. If it's dead or gone, deal 2 to the enemy Nexus instead.", + "descriptionRaw": "Deal 2 to Annie's blocker. If it's dead or gone, deal 2 to the enemy Nexus instead.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"Do you wanna play, too?\" - Annie", + "artistName": "Kudos Productions", + "name": "Molten Shield", + "cardCode": "06NX012T6", + "keywords": [ + "Skill" + ], + "keywordRefs": [ + "Skill" + ], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "None", + "rarityRef": "None", + "subtypes": [], + "supertype": "", + "type": "Ability", + "collectible": false, + "set": "Set6" + }, + { + "associatedCards": [], + "associatedCardRefs": [ + "06NX012T3", + "06NX012T1", + "06NX012T8", + "06NX012" + ], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set6/en_us/img/cards/06NX012T7.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set6/en_us/img/cards/06NX012T7-full.png" + } + ], + "regions": [ + "Noxus" + ], + "regionRefs": [ + "Noxus" + ], + "attack": 1, + "cost": 1, + "health": 3, + "description": "When I level up, create Tibbers in hand.\r\nAttack: I deal 3 damage to my blocker and Stun it. If it's dead or gone, I deal 3 damage to the enemy Nexus instead.", + "descriptionRaw": "When I level up, create Tibbers in hand.\r\nAttack: I deal 3 damage to my blocker and Stun it. If it's dead or gone, I deal 3 damage to the enemy Nexus instead.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"I've found her. She's Amoline's, no doubt. Same eyes, same giggle. I'll bring her back within the fortnight. Having spoken to the girl, I ask that you be kind to her. I believe there's good in there, along with the dark.\"\n- Excerpt of a letter from Fynn Retrick", + "artistName": "Polar Engine", + "name": "Annie", + "cardCode": "06NX012T7", + "keywords": [], + "keywordRefs": [], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "None", + "rarityRef": "None", + "subtypes": [], + "supertype": "Champion", + "type": "Unit", + "collectible": false, + "set": "Set6" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set6/en_us/img/cards/06NX012T5.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set6/en_us/img/cards/06NX012T5-full.png" + } + ], + "regions": [ + "Noxus" + ], + "regionRefs": [ + "Noxus" + ], + "attack": 0, + "cost": 0, + "health": 0, + "description": "Stun an enemy, then deal 2 to all Stunned or damaged enemies.", + "descriptionRaw": "Stun an enemy, then deal 2 to all Stunned or damaged enemies.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"TIBBERS!\" - Annie", + "artistName": "Kudos Productions", + "name": "Pyroclastic Arrival", + "cardCode": "06NX012T5", + "keywords": [ + "Skill" + ], + "keywordRefs": [ + "Skill" + ], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "None", + "rarityRef": "None", + "subtypes": [], + "supertype": "", + "type": "Ability", + "collectible": false, + "set": "Set6" + }, + { + "associatedCards": [], + "associatedCardRefs": [ + "06NX012T5", + "06NX012T7" + ], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set6/en_us/img/cards/06NX012T1.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set6/en_us/img/cards/06NX012T1-full.png" + } + ], + "regions": [ + "Noxus" + ], + "regionRefs": [ + "Noxus" + ], + "attack": 5, + "cost": 6, + "health": 5, + "description": "Play: Stun an enemy, then deal 2 to all Stunned or damaged enemies.", + "descriptionRaw": "Play: Stun an enemy, then deal 2 to all Stunned or damaged enemies.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "The demon Tybaulk had infested the minds of countless victims over the centuries. Slowly, inexorably, he would lead them to the fire, and watch his flames feast on scorched flesh. But in young Annie, Tybaulk found a will completely indomitable, and a talent for magic that rivaled even his own.", + "artistName": "Polar Engine", + "name": "Tibbers", + "cardCode": "06NX012T1", + "keywords": [ + "Fearsome" + ], + "keywordRefs": [ + "Fearsome" + ], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "None", + "rarityRef": "None", + "subtypes": [], + "supertype": "", + "type": "Unit", + "collectible": false, + "set": "Set6" + }, + { + "associatedCards": [], + "associatedCardRefs": [ + "06NX012T7" + ], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set6/en_us/img/cards/06NX012T8.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set6/en_us/img/cards/06NX012T8-full.png" + } + ], + "regions": [ + "Noxus" + ], + "regionRefs": [ + "Noxus" + ], + "attack": 0, + "cost": 0, + "health": 0, + "description": "Deal 3 and Stun Annie's blocker. If it's dead or gone, deal 3 to the enemy Nexus instead.", + "descriptionRaw": "Deal 3 and Stun Annie's blocker. If it's dead or gone, deal 3 to the enemy Nexus instead.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"It'll be fun...\" - Annie", + "artistName": "Kudos Productions", + "name": "Molten Shield", + "cardCode": "06NX012T8", + "keywords": [ + "Skill" + ], + "keywordRefs": [ + "Skill" + ], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "None", + "rarityRef": "None", + "subtypes": [], + "supertype": "", + "type": "Ability", + "collectible": false, + "set": "Set6" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set6/en_us/img/cards/06NX029.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set6/en_us/img/cards/06NX029-full.png" + } + ], + "regions": [ + "Noxus" + ], + "regionRefs": [ + "Noxus" + ], + "attack": 0, + "cost": 2, + "health": 0, + "description": "When an ally with 5+ Power dies, create a random follower with 5+ Power in hand.", + "descriptionRaw": "When an ally with 5+ Power dies, create a random follower with 5+ Power in hand.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"Today I found myself thinking back to my small infirmary in Penrose Hill, and the years I spent there trying to unlock the secrets of physiology. Years! I've now been in Lady Noradi's employ for just a few short months, but I know now that I learned nothing. How simple I was. How fortunate.\"\n- Notes from Dr. Esslanger", + "artistName": "Envar Studio", + "name": "The Gray Apothecary", + "cardCode": "06NX029", + "keywords": [ + "Landmark" + ], + "keywordRefs": [ + "LandmarkVisualOnly" + ], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "EPIC", + "rarityRef": "Epic", + "subtypes": [], + "supertype": "", + "type": "Landmark", + "collectible": true, + "set": "Set6" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set6/en_us/img/cards/06NX032.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set6/en_us/img/cards/06NX032-full.png" + } + ], + "regions": [ + "Noxus" + ], + "regionRefs": [ + "Noxus" + ], + "attack": 4, + "cost": 2, + "health": 1, + "description": "When an ally attacks, I attack with it.", + "descriptionRaw": "When an ally attacks, I attack with it.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"Drakehounds are a delight, aren't they? So eager to please. So malleable. If only my enemies held the same qualities.\" - Thorn of the Rose", + "artistName": "Michael Ivan", + "name": "Obedient Drakehound", + "cardCode": "06NX032", + "keywords": [ + "Immobile", + "Quick Attack" + ], + "keywordRefs": [ + "Immobile", + "QuickStrike" + ], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "COMMON", + "rarityRef": "Common", + "subtypes": [], + "supertype": "", + "type": "Unit", + "collectible": true, + "set": "Set6" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set6/en_us/img/cards/06NX030.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set6/en_us/img/cards/06NX030-full.png" + } + ], + "regions": [ + "Noxus" + ], + "regionRefs": [ + "Noxus" + ], + "attack": 5, + "cost": 5, + "health": 4, + "description": "I gain all allied everywhere buffs.\r\n", + "descriptionRaw": "I gain all allied everywhere buffs.\r\n", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"Act One: An ex-soldier, having abandoned his post following the theft of an ancient Kashuri artifact, hides at a Qayanvi bar, full of arrogance and too much drink. Little does he know, his stolen treasure whispers of all it sees to its true owner! His life pours away like so much wine, Noxian crimson on Ionian gold.\"", + "artistName": "Kudos Productions", + "name": "Legion Deserter", + "cardCode": "06NX030", + "keywords": [ + "Fearsome" + ], + "keywordRefs": [ + "Fearsome" + ], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "RARE", + "rarityRef": "Rare", + "subtypes": [], + "supertype": "", + "type": "Unit", + "collectible": true, + "set": "Set6" + }, + { + "associatedCards": [], + "associatedCardRefs": [ + "06NX013T1" + ], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set6/en_us/img/cards/06NX013.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set6/en_us/img/cards/06NX013-full.png" + } + ], + "regions": [ + "Noxus" + ], + "regionRefs": [ + "Noxus" + ], + "attack": 1, + "cost": 2, + "health": 1, + "description": "Play: Stun an enemy or if it's already Stunned deal 2 to it instead.", + "descriptionRaw": "Play: Stun an enemy or if it's already Stunned deal 2 to it instead.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"Student: Sydell Kythera\nTeacher: J. Willough\nReport: I am spiderbit on left forearm. Sydell claims a misunderstanding, but his smirk belies his innocence. He is ordered to two weeks additional chores (refectory).\"\n- Ravenbloom discipline card", + "artistName": "Polar Engine", + "name": "Spell Slinger", + "cardCode": "06NX013", + "keywords": [ + "Fearsome" + ], + "keywordRefs": [ + "Fearsome" + ], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "COMMON", + "rarityRef": "Common", + "subtypes": [ + "SPIDER" + ], + "supertype": "", + "type": "Unit", + "collectible": true, + "set": "Set6" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set6/en_us/img/cards/06NX040.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set6/en_us/img/cards/06NX040-full.png" + } + ], + "regions": [ + "Noxus" + ], + "regionRefs": [ + "Noxus" + ], + "attack": 0, + "cost": 4, + "health": 0, + "description": "Each round, the first time an ally with 5+ Power attacks, Rally.", + "descriptionRaw": "Each round, the first time an ally with 5+ Power attacks, Rally.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"At my command, you will fight! If you kill your sparring partner, find another! If you fall, then die knowing your death made Noxus stronger! Trifarian soldiers... begin!\" - Trifarian Assessor", + "artistName": "Kudos Productions", + "name": "Trifarian Training Pits", + "cardCode": "06NX040", + "keywords": [ + "Landmark" + ], + "keywordRefs": [ + "LandmarkVisualOnly" + ], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "EPIC", + "rarityRef": "Epic", + "subtypes": [], + "supertype": "", + "type": "Landmark", + "collectible": true, + "set": "Set6" + }, + { + "associatedCards": [], + "associatedCardRefs": [ + "06NX028T1" + ], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set6/en_us/img/cards/06NX028.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set6/en_us/img/cards/06NX028-full.png" + } + ], + "regions": [ + "Noxus" + ], + "regionRefs": [ + "Noxus" + ], + "attack": 0, + "cost": 1, + "health": 0, + "description": "Countdown 10: Create a Tybaulk in hand.\r\nI advance 1 round for each Fast spell, Slow spell, or Skill you've played this game. ", + "descriptionRaw": "Countdown 10: Create a Tybaulk in hand.\r\nI advance 1 round for each Fast spell, Slow spell, or Skill you've played this game. ", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"...by now, word has no doubt reached you of the Roseguard Academy's dismal failure. I expect you will learn from your sister school's failings. I expect you will manage your facility in a manner that benefits the empire.\"\n- A scorched letter found in the conservatory's rubble", + "artistName": "Will Gist", + "name": "Ravenbloom Conservatory", + "cardCode": "06NX028", + "keywords": [ + "Landmark", + "Countdown" + ], + "keywordRefs": [ + "LandmarkVisualOnly", + "Countdown" + ], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "RARE", + "rarityRef": "Rare", + "subtypes": [], + "supertype": "", + "type": "Landmark", + "collectible": true, + "set": "Set6" + }, + { + "associatedCards": [], + "associatedCardRefs": [ + "06NX028" + ], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set6/en_us/img/cards/06NX028T1.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set6/en_us/img/cards/06NX028T1-full.png" + } + ], + "regions": [ + "Noxus" + ], + "regionRefs": [ + "Noxus" + ], + "attack": 6, + "cost": 6, + "health": 6, + "description": "When I'm summoned, grant allies everywhere +1|+0 and for the rest of the game, all of your spells and Skills deal 1 extra damage.", + "descriptionRaw": "When I'm summoned, grant allies everywhere +1|+0 and for the rest of the game, all of your spells and Skills deal 1 extra damage.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"...it burns in me. This dark presence. It whispers to me. Fire. FIRE. In the flames, I see its eyes. Black and unblinking. Staring. Smiling. Urging me to step in. Urging me to join the rest. Silhouettes in the inferno. Reaching out. Come home. Come home.\"\n- Remains of a decrepit Nockmirchian diary", + "artistName": "Will Gist", + "name": "Tybaulk", + "cardCode": "06NX028T1", + "keywords": [ + "Overwhelm" + ], + "keywordRefs": [ + "Overwhelm" + ], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "None", + "rarityRef": "None", + "subtypes": [], + "supertype": "", + "type": "Unit", + "collectible": false, + "set": "Set6" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set6/en_us/img/cards/06NX014.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set6/en_us/img/cards/06NX014-full.png" + } + ], + "regions": [ + "Noxus" + ], + "regionRefs": [ + "Noxus" + ], + "attack": 0, + "cost": 2, + "health": 0, + "description": "Pick a unit. The next time it takes 1 or more damage this round, kill it.", + "descriptionRaw": "Pick a unit. The next time it takes 1 or more damage this round, kill it.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "Headmistress Telsi spoke at length about the Noxian tenets, leaving the children before her increasingly bored and restless. But, while most students largely contained their outbursts, Annie acted. First with smoke, then with fire.", + "artistName": "Kudos Productions", + "name": "Disintegrate", + "cardCode": "06NX014", + "keywords": [ + "Fast" + ], + "keywordRefs": [ + "Fast" + ], + "spellSpeed": "Fast", + "spellSpeedRef": "Fast", + "rarity": "COMMON", + "rarityRef": "Common", + "subtypes": [], + "supertype": "", + "type": "Spell", + "collectible": true, + "set": "Set6" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set6/en_us/img/cards/06NX031.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set6/en_us/img/cards/06NX031-full.png" + } + ], + "regions": [ + "Noxus" + ], + "regionRefs": [ + "Noxus" + ], + "attack": 5, + "cost": 6, + "health": 5, + "description": "Reputation: I cost 3. ", + "descriptionRaw": "Reputation: I cost 3. ", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "The crowd gasped as the two shackled yetis were brought into the Bordent's legendary fighting pit. No one thought the beasts strong enough to break their chains, because none of them had ever faced a yeti's might before.", + "artistName": "Kudos Productions", + "name": "Captive Yeti", + "cardCode": "06NX031", + "keywords": [ + "Overwhelm" + ], + "keywordRefs": [ + "Overwhelm" + ], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "COMMON", + "rarityRef": "Common", + "subtypes": [ + "YETI" + ], + "supertype": "", + "type": "Unit", + "collectible": true, + "set": "Set6" + }, + { + "associatedCards": [], + "associatedCardRefs": [ + "06NX009T1" + ], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set6/en_us/img/cards/06NX009.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set6/en_us/img/cards/06NX009-full.png" + } + ], + "regions": [ + "Noxus" + ], + "regionRefs": [ + "Noxus" + ], + "attack": 2, + "cost": 4, + "health": 3, + "description": "Attack: I deal 3 damage to my blocker. If it's dead or gone, I deal 3 damage to the enemy Nexus instead.", + "descriptionRaw": "Attack: I deal 3 damage to my blocker. If it's dead or gone, I deal 3 damage to the enemy Nexus instead.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"Act Three: A cruel keeper and her pet. The greyback is innocent even in grisly purpose - the artifact it bears forces subservience. The keeper refuses to scream as she is fed to her pet. If only all Noxians were so noble in their demise.\"", + "artistName": "Michael Ivan", + "name": "Captive Greyback", + "cardCode": "06NX009", + "keywords": [ + "Overwhelm" + ], + "keywordRefs": [ + "Overwhelm" + ], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "COMMON", + "rarityRef": "Common", + "subtypes": [], + "supertype": "", + "type": "Unit", + "collectible": true, + "set": "Set6" + }, + { + "associatedCards": [], + "associatedCardRefs": [ + "06NX009" + ], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set6/en_us/img/cards/06NX009T1.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set6/en_us/img/cards/06NX009T1-full.png" + } + ], + "regions": [ + "Noxus" + ], + "regionRefs": [ + "Noxus" + ], + "attack": 0, + "cost": 0, + "health": 0, + "description": "Deal 3 to Captive Greyback's blocker. If it's dead or gone, deal 3 to the enemy Nexus instead.", + "descriptionRaw": "Deal 3 to Captive Greyback's blocker. If it's dead or gone, deal 3 to the enemy Nexus instead.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"Let that be a lesson. Subjugators live only until the first revolt.\" - Jhin", + "artistName": "Kudos Productions", + "name": "Obeyed Order", + "cardCode": "06NX009T1", + "keywords": [ + "Skill" + ], + "keywordRefs": [ + "Skill" + ], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "None", + "rarityRef": "None", + "subtypes": [], + "supertype": "", + "type": "Ability", + "collectible": false, + "set": "Set6" + }, + { + "associatedCards": [], + "associatedCardRefs": [ + "06NX015T1" + ], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set6/en_us/img/cards/06NX015.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set6/en_us/img/cards/06NX015-full.png" + } + ], + "regions": [ + "Noxus" + ], + "regionRefs": [ + "Noxus" + ], + "attack": 3, + "cost": 3, + "health": 2, + "description": "Each round, the first time you play a Fast spell, Slow spell, or Skill, I play Magic Embers.", + "descriptionRaw": "Each round, the first time you play a Fast spell, Slow spell, or Skill, I play Magic Embers.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"First time I met Daani must've been a couple years ago. Lovely lad. Lovely family, too. Then, on my last trip, I stopped by his village and found poor Daani sat in the square, alone. Said he was waiting for his family to come home. Poor lad must've been sat there months. Didn't have the heart to tell him what I'd seen down the way...\" - Fynn Retrick", + "artistName": "Polar Engine", + "name": "Manasoul Student", + "cardCode": "06NX015", + "keywords": [], + "keywordRefs": [], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "COMMON", + "rarityRef": "Common", + "subtypes": [], + "supertype": "", + "type": "Unit", + "collectible": true, + "set": "Set6" + }, + { + "associatedCards": [], + "associatedCardRefs": [ + "03NX014", + "01NX011", + "05NX014", + "01NX041" + ], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set6/en_us/img/cards/06NX037.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set6/en_us/img/cards/06NX037-full.png" + } + ], + "regions": [ + "Noxus" + ], + "regionRefs": [ + "Noxus" + ], + "attack": 0, + "cost": 1, + "health": 0, + "description": "Create a Fleeting Sharpened Resolve, Whirling Death, or Weapons of the Lost in hand.", + "descriptionRaw": "Create a Fleeting Sharpened Resolve, Whirling Death, or Weapons of the Lost in hand.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"Clara darling, you have to clean the blood from the tokens.\" - Ophelia Noradi, Crimson Aristocrat", + "artistName": "Kudos Productions", + "name": "Noxian Tellstones", + "cardCode": "06NX037", + "keywords": [ + "Burst" + ], + "keywordRefs": [ + "Burst" + ], + "spellSpeed": "Burst", + "spellSpeedRef": "Burst", + "rarity": "RARE", + "rarityRef": "Rare", + "subtypes": [], + "supertype": "", + "type": "Spell", + "collectible": true, + "set": "Set6" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set6/en_us/img/cards/06NX015T1.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set6/en_us/img/cards/06NX015T1-full.png" + } + ], + "regions": [ + "Noxus" + ], + "regionRefs": [ + "Noxus" + ], + "attack": 0, + "cost": 0, + "health": 0, + "description": "Deal 1 to the enemy Nexus.", + "descriptionRaw": "Deal 1 to the enemy Nexus.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"Whoa... I can SEE the magic!\" - Manasoul Student", + "artistName": "Kudos Productions", + "name": "Magic Embers", + "cardCode": "06NX015T1", + "keywords": [ + "Skill" + ], + "keywordRefs": [ + "Skill" + ], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "None", + "rarityRef": "None", + "subtypes": [], + "supertype": "", + "type": "Ability", + "collectible": false, + "set": "Set6" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set6/en_us/img/cards/06NX008.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set6/en_us/img/cards/06NX008-full.png" + } + ], + "regions": [ + "Noxus" + ], + "regionRefs": [ + "Noxus" + ], + "attack": 2, + "cost": 3, + "health": 3, + "description": "When you play a Fast spell, Slow spell, or Skill, grant me +1|+0.", + "descriptionRaw": "When you play a Fast spell, Slow spell, or Skill, grant me +1|+0.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"Many of the children are of an age where their natural inclinations lead them to rebel against formal direction. Fortunate, then, that the eldest of them is both favored by the rest, and malleable to our cause. If the students choose to ignore our lessons, then we will teach through her.\" - Headmistress Telsi", + "artistName": "Polar Engine", + "name": "The Prefect", + "cardCode": "06NX008", + "keywords": [ + "Overwhelm" + ], + "keywordRefs": [ + "Overwhelm" + ], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "EPIC", + "rarityRef": "Epic", + "subtypes": [], + "supertype": "", + "type": "Unit", + "collectible": true, + "set": "Set6" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set6/en_us/img/cards/06NX013T1.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set6/en_us/img/cards/06NX013T1-full.png" + } + ], + "regions": [ + "Noxus" + ], + "regionRefs": [ + "Noxus" + ], + "attack": 0, + "cost": 0, + "health": 0, + "description": "Stun an enemy or if it's already Stunned deal 2 to it instead.", + "descriptionRaw": "Stun an enemy or if it's already Stunned deal 2 to it instead.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"Fang's turn...\" - Spell Slinger", + "artistName": "Kudos Productions", + "name": "Stiffened Sinews", + "cardCode": "06NX013T1", + "keywords": [ + "Skill" + ], + "keywordRefs": [ + "Skill" + ], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "None", + "rarityRef": "None", + "subtypes": [], + "supertype": "", + "type": "Ability", + "collectible": false, + "set": "Set6" + }, + { + "associatedCards": [], + "associatedCardRefs": [ + "06NX024" + ], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set6/en_us/img/cards/06NX024T1.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set6/en_us/img/cards/06NX024T1-full.png" + } + ], + "regions": [ + "Noxus" + ], + "regionRefs": [ + "Noxus" + ], + "attack": 0, + "cost": 0, + "health": 0, + "description": "Deal 2 to an enemy.", + "descriptionRaw": "Deal 2 to an enemy.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "Fine tools are wasted on the unsophisticated craftsman.", + "artistName": "Kudos Productions", + "name": "Kashuri Gauntlet", + "cardCode": "06NX024T1", + "keywords": [ + "Skill" + ], + "keywordRefs": [ + "Skill" + ], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "None", + "rarityRef": "None", + "subtypes": [], + "supertype": "", + "type": "Ability", + "collectible": false, + "set": "Set6" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set6/en_us/img/cards/06SH014.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set6/en_us/img/cards/06SH014-full.png" + } + ], + "regions": [ + "Shurima" + ], + "regionRefs": [ + "Shurima" + ], + "attack": 5, + "cost": 8, + "health": 4, + "description": "When I'm summoned, grant me all positive keywords allies have had this game.\r\nWhen I see an ally with a new positive keyword, grant it to me. ", + "descriptionRaw": "When I'm summoned, grant me all positive keywords allies have had this game.\r\nWhen I see an ally with a new positive keyword, grant it to me. ", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"We had heard tales of Void breaches before, and the devastation that came with them. But to see it myself... I don't know that I will ever rid my eyes of that sight, or my heart of that horror.\" - Belveth survivor", + "artistName": "Kudos Productions", + "name": "Void Abomination", + "cardCode": "06SH014", + "keywords": [ + "Evolve" + ], + "keywordRefs": [ + "Evolve" + ], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "EPIC", + "rarityRef": "Epic", + "subtypes": [], + "supertype": "", + "type": "Unit", + "collectible": true, + "set": "Set6" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set6/en_us/img/cards/06SH016.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set6/en_us/img/cards/06SH016-full.png" + } + ], + "regions": [ + "Shurima" + ], + "regionRefs": [ + "Shurima" + ], + "attack": 3, + "cost": 6, + "health": 3, + "description": "Play: Grant a unit and me each other's positive keywords. ", + "descriptionRaw": "Play: Grant a unit and me each other's positive keywords. ", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"It spoke to me as... as if it knew me. Like it wanted me to meet... something...\" - Kai'Sa", + "artistName": "Kudos Productions", + "name": "Hive Herald", + "cardCode": "06SH016", + "keywords": [ + "Evolve" + ], + "keywordRefs": [ + "Evolve" + ], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "RARE", + "rarityRef": "Rare", + "subtypes": [], + "supertype": "", + "type": "Unit", + "collectible": true, + "set": "Set6" + }, + { + "associatedCards": [], + "associatedCardRefs": [ + "06SH009T3", + "06SH009T1", + "06SH009T2", + "06SH009T4" + ], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set6/en_us/img/cards/06SH009.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set6/en_us/img/cards/06SH009-full.png" + } + ], + "regions": [ + "Shurima" + ], + "regionRefs": [ + "Shurima" + ], + "attack": 4, + "cost": 5, + "health": 4, + "description": "When I'm summoned or Round Start: If you have the attack token, create a Second Skin in hand.", + "descriptionRaw": "When I'm summoned or Round Start: If you have the attack token, create a Second Skin in hand.", + "levelupDescription": "You've Evolved. ", + "levelupDescriptionRaw": "You've Evolved. ", + "flavorText": "Just a few days prior, Kai'Sa noticed her second skin bristling with new excitement, pulling her with ever-increasing vigor toward the Shuriman coast. Something was wrong, and as Kai'Sa neared Belveth, she soon realized the scale of the horror unfolding before her.", + "artistName": "Kudos Productions", + "name": "Kai'Sa", + "cardCode": "06SH009", + "keywords": [ + "Quick Attack", + "Evolve" + ], + "keywordRefs": [ + "QuickStrike", + "Evolve" + ], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "Champion", + "rarityRef": "Champion", + "subtypes": [], + "supertype": "Champion", + "type": "Unit", + "collectible": true, + "set": "Set6" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set6/en_us/img/cards/06SH048.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set6/en_us/img/cards/06SH048-full.png" + } + ], + "regions": [ + "Shurima" + ], + "regionRefs": [ + "Shurima" + ], + "attack": 0, + "cost": 2, + "health": 0, + "description": "Manifest an allied landmark that has been destroyed this game and summon it. ", + "descriptionRaw": "Manifest an allied landmark that has been destroyed this game and summon it. ", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "“A moment in time, preserved.” - Zilean", + "artistName": "Kudos Productions", + "name": "Rite of Passage", + "cardCode": "06SH048", + "keywords": [ + "Focus" + ], + "keywordRefs": [ + "Focus" + ], + "spellSpeed": "Burst", + "spellSpeedRef": "Burst", + "rarity": "COMMON", + "rarityRef": "Common", + "subtypes": [], + "supertype": "", + "type": "Spell", + "collectible": true, + "set": "Set6" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set6/en_us/img/cards/06SH037.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set6/en_us/img/cards/06SH037-full.png" + } + ], + "regions": [ + "Shurima" + ], + "regionRefs": [ + "Shurima" + ], + "attack": 5, + "cost": 5, + "health": 4, + "description": "When an enemy is Challenged, give it -2|-0 this round.", + "descriptionRaw": "When an enemy is Challenged, give it -2|-0 this round.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "Their sanity withered away like dunes in the wind--and in its place, a seed of anger flourished into a fury no desert waters could quench.", + "artistName": "Will Gist", + "name": "Baccai Witherclaw", + "cardCode": "06SH037", + "keywords": [], + "keywordRefs": [], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "COMMON", + "rarityRef": "Common", + "subtypes": [], + "supertype": "", + "type": "Unit", + "collectible": true, + "set": "Set6" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set6/en_us/img/cards/06SH008.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set6/en_us/img/cards/06SH008-full.png" + } + ], + "regions": [ + "Shurima" + ], + "regionRefs": [ + "Shurima" + ], + "attack": 3, + "cost": 2, + "health": 1, + "description": "", + "descriptionRaw": "", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "Shalatai reeled at the horror before her. There lay Ferai, the kind butcher's daughter, crushed to death. Beside her was Gorrub, the fisherman's son, still reaching toward his love with lifeless hands. So many memories gone. So many lives lost. With a grimace, Shalatai turned to the evil, ready to give her life to save the rest of her people.", + "artistName": "Kudos Productions", + "name": "Belvethi Elder", + "cardCode": "06SH008", + "keywords": [ + "Evolve", + "SpellShield" + ], + "keywordRefs": [ + "Evolve", + "SpellShield" + ], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "COMMON", + "rarityRef": "Common", + "subtypes": [], + "supertype": "", + "type": "Unit", + "collectible": true, + "set": "Set6" + }, + { + "associatedCards": [], + "associatedCardRefs": [ + "04SH069", + "04SH004", + "04SH106" + ], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set6/en_us/img/cards/06SH042.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set6/en_us/img/cards/06SH042-full.png" + } + ], + "regions": [ + "Shurima" + ], + "regionRefs": [ + "Shurima" + ], + "attack": 0, + "cost": 1, + "health": 0, + "description": "Create a Fleeting Ruthless Predator, Weight of Judgment, or Spirit Fire in hand.", + "descriptionRaw": "Create a Fleeting Ruthless Predator, Weight of Judgment, or Spirit Fire in hand.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"A game of Tellstones is never about who wins--it's about how great you look while playing!\" - Akshan", + "artistName": "Kudos Productions", + "name": "Shuriman Tellstones", + "cardCode": "06SH042", + "keywords": [ + "Burst" + ], + "keywordRefs": [ + "Burst" + ], + "spellSpeed": "Burst", + "spellSpeedRef": "Burst", + "rarity": "RARE", + "rarityRef": "Rare", + "subtypes": [], + "supertype": "", + "type": "Spell", + "collectible": true, + "set": "Set6" + }, + { + "associatedCards": [], + "associatedCardRefs": [ + "06SH009T2" + ], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set6/en_us/img/cards/06SH009T4.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set6/en_us/img/cards/06SH009T4-full.png" + } + ], + "regions": [ + "Shurima" + ], + "regionRefs": [ + "Shurima" + ], + "attack": 0, + "cost": 0, + "health": 0, + "description": "Deal 1 for each positive keyword Kai'Sa has to enemies or the enemy Nexus (lowest health first).", + "descriptionRaw": "Deal 1 for each positive keyword Kai'Sa has to enemies or the enemy Nexus (lowest health first).", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"Hit and move!\" - Kai'Sa", + "artistName": "Kudos Productions", + "name": "Icathian Rain", + "cardCode": "06SH009T4", + "keywords": [ + "Skill" + ], + "keywordRefs": [ + "Skill" + ], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "None", + "rarityRef": "None", + "subtypes": [], + "supertype": "", + "type": "Ability", + "collectible": false, + "set": "Set6" + }, + { + "associatedCards": [], + "associatedCardRefs": [ + "06SH009T3", + "06SH009T1", + "06SH009", + "06SH009T4" + ], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set6/en_us/img/cards/06SH009T2.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set6/en_us/img/cards/06SH009T2-full.png" + } + ], + "regions": [ + "Shurima" + ], + "regionRefs": [ + "Shurima" + ], + "attack": 4, + "cost": 5, + "health": 4, + "description": "When I'm summoned or Round Start: If you have the attack token, create a Second Skin in hand.\r\nAttack: Deal 1 for each positive keyword I have to enemies or the enemy Nexus (lowest health first).", + "descriptionRaw": "When I'm summoned or Round Start: If you have the attack token, create a Second Skin in hand.\r\nAttack: Deal 1 for each positive keyword I have to enemies or the enemy Nexus (lowest health first).", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "Kai'Sa worked as fast as she could. Another salvo tore through another abomination, sending it crashing to the ground. She had learned how to fight the Void long ago, but these creatures... they were different.", + "artistName": "Kudos Productions", + "name": "Kai'Sa", + "cardCode": "06SH009T2", + "keywords": [ + "Quick Attack", + "Evolve" + ], + "keywordRefs": [ + "QuickStrike", + "Evolve" + ], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "None", + "rarityRef": "None", + "subtypes": [], + "supertype": "Champion", + "type": "Unit", + "collectible": false, + "set": "Set6" + }, + { + "associatedCards": [], + "associatedCardRefs": [ + "06SH009T2", + "06SH009" + ], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set6/en_us/img/cards/06SH009T3.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set6/en_us/img/cards/06SH009T3-full.png" + } + ], + "regions": [ + "Shurima" + ], + "regionRefs": [ + "Shurima" + ], + "attack": 0, + "cost": 0, + "health": 0, + "description": "Grant allied Kai'Sas everywhere another ally's positive keywords.", + "descriptionRaw": "Grant allied Kai'Sas everywhere another ally's positive keywords.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"I'm learning.\" - Kai'Sa", + "artistName": "Kudos Productions", + "name": "Second Skin", + "cardCode": "06SH009T3", + "keywords": [ + "Focus", + "Fleeting" + ], + "keywordRefs": [ + "Focus", + "Fleeting" + ], + "spellSpeed": "Burst", + "spellSpeedRef": "Burst", + "rarity": "None", + "rarityRef": "None", + "subtypes": [], + "supertype": "", + "type": "Spell", + "collectible": false, + "set": "Set6" + }, + { + "associatedCards": [], + "associatedCardRefs": [ + "06SH009T2", + "06SH009" + ], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set6/en_us/img/cards/06SH009T1.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set6/en_us/img/cards/06SH009T1-full.png" + } + ], + "regions": [ + "Shurima" + ], + "regionRefs": [ + "Shurima" + ], + "attack": 0, + "cost": 3, + "health": 0, + "description": "Grant an ally Overwhelm and SpellShield.\r\nCreate a Kai'Sa in your deck.", + "descriptionRaw": "Grant an ally Overwhelm and SpellShield.\r\nCreate a Kai'Sa in your deck.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"I'll show you how to fight.\" - Kai'Sa", + "artistName": "Kudos Productions", + "name": "Kai'Sa's Supercharge", + "cardCode": "06SH009T1", + "keywords": [ + "Focus" + ], + "keywordRefs": [ + "Focus" + ], + "spellSpeed": "Burst", + "spellSpeedRef": "Burst", + "rarity": "None", + "rarityRef": "None", + "subtypes": [], + "supertype": "Champion", + "type": "Spell", + "collectible": false, + "set": "Set6" + }, + { + "associatedCards": [], + "associatedCardRefs": [ + "04SH034T1" + ], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set6/en_us/img/cards/06SH050.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set6/en_us/img/cards/06SH050-full.png" + } + ], + "regions": [ + "Shurima" + ], + "regionRefs": [ + "Shurima" + ], + "attack": 0, + "cost": 6, + "health": 0, + "description": "Give enemies -2|-0 this round. Create a Fleeting Instant Century in hand.", + "descriptionRaw": "Give enemies -2|-0 this round. Create a Fleeting Instant Century in hand.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "The sands of time flow without thought or consideration. Theirs is a scheme of cruel indifference, but not all are slave to its callous machinations...", + "artistName": "Kudos Productions", + "name": "Sands of Time", + "cardCode": "06SH050", + "keywords": [ + "Burst" + ], + "keywordRefs": [ + "Burst" + ], + "spellSpeed": "Burst", + "spellSpeedRef": "Burst", + "rarity": "RARE", + "rarityRef": "Rare", + "subtypes": [], + "supertype": "", + "type": "Spell", + "collectible": true, + "set": "Set6" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set6/en_us/img/cards/06SH049.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set6/en_us/img/cards/06SH049-full.png" + } + ], + "regions": [ + "Shurima" + ], + "regionRefs": [ + "Shurima" + ], + "attack": 0, + "cost": 6, + "health": 0, + "description": "Costs 2 less for each different Ascended ally you've played this game.\r\nManifest a card from the Emperor's Deck with cost 9 or less.", + "descriptionRaw": "Costs 2 less for each different Ascended ally you've played this game.\r\nManifest a card from the Emperor's Deck with cost 9 or less.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "“Look upon our work--look what we have built!” - Azir", + "artistName": "Kudos Productions", + "name": "Glory's Call", + "cardCode": "06SH049", + "keywords": [ + "Burst" + ], + "keywordRefs": [ + "Burst" + ], + "spellSpeed": "Burst", + "spellSpeedRef": "Burst", + "rarity": "RARE", + "rarityRef": "Rare", + "subtypes": [], + "supertype": "", + "type": "Spell", + "collectible": true, + "set": "Set6" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set6/en_us/img/cards/06SH036.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set6/en_us/img/cards/06SH036-full.png" + } + ], + "regions": [ + "Shurima" + ], + "regionRefs": [ + "Shurima" + ], + "attack": 0, + "cost": 3, + "health": 0, + "description": "When you summon a champion, destroy me to grant it +2|+1 and SpellShield.", + "descriptionRaw": "When you summon a champion, destroy me to grant it +2|+1 and SpellShield.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "Nasus emerged from the sarcophagus, his mind clear and his wounds fully healed. He scribbled a few notes and peered at the sarcophagi hanging high above, pondering the mental state of the beastly aberrations resting within. Time would tell if this magic could bring the baccai back from their insanity, a magic the other Ascended had once protested. But they were gone now and Renekton and his madness were not. Nasus scribbled a few more words, hoping he had finally found a way to save his brother.", + "artistName": "Kudos Productions", + "name": "Chamber of Renewal", + "cardCode": "06SH036", + "keywords": [ + "Landmark" + ], + "keywordRefs": [ + "LandmarkVisualOnly" + ], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "EPIC", + "rarityRef": "Epic", + "subtypes": [], + "supertype": "", + "type": "Landmark", + "collectible": true, + "set": "Set6" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set6/en_us/img/cards/06SH011.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set6/en_us/img/cards/06SH011-full.png" + } + ], + "regions": [ + "Shurima" + ], + "regionRefs": [ + "Shurima" + ], + "attack": 0, + "cost": 3, + "health": 0, + "description": "Grant an ally Overwhelm and SpellShield.", + "descriptionRaw": "Grant an ally Overwhelm and SpellShield.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"I'll show you how to fight.\" - Kai'Sa", + "artistName": "Kudos Productions", + "name": "Supercharge", + "cardCode": "06SH011", + "keywords": [ + "Focus" + ], + "keywordRefs": [ + "Focus" + ], + "spellSpeed": "Burst", + "spellSpeedRef": "Burst", + "rarity": "COMMON", + "rarityRef": "Common", + "subtypes": [], + "supertype": "", + "type": "Spell", + "collectible": true, + "set": "Set6" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set6/en_us/img/cards/06SH017.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set6/en_us/img/cards/06SH017-full.png" + } + ], + "regions": [ + "Shurima" + ], + "regionRefs": [ + "Shurima" + ], + "attack": 0, + "cost": 1, + "health": 0, + "description": "Deal 1 to a follower. If you've Evolved, deal 3 instead. ", + "descriptionRaw": "Deal 1 to a follower. If you've Evolved, deal 3 instead. ", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"Hurts, doesn't it?\" - Kai'Sa", + "artistName": "Kudos Productions", + "name": "Void Seeker", + "cardCode": "06SH017", + "keywords": [ + "Slow" + ], + "keywordRefs": [ + "Slow" + ], + "spellSpeed": "Slow", + "spellSpeedRef": "Slow", + "rarity": "RARE", + "rarityRef": "Rare", + "subtypes": [], + "supertype": "", + "type": "Spell", + "collectible": true, + "set": "Set6" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set6/en_us/img/cards/06SH007.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set6/en_us/img/cards/06SH007-full.png" + } + ], + "regions": [ + "Shurima" + ], + "regionRefs": [ + "Shurima" + ], + "attack": 1, + "cost": 1, + "health": 1, + "description": "While in hand, I have a random keyword that changes each round. When I'm summoned, grant me this keyword.\r\n", + "descriptionRaw": "While in hand, I have a random keyword that changes each round. When I'm summoned, grant me this keyword.\r\n", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "Dharna remembered throwing open the windows that morning and smelling the freshly baked loaves. Down the way, fishermen had already began hauling the day's catch up to the noon markets. She remembered smiling, thinking it would be a fine day.", + "artistName": "Kudos Productions", + "name": "Voidling", + "cardCode": "06SH007", + "keywords": [ + "Evolve" + ], + "keywordRefs": [ + "Evolve" + ], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "COMMON", + "rarityRef": "Common", + "subtypes": [], + "supertype": "", + "type": "Unit", + "collectible": true, + "set": "Set6" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set6/en_us/img/cards/06SH010.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set6/en_us/img/cards/06SH010-full.png" + } + ], + "regions": [ + "Shurima" + ], + "regionRefs": [ + "Shurima" + ], + "attack": 4, + "cost": 4, + "health": 4, + "description": "", + "descriptionRaw": "", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "The Void eruption in the city of Belveth was both sudden and terrifying. Most of the civilians were terrified by the chaos that quickly enveloped the city, and fled for safety as fast as they were able. Most, but not Koyemi.", + "artistName": "Kudos Productions", + "name": "Void Blaster", + "cardCode": "06SH010", + "keywords": [ + "Overwhelm", + "Evolve" + ], + "keywordRefs": [ + "Overwhelm", + "Evolve" + ], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "COMMON", + "rarityRef": "Common", + "subtypes": [], + "supertype": "", + "type": "Unit", + "collectible": true, + "set": "Set6" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set6/en_us/img/cards/06SH034.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set6/en_us/img/cards/06SH034-full.png" + } + ], + "regions": [ + "Shurima" + ], + "regionRefs": [ + "Shurima" + ], + "attack": 2, + "cost": 3, + "health": 1, + "description": "When I'm summoned, summon a random Husk.\r\nWhen you summon a 1 cost ally, grant it +1|+0.", + "descriptionRaw": "When I'm summoned, summon a random Husk.\r\nWhen you summon a 1 cost ally, grant it +1|+0.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "Sometimes, all the powerful want is to feel powerless.", + "artistName": "Kudos Productions", + "name": "Domination", + "cardCode": "06SH034", + "keywords": [], + "keywordRefs": [], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "EPIC", + "rarityRef": "Epic", + "subtypes": [], + "supertype": "", + "type": "Unit", + "collectible": true, + "set": "Set6" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set6/en_us/img/cards/06DE045.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set6/en_us/img/cards/06DE045-full.png" + } + ], + "regions": [ + "Demacia" + ], + "regionRefs": [ + "Demacia" + ], + "attack": 0, + "cost": 2, + "health": 0, + "description": "Grant allies +1|+1.", + "descriptionRaw": "Grant allies +1|+1.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"No more hiding! Step into the light, and shine brightly with me!\" - Lux", + "artistName": "Kudos Productions", + "name": "Inspiring Light", + "cardCode": "06DE045", + "keywords": [ + "Slow" + ], + "keywordRefs": [ + "Slow" + ], + "spellSpeed": "Slow", + "spellSpeedRef": "Slow", + "rarity": "COMMON", + "rarityRef": "Common", + "subtypes": [], + "supertype": "", + "type": "Spell", + "collectible": true, + "set": "Set6" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set6/en_us/img/cards/06DE038.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set6/en_us/img/cards/06DE038-full.png" + } + ], + "regions": [ + "Demacia" + ], + "regionRefs": [ + "Demacia" + ], + "attack": 8, + "cost": 8, + "health": 8, + "description": "Other allies and your Nexus have Tough.", + "descriptionRaw": "Other allies and your Nexus have Tough.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"I couldn't help but overhear your fervent whispering, dear wife. I advise you to exercise more caution when discussing family matters in so public a place. You can never be certain who might be listening.\"", + "artistName": "Kudos Productions", + "name": "Lord Eldred, Mageseeker Leader", + "cardCode": "06DE038", + "keywords": [ + "Tough", + "Missing Translation" + ], + "keywordRefs": [ + "Tough", + "AuraVisualFakeKeyword" + ], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "EPIC", + "rarityRef": "Epic", + "subtypes": [], + "supertype": "", + "type": "Unit", + "collectible": true, + "set": "Set6" + }, + { + "associatedCards": [], + "associatedCardRefs": [ + "04DE001" + ], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set6/en_us/img/cards/06DE037.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set6/en_us/img/cards/06DE037-full.png" + } + ], + "regions": [ + "Demacia" + ], + "regionRefs": [ + "Demacia" + ], + "attack": 0, + "cost": 3, + "health": 0, + "description": "Give an ally +2|+2 and Challenger this round or summon an Honored Lord.", + "descriptionRaw": "Give an ally +2|+2 and Challenger this round or summon an Honored Lord.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"At once, King Jarvan. We shall see it done at any cost.\" - Barrett Buvelle, Honored Lord", + "artistName": "Kudos Productions", + "name": "Royal Decree", + "cardCode": "06DE037", + "keywords": [ + "Focus" + ], + "keywordRefs": [ + "Focus" + ], + "spellSpeed": "Burst", + "spellSpeedRef": "Burst", + "rarity": "RARE", + "rarityRef": "Rare", + "subtypes": [], + "supertype": "", + "type": "Spell", + "collectible": true, + "set": "Set6" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set6/en_us/img/cards/06DE035.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set6/en_us/img/cards/06DE035-full.png" + } + ], + "regions": [ + "Demacia" + ], + "regionRefs": [ + "Demacia" + ], + "attack": 0, + "cost": 2, + "health": 0, + "description": "ALL spells cost 2 more.\r\nCountdown 2.", + "descriptionRaw": "ALL spells cost 2 more.\r\nCountdown 2.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "Mageseekers place towering petricite obelisks throughout their compounds, ensuring that even the strongest mages are rendered completely powerless.", + "artistName": "Kudos Productions", + "name": "Petricite Pillar", + "cardCode": "06DE035", + "keywords": [ + "Landmark", + "Countdown" + ], + "keywordRefs": [ + "LandmarkVisualOnly", + "Countdown" + ], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "COMMON", + "rarityRef": "Common", + "subtypes": [], + "supertype": "", + "type": "Landmark", + "collectible": true, + "set": "Set6" + }, + { + "associatedCards": [], + "associatedCardRefs": [ + "01DE032", + "01DE025", + "01DE035" + ], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set6/en_us/img/cards/06DE042.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set6/en_us/img/cards/06DE042-full.png" + } + ], + "regions": [ + "Demacia" + ], + "regionRefs": [ + "Demacia" + ], + "attack": 0, + "cost": 1, + "health": 0, + "description": "Create a Fleeting Prismatic Barrier, Detain, or For Demacia! in hand.\r\n", + "descriptionRaw": "Create a Fleeting Prismatic Barrier, Detain, or For Demacia! in hand.\r\n", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"Why do they call it 'King's Gambit'? Queens take risks, too!\" - Cithria of Cloudfield", + "artistName": "Kudos Productions", + "name": "Demacian Tellstones", + "cardCode": "06DE042", + "keywords": [ + "Burst" + ], + "keywordRefs": [ + "Burst" + ], + "spellSpeed": "Burst", + "spellSpeedRef": "Burst", + "rarity": "RARE", + "rarityRef": "Rare", + "subtypes": [], + "supertype": "", + "type": "Spell", + "collectible": true, + "set": "Set6" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set6/en_us/img/cards/06DE036.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set6/en_us/img/cards/06DE036-full.png" + } + ], + "regions": [ + "Demacia" + ], + "regionRefs": [ + "Demacia" + ], + "attack": 7, + "cost": 8, + "health": 7, + "description": "Attack: Draw a unit. If it's a Dragon, summon it attacking.", + "descriptionRaw": "Attack: Draw a unit. If it's a Dragon, summon it attacking.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"Luckily, my research suggests that broodfathers spend most of their time hunting a good distance from their young. It goes without saying that if the male should return, we would all be dragon food! Ha ha!\" - Anden Mayne, Egghead Researcher", + "artistName": "Kudos Productions", + "name": "Protective Broodfather", + "cardCode": "06DE036", + "keywords": [ + "Fury" + ], + "keywordRefs": [ + "Fury" + ], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "EPIC", + "rarityRef": "Epic", + "subtypes": [ + "DRAGON" + ], + "supertype": "", + "type": "Unit", + "collectible": true, + "set": "Set6" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set6/en_us/img/cards/06DE037T2.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set6/en_us/img/cards/06DE037T2-full.png" + } + ], + "regions": [ + "Demacia" + ], + "regionRefs": [ + "Demacia" + ], + "attack": 0, + "cost": 3, + "health": 0, + "description": "Give an ally +2|+2 and Challenger this round.", + "descriptionRaw": "Give an ally +2|+2 and Challenger this round.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"At once, King Jarvan. We shall see it done at any cost.\" - Barrett Buvelle, Honored Lord", + "artistName": "Kudos Productions", + "name": "Royal Decree", + "cardCode": "06DE037T2", + "keywords": [ + "Focus" + ], + "keywordRefs": [ + "Focus" + ], + "spellSpeed": "Burst", + "spellSpeedRef": "Burst", + "rarity": "None", + "rarityRef": "None", + "subtypes": [], + "supertype": "", + "type": "Spell", + "collectible": false, + "set": "Set6" + }, + { + "associatedCards": [], + "associatedCardRefs": [ + "04DE001" + ], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set6/en_us/img/cards/06DE037T1.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set6/en_us/img/cards/06DE037T1-full.png" + } + ], + "regions": [ + "Demacia" + ], + "regionRefs": [ + "Demacia" + ], + "attack": 0, + "cost": 3, + "health": 0, + "description": "Summon an Honored Lord.", + "descriptionRaw": "Summon an Honored Lord.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"At once, King Jarvan. We shall see it done at any cost.\" - Barrett Buvelle, Honored Lord", + "artistName": "Kudos Productions", + "name": "Royal Decree", + "cardCode": "06DE037T1", + "keywords": [ + "Focus" + ], + "keywordRefs": [ + "Focus" + ], + "spellSpeed": "Burst", + "spellSpeedRef": "Burst", + "rarity": "None", + "rarityRef": "None", + "subtypes": [], + "supertype": "", + "type": "Spell", + "collectible": false, + "set": "Set6" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set6/en_us/img/cards/06DE030.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set6/en_us/img/cards/06DE030-full.png" + } + ], + "regions": [ + "Demacia" + ], + "regionRefs": [ + "Demacia" + ], + "attack": 0, + "cost": 2, + "health": 0, + "description": "Summon a random Husk and grant it +1|+0.", + "descriptionRaw": "Summon a random Husk and grant it +1|+0.", + "levelupDescription": "Missing Translation", + "levelupDescriptionRaw": "Missing Translation", + "flavorText": "\"Closer, love...\" - Evelynn", + "artistName": "Kudos Productions", + "name": "Allure", + "cardCode": "06DE030", + "keywords": [ + "Focus" + ], + "keywordRefs": [ + "Focus" + ], + "spellSpeed": "Burst", + "spellSpeedRef": "Burst", + "rarity": "COMMON", + "rarityRef": "Common", + "subtypes": [], + "supertype": "", + "type": "Spell", + "collectible": true, + "set": "Set6" + }, + { + "associatedCards": [], + "associatedCardRefs": [ + "04FR019T1" + ], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set6/en_us/img/cards/06FR029.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set6/en_us/img/cards/06FR029-full.png" + } + ], + "regions": [ + "Freljord" + ], + "regionRefs": [ + "Freljord" + ], + "attack": 0, + "cost": 4, + "health": 0, + "description": "Frostbite an enemy.\r\nSummon a Rimefang Pack. Grant it +1|+1 for each time you've Frostbitten enemies this game. ", + "descriptionRaw": "Frostbite an enemy.\r\nSummon a Rimefang Pack. Grant it +1|+1 for each time you've Frostbitten enemies this game. ", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "With the cold, so too come the rimefangs, and they don't have to outpace their prey... merely outwait them.", + "artistName": "Kudos Productions", + "name": "Frozen in Fear", + "cardCode": "06FR029", + "keywords": [ + "Slow" + ], + "keywordRefs": [ + "Slow" + ], + "spellSpeed": "Slow", + "spellSpeedRef": "Slow", + "rarity": "EPIC", + "rarityRef": "Epic", + "subtypes": [], + "supertype": "", + "type": "Spell", + "collectible": true, + "set": "Set6" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set6/en_us/img/cards/06FR033.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set6/en_us/img/cards/06FR033-full.png" + } + ], + "regions": [ + "Freljord" + ], + "regionRefs": [ + "Freljord" + ], + "attack": 2, + "cost": 3, + "health": 1, + "description": "Last Breath: Get an empty mana gem.", + "descriptionRaw": "Last Breath: Get an empty mana gem.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "The cycle of life and death looks different in the Freljord. The harsh environment ensures that little goes to waste.", + "artistName": "Kudos Productions", + "name": "Hunting Boar", + "cardCode": "06FR033", + "keywords": [ + "Can't Block", + "Last Breath" + ], + "keywordRefs": [ + "CantBlock", + "LastBreath" + ], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "COMMON", + "rarityRef": "Common", + "subtypes": [], + "supertype": "", + "type": "Unit", + "collectible": true, + "set": "Set6" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set6/en_us/img/cards/06FR038.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set6/en_us/img/cards/06FR038-full.png" + } + ], + "regions": [ + "Freljord" + ], + "regionRefs": [ + "Freljord" + ], + "attack": 0, + "cost": 7, + "health": 0, + "description": "Deal 3 to ALL units.\r\nEnlightened: Heal your Nexus 3.", + "descriptionRaw": "Deal 3 to ALL units.\r\nEnlightened: Heal your Nexus 3.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "In the shadow of the great Cryophoenix's wings, her followers rejoiced, and her enemies shuddered.", + "artistName": "Kudos Productions", + "name": "Wings of the Cryophoenix", + "cardCode": "06FR038", + "keywords": [ + "Slow" + ], + "keywordRefs": [ + "Slow" + ], + "spellSpeed": "Slow", + "spellSpeedRef": "Slow", + "rarity": "RARE", + "rarityRef": "Rare", + "subtypes": [], + "supertype": "", + "type": "Spell", + "collectible": true, + "set": "Set6" + }, + { + "associatedCards": [], + "associatedCardRefs": [ + "01FR026" + ], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set6/en_us/img/cards/06FR039.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set6/en_us/img/cards/06FR039-full.png" + } + ], + "regions": [ + "Freljord" + ], + "regionRefs": [ + "Freljord" + ], + "attack": 0, + "cost": 6, + "health": 0, + "description": "Transform an allied follower into an Alpha Wildclaw.", + "descriptionRaw": "Transform an allied follower into an Alpha Wildclaw.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"Great wildclaw spirit, grant us your power!\" - Udyr", + "artistName": "Kudos Productions", + "name": "Wildclaw's Ferocity", + "cardCode": "06FR039", + "keywords": [ + "Focus" + ], + "keywordRefs": [ + "Focus" + ], + "spellSpeed": "Burst", + "spellSpeedRef": "Burst", + "rarity": "RARE", + "rarityRef": "Rare", + "subtypes": [], + "supertype": "", + "type": "Spell", + "collectible": true, + "set": "Set6" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set6/en_us/img/cards/06FR028.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set6/en_us/img/cards/06FR028-full.png" + } + ], + "regions": [ + "Freljord" + ], + "regionRefs": [ + "Freljord" + ], + "attack": 2, + "cost": 6, + "health": 2, + "description": "When I'm summoned, grant units in your deck my stats, then draw a unit with 5+ Power.", + "descriptionRaw": "When I'm summoned, grant units in your deck my stats, then draw a unit with 5+ Power.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "Avarosan lorekeepers are often seasoned elders of the tribe, protectors of the people and seasoned storytellers. They keep the tradition of both the hunt and fight alive through story and song. ", + "artistName": "Envar Studio", + "name": "Revna, the Lorekeeper", + "cardCode": "06FR028", + "keywords": [], + "keywordRefs": [], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "EPIC", + "rarityRef": "Epic", + "subtypes": [], + "supertype": "", + "type": "Unit", + "collectible": true, + "set": "Set6" + }, + { + "associatedCards": [], + "associatedCardRefs": [ + "04FR001" + ], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set6/en_us/img/cards/06FR030.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set6/en_us/img/cards/06FR030-full.png" + } + ], + "regions": [ + "Freljord" + ], + "regionRefs": [ + "Freljord" + ], + "attack": 2, + "cost": 2, + "health": 2, + "description": "Play: Summon a Frozen Thrall or advance all your Frozen Thralls 1 round.", + "descriptionRaw": "Play: Summon a Frozen Thrall or advance all your Frozen Thralls 1 round.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "The strange, whistling cry of the creature overhead was barely audible, but as it rung off the ravine's stone walls, the scouts felt it vibrate along their bones. Before their very eyes, cracks rapidly formed along the surface of the ice, disproportionate and quick.", + "artistName": "Kudos Productions", + "name": "Harbinger of Thralls", + "cardCode": "06FR030", + "keywords": [], + "keywordRefs": [], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "COMMON", + "rarityRef": "Common", + "subtypes": [], + "supertype": "", + "type": "Unit", + "collectible": true, + "set": "Set6" + }, + { + "associatedCards": [], + "associatedCardRefs": [ + "04FR001" + ], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set6/en_us/img/cards/06FR030T2.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set6/en_us/img/cards/06FR030T2-full.png" + } + ], + "regions": [ + "Freljord" + ], + "regionRefs": [ + "Freljord" + ], + "attack": 2, + "cost": 2, + "health": 2, + "description": "Play: Summon a Frozen Thrall.", + "descriptionRaw": "Play: Summon a Frozen Thrall.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "The ice grows thin at daylight break,\nAnd with the thaw, Her servants wake.", + "artistName": "Kudos Productions", + "name": "Harbinger of Thralls", + "cardCode": "06FR030T2", + "keywords": [], + "keywordRefs": [], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "None", + "rarityRef": "None", + "subtypes": [], + "supertype": "", + "type": "Unit", + "collectible": false, + "set": "Set6" + }, + { + "associatedCards": [], + "associatedCardRefs": [ + "04FR001" + ], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set6/en_us/img/cards/06FR030T1.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set6/en_us/img/cards/06FR030T1-full.png" + } + ], + "regions": [ + "Freljord" + ], + "regionRefs": [ + "Freljord" + ], + "attack": 2, + "cost": 2, + "health": 2, + "description": "Play: Advance all your Frozen Thralls 1 round.", + "descriptionRaw": "Play: Advance all your Frozen Thralls 1 round.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "The ice grows thin at daylight break,\nAnd with the thaw, Her servants wake.", + "artistName": "Kudos Productions", + "name": "Harbinger of Thralls", + "cardCode": "06FR030T1", + "keywords": [], + "keywordRefs": [], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "None", + "rarityRef": "None", + "subtypes": [], + "supertype": "", + "type": "Unit", + "collectible": false, + "set": "Set6" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set6/en_us/img/cards/06FR037.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set6/en_us/img/cards/06FR037-full.png" + } + ], + "regions": [ + "Freljord" + ], + "regionRefs": [ + "Freljord" + ], + "attack": 0, + "cost": 1, + "health": 0, + "description": "Grant an enemy \"Frostbite me at the next Round Start.\"", + "descriptionRaw": "Grant an enemy \"Frostbite me at the next Round Start.\"", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "One must always test the ice before stepping onto it, no matter how thick it may look.", + "artistName": "Kudos Productions", + "name": "Cracking Ice", + "cardCode": "06FR037", + "keywords": [ + "Burst" + ], + "keywordRefs": [ + "Burst" + ], + "spellSpeed": "Burst", + "spellSpeedRef": "Burst", + "rarity": "COMMON", + "rarityRef": "Common", + "subtypes": [], + "supertype": "", + "type": "Spell", + "collectible": true, + "set": "Set6" + }, + { + "associatedCards": [], + "associatedCardRefs": [ + "06SI012T2", + "06SI012T1", + "06SI012T6" + ], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set6/en_us/img/cards/06SI012.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set6/en_us/img/cards/06SI012-full.png" + } + ], + "regions": [ + "Shadow Isles" + ], + "regionRefs": [ + "ShadowIsles" + ], + "attack": 3, + "cost": 4, + "health": 4, + "description": "Attack: When another ally gains power from Hallowed, so do I. Drain 2 from the enemy Nexus.", + "descriptionRaw": "Attack: When another ally gains power from Hallowed, so do I. Drain 2 from the enemy Nexus.", + "levelupDescription": "I have dealt 10+ damage. ", + "levelupDescriptionRaw": "I have dealt 10+ damage. ", + "flavorText": "Gwen snip-snip-snipped her way through the Black Mist, thinking it strange how completely it enveloped the area, and once she had, the enchanted manse stood out amongst the bleak woods like a beacon. Little wonder Gwen was drawn to it. How curious it was--but also, how grand!", + "artistName": "Kudos Productions", + "name": "Gwen", + "cardCode": "06SI012", + "keywords": [ + "Hallowed", + "Quick Attack" + ], + "keywordRefs": [ + "Hallowed", + "QuickStrike" + ], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "Champion", + "rarityRef": "Champion", + "subtypes": [], + "supertype": "Champion", + "type": "Unit", + "collectible": true, + "set": "Set6" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set6/en_us/img/cards/06SI012T6.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set6/en_us/img/cards/06SI012T6-full.png" + } + ], + "regions": [ + "Shadow Isles" + ], + "regionRefs": [ + "ShadowIsles" + ], + "attack": 0, + "cost": 0, + "health": 0, + "description": "Drain 2 from the enemy Nexus.", + "descriptionRaw": "Drain 2 from the enemy Nexus.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"To pieces!\" - Gwen", + "artistName": "Kudos Productions", + "name": "Snip Snip!", + "cardCode": "06SI012T6", + "keywords": [ + "Skill" + ], + "keywordRefs": [ + "Skill" + ], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "None", + "rarityRef": "None", + "subtypes": [], + "supertype": "", + "type": "Ability", + "collectible": false, + "set": "Set6" + }, + { + "associatedCards": [], + "associatedCardRefs": [ + "06SI012T1" + ], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set6/en_us/img/cards/06SI012T5.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set6/en_us/img/cards/06SI012T5-full.png" + } + ], + "regions": [ + "Shadow Isles" + ], + "regionRefs": [ + "ShadowIsles" + ], + "attack": 0, + "cost": 0, + "health": 0, + "description": "Drain 1 from the enemy Nexus one time for every 2 power Gwen has. (max 50 times)", + "descriptionRaw": "Drain 1 from the enemy Nexus one time for every 2 power Gwen has. (max 50 times)", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"To pieces!\" - Gwen", + "artistName": "Kudos Productions", + "name": "Snip Snip Snip!", + "cardCode": "06SI012T5", + "keywords": [ + "Skill" + ], + "keywordRefs": [ + "Skill" + ], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "None", + "rarityRef": "None", + "subtypes": [], + "supertype": "", + "type": "Ability", + "collectible": false, + "set": "Set6" + }, + { + "associatedCards": [], + "associatedCardRefs": [ + "06SI012T1", + "06SI012" + ], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set6/en_us/img/cards/06SI012T2.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set6/en_us/img/cards/06SI012T2-full.png" + } + ], + "regions": [ + "Shadow Isles" + ], + "regionRefs": [ + "ShadowIsles" + ], + "attack": 0, + "cost": 3, + "health": 0, + "description": "Kill an ally to deal damage equal to its Power to an enemy.\r\nCreate a Gwen in your deck.", + "descriptionRaw": "Kill an ally to deal damage equal to its Power to an enemy.\r\nCreate a Gwen in your deck.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"Needles out!\" - Gwen", + "artistName": "Kudos Productions", + "name": "Gwen's Thread the Needle", + "cardCode": "06SI012T2", + "keywords": [ + "Fast" + ], + "keywordRefs": [ + "Fast" + ], + "spellSpeed": "Fast", + "spellSpeedRef": "Fast", + "rarity": "None", + "rarityRef": "None", + "subtypes": [], + "supertype": "Champion", + "type": "Spell", + "collectible": false, + "set": "Set6" + }, + { + "associatedCards": [], + "associatedCardRefs": [ + "06SI012T2", + "06SI012", + "06SI012T5" + ], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set6/en_us/img/cards/06SI012T1.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set6/en_us/img/cards/06SI012T1-full.png" + } + ], + "regions": [ + "Shadow Isles" + ], + "regionRefs": [ + "ShadowIsles" + ], + "attack": 4, + "cost": 4, + "health": 5, + "description": "Attack: When another ally gains power from Hallowed, so do I. Drain 1 from the enemy Nexus one time for every 2 power I have.\r\n", + "descriptionRaw": "Attack: When another ally gains power from Hallowed, so do I. Drain 1 from the enemy Nexus one time for every 2 power I have.\r\n", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "She knew that the Black Mist must be driven back from wherever it had spread to, and the joy and light these spirits lent her efforts cut through it readily. If she could help their celebration in the meantime, all the better!", + "artistName": "Kudos Productions", + "name": "Gwen", + "cardCode": "06SI012T1", + "keywords": [ + "Hallowed", + "Quick Attack" + ], + "keywordRefs": [ + "Hallowed", + "QuickStrike" + ], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "None", + "rarityRef": "None", + "subtypes": [], + "supertype": "Champion", + "type": "Unit", + "collectible": false, + "set": "Set6" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set6/en_us/img/cards/06SI020.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set6/en_us/img/cards/06SI020-full.png" + } + ], + "regions": [ + "Shadow Isles" + ], + "regionRefs": [ + "ShadowIsles" + ], + "attack": 0, + "cost": 2, + "health": 0, + "description": "Kill an ally to deal 2 damage to a unit and summon a random Husk.", + "descriptionRaw": "Kill an ally to deal 2 damage to a unit and summon a random Husk.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"Be as loud as you like.\" - Evelynn", + "artistName": "Kudos Productions", + "name": "Hate Spike", + "cardCode": "06SI020", + "keywords": [ + "Fast" + ], + "keywordRefs": [ + "Fast" + ], + "spellSpeed": "Fast", + "spellSpeedRef": "Fast", + "rarity": "RARE", + "rarityRef": "Rare", + "subtypes": [], + "supertype": "", + "type": "Spell", + "collectible": true, + "set": "Set6" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set6/en_us/img/cards/06SI013.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set6/en_us/img/cards/06SI013-full.png" + } + ], + "regions": [ + "Shadow Isles" + ], + "regionRefs": [ + "ShadowIsles" + ], + "attack": 3, + "cost": 6, + "health": 6, + "description": "Attack: Revive an attacking Ephemeral copy of the strongest dead ally other than Eternal Dancers with my power or less.", + "descriptionRaw": "Attack: Revive an attacking Ephemeral copy of the strongest dead ally other than Eternal Dancers with my power or less.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "It's always easier to join someone on the dance floor than be the first person on it. The twins, however, are always delighted to show others how it's done.", + "artistName": "Kudos Productions", + "name": "Eternal Dancers", + "cardCode": "06SI013", + "keywords": [ + "Hallowed" + ], + "keywordRefs": [ + "Hallowed" + ], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "EPIC", + "rarityRef": "Epic", + "subtypes": [], + "supertype": "", + "type": "Unit", + "collectible": true, + "set": "Set6" + }, + { + "associatedCards": [], + "associatedCardRefs": [ + "01SI022", + "04SI002", + "03SI008" + ], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set6/en_us/img/cards/06SI037.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set6/en_us/img/cards/06SI037-full.png" + } + ], + "regions": [ + "Shadow Isles" + ], + "regionRefs": [ + "ShadowIsles" + ], + "attack": 0, + "cost": 1, + "health": 0, + "description": "Create a Fleeting Mark of the Isles, Spirit Journey, or Crumble in hand.", + "descriptionRaw": "Create a Fleeting Mark of the Isles, Spirit Journey, or Crumble in hand.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"Polished... decorations. Tokens... learn rules. Curious game. Breathtaking... unparalleled craftsmanship... unforgettable.\" - Recovered journal", + "artistName": "Kudos Productions", + "name": "Shadow Isles Tellstones", + "cardCode": "06SI037", + "keywords": [ + "Burst" + ], + "keywordRefs": [ + "Burst" + ], + "spellSpeed": "Burst", + "spellSpeedRef": "Burst", + "rarity": "RARE", + "rarityRef": "Rare", + "subtypes": [], + "supertype": "", + "type": "Spell", + "collectible": true, + "set": "Set6" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set6/en_us/img/cards/06SI040.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set6/en_us/img/cards/06SI040-full.png" + } + ], + "regions": [ + "Shadow Isles" + ], + "regionRefs": [ + "ShadowIsles" + ], + "attack": 0, + "cost": 4, + "health": 0, + "description": "Revive an Ephemeral copy of the strongest dead allied follower and give enemies -1|-0 this round.", + "descriptionRaw": "Revive an Ephemeral copy of the strongest dead allied follower and give enemies -1|-0 this round.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "Spirits can be banished for a time, but they always return.", + "artistName": "Kudos Productions", + "name": "Harrowing Return", + "cardCode": "06SI040", + "keywords": [ + "Slow" + ], + "keywordRefs": [ + "Slow" + ], + "spellSpeed": "Slow", + "spellSpeedRef": "Slow", + "rarity": "EPIC", + "rarityRef": "Epic", + "subtypes": [], + "supertype": "", + "type": "Spell", + "collectible": true, + "set": "Set6" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set6/en_us/img/cards/06SI009.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set6/en_us/img/cards/06SI009-full.png" + } + ], + "regions": [ + "Shadow Isles" + ], + "regionRefs": [ + "ShadowIsles" + ], + "attack": 2, + "cost": 1, + "health": 1, + "description": "", + "descriptionRaw": "", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "Their repertoire was impressive, from minuets and waltzes to ballads and folk songs, but truth be told, the party's guests were dying for something new.", + "artistName": "Kudos Productions", + "name": "Ghastly Band", + "cardCode": "06SI009", + "keywords": [ + "Hallowed", + "Ephemeral" + ], + "keywordRefs": [ + "Hallowed", + "Ephemeral" + ], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "None", + "rarityRef": "None", + "subtypes": [], + "supertype": "", + "type": "Unit", + "collectible": false, + "set": "Set6" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set6/en_us/img/cards/06SI027.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set6/en_us/img/cards/06SI027-full.png" + } + ], + "regions": [ + "Shadow Isles" + ], + "regionRefs": [ + "ShadowIsles" + ], + "attack": 0, + "cost": 3, + "health": 0, + "description": "Kill an ally to deal damage equal to its Power to an enemy.", + "descriptionRaw": "Kill an ally to deal damage equal to its Power to an enemy.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"Needles out!\" - Gwen", + "artistName": "Kudos Productions", + "name": "Thread the Needle", + "cardCode": "06SI027", + "keywords": [ + "Fast" + ], + "keywordRefs": [ + "Fast" + ], + "spellSpeed": "Fast", + "spellSpeedRef": "Fast", + "rarity": "COMMON", + "rarityRef": "Common", + "subtypes": [], + "supertype": "", + "type": "Spell", + "collectible": true, + "set": "Set6" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set6/en_us/img/cards/06SI018.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set6/en_us/img/cards/06SI018-full.png" + } + ], + "regions": [ + "Shadow Isles" + ], + "regionRefs": [ + "ShadowIsles" + ], + "attack": 3, + "cost": 3, + "health": 2, + "description": "When I'm summoned, summon a random Husk.", + "descriptionRaw": "When I'm summoned, summon a random Husk.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "Unlike other demons, who lure their victims in with false pretenses, Vora is too single-minded in her craving, too overwhelmed by desire. Rather than a predator who stalks her food, she is a wild beast who must be fed.", + "artistName": "Kudos Productions", + "name": "Vora", + "cardCode": "06SI018", + "keywords": [], + "keywordRefs": [], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "RARE", + "rarityRef": "Rare", + "subtypes": [], + "supertype": "", + "type": "Unit", + "collectible": true, + "set": "Set6" + }, + { + "associatedCards": [], + "associatedCardRefs": [ + "06SI009" + ], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set6/en_us/img/cards/06SI015.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set6/en_us/img/cards/06SI015-full.png" + } + ], + "regions": [ + "Shadow Isles" + ], + "regionRefs": [ + "ShadowIsles" + ], + "attack": 0, + "cost": 3, + "health": 0, + "description": "Summon two Ghastly Bands.", + "descriptionRaw": "Summon two Ghastly Bands.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"Keep it lively! Double-time!\" - Conductor of the Mists", + "artistName": "Kudos Productions", + "name": "Strike Up The Band", + "cardCode": "06SI015", + "keywords": [ + "Slow" + ], + "keywordRefs": [ + "Slow" + ], + "spellSpeed": "Slow", + "spellSpeedRef": "Slow", + "rarity": "COMMON", + "rarityRef": "Common", + "subtypes": [], + "supertype": "", + "type": "Spell", + "collectible": true, + "set": "Set6" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set6/en_us/img/cards/06SI030.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set6/en_us/img/cards/06SI030-full.png" + } + ], + "regions": [ + "Shadow Isles" + ], + "regionRefs": [ + "ShadowIsles" + ], + "attack": 0, + "cost": 3, + "health": 0, + "description": "Create copies in hand of 2 allied followers that have died this game.", + "descriptionRaw": "Create copies in hand of 2 allied followers that have died this game.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"Here we are, dear. I hear tonight will be quite a splendid affair, and I suspect we'll see many familiar faces!\" - Ghostly Reveler", + "artistName": "Kudos Productions", + "name": "Formal Invitation", + "cardCode": "06SI030", + "keywords": [ + "Burst" + ], + "keywordRefs": [ + "Burst" + ], + "spellSpeed": "Burst", + "spellSpeedRef": "Burst", + "rarity": "RARE", + "rarityRef": "Rare", + "subtypes": [], + "supertype": "", + "type": "Spell", + "collectible": true, + "set": "Set6" + }, + { + "associatedCards": [], + "associatedCardRefs": [ + "06SI009" + ], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set6/en_us/img/cards/06SI026.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set6/en_us/img/cards/06SI026-full.png" + } + ], + "regions": [ + "Shadow Isles" + ], + "regionRefs": [ + "ShadowIsles" + ], + "attack": 4, + "cost": 3, + "health": 2, + "description": "Last Breath: Create a Ghastly Band in hand.", + "descriptionRaw": "Last Breath: Create a Ghastly Band in hand.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"Play on, my friends! We will have a livelier concert than ever before!\"", + "artistName": "Kudos Productions", + "name": "Conductor Of The Mists", + "cardCode": "06SI026", + "keywords": [ + "Last Breath", + "Hallowed" + ], + "keywordRefs": [ + "LastBreath", + "Hallowed" + ], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "RARE", + "rarityRef": "Rare", + "subtypes": [], + "supertype": "", + "type": "Unit", + "collectible": true, + "set": "Set6" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set6/en_us/img/cards/06SI033.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set6/en_us/img/cards/06SI033-full.png" + } + ], + "regions": [ + "Shadow Isles" + ], + "regionRefs": [ + "ShadowIsles" + ], + "attack": 0, + "cost": 3, + "health": 0, + "description": "Countdown 2: Revive the strongest dead ally.", + "descriptionRaw": "Countdown 2: Revive the strongest dead ally.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "The sound of sword on shield was like a death knell, and it drew forth spirits whose tethers to the world had not quite been cut, whose will could not be quelled even in death.", + "artistName": "Kudos Productions", + "name": "Haunted Tomb", + "cardCode": "06SI033", + "keywords": [ + "Landmark", + "Countdown" + ], + "keywordRefs": [ + "LandmarkVisualOnly", + "Countdown" + ], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "EPIC", + "rarityRef": "Epic", + "subtypes": [], + "supertype": "", + "type": "Landmark", + "collectible": true, + "set": "Set6" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set6/en_us/img/cards/06SI016.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set6/en_us/img/cards/06SI016-full.png" + } + ], + "regions": [ + "Shadow Isles" + ], + "regionRefs": [ + "ShadowIsles" + ], + "attack": 2, + "cost": 1, + "health": 1, + "description": "", + "descriptionRaw": "", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"We CORDIALLY INVITE you to the party of a lifetime at THE MIDNIGHT REVEL. Join us in celebration at PORCELAIN MANSE for drink, dance, and delight! (Celebrations to end promptly at the 13th hour)\" \n- An invitation written in elegant cursive", + "artistName": "Kudos Productions", + "name": "Boisterous Host", + "cardCode": "06SI016", + "keywords": [ + "Hallowed" + ], + "keywordRefs": [ + "Hallowed" + ], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "RARE", + "rarityRef": "Rare", + "subtypes": [], + "supertype": "", + "type": "Unit", + "collectible": true, + "set": "Set6" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set6/en_us/img/cards/06SI028.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set6/en_us/img/cards/06SI028-full.png" + } + ], + "regions": [ + "Shadow Isles" + ], + "regionRefs": [ + "ShadowIsles" + ], + "attack": 3, + "cost": 2, + "health": 1, + "description": "", + "descriptionRaw": "", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "What would a fancy party be without fancy refreshments?", + "artistName": "Kudos Productions", + "name": "Phantom Butler", + "cardCode": "06SI028", + "keywords": [ + "Hallowed", + "Fearsome" + ], + "keywordRefs": [ + "Hallowed", + "Fearsome" + ], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "COMMON", + "rarityRef": "Common", + "subtypes": [], + "supertype": "", + "type": "Unit", + "collectible": true, + "set": "Set6" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set6/en_us/img/cards/06SI043.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set6/en_us/img/cards/06SI043-full.png" + } + ], + "regions": [ + "Shadow Isles" + ], + "regionRefs": [ + "ShadowIsles" + ], + "attack": 0, + "cost": 3, + "health": 0, + "description": "Toss 3.\r\nDrain 2 from a unit.", + "descriptionRaw": "Toss 3.\r\nDrain 2 from a unit.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "Even in the Shadow Isles, old growth still finds new purpose.", + "artistName": "Kudos Productions", + "name": "Undergrowth", + "cardCode": "06SI043", + "keywords": [ + "Fast" + ], + "keywordRefs": [ + "Fast" + ], + "spellSpeed": "Fast", + "spellSpeedRef": "Fast", + "rarity": "COMMON", + "rarityRef": "Common", + "subtypes": [], + "supertype": "", + "type": "Spell", + "collectible": true, + "set": "Set6" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set6/en_us/img/cards/06SI022.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set6/en_us/img/cards/06SI022-full.png" + } + ], + "regions": [ + "Shadow Isles" + ], + "regionRefs": [ + "ShadowIsles" + ], + "attack": 3, + "cost": 4, + "health": 3, + "description": "", + "descriptionRaw": "", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "Whether he was a ghost, a memory, or a dream, something about him was familiar...", + "artistName": "Kudos Productions", + "name": "Ghostly Paramour", + "cardCode": "06SI022", + "keywords": [ + "Hallowed", + "Lifesteal" + ], + "keywordRefs": [ + "Hallowed", + "Lifesteal" + ], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "COMMON", + "rarityRef": "Common", + "subtypes": [], + "supertype": "", + "type": "Unit", + "collectible": true, + "set": "Set6" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set6/en_us/img/cards/06SI019.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set6/en_us/img/cards/06SI019-full.png" + } + ], + "regions": [ + "Shadow Isles" + ], + "regionRefs": [ + "ShadowIsles" + ], + "attack": 1, + "cost": 2, + "health": 3, + "description": "When I'm summoned, summon a random Husk.", + "descriptionRaw": "When I'm summoned, summon a random Husk.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"Beware those who smile on these haunted isles. Perhaps they are too newly arrived to understand the brutality of this place. Perhaps they are crazed. Perhaps they are something else entirely. But beware.\"\n- Notes from Jens Tommen", + "artistName": "Kudos Productions", + "name": "Sultur", + "cardCode": "06SI019", + "keywords": [], + "keywordRefs": [], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "COMMON", + "rarityRef": "Common", + "subtypes": [], + "supertype": "", + "type": "Unit", + "collectible": true, + "set": "Set6" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set6/en_us/img/cards/06PZ032.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set6/en_us/img/cards/06PZ032-full.png" + } + ], + "regions": [ + "Piltover & Zaun" + ], + "regionRefs": [ + "PiltoverZaun" + ], + "attack": 0, + "cost": 7, + "health": 0, + "description": "Pick one of two new 2 cost spells to create in hand and set its cost to 0 this round. Repeat two more times.", + "descriptionRaw": "Pick one of two new 2 cost spells to create in hand and set its cost to 0 this round. Repeat two more times.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "Zaun's first songspinner was surprisingly reliable. The only downside was that nobody could figure out how to control the volume.", + "artistName": "Kudos Productions", + "name": "Sputtering Songspinner", + "cardCode": "06PZ032", + "keywords": [ + "Burst" + ], + "keywordRefs": [ + "Burst" + ], + "spellSpeed": "Burst", + "spellSpeedRef": "Burst", + "rarity": "EPIC", + "rarityRef": "Epic", + "subtypes": [], + "supertype": "", + "type": "Spell", + "collectible": true, + "set": "Set6" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set6/en_us/img/cards/06PZ042.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set6/en_us/img/cards/06PZ042-full.png" + } + ], + "regions": [ + "Piltover & Zaun" + ], + "regionRefs": [ + "PiltoverZaun" + ], + "attack": 4, + "cost": 4, + "health": 4, + "description": "Play: Pick a card in hand. Create 4 exact copies of it in your deck and reduce their costs by 1.", + "descriptionRaw": "Play: Pick a card in hand. Create 4 exact copies of it in your deck and reduce their costs by 1.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"Well, all I'm gonna say about today is that things could have gone better. Gonna leave it at that. Future me... you know what we did.\"\n- Kay's diary", + "artistName": "Kudos Productions", + "name": "Evil Imperfectionist", + "cardCode": "06PZ042", + "keywords": [], + "keywordRefs": [], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "EPIC", + "rarityRef": "Epic", + "subtypes": [], + "supertype": "", + "type": "Unit", + "collectible": true, + "set": "Set6" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set6/en_us/img/cards/06PZ025.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set6/en_us/img/cards/06PZ025-full.png" + } + ], + "regions": [ + "Piltover & Zaun" + ], + "regionRefs": [ + "PiltoverZaun" + ], + "attack": 4, + "cost": 5, + "health": 4, + "description": "When I'm summoned, summon a random Husk.\r\nWhen you summon a 1 cost ally, grant it a random keyword.", + "descriptionRaw": "When I'm summoned, summon a random Husk.\r\nWhen you summon a 1 cost ally, grant it a random keyword.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"On my walk home from the Entresol, I saw again that poor vagabond sobbing in a small alleyway. That so many veer around her so pointedly breaks my heart as much as her own palpable dismay. So, tomorrow, should we cross paths again, I will endeavor to help her in any way I can.\"\n- Notes from Lady Sempescu's diary", + "artistName": "Kudos Productions", + "name": "Solitude", + "cardCode": "06PZ025", + "keywords": [], + "keywordRefs": [], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "RARE", + "rarityRef": "Rare", + "subtypes": [], + "supertype": "", + "type": "Unit", + "collectible": true, + "set": "Set6" + }, + { + "associatedCards": [], + "associatedCardRefs": [ + "03PZ011", + "01PZ005", + "01PZ049" + ], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set6/en_us/img/cards/06PZ043.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set6/en_us/img/cards/06PZ043-full.png" + } + ], + "regions": [ + "Piltover & Zaun" + ], + "regionRefs": [ + "PiltoverZaun" + ], + "attack": 0, + "cost": 1, + "health": 0, + "description": "Create a Fleeting Aftershock, Hextech Transmogulator, or Progress Day! in hand.", + "descriptionRaw": "Create a Fleeting Aftershock, Hextech Transmogulator, or Progress Day! in hand.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"You won't find a finer set of pieces anywhere in the world, good sir. My daughter put her heart into every last detail.\" - Corin Reveck ", + "artistName": "Kudos Productions", + "name": "Piltovan Tellstones", + "cardCode": "06PZ043", + "keywords": [ + "Burst" + ], + "keywordRefs": [ + "Burst" + ], + "spellSpeed": "Burst", + "spellSpeedRef": "Burst", + "rarity": "RARE", + "rarityRef": "Rare", + "subtypes": [], + "supertype": "", + "type": "Spell", + "collectible": true, + "set": "Set6" + }, + { + "associatedCards": [], + "associatedCardRefs": [ + "01PZ030", + "01PZ044" + ], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set6/en_us/img/cards/06PZ027.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set6/en_us/img/cards/06PZ027-full.png" + } + ], + "regions": [ + "Piltover & Zaun" + ], + "regionRefs": [ + "PiltoverZaun" + ], + "attack": 0, + "cost": 2, + "health": 0, + "description": "Create a Fleeting Shady Character or Chempunk Shredder in hand and reduce its cost by 1.", + "descriptionRaw": "Create a Fleeting Shady Character or Chempunk Shredder in hand and reduce its cost by 1.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "Zaun's best night life is invite-only. If you're not in the band, you've gotta really be somebody to snag a spot. Or find a ticket on the ground.", + "artistName": "Kudos Productions", + "name": "Discreet Invitation", + "cardCode": "06PZ027", + "keywords": [ + "Burst" + ], + "keywordRefs": [ + "Burst" + ], + "spellSpeed": "Burst", + "spellSpeedRef": "Burst", + "rarity": "COMMON", + "rarityRef": "Common", + "subtypes": [], + "supertype": "", + "type": "Spell", + "collectible": true, + "set": "Set6" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set6/en_us/img/cards/06PZ038.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set6/en_us/img/cards/06PZ038-full.png" + } + ], + "regions": [ + "Piltover & Zaun" + ], + "regionRefs": [ + "PiltoverZaun" + ], + "attack": 0, + "cost": 3, + "health": 0, + "description": "Grant an ally Elusive and \"Nexus Strike: Draw 1.\"", + "descriptionRaw": "Grant an ally Elusive and \"Nexus Strike: Draw 1.\"", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"You guys won't BELIEVE what I found today!\" - Sumpsnipe Scavenger", + "artistName": "Kudos Productions", + "name": "Scavenged Camocloaker", + "cardCode": "06PZ038", + "keywords": [ + "Burst" + ], + "keywordRefs": [ + "Burst" + ], + "spellSpeed": "Burst", + "spellSpeedRef": "Burst", + "rarity": "COMMON", + "rarityRef": "Common", + "subtypes": [], + "supertype": "", + "type": "Spell", + "collectible": true, + "set": "Set6" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/3_11_0/set6/en_us/img/cards/06PZ039.png", + "fullAbsolutePath": "http://dd.b.pvp.net/3_11_0/set6/en_us/img/cards/06PZ039-full.png" + } + ], + "regions": [ + "Piltover & Zaun" + ], + "regionRefs": [ + "PiltoverZaun" + ], + "attack": 0, + "cost": 2, + "health": 0, + "description": "To play, discard up to 2 cards. Create that many followers from your regions that cost 1 more and reduce their costs by 1.", + "descriptionRaw": "To play, discard up to 2 cards. Create that many followers from your regions that cost 1 more and reduce their costs by 1.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "Down in the depths of Zaun, the locals are forced to turn the scraps and the dregs they salvage into workable material. After decades of practice, they've become rather good at it.", + "artistName": "Kudos Productions", + "name": "Salvaged Scrap", + "cardCode": "06PZ039", + "keywords": [ + "Burst" + ], + "keywordRefs": [ + "Burst" + ], + "spellSpeed": "Burst", + "spellSpeedRef": "Burst", + "rarity": "RARE", + "rarityRef": "Rare", + "subtypes": [], + "supertype": "", + "type": "Spell", + "collectible": true, + "set": "Set6" + } +] \ No newline at end of file diff --git a/data/set6-en_us/metadata.json b/data/set6-en_us/metadata.json new file mode 100644 index 0000000..73ddb2d --- /dev/null +++ b/data/set6-en_us/metadata.json @@ -0,0 +1,5 @@ +{ + "locales": [ + "en_us" + ] +} \ No newline at end of file diff --git a/data/set6cde-en_us/COPYRIGHT b/data/set6cde-en_us/COPYRIGHT new file mode 100644 index 0000000..095081a --- /dev/null +++ b/data/set6cde-en_us/COPYRIGHT @@ -0,0 +1 @@ +Copyright Riot Games, Inc. 2019 \ No newline at end of file diff --git a/data/set6cde-en_us/README.md b/data/set6cde-en_us/README.md new file mode 100644 index 0000000..378a7b6 --- /dev/null +++ b/data/set6cde-en_us/README.md @@ -0,0 +1,40 @@ +metadata.json +{ + "locales": ["{string}", ...], + "clientHash": "{string}" + "gameplayDataHash": "{string}", + "timestamp": "{YYYYMMDDhhmm}", + "patchlineRef": "{string}" +} + +cards.json +[ + { + "id": "{cardCode}", + "idComponents": + { + "set": "setNumber", + "region": + { + "id": "{shortRegionCode}", + "name": "{regionName}" + } + } + "name": "{name}", + "type": "{type}", + "subType": "{subType}", + "superType": "{superType}", + "description": "{description}", + "keywords": [], + "associatedCards": [{cardCode}, ...] + "health": "{health}", + "attack": "{attack}", + "cost": "{cost}", + "assets": + { + "gameAbsolutePath": "http://{cdn}/{bundleName}/set1/en_us/img/card/game/{cardCode}.png" + } + + }, + {...} +] diff --git a/data/set6cde-en_us/en_us/data/set6cde-en_us.json b/data/set6cde-en_us/en_us/data/set6cde-en_us.json new file mode 100644 index 0000000..8d8e841 --- /dev/null +++ b/data/set6cde-en_us/en_us/data/set6cde-en_us.json @@ -0,0 +1,12056 @@ +[ + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/4_0_0/set6cde/en_us/img/cards/06NX022.png", + "fullAbsolutePath": "http://dd.b.pvp.net/4_0_0/set6cde/en_us/img/cards/06NX022-full.png" + } + ], + "regions": [ + "Noxus" + ], + "regionRefs": [ + "Noxus" + ], + "attack": 0, + "cost": 2, + "health": 0, + "description": "Draw an ally with 5+ Power, or grow an ally to 5 Power this round.", + "descriptionRaw": "Draw an ally with 5+ Power, or grow an ally to 5 Power this round.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"Few are given the opportunity to serve in the Trifarian Legion. Do not squander this chance.\" - Trifarian Assessor", + "artistName": "Kudos Productions", + "name": "Legionary Charge", + "cardCode": "06NX022", + "keywords": [ + "Burst" + ], + "keywordRefs": [ + "Burst" + ], + "spellSpeed": "Burst", + "spellSpeedRef": "Burst", + "rarity": "EPIC", + "rarityRef": "Epic", + "subtypes": [], + "supertype": "", + "type": "Spell", + "collectible": true, + "set": "Set6cde" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/4_0_0/set6cde/en_us/img/cards/06NX019.png", + "fullAbsolutePath": "http://dd.b.pvp.net/4_0_0/set6cde/en_us/img/cards/06NX019-full.png" + } + ], + "regions": [ + "Noxus" + ], + "regionRefs": [ + "Noxus" + ], + "attack": 2, + "cost": 4, + "health": 4, + "description": " Attack: Grow my Power to that of the strongest equipped ally this round.", + "descriptionRaw": " Attack: Grow my Power to that of the strongest equipped ally this round.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "“Been having dreams again, hearing that voice in the dark. Ten years... a whole bloody decade spent as the empire's obedient dog. Go there. Kill that. And for what? The glory of Noxus? Glory’s a pretty lie, and I fell for it. But no more. Kayn’s shown me a different path, and it leads to vengeance.”\n- Royce, The Butcher’s journal", + "artistName": "Kudos Productions", + "name": "Noxian Defector", + "cardCode": "06NX019", + "keywords": [ + "Quick Attack" + ], + "keywordRefs": [ + "QuickStrike" + ], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "COMMON", + "rarityRef": "Common", + "subtypes": [ + "CULTIST" + ], + "supertype": "", + "type": "Unit", + "collectible": true, + "set": "Set6cde" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/4_0_0/set6cde/en_us/img/cards/06NX020T1.png", + "fullAbsolutePath": "http://dd.b.pvp.net/4_0_0/set6cde/en_us/img/cards/06NX020T1-full.png" + } + ], + "regions": [ + "Noxus" + ], + "regionRefs": [ + "Noxus" + ], + "attack": 5, + "cost": 8, + "health": 13, + "description": "Round End: The Strongest enemy and I strike each other.", + "descriptionRaw": "Round End: The Strongest enemy and I strike each other.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "Ancient muscles flexed once more. The warrior heard her general's call, and knew where she was needed--south, in the lands she once known as Icathia.", + "artistName": "Kudos Productions", + "name": "Naganeka of Zuretta", + "cardCode": "06NX020T1", + "keywords": [ + "Overwhelm" + ], + "keywordRefs": [ + "Overwhelm" + ], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "None", + "rarityRef": "None", + "subtypes": [ + "DARKIN" + ], + "supertype": "", + "type": "Unit", + "collectible": false, + "set": "Set6cde" + }, + { + "associatedCards": [], + "associatedCardRefs": [ + "06NX020T1" + ], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/4_0_0/set6cde/en_us/img/cards/06NX020T5.png", + "fullAbsolutePath": "http://dd.b.pvp.net/4_0_0/set6cde/en_us/img/cards/06NX020T5-full.png" + } + ], + "regions": [ + "Noxus" + ], + "regionRefs": [ + "Noxus" + ], + "attack": 0, + "cost": 1, + "health": 0, + "description": "", + "descriptionRaw": "", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "The steppes of eastern Valoran were known to be barren, unfit to feed or home the Noxii people. But as the centuries fell by, a new empire was founded, hungry for expansion. Fallow lands found new fertility under new farming techniques, and weapons once thought safely buried become uncovered once again.", + "artistName": "Kudos Productions", + "name": "The Darkin Ballista", + "cardCode": "06NX020T5", + "keywords": [ + "Equipment" + ], + "keywordRefs": [ + "Equipment" + ], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "None", + "rarityRef": "None", + "subtypes": [ + "DARKIN" + ], + "supertype": "", + "type": "Equipment", + "collectible": false, + "set": "Set6cde" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/4_0_0/set6cde/en_us/img/cards/06NX022T1.png", + "fullAbsolutePath": "http://dd.b.pvp.net/4_0_0/set6cde/en_us/img/cards/06NX022T1-full.png" + } + ], + "regions": [ + "Noxus" + ], + "regionRefs": [ + "Noxus" + ], + "attack": 0, + "cost": 2, + "health": 0, + "description": "Draw an ally with 5+ Power.", + "descriptionRaw": "Draw an ally with 5+ Power.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"Few are given the opportunity to serve in the Trifarian Legion. Do not squander this chance.\" - Trifarian Assessor", + "artistName": "Kudos Productions", + "name": "Legionary Charge", + "cardCode": "06NX022T1", + "keywords": [ + "Burst" + ], + "keywordRefs": [ + "Burst" + ], + "spellSpeed": "Burst", + "spellSpeedRef": "Burst", + "rarity": "None", + "rarityRef": "None", + "subtypes": [], + "supertype": "", + "type": "Spell", + "collectible": false, + "set": "Set6cde" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/4_0_0/set6cde/en_us/img/cards/06NX022T2.png", + "fullAbsolutePath": "http://dd.b.pvp.net/4_0_0/set6cde/en_us/img/cards/06NX022T2-full.png" + } + ], + "regions": [ + "Noxus" + ], + "regionRefs": [ + "Noxus" + ], + "attack": 0, + "cost": 2, + "health": 0, + "description": "Grow an ally to 5 Power this round.", + "descriptionRaw": "Grow an ally to 5 Power this round.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"Few are given the opportunity to serve in the Trifarian Legion. Do not squander this chance.\" - Trifarian Assessor", + "artistName": "Kudos Productions", + "name": "Legionary Charge", + "cardCode": "06NX022T2", + "keywords": [ + "Burst" + ], + "keywordRefs": [ + "Burst" + ], + "spellSpeed": "Burst", + "spellSpeedRef": "Burst", + "rarity": "None", + "rarityRef": "None", + "subtypes": [], + "supertype": "", + "type": "Spell", + "collectible": false, + "set": "Set6cde" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/4_0_0/set6cde/en_us/img/cards/06NX023.png", + "fullAbsolutePath": "http://dd.b.pvp.net/4_0_0/set6cde/en_us/img/cards/06NX023-full.png" + } + ], + "regions": [ + "Noxus", + "Ionia" + ], + "regionRefs": [ + "Noxus", + "Ionia" + ], + "attack": 0, + "cost": 2, + "health": 1, + "description": "When I'm summoned, I Improvise.", + "descriptionRaw": "When I'm summoned, I Improvise.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "Trisk’s life was turned upside down when, during what would be her last fishing tournament, she somehow managed to fish up a sputtering Jax. He refuses to discuss the incident, but the sea monster Trisk rescued him from gets bigger each time she retells it.", + "artistName": "Envar Studio", + "name": "Ionian Hookmaster", + "cardCode": "06NX023", + "keywords": [], + "keywordRefs": [], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "COMMON", + "rarityRef": "Common", + "subtypes": [ + "WEAPONMASTER" + ], + "supertype": "", + "type": "Unit", + "collectible": true, + "set": "Set6cde" + }, + { + "associatedCards": [], + "associatedCardRefs": [ + "06NX020T1" + ], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/4_0_0/set6cde/en_us/img/cards/06NX020.png", + "fullAbsolutePath": "http://dd.b.pvp.net/4_0_0/set6cde/en_us/img/cards/06NX020-full.png" + } + ], + "regions": [ + "Noxus" + ], + "regionRefs": [ + "Noxus" + ], + "attack": 0, + "cost": 1, + "health": 0, + "description": "You may spend 8 mana to play me as Naganeka of Zuretta.", + "descriptionRaw": "You may spend 8 mana to play me as Naganeka of Zuretta.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "The steppes of eastern Valoran were known to be barren, unfit to feed or home the Noxii people. But as the centuries fell by, a new empire was founded, hungry for expansion. Fallow lands found new fertility under new farming techniques, and weapons once thought safely buried become uncovered once again.", + "artistName": "Kudos Productions", + "name": "The Darkin Ballista", + "cardCode": "06NX020", + "keywords": [ + "Equipment" + ], + "keywordRefs": [ + "Equipment" + ], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "EPIC", + "rarityRef": "Epic", + "subtypes": [ + "DARKIN" + ], + "supertype": "", + "type": "Equipment", + "collectible": true, + "set": "Set6cde" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/4_0_0/set6cde/en_us/img/cards/06NX041.png", + "fullAbsolutePath": "http://dd.b.pvp.net/4_0_0/set6cde/en_us/img/cards/06NX041-full.png" + } + ], + "regions": [ + "Noxus" + ], + "regionRefs": [ + "Noxus" + ], + "attack": 2, + "cost": 1, + "health": 2, + "description": "Support: Deal 1 to my supported ally to grant me +1|+1.", + "descriptionRaw": "Support: Deal 1 to my supported ally to grant me +1|+1.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"It's rather fun, feeding the birds. I wagered with poor Feoward that they'd sup blood as keenly as a Bordent basilisk, and lo and behold: the pigeons are Noxian indeed!\" - Edvin Cortain, Crimson Curator", + "artistName": "Kudos Productions", + "name": "Crimson Pigeon", + "cardCode": "06NX041", + "keywords": [ + "Support" + ], + "keywordRefs": [ + "Support" + ], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "EPIC", + "rarityRef": "Epic", + "subtypes": [], + "supertype": "", + "type": "Unit", + "collectible": true, + "set": "Set6cde" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/4_0_0/set6cde/en_us/img/cards/06NX039.png", + "fullAbsolutePath": "http://dd.b.pvp.net/4_0_0/set6cde/en_us/img/cards/06NX039-full.png" + } + ], + "regions": [ + "Noxus" + ], + "regionRefs": [ + "Noxus" + ], + "attack": 0, + "cost": 3, + "health": 0, + "description": "Deal 2 to an ally to give allies +2|+0 this round.", + "descriptionRaw": "Deal 2 to an ally to give allies +2|+0 this round.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"It's not a feast until someone starts screaming. So scream, boy.\" - Vladimir", + "artistName": "Kudos Productions", + "name": "Reveler's Feast", + "cardCode": "06NX039", + "keywords": [ + "Burst" + ], + "keywordRefs": [ + "Burst" + ], + "spellSpeed": "Burst", + "spellSpeedRef": "Burst", + "rarity": "COMMON", + "rarityRef": "Common", + "subtypes": [], + "supertype": "", + "type": "Spell", + "collectible": true, + "set": "Set6cde" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/4_0_0/set6cde/en_us/img/cards/06NX026.png", + "fullAbsolutePath": "http://dd.b.pvp.net/4_0_0/set6cde/en_us/img/cards/06NX026-full.png" + } + ], + "regions": [ + "Noxus" + ], + "regionRefs": [ + "Noxus" + ], + "attack": 0, + "cost": 2, + "health": 0, + "description": "", + "descriptionRaw": "", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "Vessid isn't the Bordent's fastest Reckoner, but when his great hammers find their target, there's never much of an opponent left to fight back.", + "artistName": "Kudos Productions", + "name": "Great Hammers", + "cardCode": "06NX026", + "keywords": [ + "Equipment", + "Overwhelm" + ], + "keywordRefs": [ + "Equipment", + "Overwhelm" + ], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "COMMON", + "rarityRef": "Common", + "subtypes": [], + "supertype": "", + "type": "Equipment", + "collectible": true, + "set": "Set6cde" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/4_0_0/set6cde/en_us/img/cards/06NX034.png", + "fullAbsolutePath": "http://dd.b.pvp.net/4_0_0/set6cde/en_us/img/cards/06NX034-full.png" + } + ], + "regions": [ + "Noxus" + ], + "regionRefs": [ + "Noxus" + ], + "attack": 0, + "cost": 4, + "health": 0, + "description": "An Equipped ally strikes an enemy.", + "descriptionRaw": "An Equipped ally strikes an enemy.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"Brothers in blood, once again!\" - Noxian Defector", + "artistName": "Kudos Productions", + "name": "Furious Wielder", + "cardCode": "06NX034", + "keywords": [ + "Fast" + ], + "keywordRefs": [ + "Fast" + ], + "spellSpeed": "Fast", + "spellSpeedRef": "Fast", + "rarity": "RARE", + "rarityRef": "Rare", + "subtypes": [ + "CULTIST" + ], + "supertype": "", + "type": "Spell", + "collectible": true, + "set": "Set6cde" + }, + { + "associatedCards": [], + "associatedCardRefs": [ + "03NX012", + "03NX008", + "03NX010", + "03NX011" + ], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/4_0_0/set6cde/en_us/img/cards/06NX036.png", + "fullAbsolutePath": "http://dd.b.pvp.net/4_0_0/set6cde/en_us/img/cards/06NX036-full.png" + } + ], + "regions": [ + "Noxus" + ], + "regionRefs": [ + "Noxus" + ], + "attack": 2, + "cost": 2, + "health": 1, + "description": "When I'm summoned, Reforge.", + "descriptionRaw": "When I'm summoned, Reforge.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "For months, he'd slogged through the cold and the rain, a thankless task with no end in sight. And yet the end came. Finally, he would make something of himself.", + "artistName": "Kudos Productions", + "name": "Rune Squire", + "cardCode": "06NX036", + "keywords": [ + "Challenger" + ], + "keywordRefs": [ + "Challenger" + ], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "COMMON", + "rarityRef": "Common", + "subtypes": [], + "supertype": "", + "type": "Unit", + "collectible": true, + "set": "Set6cde" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/4_0_0/set6cde/en_us/img/cards/06NX027.png", + "fullAbsolutePath": "http://dd.b.pvp.net/4_0_0/set6cde/en_us/img/cards/06NX027-full.png" + } + ], + "regions": [ + "Noxus" + ], + "regionRefs": [ + "Noxus" + ], + "attack": 0, + "cost": 3, + "health": 0, + "description": "Destroy an enemy's equipment. An ally and that enemy strike each other.", + "descriptionRaw": "Destroy an enemy's equipment. An ally and that enemy strike each other.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"One two, watch him scream,\nThe soldier's caught on fi-re,\nthree four, watch him burn,\nTibbers wants a py-re!\" - Annie", + "artistName": "Kudos Productions", + "name": "Brutal Skirmish", + "cardCode": "06NX027", + "keywords": [ + "Fast" + ], + "keywordRefs": [ + "Fast" + ], + "spellSpeed": "Fast", + "spellSpeedRef": "Fast", + "rarity": "RARE", + "rarityRef": "Rare", + "subtypes": [], + "supertype": "", + "type": "Spell", + "collectible": true, + "set": "Set6cde" + }, + { + "associatedCards": [], + "associatedCardRefs": [ + "06RU008T6", + "06RU008T5", + "06RU008T8", + "06RU008T7" + ], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/4_0_0/set6cde/en_us/img/cards/06RU008.png", + "fullAbsolutePath": "http://dd.b.pvp.net/4_0_0/set6cde/en_us/img/cards/06RU008-full.png" + } + ], + "regions": [ + "Runeterra" + ], + "regionRefs": [ + "Runeterra" + ], + "attack": 3, + "cost": 2, + "health": 2, + "description": "Origin: Grandmaster at Arms.\r\nAuto-Equip: The Light of Icathia.", + "descriptionRaw": "Origin: Grandmaster at Arms.\r\nAuto-Equip: The Light of Icathia.", + "levelupDescription": "Equipped allies have struck for 12+ damage. ", + "levelupDescriptionRaw": "Equipped allies have struck for 12+ damage. ", + "flavorText": "Centuries ago, Jax lost his homeland to the Void. Now, he travels the world, searching for warriors with the strength of will--and the sheer gall--to one day stand against that terrible foe.", + "artistName": "Envar Studio", + "name": "Jax", + "cardCode": "06RU008", + "keywords": [], + "keywordRefs": [], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "Champion", + "rarityRef": "Champion", + "subtypes": [ + "WEAPONMASTER" + ], + "supertype": "Champion", + "type": "Unit", + "collectible": true, + "set": "Set6cde" + }, + { + "associatedCards": [], + "associatedCardRefs": [ + "06RU008", + "06RU008T6" + ], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/4_0_0/set6cde/en_us/img/cards/06RU008T6.png", + "fullAbsolutePath": "http://dd.b.pvp.net/4_0_0/set6cde/en_us/img/cards/06RU008T6-full.png" + } + ], + "regions": [ + "Runeterra" + ], + "regionRefs": [ + "Runeterra" + ], + "attack": 0, + "cost": 1, + "health": 0, + "description": "If Jax has leveled, The Light of Icathia has Overwhelm.", + "descriptionRaw": "If Jax has leveled, The Light of Icathia has Overwhelm.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"It's a stick with a heavy bit at the end. Weapon enough for me.\" - Jax", + "artistName": "Kudos Productions ", + "name": "The Light of Icathia", + "cardCode": "06RU008T6", + "keywords": [ + "Equipment", + "Quick Attack" + ], + "keywordRefs": [ + "Equipment", + "QuickStrike" + ], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "None", + "rarityRef": "None", + "subtypes": [], + "supertype": "", + "type": "Equipment", + "collectible": false, + "set": "Set6cde" + }, + { + "associatedCards": [], + "associatedCardRefs": [ + "06RU008T6", + "06RU008T8", + "06RU008" + ], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/4_0_0/set6cde/en_us/img/cards/06RU008T7.png", + "fullAbsolutePath": "http://dd.b.pvp.net/4_0_0/set6cde/en_us/img/cards/06RU008T7-full.png" + } + ], + "regions": [ + "Runeterra" + ], + "regionRefs": [ + "Runeterra" + ], + "attack": 4, + "cost": 2, + "health": 3, + "description": "Auto-Equip The Light of Icathia.\r\nAttack: Give me +1|+1 for each equipped ally this round.", + "descriptionRaw": "Auto-Equip The Light of Icathia.\r\nAttack: Give me +1|+1 for each equipped ally this round.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"Icathia's been quiet a long time. But while I'm still standin', her people's roar will echo forever!\" - Jax", + "artistName": "Envar Studio", + "name": "Jax", + "cardCode": "06RU008T7", + "keywords": [], + "keywordRefs": [], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "None", + "rarityRef": "None", + "subtypes": [ + "WEAPONMASTER" + ], + "supertype": "Champion", + "type": "Unit", + "collectible": false, + "set": "Set6cde" + }, + { + "associatedCards": [], + "associatedCardRefs": [ + "06RU008" + ], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/4_0_0/set6cde/en_us/img/cards/06RU008T5.png", + "fullAbsolutePath": "http://dd.b.pvp.net/4_0_0/set6cde/en_us/img/cards/06RU008T5-full.png" + } + ], + "regions": [ + "Runeterra" + ], + "regionRefs": [ + "Runeterra" + ], + "attack": 0, + "cost": 0, + "health": 0, + "description": "You may put any Weaponmaster cards into your deck during deckbuilding.", + "descriptionRaw": "You may put any Weaponmaster cards into your deck during deckbuilding.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "", + "artistName": "Envar Studios", + "name": "Grandmaster at Arms", + "cardCode": "06RU008T5", + "keywords": [], + "keywordRefs": [], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "None", + "rarityRef": "None", + "subtypes": [], + "supertype": "", + "type": "Ability", + "collectible": false, + "set": "Set6cde" + }, + { + "associatedCards": [], + "associatedCardRefs": [ + "06RU008" + ], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/4_0_0/set6cde/en_us/img/cards/06RU008T8.png", + "fullAbsolutePath": "http://dd.b.pvp.net/4_0_0/set6cde/en_us/img/cards/06RU008T8-full.png" + } + ], + "regions": [ + "Runeterra" + ], + "regionRefs": [ + "Runeterra" + ], + "attack": 0, + "cost": 3, + "health": 0, + "description": "Give Jax Barrier this round and Forge him.\r\nShuffle a Jax into your deck.", + "descriptionRaw": "Give Jax Barrier this round and Forge him.\r\nShuffle a Jax into your deck.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"That's right, eyes on the champ!\" - Jax", + "artistName": "Kudos Productions", + "name": "Jax's Counter Strike", + "cardCode": "06RU008T8", + "keywords": [ + "Burst" + ], + "keywordRefs": [ + "Burst" + ], + "spellSpeed": "Burst", + "spellSpeedRef": "Burst", + "rarity": "None", + "rarityRef": "None", + "subtypes": [], + "supertype": "Champion", + "type": "Spell", + "collectible": false, + "set": "Set6cde" + }, + { + "associatedCards": [], + "associatedCardRefs": [ + "06RU006T11", + "06RU006T8", + "06RU006T5", + "06RU006T3", + "06RU006T4", + "06RU006T2", + "06RU006T7", + "06RU006T6", + "06RU006T1", + "06RU006T12" + ], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/4_0_0/set6cde/en_us/img/cards/06RU006.png", + "fullAbsolutePath": "http://dd.b.pvp.net/4_0_0/set6cde/en_us/img/cards/06RU006-full.png" + } + ], + "regions": [ + "Runeterra" + ], + "regionRefs": [ + "Runeterra" + ], + "attack": 3, + "cost": 4, + "health": 5, + "description": "Origin: The Rune Mage.\r\nWhen I'm summoned or Round Start: Create 2 Delve Into The Pasts in your deck.", + "descriptionRaw": "Origin: The Rune Mage.\r\nWhen I'm summoned or Round Start: Create 2 Delve Into The Pasts in your deck.", + "levelupDescription": "I see 3+ unique World Runes.", + "levelupDescriptionRaw": "I see 3+ unique World Runes.", + "flavorText": "Ryze crested the ridge, accompanied by Kayle's silent servant. He looked down on a land scarred by war, and caught sight of the darkin monstrosities warring below. For centuries, he had watched on as humanity veered from one catastrophe to another. What if, he thought, his efforts were futile, and Runeterra was doomed to die?\"", + "artistName": "Claudiu-Antoniu Magherusan", + "name": "Ryze", + "cardCode": "06RU006", + "keywords": [], + "keywordRefs": [], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "Champion", + "rarityRef": "Champion", + "subtypes": [], + "supertype": "Champion", + "type": "Unit", + "collectible": true, + "set": "Set6cde" + }, + { + "associatedCards": [], + "associatedCardRefs": [ + "06RU006T9" + ], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/4_0_0/set6cde/en_us/img/cards/06RU006T2.png", + "fullAbsolutePath": "http://dd.b.pvp.net/4_0_0/set6cde/en_us/img/cards/06RU006T2-full.png" + } + ], + "regions": [ + "Runeterra" + ], + "regionRefs": [ + "Runeterra" + ], + "attack": 0, + "cost": 2, + "health": 0, + "description": "When I'm Played, if I'm unique, activate all your other World Runes.\r\nWhen I'm Played or activated, deal 2 to the weakest enemy.", + "descriptionRaw": "When I'm Played, if I'm unique, activate all your other World Runes.\r\nWhen I'm Played or activated, deal 2 to the weakest enemy.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "Of all the wrongs Ryze had witnessed in his time on Runeterra, this cut the deepest. How could his own master, who inculcated in Ryze the virtues of control and patience, lose himself so fully to the World Runes? How?!", + "artistName": "Kudos Productions", + "name": "Shard of Betrayal", + "cardCode": "06RU006T2", + "keywords": [ + "Landmark" + ], + "keywordRefs": [ + "LandmarkVisualOnly" + ], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "None", + "rarityRef": "None", + "subtypes": [ + "WORLD RUNE" + ], + "supertype": "", + "type": "Landmark", + "collectible": false, + "set": "Set6cde" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/4_0_0/set6cde/en_us/img/cards/06RU006T12.png", + "fullAbsolutePath": "http://dd.b.pvp.net/4_0_0/set6cde/en_us/img/cards/06RU006T12-full.png" + } + ], + "regions": [ + "Runeterra" + ], + "regionRefs": [ + "Runeterra" + ], + "attack": 0, + "cost": 2, + "health": 0, + "description": "Stun an attacking enemy.", + "descriptionRaw": "Stun an attacking enemy.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"Enough!\" - Ryze", + "artistName": "Kudos Productions", + "name": "Rune Prison", + "cardCode": "06RU006T12", + "keywords": [ + "Fast" + ], + "keywordRefs": [ + "Fast" + ], + "spellSpeed": "Fast", + "spellSpeedRef": "Fast", + "rarity": "None", + "rarityRef": "None", + "subtypes": [], + "supertype": "", + "type": "Spell", + "collectible": false, + "set": "Set6cde" + }, + { + "associatedCards": [], + "associatedCardRefs": [ + "06RU006T5", + "06RU006" + ], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/4_0_0/set6cde/en_us/img/cards/06RU006T3.png", + "fullAbsolutePath": "http://dd.b.pvp.net/4_0_0/set6cde/en_us/img/cards/06RU006T3-full.png" + } + ], + "regions": [ + "Runeterra" + ], + "regionRefs": [ + "Runeterra" + ], + "attack": 0, + "cost": 3, + "health": 0, + "description": "Draw 3. Discard any followers drawn.\r\nCreate a Ryze in your deck.", + "descriptionRaw": "Draw 3. Discard any followers drawn.\r\nCreate a Ryze in your deck.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"The shards will show me the path...\" - Ryze", + "artistName": "Kudos Productions", + "name": "Ryze's Realm Warp", + "cardCode": "06RU006T3", + "keywords": [ + "Burst" + ], + "keywordRefs": [ + "Burst" + ], + "spellSpeed": "Burst", + "spellSpeedRef": "Burst", + "rarity": "None", + "rarityRef": "None", + "subtypes": [], + "supertype": "Champion", + "type": "Spell", + "collectible": false, + "set": "Set6cde" + }, + { + "associatedCards": [], + "associatedCardRefs": [ + "06RU006" + ], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/4_0_0/set6cde/en_us/img/cards/06RU006T7.png", + "fullAbsolutePath": "http://dd.b.pvp.net/4_0_0/set6cde/en_us/img/cards/06RU006T7-full.png" + } + ], + "regions": [ + "Runeterra" + ], + "regionRefs": [ + "Runeterra" + ], + "attack": 0, + "cost": 2, + "health": 0, + "description": "When I'm Played, if I'm unique, activate all your other World Runes.\r\nWhen I'm Played or activated, refill 2 spell mana.", + "descriptionRaw": "When I'm Played, if I'm unique, activate all your other World Runes.\r\nWhen I'm Played or activated, refill 2 spell mana.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "Lust for power seemed a common trait among the Runeterrans. Even Targon's revered few craved it, and so when they realized that simple flattery could bring them the power of the stars themselves, they didn't hesitate.", + "artistName": "Kudos Productions", + "name": "Shard of Reverence", + "cardCode": "06RU006T7", + "keywords": [ + "Landmark" + ], + "keywordRefs": [ + "LandmarkVisualOnly" + ], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "None", + "rarityRef": "None", + "subtypes": [ + "WORLD RUNE" + ], + "supertype": "", + "type": "Landmark", + "collectible": false, + "set": "Set6cde" + }, + { + "associatedCards": [], + "associatedCardRefs": [ + "06RU006" + ], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/4_0_0/set6cde/en_us/img/cards/06RU006T6.png", + "fullAbsolutePath": "http://dd.b.pvp.net/4_0_0/set6cde/en_us/img/cards/06RU006T6-full.png" + } + ], + "regions": [ + "Runeterra" + ], + "regionRefs": [ + "Runeterra" + ], + "attack": 0, + "cost": 2, + "health": 0, + "description": "When I'm Played, if I'm unique, activate all your other World Runes.\r\nWhen I'm Played or activated, heal allied Ryzes and your Nexus 2.", + "descriptionRaw": "When I'm Played, if I'm unique, activate all your other World Runes.\r\nWhen I'm Played or activated, heal allied Ryzes and your Nexus 2.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "Love. A fog that blinds the wise to reason, and that rids the patient of patience. Ryze watched on as the King lowered his beloved beneath the waters, and closed his eyes as the screaming began. Ryze felt the cold grip of undeath spread through the room, then beyond. All for love.", + "artistName": "Kudos Productions", + "name": "Shard of Hope", + "cardCode": "06RU006T6", + "keywords": [ + "Landmark" + ], + "keywordRefs": [ + "LandmarkVisualOnly" + ], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "None", + "rarityRef": "None", + "subtypes": [ + "WORLD RUNE" + ], + "supertype": "", + "type": "Landmark", + "collectible": false, + "set": "Set6cde" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/4_0_0/set6cde/en_us/img/cards/06RU006T9.png", + "fullAbsolutePath": "http://dd.b.pvp.net/4_0_0/set6cde/en_us/img/cards/06RU006T9-full.png" + } + ], + "regions": [ + "Runeterra" + ], + "regionRefs": [ + "Runeterra" + ], + "attack": 0, + "cost": 0, + "health": 0, + "description": "Deal 2 to the weakest enemy.", + "descriptionRaw": "Deal 2 to the weakest enemy.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"THEY ARE MINE TO CONTROL! MINE!\" - Tyrus", + "artistName": "Kudos Productions", + "name": "Overload", + "cardCode": "06RU006T9", + "keywords": [ + "Skill" + ], + "keywordRefs": [ + "Skill" + ], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "None", + "rarityRef": "None", + "subtypes": [], + "supertype": "", + "type": "Ability", + "collectible": false, + "set": "Set6cde" + }, + { + "associatedCards": [], + "associatedCardRefs": [ + "06RU006T11", + "06RU006", + "06RU006T3", + "06RU006T4", + "06RU006T2", + "06RU006T7", + "06RU006T6", + "06RU006T1" + ], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/4_0_0/set6cde/en_us/img/cards/06RU006T5.png", + "fullAbsolutePath": "http://dd.b.pvp.net/4_0_0/set6cde/en_us/img/cards/06RU006T5-full.png" + } + ], + "regions": [ + "Runeterra" + ], + "regionRefs": [ + "Runeterra" + ], + "attack": 4, + "cost": 4, + "health": 6, + "description": "When I'm summoned or Round Start: Create 2 Delve Into The Pasts in your deck.\r\nAttack: Activate all your World Runes. If you have 5 unique World Runes, destroy the enemy Nexus.", + "descriptionRaw": "When I'm summoned or Round Start: Create 2 Delve Into The Pasts in your deck.\r\nAttack: Activate all your World Runes. If you have 5 unique World Runes, destroy the enemy Nexus.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "Ryze pulled himself back to the present. The mindscapes he'd visited had answered his questions, and filled him with purpose. The flaws of Runeterra's people, great as they were, should not condemn them to oblivion.", + "artistName": "Claudiu-Antoniu Magherusan", + "name": "Ryze", + "cardCode": "06RU006T5", + "keywords": [ + "SpellShield" + ], + "keywordRefs": [ + "SpellShield" + ], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "None", + "rarityRef": "None", + "subtypes": [], + "supertype": "Champion", + "type": "Unit", + "collectible": false, + "set": "Set6cde" + }, + { + "associatedCards": [], + "associatedCardRefs": [ + "06RU006T12" + ], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/4_0_0/set6cde/en_us/img/cards/06RU006T1.png", + "fullAbsolutePath": "http://dd.b.pvp.net/4_0_0/set6cde/en_us/img/cards/06RU006T1-full.png" + } + ], + "regions": [ + "Runeterra" + ], + "regionRefs": [ + "Runeterra" + ], + "attack": 0, + "cost": 2, + "health": 0, + "description": "When I'm Played, if I'm unique, activate all your other World Runes.\r\nWhen I'm Played or activated, create a Rune Prison in hand or if you have one, reduce its cost by 1.", + "descriptionRaw": "When I'm Played, if I'm unique, activate all your other World Runes.\r\nWhen I'm Played or activated, create a Rune Prison in hand or if you have one, reduce its cost by 1.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "The god-warriors of Shurima were thought peerless. Perfect. But years of war against an unstoppable foe eventually bowed their spirits, then broke them entirely. Xolaani and Aatrox turned on each other in a dispute that soon threatened Runeterra's very existence.", + "artistName": "Kudos Productions", + "name": "Shard of Madness", + "cardCode": "06RU006T1", + "keywords": [ + "Landmark" + ], + "keywordRefs": [ + "LandmarkVisualOnly" + ], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "None", + "rarityRef": "None", + "subtypes": [ + "WORLD RUNE" + ], + "supertype": "", + "type": "Landmark", + "collectible": false, + "set": "Set6cde" + }, + { + "associatedCards": [], + "associatedCardRefs": [ + "06RU006T4", + "06RU006T2", + "06RU006T7", + "06RU006T6", + "06RU006T1", + "06RU006T12" + ], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/4_0_0/set6cde/en_us/img/cards/06RU006T11.png", + "fullAbsolutePath": "http://dd.b.pvp.net/4_0_0/set6cde/en_us/img/cards/06RU006T11-full.png" + } + ], + "regions": [ + "Runeterra" + ], + "regionRefs": [ + "Runeterra" + ], + "attack": 0, + "cost": 2, + "health": 0, + "description": "Choose one of two World Runes you don't have in play or in hand and create it in hand. If you can't, draw 1.", + "descriptionRaw": "Choose one of two World Runes you don't have in play or in hand and create it in hand. If you can't, draw 1.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "Before him, the world teetered on the brink of apocalypse. Ryze had the power to save Runeterra, but as he watched the carnage unfolding ahead of him, a single question lingered in him: should he? He resolved to create mindscapes of Runeterra's pivotal moments, and let his understanding of the land's history decide its future.", + "artistName": "Kudos Productions", + "name": "Delve Into The Past", + "cardCode": "06RU006T11", + "keywords": [ + "Burst" + ], + "keywordRefs": [ + "Burst" + ], + "spellSpeed": "Burst", + "spellSpeedRef": "Burst", + "rarity": "None", + "rarityRef": "None", + "subtypes": [], + "supertype": "", + "type": "Spell", + "collectible": false, + "set": "Set6cde" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/4_0_0/set6cde/en_us/img/cards/06RU006T4.png", + "fullAbsolutePath": "http://dd.b.pvp.net/4_0_0/set6cde/en_us/img/cards/06RU006T4-full.png" + } + ], + "regions": [ + "Runeterra" + ], + "regionRefs": [ + "Runeterra" + ], + "attack": 0, + "cost": 2, + "health": 0, + "description": "When I'm Played, if I'm unique, activate all your other World Runes.\r\nWhen I'm Played or activated, draw 1.", + "descriptionRaw": "When I'm Played, if I'm unique, activate all your other World Runes.\r\nWhen I'm Played or activated, draw 1.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "Ryze watched on as the mindscape before him constructed itself. Before him. the Icathians warred with Shurima in a desperate bid for freedom. Ryze knew too well what came next, but watched on regardless. Cruel purple tendrils burst out, engulfing the battlefield. Icathia reached for freedom, but in the darkness, unleashed the Void upon Runeterra.", + "artistName": "Kudos Productions", + "name": "Shard of Violence", + "cardCode": "06RU006T4", + "keywords": [ + "Landmark" + ], + "keywordRefs": [ + "LandmarkVisualOnly" + ], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "None", + "rarityRef": "None", + "subtypes": [ + "WORLD RUNE" + ], + "supertype": "", + "type": "Landmark", + "collectible": false, + "set": "Set6cde" + }, + { + "associatedCards": [], + "associatedCardRefs": [ + "06RU006", + "06RU006T11" + ], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/4_0_0/set6cde/en_us/img/cards/06RU006T8.png", + "fullAbsolutePath": "http://dd.b.pvp.net/4_0_0/set6cde/en_us/img/cards/06RU006T8-full.png" + } + ], + "regions": [ + "Runeterra" + ], + "regionRefs": [ + "Runeterra" + ], + "attack": 0, + "cost": 0, + "health": 0, + "description": "You may put any non-targeted Burst and Focus spells into your deck during deckbuilding.\r\nAt the start of the game, create 2 Delve Into The Past in your deck for each Ryze that started the game in your deck.", + "descriptionRaw": "You may put any non-targeted Burst and Focus spells into your deck during deckbuilding.\r\nAt the start of the game, create 2 Delve Into The Past in your deck for each Ryze that started the game in your deck.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "Can this world be saved? And if it can... should it?", + "artistName": "Claudiu-Antoniu Magherusan", + "name": "The Rune Mage", + "cardCode": "06RU006T8", + "keywords": [], + "keywordRefs": [], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "None", + "rarityRef": "None", + "subtypes": [], + "supertype": "", + "type": "Ability", + "collectible": false, + "set": "Set6cde" + }, + { + "associatedCards": [], + "associatedCardRefs": [ + "06RU005T3", + "06RU005T6", + "06RU005T4", + "06RU005T8", + "06RU005T2", + "06RU005T11", + "06RU005T1", + "06RU005T10" + ], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/4_0_0/set6cde/en_us/img/cards/06RU005.png", + "fullAbsolutePath": "http://dd.b.pvp.net/4_0_0/set6cde/en_us/img/cards/06RU005-full.png" + } + ], + "regions": [ + "Runeterra" + ], + "regionRefs": [ + "Runeterra" + ], + "attack": 2, + "cost": 5, + "health": 5, + "description": "Origin: The Shadow Reaper.\r\nAuto-Equip: The Darkin Scythe.\r\nWhen I kill an enemy, heal me 2.", + "descriptionRaw": "Origin: The Shadow Reaper.\r\nAuto-Equip: The Darkin Scythe.\r\nWhen I kill an enemy, heal me 2.", + "levelupDescription": "I've struck twice. When I level up, Recall me.", + "levelupDescriptionRaw": "I've struck twice. When I level up, Recall me.", + "flavorText": "As another body fell, Kayn let out a gleeful laugh, knowing that he would soon unleash the second Darkin weapon that lay below. Within him, Rhaast's anticipation grew, knowing that Kayn’s undoing was finally near.", + "artistName": "Kudos Productions", + "name": "Kayn", + "cardCode": "06RU005", + "keywords": [ + "Challenger" + ], + "keywordRefs": [ + "Challenger" + ], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "Champion", + "rarityRef": "Champion", + "subtypes": [ + "DARKIN" + ], + "supertype": "Champion", + "type": "Unit", + "collectible": true, + "set": "Set6cde" + }, + { + "associatedCards": [], + "associatedCardRefs": [ + "06RU005T2" + ], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/4_0_0/set6cde/en_us/img/cards/06RU005T11.png", + "fullAbsolutePath": "http://dd.b.pvp.net/4_0_0/set6cde/en_us/img/cards/06RU005T11-full.png" + } + ], + "regions": [ + "Runeterra" + ], + "regionRefs": [ + "Runeterra" + ], + "attack": 0, + "cost": 2, + "health": 0, + "description": "Attack: Grant Corrupted Scythe +1|+1.", + "descriptionRaw": "Attack: Grant Corrupted Scythe +1|+1.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "As Kayn yielded his spirit to the Darkin, his anger subsided and an unbearable emptiness was left in its place. The young warrior was gone. Only Rhaast remained.", + "artistName": "Kudos Productions", + "name": "Corrupted Scythe", + "cardCode": "06RU005T11", + "keywords": [ + "Equipment" + ], + "keywordRefs": [ + "Equipment" + ], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "None", + "rarityRef": "None", + "subtypes": [ + "DARKIN" + ], + "supertype": "", + "type": "Equipment", + "collectible": false, + "set": "Set6cde" + }, + { + "associatedCards": [], + "associatedCardRefs": [ + "06RU005T1" + ], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/4_0_0/set6cde/en_us/img/cards/06RU005T10.png", + "fullAbsolutePath": "http://dd.b.pvp.net/4_0_0/set6cde/en_us/img/cards/06RU005T10-full.png" + } + ], + "regions": [ + "Runeterra" + ], + "regionRefs": [ + "Runeterra" + ], + "attack": 0, + "cost": 2, + "health": 0, + "description": "Attack: Grant Shadow Scythe +2|+0.", + "descriptionRaw": "Attack: Grant Shadow Scythe +2|+0.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "Kayn’s anger grew into a fearsome blaze amidst Rhaast's furious screams. The Darkin's hold on the shadow warrior burned away, and when Kayn rose to his feet, he knew the full power of the Darkin was his to command.", + "artistName": "Kudos Productions", + "name": "Shadow Scythe", + "cardCode": "06RU005T10", + "keywords": [ + "Equipment" + ], + "keywordRefs": [ + "Equipment" + ], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "None", + "rarityRef": "None", + "subtypes": [], + "supertype": "", + "type": "Equipment", + "collectible": false, + "set": "Set6cde" + }, + { + "associatedCards": [], + "associatedCardRefs": [ + "06RU005", + "06RU005T1", + "06RU005T2" + ], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/4_0_0/set6cde/en_us/img/cards/06RU005T4.png", + "fullAbsolutePath": "http://dd.b.pvp.net/4_0_0/set6cde/en_us/img/cards/06RU005T4-full.png" + } + ], + "regions": [ + "Runeterra" + ], + "regionRefs": [ + "Runeterra" + ], + "attack": 0, + "cost": 4, + "health": 0, + "description": "Give Kayn Quick Attack this round. He starts a free attack Challenging an enemy.\r\nCreate a Kayn in your deck.", + "descriptionRaw": "Give Kayn Quick Attack this round. He starts a free attack Challenging an enemy.\r\nCreate a Kayn in your deck.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"No escape.\" - Kayn", + "artistName": "Kudos Productions", + "name": "Kayn's Shadowstep", + "cardCode": "06RU005T4", + "keywords": [ + "Slow" + ], + "keywordRefs": [ + "Slow" + ], + "spellSpeed": "Slow", + "spellSpeedRef": "Slow", + "rarity": "None", + "rarityRef": "None", + "subtypes": [], + "supertype": "Champion", + "type": "Spell", + "collectible": false, + "set": "Set6cde" + }, + { + "associatedCards": [], + "associatedCardRefs": [ + "06RU005T4", + "06RU005T11", + "06RU005" + ], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/4_0_0/set6cde/en_us/img/cards/06RU005T2.png", + "fullAbsolutePath": "http://dd.b.pvp.net/4_0_0/set6cde/en_us/img/cards/06RU005T2-full.png" + } + ], + "regions": [ + "Runeterra" + ], + "regionRefs": [ + "Runeterra" + ], + "attack": 3, + "cost": 5, + "health": 6, + "description": "Auto-Equip: Corrupted Scythe.\r\nWhen I kill an enemy, fully heal me and heal your Nexus 2.", + "descriptionRaw": "Auto-Equip: Corrupted Scythe.\r\nWhen I kill an enemy, fully heal me and heal your Nexus 2.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "Rhaast let out a triumphant howl. Years of waiting, yearning, and now... he was finally free. He lifted Xolaani’s blades and put them to his tongue, savoring the taste of fresh blood. He closed his eyes in bliss, and a smile crept across his face for the first time in millennia. The reaping had begun.", + "artistName": "Kudos Productions", + "name": "Rhaast", + "cardCode": "06RU005T2", + "keywords": [ + "Challenger", + "Overwhelm" + ], + "keywordRefs": [ + "Challenger", + "Overwhelm" + ], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "None", + "rarityRef": "None", + "subtypes": [ + "DARKIN" + ], + "supertype": "Champion", + "type": "Unit", + "collectible": false, + "set": "Set6cde" + }, + { + "associatedCards": [], + "associatedCardRefs": [ + "06RU005", + "06RU005T2", + "06RU005T1", + "06RU005T11", + "06RU005T10", + "06RU005" + ], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/4_0_0/set6cde/en_us/img/cards/06RU005T3.png", + "fullAbsolutePath": "http://dd.b.pvp.net/4_0_0/set6cde/en_us/img/cards/06RU005T3-full.png" + } + ], + "regions": [ + "Runeterra" + ], + "regionRefs": [ + "Runeterra" + ], + "attack": 0, + "cost": 2, + "health": 0, + "description": "Attack: Grant The Darkin Scythe +1|+0.", + "descriptionRaw": "Attack: Grant The Darkin Scythe +1|+0.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "“Time to reap.”\n- Rhaast", + "artistName": "Kudos Productions", + "name": "The Darkin Scythe", + "cardCode": "06RU005T3", + "keywords": [ + "Equipment" + ], + "keywordRefs": [ + "Equipment" + ], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "None", + "rarityRef": "None", + "subtypes": [ + "DARKIN" + ], + "supertype": "", + "type": "Equipment", + "collectible": false, + "set": "Set6cde" + }, + { + "associatedCards": [], + "associatedCardRefs": [ + "06RU005T4", + "06RU005T1", + "06RU005T2" + ], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/4_0_0/set6cde/en_us/img/cards/06RU005T8.png", + "fullAbsolutePath": "http://dd.b.pvp.net/4_0_0/set6cde/en_us/img/cards/06RU005T8-full.png" + } + ], + "regions": [ + "Runeterra" + ], + "regionRefs": [ + "Runeterra" + ], + "attack": 3, + "cost": 0, + "health": 6, + "description": "Play: Transform me and all copies of me into Rhaast or The Shadow Assassin.", + "descriptionRaw": "Play: Transform me and all copies of me into Rhaast or The Shadow Assassin.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "A fierce and sudden flash of anger overwhelmed Kayn, and a terrible, searing pain passed behind his eyes, bringing him to his knees. Rhaast’s triumphant laughter echoed all around him, mocking and merciless. He had known this day would come--the day he would finally prevail or lose himself to the Darkin...", + "artistName": "Kudos Productions", + "name": "Kayn", + "cardCode": "06RU005T8", + "keywords": [], + "keywordRefs": [], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "Champion", + "rarityRef": "Champion", + "subtypes": [ + "DARKIN" + ], + "supertype": "Champion", + "type": "Unit", + "collectible": false, + "set": "Set6cde" + }, + { + "associatedCards": [], + "associatedCardRefs": [ + "06RU005T10", + "06RU005T4", + "06RU005" + ], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/4_0_0/set6cde/en_us/img/cards/06RU005T1.png", + "fullAbsolutePath": "http://dd.b.pvp.net/4_0_0/set6cde/en_us/img/cards/06RU005T1-full.png" + } + ], + "regions": [ + "Runeterra" + ], + "regionRefs": [ + "Runeterra" + ], + "attack": 3, + "cost": 5, + "health": 6, + "description": "Auto-Equip: Shadow Scythe.", + "descriptionRaw": "Auto-Equip: Shadow Scythe.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "Tremendous power flowed through his veins. Freed from the Darkin’s influence, the full power of the shadows was his to command. Kayn laughed, slipping into darkness, and emerged a moment later only to silently slit the throat of the guard before him.", + "artistName": "Kudos Productions", + "name": "The Shadow Assassin", + "cardCode": "06RU005T1", + "keywords": [ + "Elusive", + "Challenger" + ], + "keywordRefs": [ + "Elusive", + "Challenger" + ], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "None", + "rarityRef": "None", + "subtypes": [ + "DARKIN" + ], + "supertype": "Champion", + "type": "Unit", + "collectible": false, + "set": "Set6cde" + }, + { + "associatedCards": [], + "associatedCardRefs": [ + "06RU005" + ], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/4_0_0/set6cde/en_us/img/cards/06RU005T6.png", + "fullAbsolutePath": "http://dd.b.pvp.net/4_0_0/set6cde/en_us/img/cards/06RU005T6-full.png" + } + ], + "regions": [ + "Runeterra" + ], + "regionRefs": [ + "Runeterra" + ], + "attack": 0, + "cost": 0, + "health": 0, + "description": "You may put any Cultist cards into your deck during deckbuilding. Once you have summoned 3+ Cultist units, draw a Kayn.", + "descriptionRaw": "You may put any Cultist cards into your deck during deckbuilding. Once you have summoned 3+ Cultist units, draw a Kayn.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "Only two outcomes are possible: either Kayn bends Rhaast to his will, or he is consumed by it.", + "artistName": "Kudos Productions", + "name": "The Shadow Reaper", + "cardCode": "06RU005T6", + "keywords": [], + "keywordRefs": [], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "None", + "rarityRef": "None", + "subtypes": [], + "supertype": "", + "type": "Ability", + "collectible": false, + "set": "Set6cde" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/4_0_0/set6cde/en_us/img/cards/06RU033.png", + "fullAbsolutePath": "http://dd.b.pvp.net/4_0_0/set6cde/en_us/img/cards/06RU033-full.png" + } + ], + "regions": [ + "Runeterra" + ], + "regionRefs": [ + "Runeterra" + ], + "attack": 0, + "cost": 2, + "health": 0, + "description": "Attack: Refill 1 spell mana", + "descriptionRaw": "Attack: Refill 1 spell mana", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "The monks of Hirana send unruly students to the fisherfolk for a lesson in patience. Only a handful ever choose to return to the monastery.", + "artistName": "Kudos Productions ", + "name": "Combat Reel", + "cardCode": "06RU033", + "keywords": [ + "Equipment" + ], + "keywordRefs": [ + "Equipment" + ], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "None", + "rarityRef": "None", + "subtypes": [], + "supertype": "", + "type": "Equipment", + "collectible": false, + "set": "Set6cde" + }, + { + "associatedCards": [], + "associatedCardRefs": [ + "06RU026T3", + "06RU026T1", + "06RU026T5", + "06RU026T4", + "06RU026T2", + "06RU026T7", + "06RU026T6" + ], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/4_0_0/set6cde/en_us/img/cards/06RU026.png", + "fullAbsolutePath": "http://dd.b.pvp.net/4_0_0/set6cde/en_us/img/cards/06RU026-full.png" + } + ], + "regions": [ + "Runeterra" + ], + "regionRefs": [ + "Runeterra" + ], + "attack": 5, + "cost": 6, + "health": 5, + "description": "Origin: The World Ender.\r\nAuto-Equip: The Darkin Blade.\r\nWhen I'm summoned or strike: Heal your Nexus 2 and create a World Ender in hand if you don't have one.", + "descriptionRaw": "Origin: The World Ender.\r\nAuto-Equip: The Darkin Blade.\r\nWhen I'm summoned or strike: Heal your Nexus 2 and create a World Ender in hand if you don't have one.", + "levelupDescription": "You've played World Ender.", + "levelupDescriptionRaw": "You've played World Ender.", + "flavorText": "Even across continents, Aatrox felt her awakening. How the hatred still burned. He had already broken her statues, now he could wage a final war against the Coward of Icathia, and through destroying her, end this pitiful existence.", + "artistName": "Kudos Productions", + "name": "Aatrox", + "cardCode": "06RU026", + "keywords": [], + "keywordRefs": [], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "Champion", + "rarityRef": "Champion", + "subtypes": [ + "DARKIN" + ], + "supertype": "Champion", + "type": "Unit", + "collectible": true, + "set": "Set6cde" + }, + { + "associatedCards": [], + "associatedCardRefs": [ + "06RU026", + "06RU026T3" + ], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/4_0_0/set6cde/en_us/img/cards/06RU026T2.png", + "fullAbsolutePath": "http://dd.b.pvp.net/4_0_0/set6cde/en_us/img/cards/06RU026T2-full.png" + } + ], + "regions": [ + "Runeterra" + ], + "regionRefs": [ + "Runeterra" + ], + "attack": 0, + "cost": 1, + "health": 0, + "description": "Aatrox and an enemy strike each other. ", + "descriptionRaw": "Aatrox and an enemy strike each other. ", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"Apocalypse comes!\" - Aatrox", + "artistName": "Kudos Productions", + "name": "Deathbringer Descent", + "cardCode": "06RU026T2", + "keywords": [ + "Fast", + "Fleeting" + ], + "keywordRefs": [ + "Fast", + "Fleeting" + ], + "spellSpeed": "Fast", + "spellSpeedRef": "Fast", + "rarity": "None", + "rarityRef": "None", + "subtypes": [], + "supertype": "", + "type": "Spell", + "collectible": false, + "set": "Set6cde" + }, + { + "associatedCards": [], + "associatedCardRefs": [ + "06RU026T3", + "06RU026", + "06RU026T5", + "06RU026T1", + "06RU026" + ], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/4_0_0/set6cde/en_us/img/cards/06RU026T1.png", + "fullAbsolutePath": "http://dd.b.pvp.net/4_0_0/set6cde/en_us/img/cards/06RU026T1-full.png" + } + ], + "regions": [ + "Runeterra" + ], + "regionRefs": [ + "Runeterra" + ], + "attack": 0, + "cost": 1, + "health": 0, + "description": "", + "descriptionRaw": "", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"By my sword, this world must die.\" - Aatrox", + "artistName": "Kudos Productions", + "name": "The Darkin Blade", + "cardCode": "06RU026T1", + "keywords": [ + "Equipment", + "Regeneration" + ], + "keywordRefs": [ + "Equipment", + "Regeneration" + ], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "None", + "rarityRef": "None", + "subtypes": [ + "DARKIN" + ], + "supertype": "", + "type": "Equipment", + "collectible": false, + "set": "Set6cde" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/4_0_0/set6cde/en_us/img/cards/06RU026T7.png", + "fullAbsolutePath": "http://dd.b.pvp.net/4_0_0/set6cde/en_us/img/cards/06RU026T7-full.png" + } + ], + "regions": [ + "Runeterra" + ], + "regionRefs": [ + "Runeterra" + ], + "attack": 0, + "cost": 13, + "health": 0, + "description": "Reduce my cost by 1 for each time an Equipped or Darkin ally has struck this game.\r\nAssimilate allies Equipped with Darkin.", + "descriptionRaw": "Reduce my cost by 1 for each time an Equipped or Darkin ally has struck this game.\r\nAssimilate allies Equipped with Darkin.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"Darkin! Awaken!\" - Aatrox", + "artistName": "Kudos Productions", + "name": "World Ender", + "cardCode": "06RU026T7", + "keywords": [ + "Slow" + ], + "keywordRefs": [ + "Slow" + ], + "spellSpeed": "Slow", + "spellSpeedRef": "Slow", + "rarity": "None", + "rarityRef": "None", + "subtypes": [], + "supertype": "", + "type": "Spell", + "collectible": false, + "set": "Set6cde" + }, + { + "associatedCards": [], + "associatedCardRefs": [ + "06RU026T5", + "06RU026", + "06RU026T1" + ], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/4_0_0/set6cde/en_us/img/cards/06RU026T3.png", + "fullAbsolutePath": "http://dd.b.pvp.net/4_0_0/set6cde/en_us/img/cards/06RU026T3-full.png" + } + ], + "regions": [ + "Runeterra" + ], + "regionRefs": [ + "Runeterra" + ], + "attack": 9, + "cost": 6, + "health": 9, + "description": "Auto-Equip: The Darkin Blade.\r\nDarkin allies cost 5 less.\r\nWhen I'm summoned or strike: Heal your Nexus 2.", + "descriptionRaw": "Auto-Equip: The Darkin Blade.\r\nDarkin allies cost 5 less.\r\nWhen I'm summoned or strike: Heal your Nexus 2.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "The battle gathered pace. Xolaani had finally found the courage to face him, and as the two ancient enemies warred, the terrain itself began to wither and bend beneath their fury. An army of celestials descended upon them, desperate to save their dying land--but it was too late. Aatrox would have his day. He would find his peace.", + "artistName": "Kudos Productions", + "name": "Aatrox", + "cardCode": "06RU026T3", + "keywords": [ + "Overwhelm" + ], + "keywordRefs": [ + "Overwhelm" + ], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "None", + "rarityRef": "None", + "subtypes": [ + "DARKIN" + ], + "supertype": "Champion", + "type": "Unit", + "collectible": false, + "set": "Set6cde" + }, + { + "associatedCards": [], + "associatedCardRefs": [ + "06RU026" + ], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/4_0_0/set6cde/en_us/img/cards/06RU026T6.png", + "fullAbsolutePath": "http://dd.b.pvp.net/4_0_0/set6cde/en_us/img/cards/06RU026T6-full.png" + } + ], + "regions": [ + "Runeterra" + ], + "regionRefs": [ + "Runeterra" + ], + "attack": 0, + "cost": 0, + "health": 0, + "description": "You may put any non-Champion Darkin into your deck during deckbuilding. Once you've played or summoned 3+ different other Darkin, draw a Aatrox.", + "descriptionRaw": "You may put any non-Champion Darkin into your deck during deckbuilding. Once you've played or summoned 3+ different other Darkin, draw a Aatrox.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "Peace. Peace through war. Peace through death. Peace through oblivion.", + "artistName": "Kudos Productions", + "name": "The World Ender", + "cardCode": "06RU026T6", + "keywords": [], + "keywordRefs": [], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "None", + "rarityRef": "None", + "subtypes": [], + "supertype": "", + "type": "Ability", + "collectible": false, + "set": "Set6cde" + }, + { + "associatedCards": [], + "associatedCardRefs": [ + "06RU026T2", + "06RU026", + "06RU026T3" + ], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/4_0_0/set6cde/en_us/img/cards/06RU026T4.png", + "fullAbsolutePath": "http://dd.b.pvp.net/4_0_0/set6cde/en_us/img/cards/06RU026T4-full.png" + } + ], + "regions": [ + "Runeterra" + ], + "regionRefs": [ + "Runeterra" + ], + "attack": 0, + "cost": 2, + "health": 0, + "description": "Aatrox and an enemy strike each other.\r\nCreate a Deathbringer Descent in hand.", + "descriptionRaw": "Aatrox and an enemy strike each other.\r\nCreate a Deathbringer Descent in hand.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"I am the ender of worlds!\" - Aatrox", + "artistName": "Kudos Productions", + "name": "Deathbringer Slash", + "cardCode": "06RU026T4", + "keywords": [ + "Fast", + "Fleeting" + ], + "keywordRefs": [ + "Fast", + "Fleeting" + ], + "spellSpeed": "Fast", + "spellSpeedRef": "Fast", + "rarity": "None", + "rarityRef": "None", + "subtypes": [], + "supertype": "", + "type": "Spell", + "collectible": false, + "set": "Set6cde" + }, + { + "associatedCards": [], + "associatedCardRefs": [ + "06RU026T4", + "06RU026", + "06RU026T3", + "06RU026T2" + ], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/4_0_0/set6cde/en_us/img/cards/06RU026T5.png", + "fullAbsolutePath": "http://dd.b.pvp.net/4_0_0/set6cde/en_us/img/cards/06RU026T5-full.png" + } + ], + "regions": [ + "Runeterra" + ], + "regionRefs": [ + "Runeterra" + ], + "attack": 0, + "cost": 3, + "health": 0, + "description": "Aatrox and an enemy strike each other.\r\nCreate a Deathbringer Slash in hand.\r\nCreate a Aatrox in your deck.", + "descriptionRaw": "Aatrox and an enemy strike each other.\r\nCreate a Deathbringer Slash in hand.\r\nCreate a Aatrox in your deck.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"I will break this land!\" - Aatrox", + "artistName": "Kudos Productions", + "name": "Aatrox's Deathbringer Sweep", + "cardCode": "06RU026T5", + "keywords": [ + "Fast" + ], + "keywordRefs": [ + "Fast" + ], + "spellSpeed": "Fast", + "spellSpeedRef": "Fast", + "rarity": "None", + "rarityRef": "None", + "subtypes": [], + "supertype": "Champion", + "type": "Spell", + "collectible": false, + "set": "Set6cde" + }, + { + "associatedCards": [], + "associatedCardRefs": [ + "06RU008", + "06RU008T7" + ], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/4_0_0/set6cde/en_us/img/cards/06RU041.png", + "fullAbsolutePath": "http://dd.b.pvp.net/4_0_0/set6cde/en_us/img/cards/06RU041-full.png" + } + ], + "regions": [ + "Runeterra" + ], + "regionRefs": [ + "Runeterra" + ], + "attack": 0, + "cost": 3, + "health": 0, + "description": "Give Jax Barrier this round and Forge him.", + "descriptionRaw": "Give Jax Barrier this round and Forge him.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"That's right, eyes on the champ!\" - Jax", + "artistName": "Kudos Productions", + "name": "Counter Strike", + "cardCode": "06RU041", + "keywords": [ + "Burst" + ], + "keywordRefs": [ + "Burst" + ], + "spellSpeed": "Burst", + "spellSpeedRef": "Burst", + "rarity": "None", + "rarityRef": "None", + "subtypes": [], + "supertype": "", + "type": "Spell", + "collectible": false, + "set": "Set6cde" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/4_0_0/set6cde/en_us/img/cards/06RU034.png", + "fullAbsolutePath": "http://dd.b.pvp.net/4_0_0/set6cde/en_us/img/cards/06RU034-full.png" + } + ], + "regions": [ + "Runeterra" + ], + "regionRefs": [ + "Runeterra" + ], + "attack": 0, + "cost": 2, + "health": 0, + "description": "", + "descriptionRaw": "", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "Do NOT wash it with soap. Warm water or magic only.", + "artistName": "Kudos Productions", + "name": "Pan O' Pain", + "cardCode": "06RU034", + "keywords": [ + "Equipment", + "Tough" + ], + "keywordRefs": [ + "Equipment", + "Tough" + ], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "None", + "rarityRef": "None", + "subtypes": [], + "supertype": "", + "type": "Equipment", + "collectible": false, + "set": "Set6cde" + }, + { + "associatedCards": [], + "associatedCardRefs": [ + "06RU009T6", + "06RU009T7", + "06RU009T9", + "06RU009T11" + ], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/4_0_0/set6cde/en_us/img/cards/06RU009.png", + "fullAbsolutePath": "http://dd.b.pvp.net/4_0_0/set6cde/en_us/img/cards/06RU009-full.png" + } + ], + "regions": [ + "Runeterra" + ], + "regionRefs": [ + "Runeterra" + ], + "attack": 3, + "cost": 4, + "health": 4, + "description": "Origin: The Arrow of Retribution.\r\nAuto-Equip The Darkin Bow.\r\n", + "descriptionRaw": "Origin: The Arrow of Retribution.\r\nAuto-Equip The Darkin Bow.\r\n", + "levelupDescription": "You have targeted 7+ allies. ", + "levelupDescriptionRaw": "You have targeted 7+ allies. ", + "flavorText": "What if, over time, the man that became the Darkin remembered himself, prompted by the mortal voices within? What if, instead of overcoming those voices entirely, he came to believe in them?", + "artistName": "Kudos Productions", + "name": "Varus", + "cardCode": "06RU009", + "keywords": [ + "Quick Attack" + ], + "keywordRefs": [ + "QuickStrike" + ], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "Champion", + "rarityRef": "Champion", + "subtypes": [ + "DARKIN" + ], + "supertype": "Champion", + "type": "Unit", + "collectible": true, + "set": "Set6cde" + }, + { + "associatedCards": [], + "associatedCardRefs": [ + "06RU009", + "06RU009T10" + ], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/4_0_0/set6cde/en_us/img/cards/06RU009T10.png", + "fullAbsolutePath": "http://dd.b.pvp.net/4_0_0/set6cde/en_us/img/cards/06RU009T10-full.png" + } + ], + "regions": [ + "Runeterra" + ], + "regionRefs": [ + "Runeterra" + ], + "attack": 0, + "cost": 3, + "health": 0, + "description": "Give an enemy Vulnerable and give an ally +1|+0 this round.\r\nCreate a Fleeting Chain of Corruption in hand.", + "descriptionRaw": "Give an enemy Vulnerable and give an ally +1|+0 this round.\r\nCreate a Fleeting Chain of Corruption in hand.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"Pity those who cross me.\" - Varus", + "artistName": "Kudos Productions", + "name": "Chain of Corruption", + "cardCode": "06RU009T10", + "keywords": [ + "Burst" + ], + "keywordRefs": [ + "Burst" + ], + "spellSpeed": "Burst", + "spellSpeedRef": "Burst", + "rarity": "None", + "rarityRef": "None", + "subtypes": [], + "supertype": "", + "type": "Spell", + "collectible": false, + "set": "Set6cde" + }, + { + "associatedCards": [], + "associatedCardRefs": [ + "06RU009", + "06RU009T6", + "06RU009T10" + ], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/4_0_0/set6cde/en_us/img/cards/06RU009T9.png", + "fullAbsolutePath": "http://dd.b.pvp.net/4_0_0/set6cde/en_us/img/cards/06RU009T9-full.png" + } + ], + "regions": [ + "Runeterra" + ], + "regionRefs": [ + "Runeterra" + ], + "attack": 0, + "cost": 3, + "health": 0, + "description": "Give an enemy Vulnerable and give an ally +1|+0 this round.\r\nCreate a Fleeting Chain of Corruption in hand. \r\nCreate a Varus in your deck.", + "descriptionRaw": "Give an enemy Vulnerable and give an ally +1|+0 this round.\r\nCreate a Fleeting Chain of Corruption in hand. \r\nCreate a Varus in your deck.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"Pity those who cross me.\" - Varus", + "artistName": "Kudos Productions", + "name": "Varus' Chain of Corruption", + "cardCode": "06RU009T9", + "keywords": [ + "Burst" + ], + "keywordRefs": [ + "Burst" + ], + "spellSpeed": "Burst", + "spellSpeedRef": "Burst", + "rarity": "None", + "rarityRef": "None", + "subtypes": [], + "supertype": "Champion", + "type": "Spell", + "collectible": false, + "set": "Set6cde" + }, + { + "associatedCards": [], + "associatedCardRefs": [ + "06RU009", + "06RU009T6" + ], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/4_0_0/set6cde/en_us/img/cards/06RU009T7.png", + "fullAbsolutePath": "http://dd.b.pvp.net/4_0_0/set6cde/en_us/img/cards/06RU009T7-full.png" + } + ], + "regions": [ + "Runeterra" + ], + "regionRefs": [ + "Runeterra" + ], + "attack": 0, + "cost": 2, + "health": 0, + "description": "When you play a spell or equip an ally, give me +1|+0 (max +5|+0) until the next time my bearer strikes.", + "descriptionRaw": "When you play a spell or equip an ally, give me +1|+0 (max +5|+0) until the next time my bearer strikes.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "Heartlights Kai and Valmar were not the first to bear the bow and host Varus' inhuman power... but they were the first to remind him of his lost humanity.", + "artistName": "Kudos Productions", + "name": "The Darkin Bow", + "cardCode": "06RU009T7", + "keywords": [ + "Equipment" + ], + "keywordRefs": [ + "Equipment" + ], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "None", + "rarityRef": "None", + "subtypes": [ + "DARKIN" + ], + "supertype": "", + "type": "Equipment", + "collectible": false, + "set": "Set6cde" + }, + { + "associatedCards": [], + "associatedCardRefs": [ + "06RU009", + "06RU009T7", + "06RU009T9", + "06RU009T11" + ], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/4_0_0/set6cde/en_us/img/cards/06RU009T6.png", + "fullAbsolutePath": "http://dd.b.pvp.net/4_0_0/set6cde/en_us/img/cards/06RU009T6-full.png" + } + ], + "regions": [ + "Runeterra" + ], + "regionRefs": [ + "Runeterra" + ], + "attack": 4, + "cost": 4, + "health": 5, + "description": "Auto-Equip The Darkin Bow. \r\nThe Darkin Bow activates twice and has max +10|+0.", + "descriptionRaw": "Auto-Equip The Darkin Bow. \r\nThe Darkin Bow activates twice and has max +10|+0.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "Varus was empowered, bolstered, reminded of who he was and what he had yet to become. He embraced the sum of his parts instead of working against them--and when they acted, they acted as one.", + "artistName": "Kudos Productions", + "name": "Varus", + "cardCode": "06RU009T6", + "keywords": [ + "Overwhelm", + "Quick Attack" + ], + "keywordRefs": [ + "Overwhelm", + "QuickStrike" + ], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "None", + "rarityRef": "None", + "subtypes": [ + "DARKIN" + ], + "supertype": "Champion", + "type": "Unit", + "collectible": false, + "set": "Set6cde" + }, + { + "associatedCards": [], + "associatedCardRefs": [ + "06RU009" + ], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/4_0_0/set6cde/en_us/img/cards/06RU009T11.png", + "fullAbsolutePath": "http://dd.b.pvp.net/4_0_0/set6cde/en_us/img/cards/06RU009T11-full.png" + } + ], + "regions": [ + "Runeterra" + ], + "regionRefs": [ + "Runeterra" + ], + "attack": 0, + "cost": 0, + "health": 0, + "description": "You may put any Cultist cards into your deck during deckbuilding.\r\nOnce you have played 3+ Cultist spells, draw a Varus.", + "descriptionRaw": "You may put any Cultist cards into your deck during deckbuilding.\r\nOnce you have played 3+ Cultist spells, draw a Varus.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"We will seek out our betrayers, and we will bring them oblivion.\" - Varus", + "artistName": "Kudos Productions", + "name": "The Arrow of Retribution", + "cardCode": "06RU009T11", + "keywords": [], + "keywordRefs": [], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "None", + "rarityRef": "None", + "subtypes": [], + "supertype": "", + "type": "Ability", + "collectible": false, + "set": "Set6cde" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/4_0_0/set6cde/en_us/img/cards/06RU043.png", + "fullAbsolutePath": "http://dd.b.pvp.net/4_0_0/set6cde/en_us/img/cards/06RU043-full.png" + } + ], + "regions": [ + "Runeterra" + ], + "regionRefs": [ + "Runeterra" + ], + "attack": 0, + "cost": 3, + "health": 0, + "description": "Draw 3. Discard any followers drawn.", + "descriptionRaw": "Draw 3. Discard any followers drawn.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"If I am to act, I must act now.\" - Ryze", + "artistName": "Kudos Productions", + "name": "Realm Warp", + "cardCode": "06RU043", + "keywords": [ + "Burst" + ], + "keywordRefs": [ + "Burst" + ], + "spellSpeed": "Burst", + "spellSpeedRef": "Burst", + "rarity": "None", + "rarityRef": "None", + "subtypes": [], + "supertype": "", + "type": "Spell", + "collectible": false, + "set": "Set6cde" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/4_0_0/set6cde/en_us/img/cards/06RU029.png", + "fullAbsolutePath": "http://dd.b.pvp.net/4_0_0/set6cde/en_us/img/cards/06RU029-full.png" + } + ], + "regions": [ + "Runeterra" + ], + "regionRefs": [ + "Runeterra" + ], + "attack": 0, + "cost": 2, + "health": 0, + "description": "", + "descriptionRaw": "", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "Catch and release is an excellent tactic whether you're fishing or fighting.", + "artistName": "Kudos Productions", + "name": "Fishawhack", + "cardCode": "06RU029", + "keywords": [ + "Equipment", + "Overwhelm" + ], + "keywordRefs": [ + "Equipment", + "Overwhelm" + ], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "None", + "rarityRef": "None", + "subtypes": [], + "supertype": "", + "type": "Equipment", + "collectible": false, + "set": "Set6cde" + }, + { + "associatedCards": [], + "associatedCardRefs": [ + "06RU005", + "06RU005T1", + "06RU005T2" + ], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/4_0_0/set6cde/en_us/img/cards/06RU040.png", + "fullAbsolutePath": "http://dd.b.pvp.net/4_0_0/set6cde/en_us/img/cards/06RU040-full.png" + } + ], + "regions": [ + "Runeterra" + ], + "regionRefs": [ + "Runeterra" + ], + "attack": 0, + "cost": 4, + "health": 0, + "description": "Give Kayn Quick Attack this round. He starts a free attack challenging an enemy.", + "descriptionRaw": "Give Kayn Quick Attack this round. He starts a free attack challenging an enemy.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"No escape.\" - Kayn", + "artistName": "Kudos Productions", + "name": "Shadowstep", + "cardCode": "06RU040", + "keywords": [ + "Slow" + ], + "keywordRefs": [ + "Slow" + ], + "spellSpeed": "Slow", + "spellSpeedRef": "Slow", + "rarity": "None", + "rarityRef": "None", + "subtypes": [], + "supertype": "", + "type": "Spell", + "collectible": false, + "set": "Set6cde" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/4_0_0/set6cde/en_us/img/cards/06RU012.png", + "fullAbsolutePath": "http://dd.b.pvp.net/4_0_0/set6cde/en_us/img/cards/06RU012-full.png" + } + ], + "regions": [ + "Runeterra" + ], + "regionRefs": [ + "Runeterra" + ], + "attack": 0, + "cost": 2, + "health": 0, + "description": "", + "descriptionRaw": "", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "The flavors in this pot are so good it hurts.", + "artistName": "Kudos Productions", + "name": "Pot O' Pain", + "cardCode": "06RU012", + "keywords": [ + "Equipment", + "Impact" + ], + "keywordRefs": [ + "Equipment", + "Impact" + ], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "None", + "rarityRef": "None", + "subtypes": [], + "supertype": "", + "type": "Equipment", + "collectible": false, + "set": "Set6cde" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/4_0_0/set6cde/en_us/img/cards/06RU028.png", + "fullAbsolutePath": "http://dd.b.pvp.net/4_0_0/set6cde/en_us/img/cards/06RU028-full.png" + } + ], + "regions": [ + "Runeterra" + ], + "regionRefs": [ + "Runeterra" + ], + "attack": 0, + "cost": 2, + "health": 0, + "description": "", + "descriptionRaw": "", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "Her spectral guardian bursts from the amulet whenever Fireth is in danger. She seems to have no memory of these events, and aggressively denies its existence when her allies try to explain.", + "artistName": "Kudos Productions", + "name": "Sandworn Amulet", + "cardCode": "06RU028", + "keywords": [ + "Equipment", + "Fearsome" + ], + "keywordRefs": [ + "Equipment", + "Fearsome" + ], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "None", + "rarityRef": "None", + "subtypes": [], + "supertype": "", + "type": "Equipment", + "collectible": false, + "set": "Set6cde" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/4_0_0/set6cde/en_us/img/cards/06RU010.png", + "fullAbsolutePath": "http://dd.b.pvp.net/4_0_0/set6cde/en_us/img/cards/06RU010-full.png" + } + ], + "regions": [ + "Runeterra" + ], + "regionRefs": [ + "Runeterra" + ], + "attack": 0, + "cost": 2, + "health": 0, + "description": "", + "descriptionRaw": "", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "This wrench is the only belonging Pesh brought with him when he made the move from Piltover to Bilgewater. It’s not magic or anything, though you might think otherwise when you see him put it to work.", + "artistName": "Kudos Productions", + "name": "The Fix-Em 5000", + "cardCode": "06RU010", + "keywords": [ + "Equipment", + "Quick Attack" + ], + "keywordRefs": [ + "Equipment", + "QuickStrike" + ], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "None", + "rarityRef": "None", + "subtypes": [], + "supertype": "", + "type": "Equipment", + "collectible": false, + "set": "Set6cde" + }, + { + "associatedCards": [], + "associatedCardRefs": [ + "06RU026T4", + "06RU026", + "06RU026T3", + "06RU026T2" + ], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/4_0_0/set6cde/en_us/img/cards/06RU039.png", + "fullAbsolutePath": "http://dd.b.pvp.net/4_0_0/set6cde/en_us/img/cards/06RU039-full.png" + } + ], + "regions": [ + "Runeterra" + ], + "regionRefs": [ + "Runeterra" + ], + "attack": 0, + "cost": 3, + "health": 0, + "description": "Aatrox and an enemy strike each other.\r\nCreate a Deathbringer Slash in hand.", + "descriptionRaw": "Aatrox and an enemy strike each other.\r\nCreate a Deathbringer Slash in hand.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"I will break this land!\" - Aatrox", + "artistName": "Kudos Productions", + "name": "Deathbringer Sweep", + "cardCode": "06RU039", + "keywords": [ + "Fast" + ], + "keywordRefs": [ + "Fast" + ], + "spellSpeed": "Fast", + "spellSpeedRef": "Fast", + "rarity": "None", + "rarityRef": "None", + "subtypes": [], + "supertype": "", + "type": "Spell", + "collectible": false, + "set": "Set6cde" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/4_0_0/set6cde/en_us/img/cards/06RU030.png", + "fullAbsolutePath": "http://dd.b.pvp.net/4_0_0/set6cde/en_us/img/cards/06RU030-full.png" + } + ], + "regions": [ + "Runeterra" + ], + "regionRefs": [ + "Runeterra" + ], + "attack": 0, + "cost": 2, + "health": 0, + "description": "", + "descriptionRaw": "", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "Fireth says her mother made this rake for her. Exactly where her mother found an artifact of the ancient empire, and exactly why she attached it to a rake, Fireth cannot say.", + "artistName": "Kudos Productions", + "name": "Upcycled Rake", + "cardCode": "06RU030", + "keywords": [ + "Equipment", + "Scout" + ], + "keywordRefs": [ + "Equipment", + "Scout" + ], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "None", + "rarityRef": "None", + "subtypes": [], + "supertype": "", + "type": "Equipment", + "collectible": false, + "set": "Set6cde" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/4_0_0/set6cde/en_us/img/cards/06RU031.png", + "fullAbsolutePath": "http://dd.b.pvp.net/4_0_0/set6cde/en_us/img/cards/06RU031-full.png" + } + ], + "regions": [ + "Runeterra" + ], + "regionRefs": [ + "Runeterra" + ], + "attack": 0, + "cost": 2, + "health": 0, + "description": "", + "descriptionRaw": "", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "Chaska takes a philosophical approach to shepherding. Their flock is whomever happens to be in the vicinity.", + "artistName": "Kudos Productions", + "name": "Shepherd's Authority", + "cardCode": "06RU031", + "keywords": [ + "Equipment", + "Can't Block" + ], + "keywordRefs": [ + "Equipment", + "CantBlock" + ], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "None", + "rarityRef": "None", + "subtypes": [], + "supertype": "", + "type": "Equipment", + "collectible": false, + "set": "Set6cde" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/4_0_0/set6cde/en_us/img/cards/06FR004.png", + "fullAbsolutePath": "http://dd.b.pvp.net/4_0_0/set6cde/en_us/img/cards/06FR004-full.png" + } + ], + "regions": [ + "Freljord" + ], + "regionRefs": [ + "Freljord" + ], + "attack": 1, + "cost": 1, + "health": 1, + "description": "The first time you equip an ally, Forge it.", + "descriptionRaw": "The first time you equip an ally, Forge it.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "Ornn made the living forge many, many years ago, and only went looking for it recently. He never once thought it might go looking for a new owner and wander off on its own.", + "artistName": "Kudos Productions", + "name": "Weaponsmith's Apprentice", + "cardCode": "06FR004", + "keywords": [], + "keywordRefs": [], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "COMMON", + "rarityRef": "Common", + "subtypes": [], + "supertype": "", + "type": "Unit", + "collectible": true, + "set": "Set6cde" + }, + { + "associatedCards": [], + "associatedCardRefs": [ + "06FR018T1" + ], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/4_0_0/set6cde/en_us/img/cards/06FR018.png", + "fullAbsolutePath": "http://dd.b.pvp.net/4_0_0/set6cde/en_us/img/cards/06FR018-full.png" + } + ], + "regions": [ + "Freljord" + ], + "regionRefs": [ + "Freljord" + ], + "attack": 0, + "cost": 2, + "health": 0, + "description": "Attack: Grant the top 2 allies in your deck +1|+1.\r\nYou may spend 8 mana to play me as Anaakca.", + "descriptionRaw": "Attack: Grant the top 2 allies in your deck +1|+1.\r\nYou may spend 8 mana to play me as Anaakca.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"Warmother, the grip of winter has tightened. The Avarosans have fled beyond their outposts. North is the sea... our only path leads east.\"\n\"Do not listen to him, Warmother. That way is the Pale, and beyond it, the whispering wilds. I say better to die than face that cursed land.\"\n\"How fortunate for you both that neither must decide my people's fate.\"\n\"True, Warmother. But perhaps there is a third way. Let me travel east. Better a scout is lost to darkness than all of our people.\"\n- Warmother Sejuani conferring with her generals", + "artistName": "Kudos Productions", + "name": "The Darkin Spear", + "cardCode": "06FR018", + "keywords": [ + "Equipment" + ], + "keywordRefs": [ + "Equipment" + ], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "EPIC", + "rarityRef": "Epic", + "subtypes": [ + "DARKIN" + ], + "supertype": "", + "type": "Equipment", + "collectible": true, + "set": "Set6cde" + }, + { + "associatedCards": [], + "associatedCardRefs": [ + "06FR011T2", + "06FR011T1", + "06FR011T4" + ], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/4_0_0/set6cde/en_us/img/cards/06FR011.png", + "fullAbsolutePath": "http://dd.b.pvp.net/4_0_0/set6cde/en_us/img/cards/06FR011-full.png" + } + ], + "regions": [ + "Freljord" + ], + "regionRefs": [ + "Freljord" + ], + "attack": 4, + "cost": 7, + "health": 4, + "description": "Play: Equip me with an exact copy of an ally's equipment or the strongest equipment from hand.\r\nAttack: Forge me twice.", + "descriptionRaw": "Play: Equip me with an exact copy of an ally's equipment or the strongest equipment from hand.\r\nAttack: Forge me twice.", + "levelupDescription": "An ally has struck for 8+ damage. ", + "levelupDescriptionRaw": "An ally has struck for 8+ damage. ", + "flavorText": "If anyone asked Ornn why he had so little patience, he would answer simply that he did have patience. Tremendous patience, in fact, and that was why his work was incomparable. He simply did not have patience for PEOPLE. But nobody asked, and so he never answered.", + "artistName": "Kudos Productions", + "name": "Ornn", + "cardCode": "06FR011", + "keywords": [ + "Tough" + ], + "keywordRefs": [ + "Tough" + ], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "Champion", + "rarityRef": "Champion", + "subtypes": [], + "supertype": "Champion", + "type": "Unit", + "collectible": true, + "set": "Set6cde" + }, + { + "associatedCards": [], + "associatedCardRefs": [ + "06FR011", + "06FR011T1" + ], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/4_0_0/set6cde/en_us/img/cards/06FR011T2.png", + "fullAbsolutePath": "http://dd.b.pvp.net/4_0_0/set6cde/en_us/img/cards/06FR011T2-full.png" + } + ], + "regions": [ + "Freljord" + ], + "regionRefs": [ + "Freljord" + ], + "attack": 0, + "cost": 5, + "health": 0, + "description": "Forge an ally and deal 1 to all units, then do it again.\r\nCreate a Ornn in deck.", + "descriptionRaw": "Forge an ally and deal 1 to all units, then do it again.\r\nCreate a Ornn in deck.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"An iron will must be forged!\" - Ornn", + "artistName": "Kudos Productions", + "name": "Ornn's Bellows Breath", + "cardCode": "06FR011T2", + "keywords": [ + "Slow" + ], + "keywordRefs": [ + "Slow" + ], + "spellSpeed": "Slow", + "spellSpeedRef": "Slow", + "rarity": "None", + "rarityRef": "None", + "subtypes": [], + "supertype": "Champion", + "type": "Spell", + "collectible": false, + "set": "Set6cde" + }, + { + "associatedCards": [], + "associatedCardRefs": [ + "06FR011", + "06FR011T2", + "06FR011T4" + ], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/4_0_0/set6cde/en_us/img/cards/06FR011T1.png", + "fullAbsolutePath": "http://dd.b.pvp.net/4_0_0/set6cde/en_us/img/cards/06FR011T1-full.png" + } + ], + "regions": [ + "Freljord" + ], + "regionRefs": [ + "Freljord" + ], + "attack": 5, + "cost": 7, + "health": 5, + "description": "Play: Equip me with an exact copy of an ally's equipment or the strongest equipment from hand.\r\nAttack: Forge me twice, then summon an attacking Spirit of the Ram with my stats.", + "descriptionRaw": "Play: Equip me with an exact copy of an ally's equipment or the strongest equipment from hand.\r\nAttack: Forge me twice, then summon an attacking Spirit of the Ram with my stats.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "Some believe that when the world truly needs him, the chosen of Ornn will finally be able to find their god. Isn't that just the way of withdrawn, ornery gods? To be found only in the very last place you look? ", + "artistName": "Will Gist", + "name": "Ornn", + "cardCode": "06FR011T1", + "keywords": [ + "Tough" + ], + "keywordRefs": [ + "Tough" + ], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "None", + "rarityRef": "None", + "subtypes": [], + "supertype": "Champion", + "type": "Unit", + "collectible": false, + "set": "Set6cde" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/4_0_0/set6cde/en_us/img/cards/06FR011T4.png", + "fullAbsolutePath": "http://dd.b.pvp.net/4_0_0/set6cde/en_us/img/cards/06FR011T4-full.png" + } + ], + "regions": [ + "Freljord" + ], + "regionRefs": [ + "Freljord" + ], + "attack": 1, + "cost": 4, + "health": 1, + "description": "", + "descriptionRaw": "", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"What remains after the fire is either forged, or melted. Better to be steel that takes shape than... something that burns away!\" - Ornn", + "artistName": "Kudos Productions", + "name": "Spirit of the Ram", + "cardCode": "06FR011T4", + "keywords": [ + "Ephemeral", + "Overwhelm" + ], + "keywordRefs": [ + "Ephemeral", + "Overwhelm" + ], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "None", + "rarityRef": "None", + "subtypes": [], + "supertype": "", + "type": "Unit", + "collectible": false, + "set": "Set6cde" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/4_0_0/set6cde/en_us/img/cards/06FR027.png", + "fullAbsolutePath": "http://dd.b.pvp.net/4_0_0/set6cde/en_us/img/cards/06FR027-full.png" + } + ], + "regions": [ + "Freljord" + ], + "regionRefs": [ + "Freljord" + ], + "attack": 6, + "cost": 6, + "health": 6, + "description": "Empowered 8: Regeneration.", + "descriptionRaw": "Empowered 8: Regeneration.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "While troll aren't typically known for their intellect, they can be surprisingly ingenious.", + "artistName": "Envar Studio", + "name": "Woolly Snailmoth", + "cardCode": "06FR027", + "keywords": [ + "Overwhelm" + ], + "keywordRefs": [ + "Overwhelm" + ], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "RARE", + "rarityRef": "Rare", + "subtypes": [], + "supertype": "", + "type": "Unit", + "collectible": true, + "set": "Set6cde" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/4_0_0/set6cde/en_us/img/cards/06FR034.png", + "fullAbsolutePath": "http://dd.b.pvp.net/4_0_0/set6cde/en_us/img/cards/06FR034-full.png" + } + ], + "regions": [ + "Freljord" + ], + "regionRefs": [ + "Freljord" + ], + "attack": 0, + "cost": 5, + "health": 0, + "description": "Frostbite the strongest enemy. If you have Equipped an ally this game, copy me.", + "descriptionRaw": "Frostbite the strongest enemy. If you have Equipped an ally this game, copy me.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "Anaakca moved with such speed that the Freljord itself seemed to follow in her wake. Those who survived her butchery soon felt their skin freeze, and their hearts still.", + "artistName": "Kudos Productions", + "name": "The Unforgiving Cold", + "cardCode": "06FR034", + "keywords": [ + "Burst" + ], + "keywordRefs": [ + "Burst" + ], + "spellSpeed": "Burst", + "spellSpeedRef": "Burst", + "rarity": "COMMON", + "rarityRef": "Common", + "subtypes": [ + "CULTIST" + ], + "supertype": "", + "type": "Spell", + "collectible": true, + "set": "Set6cde" + }, + { + "associatedCards": [], + "associatedCardRefs": [ + "06FR012T1" + ], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/4_0_0/set6cde/en_us/img/cards/06FR012.png", + "fullAbsolutePath": "http://dd.b.pvp.net/4_0_0/set6cde/en_us/img/cards/06FR012-full.png" + } + ], + "regions": [ + "Freljord" + ], + "regionRefs": [ + "Freljord" + ], + "attack": 1, + "cost": 2, + "health": 4, + "description": "When I'm summoned, create a Time and Dedication in hand.", + "descriptionRaw": "When I'm summoned, create a Time and Dedication in hand.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"My mother told me of Ornn, as her mother told her, and her mother before... and now I will tell you. Listen closely. Do not interrupt. Long ago, across a great, hot, churning sea...\"", + "artistName": "Envar Studio", + "name": "Favored Artisan", + "cardCode": "06FR012", + "keywords": [], + "keywordRefs": [], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "COMMON", + "rarityRef": "Common", + "subtypes": [], + "supertype": "", + "type": "Unit", + "collectible": true, + "set": "Set6cde" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/4_0_0/set6cde/en_us/img/cards/06FR012T1.png", + "fullAbsolutePath": "http://dd.b.pvp.net/4_0_0/set6cde/en_us/img/cards/06FR012T1-full.png" + } + ], + "regions": [ + "Freljord" + ], + "regionRefs": [ + "Freljord" + ], + "attack": 0, + "cost": 1, + "health": 0, + "description": "Forge an ally.", + "descriptionRaw": "Forge an ally.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"You may be worthy of this. Do not prove me wrong.\" - Ornn", + "artistName": "Kudos Productions", + "name": "Time and Dedication", + "cardCode": "06FR012T1", + "keywords": [ + "Focus" + ], + "keywordRefs": [ + "Focus" + ], + "spellSpeed": "Burst", + "spellSpeedRef": "Burst", + "rarity": "None", + "rarityRef": "None", + "subtypes": [], + "supertype": "", + "type": "Spell", + "collectible": false, + "set": "Set6cde" + }, + { + "associatedCards": [], + "associatedCardRefs": [ + "06FR012T1" + ], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/4_0_0/set6cde/en_us/img/cards/06FR005.png", + "fullAbsolutePath": "http://dd.b.pvp.net/4_0_0/set6cde/en_us/img/cards/06FR005-full.png" + } + ], + "regions": [ + "Freljord" + ], + "regionRefs": [ + "Freljord" + ], + "attack": 0, + "cost": 3, + "health": 0, + "description": "When I'm summoned or Round Start: Create a Fleeting Time and Dedication in hand.", + "descriptionRaw": "When I'm summoned or Round Start: Create a Fleeting Time and Dedication in hand.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "Alone in Hearth-Home's forge with nothing but the sound of the molten river's slow coursing below, and the ring of Hammer on anvil... he quite liked that.", + "artistName": "Envar Studio", + "name": "Ornn's Forge", + "cardCode": "06FR005", + "keywords": [ + "Landmark" + ], + "keywordRefs": [ + "LandmarkVisualOnly" + ], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "RARE", + "rarityRef": "Rare", + "subtypes": [], + "supertype": "", + "type": "Landmark", + "collectible": true, + "set": "Set6cde" + }, + { + "associatedCards": [], + "associatedCardRefs": [ + "01FR047" + ], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/4_0_0/set6cde/en_us/img/cards/06FR036.png", + "fullAbsolutePath": "http://dd.b.pvp.net/4_0_0/set6cde/en_us/img/cards/06FR036-full.png" + } + ], + "regions": [ + "Freljord" + ], + "regionRefs": [ + "Freljord" + ], + "attack": 0, + "cost": 5, + "health": 0, + "description": "Get an empty mana gem.\r\nSummon a Feral Mystic.", + "descriptionRaw": "Get an empty mana gem.\r\nSummon a Feral Mystic.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"The spirits, the stars... again, they bring us together.\" - Hyara Allseer", + "artistName": "Kudos Productions", + "name": "Wild Mysticism", + "cardCode": "06FR036", + "keywords": [ + "Slow" + ], + "keywordRefs": [ + "Slow" + ], + "spellSpeed": "Slow", + "spellSpeedRef": "Slow", + "rarity": "EPIC", + "rarityRef": "Epic", + "subtypes": [], + "supertype": "", + "type": "Spell", + "collectible": true, + "set": "Set6cde" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/4_0_0/set6cde/en_us/img/cards/06FR021.png", + "fullAbsolutePath": "http://dd.b.pvp.net/4_0_0/set6cde/en_us/img/cards/06FR021-full.png" + } + ], + "regions": [ + "Freljord" + ], + "regionRefs": [ + "Freljord" + ], + "attack": 1, + "cost": 1, + "health": 1, + "description": "Empowered 3: Overwhelm, Regeneration, and Tough.", + "descriptionRaw": "Empowered 3: Overwhelm, Regeneration, and Tough.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"Come on, you have to take your medicine! You won't feel better 'til you do!\" - Ingvar the Younger", + "artistName": "Caravan Studio", + "name": "Pouty Poro", + "cardCode": "06FR021", + "keywords": [], + "keywordRefs": [], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "COMMON", + "rarityRef": "Common", + "subtypes": [ + "PORO" + ], + "supertype": "", + "type": "Unit", + "collectible": true, + "set": "Set6cde" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/4_0_0/set6cde/en_us/img/cards/06FR040.png", + "fullAbsolutePath": "http://dd.b.pvp.net/4_0_0/set6cde/en_us/img/cards/06FR040-full.png" + } + ], + "regions": [ + "Freljord" + ], + "regionRefs": [ + "Freljord" + ], + "attack": 6, + "cost": 9, + "health": 6, + "description": "When I'm summoned, grant allies +1|+1 for each different subtype you’ve summoned this game. ", + "descriptionRaw": "When I'm summoned, grant allies +1|+1 for each different subtype you’ve summoned this game. ", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"...an' there was a BIG creature that cared for aaaaaaall of the LIL' creatures...\" - Ingvar the Younger", + "artistName": "Kudos Productions", + "name": "Warden of the Tribes", + "cardCode": "06FR040", + "keywords": [ + "Overwhelm" + ], + "keywordRefs": [ + "Overwhelm" + ], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "EPIC", + "rarityRef": "Epic", + "subtypes": [], + "supertype": "", + "type": "Unit", + "collectible": true, + "set": "Set6cde" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/4_0_0/set6cde/en_us/img/cards/06FR020.png", + "fullAbsolutePath": "http://dd.b.pvp.net/4_0_0/set6cde/en_us/img/cards/06FR020-full.png" + } + ], + "regions": [ + "Freljord" + ], + "regionRefs": [ + "Freljord" + ], + "attack": 0, + "cost": 2, + "health": 0, + "description": "Deal 1 to EVERYTHING or destroy a unit's equipment.", + "descriptionRaw": "Deal 1 to EVERYTHING or destroy a unit's equipment.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "The cold spares nothing and no one.", + "artistName": "Kudos Productions", + "name": "Fracture", + "cardCode": "06FR020", + "keywords": [ + "Slow" + ], + "keywordRefs": [ + "Slow" + ], + "spellSpeed": "Slow", + "spellSpeedRef": "Slow", + "rarity": "RARE", + "rarityRef": "Rare", + "subtypes": [], + "supertype": "", + "type": "Spell", + "collectible": true, + "set": "Set6cde" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/4_0_0/set6cde/en_us/img/cards/06FR035.png", + "fullAbsolutePath": "http://dd.b.pvp.net/4_0_0/set6cde/en_us/img/cards/06FR035-full.png" + } + ], + "regions": [ + "Freljord" + ], + "regionRefs": [ + "Freljord" + ], + "attack": 0, + "cost": 2, + "health": 0, + "description": "Give an ally +0|+3 this round. If it's damaged, give it +2|+3 instead.", + "descriptionRaw": "Give an ally +0|+3 this round. If it's damaged, give it +2|+3 instead.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"Do not worry, little poro. I am with you!\" - Braum", + "artistName": "Kudos Productions", + "name": "Here to Help", + "cardCode": "06FR035", + "keywords": [ + "Burst" + ], + "keywordRefs": [ + "Burst" + ], + "spellSpeed": "Burst", + "spellSpeedRef": "Burst", + "rarity": "COMMON", + "rarityRef": "Common", + "subtypes": [], + "supertype": "", + "type": "Spell", + "collectible": true, + "set": "Set6cde" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/4_0_0/set6cde/en_us/img/cards/06FR022.png", + "fullAbsolutePath": "http://dd.b.pvp.net/4_0_0/set6cde/en_us/img/cards/06FR022-full.png" + } + ], + "regions": [ + "Freljord" + ], + "regionRefs": [ + "Freljord" + ], + "attack": 0, + "cost": 5, + "health": 0, + "description": "Forge an ally and deal 1 to all units, then do it again.", + "descriptionRaw": "Forge an ally and deal 1 to all units, then do it again.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"An iron will must be forged!\" - Ornn", + "artistName": "Kudos Productions", + "name": "Bellows Breath", + "cardCode": "06FR022", + "keywords": [ + "Slow" + ], + "keywordRefs": [ + "Slow" + ], + "spellSpeed": "Slow", + "spellSpeedRef": "Slow", + "rarity": "RARE", + "rarityRef": "Rare", + "subtypes": [], + "supertype": "", + "type": "Spell", + "collectible": true, + "set": "Set6cde" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/4_0_0/set6cde/en_us/img/cards/06FR018T1.png", + "fullAbsolutePath": "http://dd.b.pvp.net/4_0_0/set6cde/en_us/img/cards/06FR018T1-full.png" + } + ], + "regions": [ + "Freljord" + ], + "regionRefs": [ + "Freljord" + ], + "attack": 6, + "cost": 8, + "health": 8, + "description": "Attack: From the top 6 cards of your deck, summon an attacking follower or non-Champion Darkin and grant it +1|+1.", + "descriptionRaw": "Attack: From the top 6 cards of your deck, summon an attacking follower or non-Champion Darkin and grant it +1|+1.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "With newfound vigor, the great warrior Anaakca sped south through the Freljord and into Demacian lands. The outposts prepared as best they could to repel her assault, but no mere mortal would stand between Anaakca's fury and the coward who stoked it.", + "artistName": "Aron Elekes", + "name": "Anaakca", + "cardCode": "06FR018T1", + "keywords": [], + "keywordRefs": [], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "None", + "rarityRef": "None", + "subtypes": [ + "DARKIN" + ], + "supertype": "", + "type": "Unit", + "collectible": false, + "set": "Set6cde" + }, + { + "associatedCards": [], + "associatedCardRefs": [ + "06FR018T1" + ], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/4_0_0/set6cde/en_us/img/cards/06FR018T3.png", + "fullAbsolutePath": "http://dd.b.pvp.net/4_0_0/set6cde/en_us/img/cards/06FR018T3-full.png" + } + ], + "regions": [ + "Freljord" + ], + "regionRefs": [ + "Freljord" + ], + "attack": 0, + "cost": 2, + "health": 0, + "description": "Attack: Grant the top 2 allies in your deck +1|+1. ", + "descriptionRaw": "Attack: Grant the top 2 allies in your deck +1|+1. ", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"Warmother, the grip of winter has tightened to the east. South, the Avarosans have fled beyond their outposts. North is the sea... our only path leads east.\"\n\"No, Warmother. That way is the Pale, and beyond it, the whispering wilds. I say better to die than face that cursed land.\"\n\"How fortunate for you both that neither must decide my people's fate.\"\n\"True, Warmother. But perhaps there is a third way. Let me travel East. Better a scout is lost to darkness than all of our people.\"\n- Warmother Sejuani, conferring with her generals", + "artistName": "Kudos Productions", + "name": "The Darkin Spear", + "cardCode": "06FR018T3", + "keywords": [ + "Equipment" + ], + "keywordRefs": [ + "Equipment" + ], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "None", + "rarityRef": "None", + "subtypes": [ + "DARKIN" + ], + "supertype": "", + "type": "Equipment", + "collectible": false, + "set": "Set6cde" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/4_0_0/set6cde/en_us/img/cards/06FR023.png", + "fullAbsolutePath": "http://dd.b.pvp.net/4_0_0/set6cde/en_us/img/cards/06FR023-full.png" + } + ], + "regions": [ + "Freljord" + ], + "regionRefs": [ + "Freljord" + ], + "attack": 8, + "cost": 8, + "health": 8, + "description": "The first time I'm Equipped, create a 4 cost copy of me in hand. Grant it the equipment's stats.", + "descriptionRaw": "The first time I'm Equipped, create a 4 cost copy of me in hand. Grant it the equipment's stats.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "Though he would not admit it, Ornn was quite pleased with the colossi. They served the exact purpose he assigned to them, and best of all, they did not speak.", + "artistName": "Envar Studio", + "name": "Wrought Colossus", + "cardCode": "06FR023", + "keywords": [ + "Overwhelm" + ], + "keywordRefs": [ + "Overwhelm" + ], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "EPIC", + "rarityRef": "Epic", + "subtypes": [], + "supertype": "", + "type": "Unit", + "collectible": true, + "set": "Set6cde" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/4_0_0/set6cde/en_us/img/cards/06FR008.png", + "fullAbsolutePath": "http://dd.b.pvp.net/4_0_0/set6cde/en_us/img/cards/06FR008-full.png" + } + ], + "regions": [ + "Freljord" + ], + "regionRefs": [ + "Freljord" + ], + "attack": 5, + "cost": 5, + "health": 5, + "description": "Play: Forge an ally and heal it and your Nexus 3.", + "descriptionRaw": "Play: Forge an ally and heal it and your Nexus 3.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "The Hearthblood were gone, all of them, when Ornn decided to leave the world. Generations passed and their name was all but forgotten. More recently, however, the tales of Ornn resurfaced, and it was whispered that some had begun to return to the way of the Hearthblood.", + "artistName": "Michal Ivan", + "name": "Hearthblood Mender", + "cardCode": "06FR008", + "keywords": [], + "keywordRefs": [], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "COMMON", + "rarityRef": "Common", + "subtypes": [], + "supertype": "", + "type": "Unit", + "collectible": true, + "set": "Set6cde" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/4_0_0/set6cde/en_us/img/cards/06FR009.png", + "fullAbsolutePath": "http://dd.b.pvp.net/4_0_0/set6cde/en_us/img/cards/06FR009-full.png" + } + ], + "regions": [ + "Freljord" + ], + "regionRefs": [ + "Freljord" + ], + "attack": 3, + "cost": 3, + "health": 3, + "description": "Play: Forge an ally.", + "descriptionRaw": "Play: Forge an ally.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "When Fiske had first envisioned an apprentice, he imagined someone dedicated, serious about their craft, strong, and capable. Kindra was none of those things. She was prone to daydreaming. She would rather play than work. She was always fussing with that silly little turtle of hers. However... she was learning. That was what mattered.", + "artistName": "Kudos Productions", + "name": "Adept Weaponsmith", + "cardCode": "06FR009", + "keywords": [], + "keywordRefs": [], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "COMMON", + "rarityRef": "Common", + "subtypes": [], + "supertype": "", + "type": "Unit", + "collectible": true, + "set": "Set6cde" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/4_0_0/set6cde/en_us/img/cards/06FR020T1.png", + "fullAbsolutePath": "http://dd.b.pvp.net/4_0_0/set6cde/en_us/img/cards/06FR020T1-full.png" + } + ], + "regions": [ + "Freljord" + ], + "regionRefs": [ + "Freljord" + ], + "attack": 0, + "cost": 2, + "health": 0, + "description": "Deal 1 to EVERYTHING.", + "descriptionRaw": "Deal 1 to EVERYTHING.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "The cold spares nothing and no one.", + "artistName": "Kudos Productions", + "name": "Fracture", + "cardCode": "06FR020T1", + "keywords": [ + "Slow" + ], + "keywordRefs": [ + "Slow" + ], + "spellSpeed": "Slow", + "spellSpeedRef": "Slow", + "rarity": "None", + "rarityRef": "None", + "subtypes": [], + "supertype": "", + "type": "Spell", + "collectible": false, + "set": "Set6cde" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/4_0_0/set6cde/en_us/img/cards/06FR020T2.png", + "fullAbsolutePath": "http://dd.b.pvp.net/4_0_0/set6cde/en_us/img/cards/06FR020T2-full.png" + } + ], + "regions": [ + "Freljord" + ], + "regionRefs": [ + "Freljord" + ], + "attack": 0, + "cost": 2, + "health": 0, + "description": "Destroy a unit's equipment.", + "descriptionRaw": "Destroy a unit's equipment.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "The cold spares nothing and no one.", + "artistName": "Kudos Productions", + "name": "Fracture", + "cardCode": "06FR020T2", + "keywords": [ + "Slow" + ], + "keywordRefs": [ + "Slow" + ], + "spellSpeed": "Slow", + "spellSpeedRef": "Slow", + "rarity": "None", + "rarityRef": "None", + "subtypes": [], + "supertype": "", + "type": "Spell", + "collectible": false, + "set": "Set6cde" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/4_0_0/set6cde/en_us/img/cards/06FR032.png", + "fullAbsolutePath": "http://dd.b.pvp.net/4_0_0/set6cde/en_us/img/cards/06FR032-full.png" + } + ], + "regions": [ + "Freljord" + ], + "regionRefs": [ + "Freljord" + ], + "attack": 0, + "cost": 5, + "health": 0, + "description": "Heal your Nexus 4 and grant all allies and equipment in your deck +1|+1. Draw 1 of them.", + "descriptionRaw": "Heal your Nexus 4 and grant all allies and equipment in your deck +1|+1. Draw 1 of them.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"Come, warm yourself by the fire.\" - Hearthblood Mender", + "artistName": "Kudos Productions", + "name": "Gift of the Hearthblood", + "cardCode": "06FR032", + "keywords": [ + "Burst" + ], + "keywordRefs": [ + "Burst" + ], + "spellSpeed": "Burst", + "spellSpeedRef": "Burst", + "rarity": "EPIC", + "rarityRef": "Epic", + "subtypes": [], + "supertype": "", + "type": "Spell", + "collectible": true, + "set": "Set6cde" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/4_0_0/set6cde/en_us/img/cards/06FR024.png", + "fullAbsolutePath": "http://dd.b.pvp.net/4_0_0/set6cde/en_us/img/cards/06FR024-full.png" + } + ], + "regions": [ + "Freljord" + ], + "regionRefs": [ + "Freljord" + ], + "attack": 0, + "cost": 5, + "health": 0, + "description": "", + "descriptionRaw": "", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"Crunch!\" - Tarkaz the Tribeless", + "artistName": "Kudos Productions", + "name": "Bone Club", + "cardCode": "06FR024", + "keywords": [ + "Equipment" + ], + "keywordRefs": [ + "Equipment" + ], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "COMMON", + "rarityRef": "Common", + "subtypes": [], + "supertype": "", + "type": "Equipment", + "collectible": true, + "set": "Set6cde" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/4_0_0/set6cde/en_us/img/cards/06FR017.png", + "fullAbsolutePath": "http://dd.b.pvp.net/4_0_0/set6cde/en_us/img/cards/06FR017-full.png" + } + ], + "regions": [ + "Freljord" + ], + "regionRefs": [ + "Freljord" + ], + "attack": 5, + "cost": 5, + "health": 5, + "description": "Your Equipped allies have Overwhelm.", + "descriptionRaw": "Your Equipped allies have Overwhelm.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "The Winter's Claw was right. The Avarosans HAD been too soft. It was time for a new leader, one that would not seek to unify the Freljord through peace, but rule over it. ", + "artistName": "MICHAEL IVAN", + "name": "Icevale Cultist", + "cardCode": "06FR017", + "keywords": [ + "Missing Translation" + ], + "keywordRefs": [ + "AuraVisualFakeKeyword" + ], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "RARE", + "rarityRef": "Rare", + "subtypes": [ + "CULTIST" + ], + "supertype": "", + "type": "Unit", + "collectible": true, + "set": "Set6cde" + }, + { + "associatedCards": [], + "associatedCardRefs": [ + "06BC015T3", + "06BC015T1", + "06BC015T2" + ], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/4_0_0/set6cde/en_us/img/cards/06BC015.png", + "fullAbsolutePath": "http://dd.b.pvp.net/4_0_0/set6cde/en_us/img/cards/06BC015-full.png" + } + ], + "regions": [ + "Bandle City" + ], + "regionRefs": [ + "BandleCity" + ], + "attack": 1, + "cost": 2, + "health": 2, + "description": "Nexus Strike: Plant a Mysterious Portal randomly in the top 4 cards of your deck.", + "descriptionRaw": "Nexus Strike: Plant a Mysterious Portal randomly in the top 4 cards of your deck.", + "levelupDescription": "You've summoned 6+ created allies.", + "levelupDescriptionRaw": "You've summoned 6+ created allies.", + "flavorText": "Norra’s worked quickly, thoughts of home in mind. Portalwork was notoriously tricky business, and she hadn’t even had her first cup of tea yet. But Norra loved a good puzzle, especially the type that found her hopelessly lost in pocket dimensions between space and time. She worked faster, thinking fondly of her cat, who would be worried and expecting dinner.", + "artistName": "Caravan Studio", + "name": "Norra", + "cardCode": "06BC015", + "keywords": [ + "Elusive" + ], + "keywordRefs": [ + "Elusive" + ], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "Champion", + "rarityRef": "Champion", + "subtypes": [ + "YORDLE" + ], + "supertype": "Champion", + "type": "Unit", + "collectible": true, + "set": "Set6cde" + }, + { + "associatedCards": [], + "associatedCardRefs": [ + "06BC015T3", + "06BC015T1", + "06BC015" + ], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/4_0_0/set6cde/en_us/img/cards/06BC015T2.png", + "fullAbsolutePath": "http://dd.b.pvp.net/4_0_0/set6cde/en_us/img/cards/06BC015T2-full.png" + } + ], + "regions": [ + "Bandle City" + ], + "regionRefs": [ + "BandleCity" + ], + "attack": 2, + "cost": 2, + "health": 3, + "description": "Your Mysterious Portals now summon 4, 5, 6, or 7 cost followers instead.\r\nNexus Strike: Plant a Mysterious Portal randomly in the top 4 cards of your deck.", + "descriptionRaw": "Your Mysterious Portals now summon 4, 5, 6, or 7 cost followers instead.\r\nNexus Strike: Plant a Mysterious Portal randomly in the top 4 cards of your deck.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "With a whiz and a snap, the totem’s various bits and bobs sprang to life, a knick-knack spinning here, a doohickey flashing there. As the room rumbled and groaned, a portal materialized high above, and the vague silhouette of cat ears appeared within. Norra squealed, spilling her tea in delight. Had she finally found the way home?", + "artistName": "Caravan Studio", + "name": "Norra", + "cardCode": "06BC015T2", + "keywords": [ + "Elusive" + ], + "keywordRefs": [ + "Elusive" + ], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "None", + "rarityRef": "None", + "subtypes": [ + "YORDLE" + ], + "supertype": "Champion", + "type": "Unit", + "collectible": false, + "set": "Set6cde" + }, + { + "associatedCards": [], + "associatedCardRefs": [ + "06BC015" + ], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/4_0_0/set6cde/en_us/img/cards/06BC015T3.png", + "fullAbsolutePath": "http://dd.b.pvp.net/4_0_0/set6cde/en_us/img/cards/06BC015T3-full.png" + } + ], + "regions": [ + "Bandle City" + ], + "regionRefs": [ + "BandleCity" + ], + "attack": 0, + "cost": 0, + "health": 0, + "description": "Summon a random 2 or 3 cost follower. If your board is full, create a 0 cost Fleeting copy in hand instead.", + "descriptionRaw": "Summon a random 2 or 3 cost follower. If your board is full, create a 0 cost Fleeting copy in hand instead.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "Another mysterious portal... where would this one lead?", + "artistName": "Kudos Productions", + "name": "Mysterious Portal", + "cardCode": "06BC015T3", + "keywords": [ + "Boon" + ], + "keywordRefs": [ + "Boon" + ], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "None", + "rarityRef": "None", + "subtypes": [], + "supertype": "", + "type": "Trap", + "collectible": false, + "set": "Set6cde" + }, + { + "associatedCards": [], + "associatedCardRefs": [ + "06BC015T3", + "06BC015", + "06BC015T2" + ], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/4_0_0/set6cde/en_us/img/cards/06BC015T1.png", + "fullAbsolutePath": "http://dd.b.pvp.net/4_0_0/set6cde/en_us/img/cards/06BC015T1-full.png" + } + ], + "regions": [ + "Bandle City" + ], + "regionRefs": [ + "BandleCity" + ], + "attack": 0, + "cost": 5, + "health": 0, + "description": "Plant 2 Mysterious Portals randomly in the top 4 cards of your deck. Draw 1.\r\nCreate a Norra in your deck.", + "descriptionRaw": "Plant 2 Mysterious Portals randomly in the top 4 cards of your deck. Draw 1.\r\nCreate a Norra in your deck.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "“I ought to take the Low Roads more often! Silly me, I always forget to mind my head...“\n- Norra", + "artistName": "Kudos Productions", + "name": "Norra's Portalpalooza", + "cardCode": "06BC015T1", + "keywords": [ + "Burst" + ], + "keywordRefs": [ + "Burst" + ], + "spellSpeed": "Burst", + "spellSpeedRef": "Burst", + "rarity": "None", + "rarityRef": "None", + "subtypes": [], + "supertype": "Champion", + "type": "Spell", + "collectible": false, + "set": "Set6cde" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/4_0_0/set6cde/en_us/img/cards/06BC047.png", + "fullAbsolutePath": "http://dd.b.pvp.net/4_0_0/set6cde/en_us/img/cards/06BC047-full.png" + } + ], + "regions": [ + "Targon", + "Bandle City" + ], + "regionRefs": [ + "Targon", + "BandleCity" + ], + "attack": 0, + "cost": 2, + "health": 0, + "description": "Give an ally with an attachment the stats and keywords of its attachment this round and move the attachment to another ally.", + "descriptionRaw": "Give an ally with an attachment the stats and keywords of its attachment this round and move the attachment to another ally.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "You’d think a shepherd would have no place on the battlefield, but the skillset has surprising utility. You just have to think about all the combatants as sheep in need of herding.", + "artistName": "Kudos Productions", + "name": "Sharesies", + "cardCode": "06BC047", + "keywords": [ + "Burst" + ], + "keywordRefs": [ + "Burst" + ], + "spellSpeed": "Burst", + "spellSpeedRef": "Burst", + "rarity": "RARE", + "rarityRef": "Rare", + "subtypes": [ + "WEAPONMASTER" + ], + "supertype": "", + "type": "Spell", + "collectible": true, + "set": "Set6cde" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/4_0_0/set6cde/en_us/img/cards/06BC023.png", + "fullAbsolutePath": "http://dd.b.pvp.net/4_0_0/set6cde/en_us/img/cards/06BC023-full.png" + } + ], + "regions": [ + "Bandle City" + ], + "regionRefs": [ + "BandleCity" + ], + "attack": 0, + "cost": 4, + "health": 0, + "description": "Return a Fast or Slow spell to hand or destroy a unit's Equipment. Draw 1.", + "descriptionRaw": "Return a Fast or Slow spell to hand or destroy a unit's Equipment. Draw 1.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"Dear me! Was it this way, that way, or... this-a-that-way? I never can remember!\" - Norra", + "artistName": "Kudos Productions", + "name": "Puzzling Signposts", + "cardCode": "06BC023", + "keywords": [ + "Fast" + ], + "keywordRefs": [ + "Fast" + ], + "spellSpeed": "Fast", + "spellSpeedRef": "Fast", + "rarity": "RARE", + "rarityRef": "Rare", + "subtypes": [], + "supertype": "", + "type": "Spell", + "collectible": true, + "set": "Set6cde" + }, + { + "associatedCards": [], + "associatedCardRefs": [ + "06BC015T3" + ], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/4_0_0/set6cde/en_us/img/cards/06BC019.png", + "fullAbsolutePath": "http://dd.b.pvp.net/4_0_0/set6cde/en_us/img/cards/06BC019-full.png" + } + ], + "regions": [ + "Bandle City" + ], + "regionRefs": [ + "BandleCity" + ], + "attack": 3, + "cost": 3, + "health": 1, + "description": "When I'm summoned, plant a Mysterious Portal randomly in the top 4 cards of your deck.", + "descriptionRaw": "When I'm summoned, plant a Mysterious Portal randomly in the top 4 cards of your deck.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "Ashane was once a renowned tea maker before finding herself lost in Realm’s End. While experimenting with new flavors, an unfortunate blend of two leaves had put her into a deep sleep--she dreamed strange dreams about odd creatures and impossible structures, silhouetted against an endless horizon. But upon waking, she discovered it had been no dream at all.", + "artistName": "Caravan Studio", + "name": "The Tea Maker", + "cardCode": "06BC019", + "keywords": [], + "keywordRefs": [], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "COMMON", + "rarityRef": "Common", + "subtypes": [ + "FAE" + ], + "supertype": "", + "type": "Unit", + "collectible": true, + "set": "Set6cde" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/4_0_0/set6cde/en_us/img/cards/06BC043.png", + "fullAbsolutePath": "http://dd.b.pvp.net/4_0_0/set6cde/en_us/img/cards/06BC043-full.png" + } + ], + "regions": [ + "Bandle City" + ], + "regionRefs": [ + "BandleCity" + ], + "attack": 0, + "cost": 2, + "health": 0, + "description": "Create 3 random 1 cost Poros in hand.", + "descriptionRaw": "Create 3 random 1 cost Poros in hand.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"...AN' DEN DA PORO WAS LIKE \"HEY YOU I WANNA SNAX TOO!\" SO DA POROS GATHERED TOGETHER AT DA GREAT MEETING OF DA POROS TO TALK ABOUT ALL DA PORO PROBLEMS LIKE WHERE ARE DA SNAX AND WHY AREN'T THERE MORE POROS AND...\" - Ingvar the Younger", + "artistName": "Kudos Productions", + "name": "Poro Stories", + "cardCode": "06BC043", + "keywords": [ + "Burst" + ], + "keywordRefs": [ + "Burst" + ], + "spellSpeed": "Burst", + "spellSpeedRef": "Burst", + "rarity": "COMMON", + "rarityRef": "Common", + "subtypes": [], + "supertype": "", + "type": "Spell", + "collectible": true, + "set": "Set6cde" + }, + { + "associatedCards": [], + "associatedCardRefs": [ + "06BC029T1" + ], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/4_0_0/set6cde/en_us/img/cards/06BC029.png", + "fullAbsolutePath": "http://dd.b.pvp.net/4_0_0/set6cde/en_us/img/cards/06BC029-full.png" + } + ], + "regions": [ + "Bandle City" + ], + "regionRefs": [ + "BandleCity" + ], + "attack": 0, + "cost": 1, + "health": 0, + "description": "Strike: Refill 1 spell mana.\r\nYou may spend 8 mana to play me as Baalkux.", + "descriptionRaw": "Strike: Refill 1 spell mana.\r\nYou may spend 8 mana to play me as Baalkux.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "The bandlewood seemed a perfect place to hide a Darkin weapon, they reasoned. Bandlewoods are, by their very nature, impossible to navigate, and the yordles would know to steer clear of such abject malevolence. But the Targonians failed to realize the efficacy of such strange magic, and the effects it would have over the local flora.", + "artistName": "Kudos Productions", + "name": "The Darkin Staff", + "cardCode": "06BC029", + "keywords": [ + "Equipment", + "Impact" + ], + "keywordRefs": [ + "Equipment", + "Impact" + ], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "EPIC", + "rarityRef": "Epic", + "subtypes": [ + "DARKIN" + ], + "supertype": "", + "type": "Equipment", + "collectible": true, + "set": "Set6cde" + }, + { + "associatedCards": [], + "associatedCardRefs": [ + "06BC029T1" + ], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/4_0_0/set6cde/en_us/img/cards/06BC029T3.png", + "fullAbsolutePath": "http://dd.b.pvp.net/4_0_0/set6cde/en_us/img/cards/06BC029T3-full.png" + } + ], + "regions": [ + "Bandle City" + ], + "regionRefs": [ + "BandleCity" + ], + "attack": 0, + "cost": 1, + "health": 0, + "description": "Strike: Refill 1 spell mana.", + "descriptionRaw": "Strike: Refill 1 spell mana.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "The bandlewood seemed a perfect place to hide a Darkin weapon, they reasoned. They are, at their core, impossible to navigate, and the yordles would know to steer clear of such abject malevolence. But the Targonians failed to realize the efficacy of bandle magic, and the effects it would have over the local flora.", + "artistName": "Kudos Productions", + "name": "The Darkin Staff", + "cardCode": "06BC029T3", + "keywords": [ + "Equipment", + "Impact" + ], + "keywordRefs": [ + "Equipment", + "Impact" + ], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "None", + "rarityRef": "None", + "subtypes": [ + "DARKIN" + ], + "supertype": "", + "type": "Equipment", + "collectible": false, + "set": "Set6cde" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/4_0_0/set6cde/en_us/img/cards/06BC029T1.png", + "fullAbsolutePath": "http://dd.b.pvp.net/4_0_0/set6cde/en_us/img/cards/06BC029T1-full.png" + } + ], + "regions": [ + "Bandle City" + ], + "regionRefs": [ + "BandleCity" + ], + "attack": 7, + "cost": 8, + "health": 9, + "description": "When you spend spell mana, grant me Impact for every spell mana you spend.", + "descriptionRaw": "When you spend spell mana, grant me Impact for every spell mana you spend.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "Baalkux felt the tree's limbs grip the staff inside which he lay dormant. Quickly, he gripped back. His life erupted from the darkin staff and coursed through the tree's ancient boughs and branches. There was no heart to control here. No blood to bend. Baalkux could finally return to his general, and atone for his past transgressions.", + "artistName": "Envar Studio", + "name": "Baalkux", + "cardCode": "06BC029T1", + "keywords": [ + "Impact" + ], + "keywordRefs": [ + "Impact" + ], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "None", + "rarityRef": "None", + "subtypes": [ + "DARKIN" + ], + "supertype": "", + "type": "Unit", + "collectible": false, + "set": "Set6cde" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/4_0_0/set6cde/en_us/img/cards/06BC038.png", + "fullAbsolutePath": "http://dd.b.pvp.net/4_0_0/set6cde/en_us/img/cards/06BC038-full.png" + } + ], + "regions": [ + "Bandle City" + ], + "regionRefs": [ + "BandleCity" + ], + "attack": 0, + "cost": 4, + "health": 0, + "description": "Once you have Equipped an ally this game, I cost 2 less. \r\nGrow an ally to 4|4 this round.", + "descriptionRaw": "Once you have Equipped an ally this game, I cost 2 less. \r\nGrow an ally to 4|4 this round.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"There is so much power in us.\" - Varus", + "artistName": "Kudos Productions", + "name": "The Sudden Surge", + "cardCode": "06BC038", + "keywords": [ + "Burst" + ], + "keywordRefs": [ + "Burst" + ], + "spellSpeed": "Burst", + "spellSpeedRef": "Burst", + "rarity": "RARE", + "rarityRef": "Rare", + "subtypes": [ + "CULTIST" + ], + "supertype": "", + "type": "Spell", + "collectible": true, + "set": "Set6cde" + }, + { + "associatedCards": [], + "associatedCardRefs": [ + "06BC015T3" + ], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/4_0_0/set6cde/en_us/img/cards/06BC017.png", + "fullAbsolutePath": "http://dd.b.pvp.net/4_0_0/set6cde/en_us/img/cards/06BC017-full.png" + } + ], + "regions": [ + "Bandle City" + ], + "regionRefs": [ + "BandleCity" + ], + "attack": 0, + "cost": 5, + "health": 0, + "description": "Plant 2 Mysterious Portals randomly in the top 4 cards of your deck. Draw 1.", + "descriptionRaw": "Plant 2 Mysterious Portals randomly in the top 4 cards of your deck. Draw 1.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "“I ought to take the Low Roads more often! Silly me, I always forget to mind my head...“\n- Norra", + "artistName": "Kudos Productions", + "name": "Portalpalooza", + "cardCode": "06BC017", + "keywords": [ + "Burst" + ], + "keywordRefs": [ + "Burst" + ], + "spellSpeed": "Burst", + "spellSpeedRef": "Burst", + "rarity": "RARE", + "rarityRef": "Rare", + "subtypes": [], + "supertype": "", + "type": "Spell", + "collectible": true, + "set": "Set6cde" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/4_0_0/set6cde/en_us/img/cards/06BC020.png", + "fullAbsolutePath": "http://dd.b.pvp.net/4_0_0/set6cde/en_us/img/cards/06BC020-full.png" + } + ], + "regions": [ + "Bandle City" + ], + "regionRefs": [ + "BandleCity" + ], + "attack": 0, + "cost": 1, + "health": 0, + "description": "Give me +1|+0 for each of your traps or boons that was activated this round. ", + "descriptionRaw": "Give me +1|+0 for each of your traps or boons that was activated this round. ", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "The magic of papercraft can be somewhat unpredictable. It is as much about the intention that goes into creating something new as the creation's desire to be shaped.", + "artistName": "Kudos Productions", + "name": "Origami Slicer", + "cardCode": "06BC020", + "keywords": [ + "Equipment" + ], + "keywordRefs": [ + "Equipment" + ], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "RARE", + "rarityRef": "Rare", + "subtypes": [], + "supertype": "", + "type": "Equipment", + "collectible": true, + "set": "Set6cde" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/4_0_0/set6cde/en_us/img/cards/06BC028.png", + "fullAbsolutePath": "http://dd.b.pvp.net/4_0_0/set6cde/en_us/img/cards/06BC028-full.png" + } + ], + "regions": [ + "Bandle City" + ], + "regionRefs": [ + "BandleCity" + ], + "attack": 3, + "cost": 3, + "health": 2, + "description": "Once you've Equipped an ally this game, grant me Elusive.", + "descriptionRaw": "Once you've Equipped an ally this game, grant me Elusive.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "Person, plant, animal... the Darkin's corruptive influence spares no one and nothing.", + "artistName": "Kudos Productions", + "name": "Blooming Cultist", + "cardCode": "06BC028", + "keywords": [], + "keywordRefs": [], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "COMMON", + "rarityRef": "Common", + "subtypes": [ + "CULTIST" + ], + "supertype": "", + "type": "Unit", + "collectible": true, + "set": "Set6cde" + }, + { + "associatedCards": [], + "associatedCardRefs": [ + "06BC015T3" + ], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/4_0_0/set6cde/en_us/img/cards/06BC021.png", + "fullAbsolutePath": "http://dd.b.pvp.net/4_0_0/set6cde/en_us/img/cards/06BC021-full.png" + } + ], + "regions": [ + "Bandle City" + ], + "regionRefs": [ + "BandleCity" + ], + "attack": 2, + "cost": 2, + "health": 2, + "description": "Last Breath: Plant a Mysterious Portal randomly in the top 4 cards of your deck.", + "descriptionRaw": "Last Breath: Plant a Mysterious Portal randomly in the top 4 cards of your deck.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "He’d only been born the day before, but Marv--as Norra affectionally called him--took great pride in serving as her assistant. However, he sternly insisted on being referred to as \"junk\" and not \"trash\", as the latter held a negative connotation.", + "artistName": "Caravan Studio", + "name": "Junk Construct", + "cardCode": "06BC021", + "keywords": [ + "Last Breath" + ], + "keywordRefs": [ + "LastBreath" + ], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "COMMON", + "rarityRef": "Common", + "subtypes": [ + "FAE" + ], + "supertype": "", + "type": "Unit", + "collectible": true, + "set": "Set6cde" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/4_0_0/set6cde/en_us/img/cards/06BC042.png", + "fullAbsolutePath": "http://dd.b.pvp.net/4_0_0/set6cde/en_us/img/cards/06BC042-full.png" + } + ], + "regions": [ + "Bandle City" + ], + "regionRefs": [ + "BandleCity" + ], + "attack": 2, + "cost": 3, + "health": 4, + "description": "When an allied follower transforms into another unit, transform me into an exact copy of it.", + "descriptionRaw": "When an allied follower transforms into another unit, transform me into an exact copy of it.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "Chameleon see, chameleon be.", + "artistName": "Kudos Productions", + "name": "Curious Changelings", + "cardCode": "06BC042", + "keywords": [], + "keywordRefs": [], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "RARE", + "rarityRef": "Rare", + "subtypes": [], + "supertype": "", + "type": "Unit", + "collectible": true, + "set": "Set6cde" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/4_0_0/set6cde/en_us/img/cards/06BC041.png", + "fullAbsolutePath": "http://dd.b.pvp.net/4_0_0/set6cde/en_us/img/cards/06BC041-full.png" + } + ], + "regions": [ + "Bandle City" + ], + "regionRefs": [ + "BandleCity" + ], + "attack": 0, + "cost": 2, + "health": 0, + "description": "When I'm discarded, summon me. When you summon a Mecha-Yordle, grant it a random keyword. ", + "descriptionRaw": "When I'm discarded, summon me. When you summon a Mecha-Yordle, grant it a random keyword. ", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "Big or small, inanimate or otherwise, if there's a doodad you want found, try Skrappy's! Just don't ask Skrappy where it is, because she is not a believer in cataloguing.", + "artistName": "Envar Studio", + "name": "Skrappy's Partsapalooza", + "cardCode": "06BC041", + "keywords": [ + "Landmark" + ], + "keywordRefs": [ + "LandmarkVisualOnly" + ], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "RARE", + "rarityRef": "Rare", + "subtypes": [], + "supertype": "", + "type": "Landmark", + "collectible": true, + "set": "Set6cde" + }, + { + "associatedCards": [], + "associatedCardRefs": [ + "06BC015T3", + "06RU001T3" + ], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/4_0_0/set6cde/en_us/img/cards/06BC011.png", + "fullAbsolutePath": "http://dd.b.pvp.net/4_0_0/set6cde/en_us/img/cards/06BC011-full.png" + } + ], + "regions": [ + "Bandle City" + ], + "regionRefs": [ + "BandleCity" + ], + "attack": 0, + "cost": 2, + "health": 0, + "description": "Plant a Mysterious Portal randomly in the top 4 cards of your deck and plant a Chime on the top card of your deck.", + "descriptionRaw": "Plant a Mysterious Portal randomly in the top 4 cards of your deck and plant a Chime on the top card of your deck.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "Wandering through the various realms as he pleases, Bard listens, knowing that a great conflict approaches - one that could silence the song of creation.", + "artistName": "Kudos Productions", + "name": "Magical Journey", + "cardCode": "06BC011", + "keywords": [ + "Burst" + ], + "keywordRefs": [ + "Burst" + ], + "spellSpeed": "Burst", + "spellSpeedRef": "Burst", + "rarity": "COMMON", + "rarityRef": "Common", + "subtypes": [], + "supertype": "", + "type": "Spell", + "collectible": true, + "set": "Set6cde" + }, + { + "associatedCards": [], + "associatedCardRefs": [ + "06BC015T3", + "06RU001T3", + "05PZ008", + "01PZ022" + ], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/4_0_0/set6cde/en_us/img/cards/06BC032.png", + "fullAbsolutePath": "http://dd.b.pvp.net/4_0_0/set6cde/en_us/img/cards/06BC032-full.png" + } + ], + "regions": [ + "Bandle City" + ], + "regionRefs": [ + "BandleCity" + ], + "attack": 0, + "cost": 7, + "health": 0, + "description": "For each ally, plant a Mysterious Portal and 3 Chimes in the top 10 cards of your deck and plant a Flashbomb Trap and 3 Poison Puffcaps on random cards in the enemy deck.", + "descriptionRaw": "For each ally, plant a Mysterious Portal and 3 Chimes in the top 10 cards of your deck and plant a Flashbomb Trap and 3 Poison Puffcaps on random cards in the enemy deck.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"Portals, portals, everywhere!\"\n- Norra", + "artistName": "Kudos Productions", + "name": "Eclectic Collection", + "cardCode": "06BC032", + "keywords": [ + "Burst" + ], + "keywordRefs": [ + "Burst" + ], + "spellSpeed": "Burst", + "spellSpeedRef": "Burst", + "rarity": "EPIC", + "rarityRef": "Epic", + "subtypes": [], + "supertype": "", + "type": "Spell", + "collectible": true, + "set": "Set6cde" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/4_0_0/set6cde/en_us/img/cards/06BC024.png", + "fullAbsolutePath": "http://dd.b.pvp.net/4_0_0/set6cde/en_us/img/cards/06BC024-full.png" + } + ], + "regions": [ + "Bandle City" + ], + "regionRefs": [ + "BandleCity" + ], + "attack": 4, + "cost": 6, + "health": 5, + "description": "Each round, the first time one of your traps or boons activate, give all allies +1|+1 and Impact this round.", + "descriptionRaw": "Each round, the first time one of your traps or boons activate, give all allies +1|+1 and Impact this round.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "Gaspar was the first yordle to arrive in Realm’s End. For many years, he wandered alone amidst the twisting paths and portals that all seemed to lead nowhere. Having decided that no one should ever have to do the same, he now helps other lost travelers find their way home.", + "artistName": "Caravan Studio", + "name": "Realm's Caretaker", + "cardCode": "06BC024", + "keywords": [], + "keywordRefs": [], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "RARE", + "rarityRef": "Rare", + "subtypes": [ + "YORDLE" + ], + "supertype": "", + "type": "Unit", + "collectible": true, + "set": "Set6cde" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/4_0_0/set6cde/en_us/img/cards/06BC033.png", + "fullAbsolutePath": "http://dd.b.pvp.net/4_0_0/set6cde/en_us/img/cards/06BC033-full.png" + } + ], + "regions": [ + "Bandle City" + ], + "regionRefs": [ + "BandleCity" + ], + "attack": 0, + "cost": 3, + "health": 0, + "description": "To play, discard 1.", + "descriptionRaw": "To play, discard 1.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"Behold! From the ruins of a sunken ferry, I fetched the boxing glove. From the depths of the city they call Zaun, I recovered springs, and from the forges of Demacia, I found metal! This is truly a creation of the world!\" - Paparo the Great", + "artistName": "Kudos Productions", + "name": "Mechapulverizer", + "cardCode": "06BC033", + "keywords": [ + "Equipment" + ], + "keywordRefs": [ + "Equipment" + ], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "COMMON", + "rarityRef": "Common", + "subtypes": [], + "supertype": "", + "type": "Equipment", + "collectible": true, + "set": "Set6cde" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/4_0_0/set6cde/en_us/img/cards/06BC016.png", + "fullAbsolutePath": "http://dd.b.pvp.net/4_0_0/set6cde/en_us/img/cards/06BC016-full.png" + } + ], + "regions": [ + "Bandle City" + ], + "regionRefs": [ + "BandleCity" + ], + "attack": 4, + "cost": 5, + "health": 3, + "description": "When I'm summoned, if one of your traps or boons has activated this round, draw 1.", + "descriptionRaw": "When I'm summoned, if one of your traps or boons has activated this round, draw 1.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "Considering it his duty to possess immense knowledge, he collects tomes from various travelers who have passed through Realm’s End. Unfortunately, all of this knowledge appears to have gone to his head.", + "artistName": "Caravan Studio", + "name": "Living Library", + "cardCode": "06BC016", + "keywords": [ + "Elusive" + ], + "keywordRefs": [ + "Elusive" + ], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "COMMON", + "rarityRef": "Common", + "subtypes": [ + "FAE" + ], + "supertype": "", + "type": "Unit", + "collectible": true, + "set": "Set6cde" + }, + { + "associatedCards": [], + "associatedCardRefs": [ + "06IO013T1" + ], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/4_0_0/set6cde/en_us/img/cards/06IO013.png", + "fullAbsolutePath": "http://dd.b.pvp.net/4_0_0/set6cde/en_us/img/cards/06IO013-full.png" + } + ], + "regions": [ + "Ionia" + ], + "regionRefs": [ + "Ionia" + ], + "attack": 0, + "cost": 1, + "health": 0, + "description": "Give an ally +2|+0 this round.\r\nCreate a Meditate in hand.", + "descriptionRaw": "Give an ally +2|+0 this round.\r\nCreate a Meditate in hand.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"One cut, of many.\"\n- Master Yi", + "artistName": "Kudos Productions", + "name": "Wuju Style", + "cardCode": "06IO013", + "keywords": [ + "Burst" + ], + "keywordRefs": [ + "Burst" + ], + "spellSpeed": "Burst", + "spellSpeedRef": "Burst", + "rarity": "RARE", + "rarityRef": "Rare", + "subtypes": [], + "supertype": "", + "type": "Spell", + "collectible": true, + "set": "Set6cde" + }, + { + "associatedCards": [], + "associatedCardRefs": [ + "06IO023T1", + "02IO003T1" + ], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/4_0_0/set6cde/en_us/img/cards/06IO023.png", + "fullAbsolutePath": "http://dd.b.pvp.net/4_0_0/set6cde/en_us/img/cards/06IO023-full.png" + } + ], + "regions": [ + "Ionia" + ], + "regionRefs": [ + "Ionia" + ], + "attack": 0, + "cost": 2, + "health": 0, + "description": "Attack: Summon an attacking Dragonling. \r\nYou may spend 9 mana to play me as Praa the Breachwalker.", + "descriptionRaw": "Attack: Summon an attacking Dragonling. \r\nYou may spend 9 mana to play me as Praa the Breachwalker.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"In the bridge between worlds, I have long sensed a shadow that pulses with silent rage. Though I know better than to delve into the darkness after it, the pulse has lately grown stronger, faster--and I fear the creatures of the spirit realm will soon begin searching for it.\" - Shen", + "artistName": "Kudos Productions", + "name": "The Darkin Fan", + "cardCode": "06IO023", + "keywords": [ + "Equipment" + ], + "keywordRefs": [ + "Equipment" + ], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "EPIC", + "rarityRef": "Epic", + "subtypes": [ + "DARKIN" + ], + "supertype": "", + "type": "Equipment", + "collectible": true, + "set": "Set6cde" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/4_0_0/set6cde/en_us/img/cards/06IO029.png", + "fullAbsolutePath": "http://dd.b.pvp.net/4_0_0/set6cde/en_us/img/cards/06IO029-full.png" + } + ], + "regions": [ + "Ionia" + ], + "regionRefs": [ + "Ionia" + ], + "attack": 4, + "cost": 5, + "health": 3, + "description": "Flow: I cost 2 less. \r\nWhen I'm summoned, draw a spell.", + "descriptionRaw": "Flow: I cost 2 less. \r\nWhen I'm summoned, draw a spell.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"Master Doran believed each eye of the Spirit of Wuju offered unique insight into a person's being. But try as I might, all my helm's lenses can behold are different shades of green. What am I missing?\" - Lui, Disciple of Doran", + "artistName": "Kudos Productions", + "name": "The Spirit of Wuju", + "cardCode": "06IO029", + "keywords": [ + "Flow" + ], + "keywordRefs": [ + "Flow" + ], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "COMMON", + "rarityRef": "Common", + "subtypes": [], + "supertype": "", + "type": "Unit", + "collectible": true, + "set": "Set6cde" + }, + { + "associatedCards": [], + "associatedCardRefs": [ + "01IO052T1" + ], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/4_0_0/set6cde/en_us/img/cards/06IO039.png", + "fullAbsolutePath": "http://dd.b.pvp.net/4_0_0/set6cde/en_us/img/cards/06IO039-full.png" + } + ], + "regions": [ + "Ionia" + ], + "regionRefs": [ + "Ionia" + ], + "attack": 3, + "cost": 3, + "health": 1, + "description": "When I'm summoned, summon a Navori Brigand or give other allies +1|+1 this round.", + "descriptionRaw": "When I'm summoned, summon a Navori Brigand or give other allies +1|+1 this round.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "The longtail first befriended his Brigand pal one winter's evening, as the two shared the remnants of an abandoned campfire. By the week's end, the two had discovered a common sense of mischief, and a strong interest in the golden shine of coin.", + "artistName": "Kudos Productions", + "name": "Navori Longtail", + "cardCode": "06IO039", + "keywords": [], + "keywordRefs": [], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "COMMON", + "rarityRef": "Common", + "subtypes": [], + "supertype": "", + "type": "Unit", + "collectible": true, + "set": "Set6cde" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/4_0_0/set6cde/en_us/img/cards/06IO031.png", + "fullAbsolutePath": "http://dd.b.pvp.net/4_0_0/set6cde/en_us/img/cards/06IO031-full.png" + } + ], + "regions": [ + "Ionia" + ], + "regionRefs": [ + "Ionia" + ], + "attack": 0, + "cost": 4, + "health": 0, + "description": "Flow: I cost 2 less.", + "descriptionRaw": "Flow: I cost 2 less.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"Blade and body.\" - Master Yi", + "artistName": "Kudos Productions", + "name": "Soul Sword", + "cardCode": "06IO031", + "keywords": [ + "Equipment", + "Flow" + ], + "keywordRefs": [ + "Equipment", + "Flow" + ], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "COMMON", + "rarityRef": "Common", + "subtypes": [], + "supertype": "", + "type": "Equipment", + "collectible": true, + "set": "Set6cde" + }, + { + "associatedCards": [], + "associatedCardRefs": [ + "06IO014T1" + ], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/4_0_0/set6cde/en_us/img/cards/06IO014.png", + "fullAbsolutePath": "http://dd.b.pvp.net/4_0_0/set6cde/en_us/img/cards/06IO014-full.png" + } + ], + "regions": [ + "Ionia" + ], + "regionRefs": [ + "Ionia" + ], + "attack": 1, + "cost": 1, + "health": 1, + "description": "Nexus Strike: Recall me and transform me into Shimon Wind", + "descriptionRaw": "Nexus Strike: Recall me and transform me into Shimon Wind", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "Ting grinned as the attackers flooded the temple. Finally, a chance to prove himself! First Wukong, then Yi... both had dismissed his talents. Let the others run to find their \"master\"! He was ready. He was the Shimon Wind. ", + "artistName": "Polar Engine", + "name": "Vastayan Disciple", + "cardCode": "06IO014", + "keywords": [ + "Elusive" + ], + "keywordRefs": [ + "Elusive" + ], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "EPIC", + "rarityRef": "Epic", + "subtypes": [], + "supertype": "", + "type": "Unit", + "collectible": true, + "set": "Set6cde" + }, + { + "associatedCards": [], + "associatedCardRefs": [ + "06IO023T1", + "02IO003T1" + ], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/4_0_0/set6cde/en_us/img/cards/06IO023T3.png", + "fullAbsolutePath": "http://dd.b.pvp.net/4_0_0/set6cde/en_us/img/cards/06IO023T3-full.png" + } + ], + "regions": [ + "Ionia" + ], + "regionRefs": [ + "Ionia" + ], + "attack": 0, + "cost": 2, + "health": 0, + "description": "Attack: Summon an attacking Dragonling.", + "descriptionRaw": "Attack: Summon an attacking Dragonling.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"In the bridge between worlds, I have long sensed a shadow that pulses with silent rage. Though I know better than to delve into the darkness after it, the pulse has lately grown stronger, faster, and I fear that the creatures of the spirit realm will soon begin searching for it.\" - Shen", + "artistName": "Kudos Productions", + "name": "The Darkin Fan", + "cardCode": "06IO023T3", + "keywords": [ + "Equipment" + ], + "keywordRefs": [ + "Equipment" + ], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "EPIC", + "rarityRef": "Epic", + "subtypes": [ + "DARKIN" + ], + "supertype": "", + "type": "Equipment", + "collectible": false, + "set": "Set6cde" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/4_0_0/set6cde/en_us/img/cards/06IO023T1.png", + "fullAbsolutePath": "http://dd.b.pvp.net/4_0_0/set6cde/en_us/img/cards/06IO023T1-full.png" + } + ], + "regions": [ + "Ionia" + ], + "regionRefs": [ + "Ionia" + ], + "attack": 5, + "cost": 9, + "health": 4, + "description": "Play, and when I transform: Summon two Ephemeral copies of me. Grant one Lifesteal, one Challenger and me Elusive.", + "descriptionRaw": "Play, and when I transform: Summon two Ephemeral copies of me. Grant one Lifesteal, one Challenger and me Elusive.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "His general's call stirred him from slumber. As his senses came to him, Praa found himself looking through a weighted veil to a lush, unfamiliar land. Slowly, inexorably, he stepped through the divide, and buried his feet in Runeterra's soil once more. For Aatrox. For victory. For peace. For death.", + "artistName": "Aron Elekes", + "name": "Praa the Breachwalker", + "cardCode": "06IO023T1", + "keywords": [], + "keywordRefs": [], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "None", + "rarityRef": "None", + "subtypes": [ + "DARKIN" + ], + "supertype": "", + "type": "Unit", + "collectible": false, + "set": "Set6cde" + }, + { + "associatedCards": [], + "associatedCardRefs": [ + "06IO013T1", + "06IO008T1", + "06IO008T2" + ], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/4_0_0/set6cde/en_us/img/cards/06IO008.png", + "fullAbsolutePath": "http://dd.b.pvp.net/4_0_0/set6cde/en_us/img/cards/06IO008-full.png" + } + ], + "regions": [ + "Ionia" + ], + "regionRefs": [ + "Ionia" + ], + "attack": 2, + "cost": 3, + "health": 3, + "description": "Round Start: Reduce the cost of a spell in your hand by 1 and Flow: Grant all allied Master Yis everywhere +2|+0.", + "descriptionRaw": "Round Start: Reduce the cost of a spell in your hand by 1 and Flow: Grant all allied Master Yis everywhere +2|+0.", + "levelupDescription": "I've dealt 12+ damage. ", + "levelupDescriptionRaw": "I've dealt 12+ damage. ", + "flavorText": "Master Yi's mind drifted to the Darkin weapon. Ever since its discovery, he'd been troubled by a terrible sense of foreboding. Some of his students had taken a keen interest–too keen–so he had the curved blades placed under guard, deep within the temple. With some effort, he pushed those thoughts from his mind and continued his meditation. Passing on the teachings of Wuju was all that mattered, and Jun showed great promise.", + "artistName": "Kudos Productions", + "name": "Master Yi", + "cardCode": "06IO008", + "keywords": [ + "Quick Attack", + "Flow" + ], + "keywordRefs": [ + "QuickStrike", + "Flow" + ], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "Champion", + "rarityRef": "Champion", + "subtypes": [], + "supertype": "Champion", + "type": "Unit", + "collectible": true, + "set": "Set6cde" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/4_0_0/set6cde/en_us/img/cards/06IO011.png", + "fullAbsolutePath": "http://dd.b.pvp.net/4_0_0/set6cde/en_us/img/cards/06IO011-full.png" + } + ], + "regions": [ + "Ionia" + ], + "regionRefs": [ + "Ionia" + ], + "attack": 4, + "cost": 3, + "health": 3, + "description": "The first time I am Equipped, give me Barrier and Lifesteal this round.", + "descriptionRaw": "The first time I am Equipped, give me Barrier and Lifesteal this round.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "At his signal, Jun unleashed a series of blows as precise as any Yi would have made himself. Though he deftly avoided the attack, he bowed before her, pride in his smile.", + "artistName": "Kudos Productions", + "name": "Jun, the Prodigy", + "cardCode": "06IO011", + "keywords": [], + "keywordRefs": [], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "RARE", + "rarityRef": "Rare", + "subtypes": [], + "supertype": "", + "type": "Unit", + "collectible": true, + "set": "Set6cde" + }, + { + "associatedCards": [], + "associatedCardRefs": [ + "06IO015T1" + ], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/4_0_0/set6cde/en_us/img/cards/06IO015.png", + "fullAbsolutePath": "http://dd.b.pvp.net/4_0_0/set6cde/en_us/img/cards/06IO015-full.png" + } + ], + "regions": [ + "Ionia" + ], + "regionRefs": [ + "Ionia" + ], + "attack": 3, + "cost": 4, + "health": 3, + "description": "Flow: I cost 2 less.\r\nPlay: Stun an enemy.", + "descriptionRaw": "Flow: I cost 2 less.\r\nPlay: Stun an enemy.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "What is this one's role in this strange and gruesome show? Ah, more than audience, she is observer, the lens through which all things pass and must be held up against truth and beauty. The Witness!", + "artistName": "Envar Studio", + "name": "The Witness", + "cardCode": "06IO015", + "keywords": [ + "Flow" + ], + "keywordRefs": [ + "Flow" + ], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "COMMON", + "rarityRef": "Common", + "subtypes": [], + "supertype": "", + "type": "Unit", + "collectible": true, + "set": "Set6cde" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/4_0_0/set6cde/en_us/img/cards/06IO030.png", + "fullAbsolutePath": "http://dd.b.pvp.net/4_0_0/set6cde/en_us/img/cards/06IO030-full.png" + } + ], + "regions": [ + "Ionia" + ], + "regionRefs": [ + "Ionia" + ], + "attack": 0, + "cost": 3, + "health": 0, + "description": "When I'm summoned, draw an equipment.\r\nThe first time each round an unequipped ally is Equipped, refill 1 spell mana and grant them +1|+0.", + "descriptionRaw": "When I'm summoned, draw an equipment.\r\nThe first time each round an unequipped ally is Equipped, refill 1 spell mana and grant them +1|+0.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"Mistfall is sacred ground. The swords at the site have been here for centuries... and it is my belief that any blade left here with a poem on its hilt will invite the spirits of lost wielders to imbue it with their blessing.\"\n- Disciple of Doran, handwritten scroll", + "artistName": "Polar Engine", + "name": "Mistfall", + "cardCode": "06IO030", + "keywords": [ + "Landmark" + ], + "keywordRefs": [ + "LandmarkVisualOnly" + ], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "RARE", + "rarityRef": "Rare", + "subtypes": [], + "supertype": "", + "type": "Landmark", + "collectible": true, + "set": "Set6cde" + }, + { + "associatedCards": [], + "associatedCardRefs": [ + "06IO014" + ], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/4_0_0/set6cde/en_us/img/cards/06IO014T1.png", + "fullAbsolutePath": "http://dd.b.pvp.net/4_0_0/set6cde/en_us/img/cards/06IO014T1-full.png" + } + ], + "regions": [ + "Ionia" + ], + "regionRefs": [ + "Ionia" + ], + "attack": 0, + "cost": 2, + "health": 0, + "description": "Summon a Vastayan Disciple and draw 1.", + "descriptionRaw": "Summon a Vastayan Disciple and draw 1.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"Whoosh!\" - Ting, the Shimon Wind", + "artistName": "Kudos Productions", + "name": "Shimon Wind", + "cardCode": "06IO014T1", + "keywords": [ + "Focus" + ], + "keywordRefs": [ + "Focus" + ], + "spellSpeed": "Burst", + "spellSpeedRef": "Burst", + "rarity": "EPIC", + "rarityRef": "Epic", + "subtypes": [], + "supertype": "", + "type": "Spell", + "collectible": false, + "set": "Set6cde" + }, + { + "associatedCards": [], + "associatedCardRefs": [ + "06IO013T1", + "06IO008T1", + "06IO008" + ], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/4_0_0/set6cde/en_us/img/cards/06IO008T2.png", + "fullAbsolutePath": "http://dd.b.pvp.net/4_0_0/set6cde/en_us/img/cards/06IO008T2-full.png" + } + ], + "regions": [ + "Ionia" + ], + "regionRefs": [ + "Ionia" + ], + "attack": 0, + "cost": 1, + "health": 0, + "description": "Give an ally +2|+0 this round.\r\nCreate Meditate in hand. Create a Master Yi in your deck.", + "descriptionRaw": "Give an ally +2|+0 this round.\r\nCreate Meditate in hand. Create a Master Yi in your deck.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"One cut, of many.\"\n- Master Yi", + "artistName": "Kudos Productions", + "name": "Master Yi's Wuju Style", + "cardCode": "06IO008T2", + "keywords": [ + "Burst" + ], + "keywordRefs": [ + "Burst" + ], + "spellSpeed": "Burst", + "spellSpeedRef": "Burst", + "rarity": "None", + "rarityRef": "None", + "subtypes": [], + "supertype": "Champion", + "type": "Spell", + "collectible": false, + "set": "Set6cde" + }, + { + "associatedCards": [], + "associatedCardRefs": [ + "06IO013T1", + "06IO008T2", + "06IO008" + ], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/4_0_0/set6cde/en_us/img/cards/06IO008T1.png", + "fullAbsolutePath": "http://dd.b.pvp.net/4_0_0/set6cde/en_us/img/cards/06IO008T1-full.png" + } + ], + "regions": [ + "Ionia" + ], + "regionRefs": [ + "Ionia" + ], + "attack": 3, + "cost": 3, + "health": 4, + "description": "Attack: I immediately strike the weakest enemy. \r\nRound Start: Reduce the cost of a spell in your hand by 1 and Flow: Grant all allied Master Yis everywhere +2|+0.", + "descriptionRaw": "Attack: I immediately strike the weakest enemy. \r\nRound Start: Reduce the cost of a spell in your hand by 1 and Flow: Grant all allied Master Yis everywhere +2|+0.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "From the corner of his eye, Yi saw the flash of steel and heard the unmistakable thud of a lifeless body. Could it have been her? How could he have failed his pupils so utterly? They were untrained and unprepared. But he was a master of Wuju, and neither shame nor shadow would win the day. ", + "artistName": "Kudos Productions", + "name": "Master Yi", + "cardCode": "06IO008T1", + "keywords": [ + "Quick Attack", + "Flow" + ], + "keywordRefs": [ + "QuickStrike", + "Flow" + ], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "None", + "rarityRef": "None", + "subtypes": [], + "supertype": "Champion", + "type": "Unit", + "collectible": false, + "set": "Set6cde" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/4_0_0/set6cde/en_us/img/cards/06IO013T1.png", + "fullAbsolutePath": "http://dd.b.pvp.net/4_0_0/set6cde/en_us/img/cards/06IO013T1-full.png" + } + ], + "regions": [ + "Ionia" + ], + "regionRefs": [ + "Ionia" + ], + "attack": 0, + "cost": 2, + "health": 0, + "description": "Give an ally +0|+2 this round.", + "descriptionRaw": "Give an ally +0|+2 this round.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"Form before strength.\" - Master Yi", + "artistName": "Kudos Productions", + "name": "Meditate", + "cardCode": "06IO013T1", + "keywords": [ + "Fleeting", + "Burst" + ], + "keywordRefs": [ + "Fleeting", + "Burst" + ], + "spellSpeed": "Burst", + "spellSpeedRef": "Burst", + "rarity": "None", + "rarityRef": "None", + "subtypes": [], + "supertype": "", + "type": "Spell", + "collectible": false, + "set": "Set6cde" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/4_0_0/set6cde/en_us/img/cards/06IO034.png", + "fullAbsolutePath": "http://dd.b.pvp.net/4_0_0/set6cde/en_us/img/cards/06IO034-full.png" + } + ], + "regions": [ + "Ionia" + ], + "regionRefs": [ + "Ionia" + ], + "attack": 0, + "cost": 1, + "health": 0, + "description": "Give an ally +1|+0 or +0|+1 this round. If you have Equipped an ally this game, play a copy of me on the same target.", + "descriptionRaw": "Give an ally +1|+0 or +0|+1 this round. If you have Equipped an ally this game, play a copy of me on the same target.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "Angry tears streamed down Jun’s face as she surveyed the bodies littering the ground. She had failed them. She had failed her master. And now, only one choice remained…", + "artistName": "Kudos Productions", + "name": "Momentous Choice", + "cardCode": "06IO034", + "keywords": [ + "Burst" + ], + "keywordRefs": [ + "Burst" + ], + "spellSpeed": "Burst", + "spellSpeedRef": "Burst", + "rarity": "RARE", + "rarityRef": "Rare", + "subtypes": [ + "CULTIST" + ], + "supertype": "", + "type": "Spell", + "collectible": true, + "set": "Set6cde" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/4_0_0/set6cde/en_us/img/cards/06IO028.png", + "fullAbsolutePath": "http://dd.b.pvp.net/4_0_0/set6cde/en_us/img/cards/06IO028-full.png" + } + ], + "regions": [ + "Ionia", + "Noxus" + ], + "regionRefs": [ + "Ionia", + "Noxus" + ], + "attack": 0, + "cost": 2, + "health": 0, + "description": "Give an ally Challenger this round. If it's Equipped, draw 1.", + "descriptionRaw": "Give an ally Challenger this round. If it's Equipped, draw 1.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "Everything's hungry for the right bait.", + "artistName": "Kudos Productions", + "name": "Entrancing Lure", + "cardCode": "06IO028", + "keywords": [ + "Burst" + ], + "keywordRefs": [ + "Burst" + ], + "spellSpeed": "Burst", + "spellSpeedRef": "Burst", + "rarity": "RARE", + "rarityRef": "Rare", + "subtypes": [ + "WEAPONMASTER" + ], + "supertype": "", + "type": "Spell", + "collectible": true, + "set": "Set6cde" + }, + { + "associatedCards": [], + "associatedCardRefs": [ + "01IO013" + ], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/4_0_0/set6cde/en_us/img/cards/06IO025.png", + "fullAbsolutePath": "http://dd.b.pvp.net/4_0_0/set6cde/en_us/img/cards/06IO025-full.png" + } + ], + "regions": [ + "Ionia" + ], + "regionRefs": [ + "Ionia" + ], + "attack": 3, + "cost": 3, + "health": 3, + "description": "Once you've Equipped an ally this game, create a Shadow Fiend in hand.", + "descriptionRaw": "Once you've Equipped an ally this game, create a Shadow Fiend in hand.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "In the darkness, he'd seen it - a weapon to cut through the shadows. And in that moment, he heard a voice call to him, distant but powerful. He followed it to Kayn, the truth of its words guiding him.", + "artistName": "Kudos Productions", + "name": "Shadowblade Fanatic", + "cardCode": "06IO025", + "keywords": [ + "Quick Attack" + ], + "keywordRefs": [ + "QuickStrike" + ], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "COMMON", + "rarityRef": "Common", + "subtypes": [ + "CULTIST" + ], + "supertype": "", + "type": "Unit", + "collectible": true, + "set": "Set6cde" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/4_0_0/set6cde/en_us/img/cards/06IO015T1.png", + "fullAbsolutePath": "http://dd.b.pvp.net/4_0_0/set6cde/en_us/img/cards/06IO015T1-full.png" + } + ], + "regions": [ + "Ionia" + ], + "regionRefs": [ + "Ionia" + ], + "attack": 0, + "cost": 0, + "health": 0, + "description": "Stun an enemy.", + "descriptionRaw": "Stun an enemy.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "The Kashuri spies are mostly observers, but they are well-equipped in case they are ever attacked.", + "artistName": "Kudos Productions", + "name": "Scintillating Artifact", + "cardCode": "06IO015T1", + "keywords": [ + "Skill" + ], + "keywordRefs": [ + "Skill" + ], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "None", + "rarityRef": "None", + "subtypes": [], + "supertype": "", + "type": "Ability", + "collectible": false, + "set": "Set6cde" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/4_0_0/set6cde/en_us/img/cards/06IO040.png", + "fullAbsolutePath": "http://dd.b.pvp.net/4_0_0/set6cde/en_us/img/cards/06IO040-full.png" + } + ], + "regions": [ + "Ionia" + ], + "regionRefs": [ + "Ionia" + ], + "attack": 0, + "cost": 4, + "health": 0, + "description": "Pick a follower. Summon an exact Ephemeral copy of it. If it's an enemy, Stun it. ", + "descriptionRaw": "Pick a follower. Summon an exact Ephemeral copy of it. If it's an enemy, Stun it. ", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "To the Ionians, wind is the most capricious of the elements. Capricious, but not untamable. ", + "artistName": "Kudos Productions", + "name": "Twin Wind Technique", + "cardCode": "06IO040", + "keywords": [ + "Slow" + ], + "keywordRefs": [ + "Slow" + ], + "spellSpeed": "Slow", + "spellSpeedRef": "Slow", + "rarity": "RARE", + "rarityRef": "Rare", + "subtypes": [], + "supertype": "", + "type": "Spell", + "collectible": true, + "set": "Set6cde" + }, + { + "associatedCards": [], + "associatedCardRefs": [ + "01IO052T1" + ], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/4_0_0/set6cde/en_us/img/cards/06IO039T2.png", + "fullAbsolutePath": "http://dd.b.pvp.net/4_0_0/set6cde/en_us/img/cards/06IO039T2-full.png" + } + ], + "regions": [ + "Ionia" + ], + "regionRefs": [ + "Ionia" + ], + "attack": 3, + "cost": 3, + "health": 1, + "description": "When I'm summoned, summon a Navori Brigand.", + "descriptionRaw": "When I'm summoned, summon a Navori Brigand.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "The longtail first befriended his Brigand pal one winter's evening, as the two shared the remnants of an abandoned campfire. By the week's end, the two had discovered a common sense of mischief, and a strong interest in the golden shine of coin.", + "artistName": "Kudos Productions", + "name": "Navori Longtail", + "cardCode": "06IO039T2", + "keywords": [], + "keywordRefs": [], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "None", + "rarityRef": "None", + "subtypes": [], + "supertype": "", + "type": "Unit", + "collectible": false, + "set": "Set6cde" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/4_0_0/set6cde/en_us/img/cards/06IO039T1.png", + "fullAbsolutePath": "http://dd.b.pvp.net/4_0_0/set6cde/en_us/img/cards/06IO039T1-full.png" + } + ], + "regions": [ + "Ionia" + ], + "regionRefs": [ + "Ionia" + ], + "attack": 3, + "cost": 3, + "health": 1, + "description": "When I'm summoned, give other allies +1|+1 this round.", + "descriptionRaw": "When I'm summoned, give other allies +1|+1 this round.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "The longtail first befriended his Brigand pal one winter's evening, as the two shared the remnants of an abandoned campfire. By the week's end, the two had discovered a common sense of mischief, and a strong interest in the golden shine of coin.", + "artistName": "Kudos Productions", + "name": "Navori Longtail", + "cardCode": "06IO039T1", + "keywords": [], + "keywordRefs": [], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "None", + "rarityRef": "None", + "subtypes": [], + "supertype": "", + "type": "Unit", + "collectible": false, + "set": "Set6cde" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/4_0_0/set6cde/en_us/img/cards/06IO032.png", + "fullAbsolutePath": "http://dd.b.pvp.net/4_0_0/set6cde/en_us/img/cards/06IO032-full.png" + } + ], + "regions": [ + "Ionia" + ], + "regionRefs": [ + "Ionia" + ], + "attack": 0, + "cost": 5, + "health": 0, + "description": "Flow: I cost 2 less.\r\nRecall a unit or landmark. If it has any attachments, destroy them first.", + "descriptionRaw": "Flow: I cost 2 less.\r\nRecall a unit or landmark. If it has any attachments, destroy them first.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"You are not worthy of the power you hold.\" - Rhaast", + "artistName": "Kudos Productions", + "name": "Unworthy Soul", + "cardCode": "06IO032", + "keywords": [ + "Fast", + "Flow" + ], + "keywordRefs": [ + "Fast", + "Flow" + ], + "spellSpeed": "Fast", + "spellSpeedRef": "Fast", + "rarity": "RARE", + "rarityRef": "Rare", + "subtypes": [], + "supertype": "", + "type": "Spell", + "collectible": true, + "set": "Set6cde" + }, + { + "associatedCards": [], + "associatedCardRefs": [ + "06IO001T1" + ], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/4_0_0/set6cde/en_us/img/cards/06IO001.png", + "fullAbsolutePath": "http://dd.b.pvp.net/4_0_0/set6cde/en_us/img/cards/06IO001-full.png" + } + ], + "regions": [ + "Ionia" + ], + "regionRefs": [ + "Ionia" + ], + "attack": 2, + "cost": 2, + "health": 2, + "description": "When I'm summoned, create a Preparation in hand.", + "descriptionRaw": "When I'm summoned, create a Preparation in hand.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"I have learned what knowledge I could to continue this sacred art. As for Doran, and his master, and his master before him... I hope their spirits will guide my hammer.\"\n- Disciple of Doran, handwritten scroll", + "artistName": "Polar Engine", + "name": "Disciple of Doran", + "cardCode": "06IO001", + "keywords": [], + "keywordRefs": [], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "COMMON", + "rarityRef": "Common", + "subtypes": [], + "supertype": "", + "type": "Unit", + "collectible": true, + "set": "Set6cde" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/4_0_0/set6cde/en_us/img/cards/06IO001T1.png", + "fullAbsolutePath": "http://dd.b.pvp.net/4_0_0/set6cde/en_us/img/cards/06IO001T1-full.png" + } + ], + "regions": [ + "Ionia" + ], + "regionRefs": [ + "Ionia" + ], + "attack": 0, + "cost": 1, + "health": 0, + "description": "Reduce the cost of a spell in your hand by 1.", + "descriptionRaw": "Reduce the cost of a spell in your hand by 1.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"A warrior is only as able as they are prepared.\"\n- Wuju words of wisdom", + "artistName": "Kudos Productions", + "name": "Preparation", + "cardCode": "06IO001T1", + "keywords": [ + "Focus" + ], + "keywordRefs": [ + "Focus" + ], + "spellSpeed": "Burst", + "spellSpeedRef": "Burst", + "rarity": "None", + "rarityRef": "None", + "subtypes": [], + "supertype": "", + "type": "Spell", + "collectible": false, + "set": "Set6cde" + }, + { + "associatedCards": [], + "associatedCardRefs": [ + "01IO030" + ], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/4_0_0/set6cde/en_us/img/cards/06IO016.png", + "fullAbsolutePath": "http://dd.b.pvp.net/4_0_0/set6cde/en_us/img/cards/06IO016-full.png" + } + ], + "regions": [ + "Ionia" + ], + "regionRefs": [ + "Ionia" + ], + "attack": 3, + "cost": 6, + "health": 5, + "description": "Round Start: Flow: Summon a The Empyrean and grant it Ephemeral.", + "descriptionRaw": "Round Start: Flow: Summon a The Empyrean and grant it Ephemeral.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"The shape of the water reflects the shape of your desire. Tell me, wanderer... what do you see?\"", + "artistName": "Kudos Productions", + "name": "Dragoncaller", + "cardCode": "06IO016", + "keywords": [ + "Attune", + "Flow" + ], + "keywordRefs": [ + "Attune", + "Flow" + ], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "EPIC", + "rarityRef": "Epic", + "subtypes": [], + "supertype": "", + "type": "Unit", + "collectible": true, + "set": "Set6cde" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/4_0_0/set6cde/en_us/img/cards/06IO034T1.png", + "fullAbsolutePath": "http://dd.b.pvp.net/4_0_0/set6cde/en_us/img/cards/06IO034T1-full.png" + } + ], + "regions": [ + "Ionia" + ], + "regionRefs": [ + "Ionia" + ], + "attack": 0, + "cost": 1, + "health": 0, + "description": "Give an ally +0|+1 this round.", + "descriptionRaw": "Give an ally +0|+1 this round.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "…sacrifice.", + "artistName": "Kudos Productions", + "name": "Momentous Choice", + "cardCode": "06IO034T1", + "keywords": [ + "Burst" + ], + "keywordRefs": [ + "Burst" + ], + "spellSpeed": "Burst", + "spellSpeedRef": "Burst", + "rarity": "RARE", + "rarityRef": "Rare", + "subtypes": [ + "CULTIST" + ], + "supertype": "", + "type": "Spell", + "collectible": false, + "set": "Set6cde" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/4_0_0/set6cde/en_us/img/cards/06IO034T2.png", + "fullAbsolutePath": "http://dd.b.pvp.net/4_0_0/set6cde/en_us/img/cards/06IO034T2-full.png" + } + ], + "regions": [ + "Ionia" + ], + "regionRefs": [ + "Ionia" + ], + "attack": 0, + "cost": 1, + "health": 0, + "description": "Give an ally +1|+0 this round.", + "descriptionRaw": "Give an ally +1|+0 this round.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "…violence.", + "artistName": "Kudos Productions", + "name": "Momentous Choice", + "cardCode": "06IO034T2", + "keywords": [ + "Burst" + ], + "keywordRefs": [ + "Burst" + ], + "spellSpeed": "Burst", + "spellSpeedRef": "Burst", + "rarity": "RARE", + "rarityRef": "Rare", + "subtypes": [ + "CULTIST" + ], + "supertype": "", + "type": "Spell", + "collectible": false, + "set": "Set6cde" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/4_0_0/set6cde/en_us/img/cards/06IO037.png", + "fullAbsolutePath": "http://dd.b.pvp.net/4_0_0/set6cde/en_us/img/cards/06IO037-full.png" + } + ], + "regions": [ + "Ionia" + ], + "regionRefs": [ + "Ionia" + ], + "attack": 0, + "cost": 2, + "health": 0, + "description": "Play: Capture an ally. When you attack for the first time each round, summon an Ephemeral copy of it attacking.", + "descriptionRaw": "Play: Capture an ally. When you attack for the first time each round, summon an Ephemeral copy of it attacking.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"What is one life, but a shadow of existence? Embrace the darkness, and you will live forever.\" - Zed", + "artistName": "Envar Studio", + "name": "The Black Flame", + "cardCode": "06IO037", + "keywords": [ + "Landmark" + ], + "keywordRefs": [ + "LandmarkVisualOnly" + ], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "EPIC", + "rarityRef": "Epic", + "subtypes": [], + "supertype": "", + "type": "Landmark", + "collectible": true, + "set": "Set6cde" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/4_0_0/set6cde/en_us/img/cards/06PZ034.png", + "fullAbsolutePath": "http://dd.b.pvp.net/4_0_0/set6cde/en_us/img/cards/06PZ034-full.png" + } + ], + "regions": [ + "Piltover & Zaun" + ], + "regionRefs": [ + "PiltoverZaun" + ], + "attack": 0, + "cost": 6, + "health": 0, + "description": "Deal 6 to a unit. If it would die, Obliterate it instead.", + "descriptionRaw": "Deal 6 to a unit. If it would die, Obliterate it instead.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "For some creatures, death just isn't enough.", + "artistName": "Kudos Productions", + "name": "Hexbliterator", + "cardCode": "06PZ034", + "keywords": [ + "Fast" + ], + "keywordRefs": [ + "Fast" + ], + "spellSpeed": "Fast", + "spellSpeedRef": "Fast", + "rarity": "RARE", + "rarityRef": "Rare", + "subtypes": [], + "supertype": "", + "type": "Spell", + "collectible": true, + "set": "Set6cde" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/4_0_0/set6cde/en_us/img/cards/06PZ006.png", + "fullAbsolutePath": "http://dd.b.pvp.net/4_0_0/set6cde/en_us/img/cards/06PZ006-full.png" + } + ], + "regions": [ + "Piltover & Zaun" + ], + "regionRefs": [ + "PiltoverZaun" + ], + "attack": 0, + "cost": 2, + "health": 0, + "description": "Create a random new 2 cost spell in hand, reduce it's cost by 2 and grant it Fleeting.", + "descriptionRaw": "Create a random new 2 cost spell in hand, reduce it's cost by 2 and grant it Fleeting.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "There's nothing more satisfying than good reverb.", + "artistName": "Kudos Productions", + "name": "Encore", + "cardCode": "06PZ006", + "keywords": [ + "Burst" + ], + "keywordRefs": [ + "Burst" + ], + "spellSpeed": "Burst", + "spellSpeedRef": "Burst", + "rarity": "RARE", + "rarityRef": "Rare", + "subtypes": [], + "supertype": "", + "type": "Spell", + "collectible": true, + "set": "Set6cde" + }, + { + "associatedCards": [], + "associatedCardRefs": [ + "06PZ021T1", + "06PZ021T2" + ], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/4_0_0/set6cde/en_us/img/cards/06PZ021.png", + "fullAbsolutePath": "http://dd.b.pvp.net/4_0_0/set6cde/en_us/img/cards/06PZ021-full.png" + } + ], + "regions": [ + "Piltover & Zaun" + ], + "regionRefs": [ + "PiltoverZaun" + ], + "attack": 1, + "cost": 2, + "health": 4, + "description": "When I'm summoned, create a random new 2 cost spell in hand.", + "descriptionRaw": "When I'm summoned, create a random new 2 cost spell in hand.", + "levelupDescription": "You've played 9+ new spells this game.", + "levelupDescriptionRaw": "You've played 9+ new spells this game.", + "flavorText": "Seraphine and her dad never talked about her \"secret\" trips to the Undercity, or the subtle upgrades she kept making to her stage. She was sure he'd forbid her from participating in Zaun's grungiest musical duel, but one night he tucked the flyer under her door. All she could do was smile, and get to work.", + "artistName": "Claudiu-Antoniu Magherusan", + "name": "Seraphine", + "cardCode": "06PZ021", + "keywords": [], + "keywordRefs": [], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "Champion", + "rarityRef": "Champion", + "subtypes": [], + "supertype": "Champion", + "type": "Unit", + "collectible": true, + "set": "Set6cde" + }, + { + "associatedCards": [], + "associatedCardRefs": [ + "06PZ021T1", + "06PZ021T2", + "06PZ021" + ], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/4_0_0/set6cde/en_us/img/cards/06PZ021T1.png", + "fullAbsolutePath": "http://dd.b.pvp.net/4_0_0/set6cde/en_us/img/cards/06PZ021T1-full.png" + } + ], + "regions": [ + "Piltover & Zaun" + ], + "regionRefs": [ + "PiltoverZaun" + ], + "attack": 0, + "cost": 2, + "health": 0, + "description": "Deal 2 to a unit. If you've played 6+ other new spells this game, deal 1 to another unit. \r\nCreate a Seraphine in your deck.", + "descriptionRaw": "Deal 2 to a unit. If you've played 6+ other new spells this game, deal 1 to another unit. \r\nCreate a Seraphine in your deck.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "Simple and clean.\n", + "artistName": "Kudos Productions", + "name": "Seraphine's High Note", + "cardCode": "06PZ021T1", + "keywords": [ + "Fast" + ], + "keywordRefs": [ + "Fast" + ], + "spellSpeed": "Fast", + "spellSpeedRef": "Fast", + "rarity": "None", + "rarityRef": "None", + "subtypes": [], + "supertype": "Champion", + "type": "Spell", + "collectible": false, + "set": "Set6cde" + }, + { + "associatedCards": [], + "associatedCardRefs": [ + "06PZ021T1", + "06PZ021" + ], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/4_0_0/set6cde/en_us/img/cards/06PZ021T2.png", + "fullAbsolutePath": "http://dd.b.pvp.net/4_0_0/set6cde/en_us/img/cards/06PZ021T2-full.png" + } + ], + "regions": [ + "Piltover & Zaun" + ], + "regionRefs": [ + "PiltoverZaun" + ], + "attack": 2, + "cost": 2, + "health": 5, + "description": "When I'm summoned, create a random new 2 cost spell in hand.\r\nWhen you play a new spell that costs 2 or less, copy it with the same targets.\r\n", + "descriptionRaw": "When I'm summoned, create a random new 2 cost spell in hand.\r\nWhen you play a new spell that costs 2 or less, copy it with the same targets.\r\n", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "She'd never heard anything like it--maybe nobody had. Together, on that stage, they made something new.", + "artistName": "Claudiu-Antoniu Magherusan", + "name": "Seraphine", + "cardCode": "06PZ021T2", + "keywords": [ + "Missing Translation" + ], + "keywordRefs": [ + "AuraVisualFakeKeyword" + ], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "None", + "rarityRef": "None", + "subtypes": [], + "supertype": "Champion", + "type": "Unit", + "collectible": false, + "set": "Set6cde" + }, + { + "associatedCards": [], + "associatedCardRefs": [ + "01PZ002" + ], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/4_0_0/set6cde/en_us/img/cards/06PZ040.png", + "fullAbsolutePath": "http://dd.b.pvp.net/4_0_0/set6cde/en_us/img/cards/06PZ040-full.png" + } + ], + "regions": [ + "Piltover & Zaun" + ], + "regionRefs": [ + "PiltoverZaun" + ], + "attack": 0, + "cost": 6, + "health": 0, + "description": "When I'm summoned, summon a Back Alley Barkeep.\r\nYour new cards cost 1 less.", + "descriptionRaw": "When I'm summoned, summon a Back Alley Barkeep.\r\nYour new cards cost 1 less.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "After drying the last of the glasses, the barkeep took a moment to look over his place. This spot, this home from home, had seen so many strangers become friends, and wore the graffiti and dents from many a wild night. The barkeep smiled to himself. It wasn't a perfect place, but it was his.", + "artistName": "Kudos Productions", + "name": "Back Alley Bar", + "cardCode": "06PZ040", + "keywords": [ + "Landmark", + "Missing Translation" + ], + "keywordRefs": [ + "LandmarkVisualOnly", + "AuraVisualFakeKeyword" + ], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "EPIC", + "rarityRef": "Epic", + "subtypes": [], + "supertype": "", + "type": "Landmark", + "collectible": true, + "set": "Set6cde" + }, + { + "associatedCards": [], + "associatedCardRefs": [ + "06PZ008T2" + ], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/4_0_0/set6cde/en_us/img/cards/06PZ008.png", + "fullAbsolutePath": "http://dd.b.pvp.net/4_0_0/set6cde/en_us/img/cards/06PZ008-full.png" + } + ], + "regions": [ + "Piltover & Zaun" + ], + "regionRefs": [ + "PiltoverZaun" + ], + "attack": 0, + "cost": 2, + "health": 0, + "description": "You may spend 8 mana to play me as Styraatu.", + "descriptionRaw": "You may spend 8 mana to play me as Styraatu.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "As the Targonians pondered where they should scatter the Darkin weapons, one of their kind suggested the lands that would become known as Zaun. Buried deep within the walls of the cavernous and winding passageways would be perfect, they assumed. Far from human reach. But not Chirean.", + "artistName": "Kudos Productions", + "name": "The Darkin Harp", + "cardCode": "06PZ008", + "keywords": [ + "Equipment", + "Quick Attack" + ], + "keywordRefs": [ + "Equipment", + "QuickStrike" + ], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "EPIC", + "rarityRef": "Epic", + "subtypes": [ + "DARKIN" + ], + "supertype": "", + "type": "Equipment", + "collectible": true, + "set": "Set6cde" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/4_0_0/set6cde/en_us/img/cards/06PZ018.png", + "fullAbsolutePath": "http://dd.b.pvp.net/4_0_0/set6cde/en_us/img/cards/06PZ018-full.png" + } + ], + "regions": [ + "Piltover & Zaun" + ], + "regionRefs": [ + "PiltoverZaun" + ], + "attack": 0, + "cost": 2, + "health": 0, + "description": "Deal 2 to a unit. If you've played 6+ other new spells this game, deal 1 to another unit. ", + "descriptionRaw": "Deal 2 to a unit. If you've played 6+ other new spells this game, deal 1 to another unit. ", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "Simple and clean.", + "artistName": "Kudos Productions", + "name": "High Note", + "cardCode": "06PZ018", + "keywords": [ + "Fast" + ], + "keywordRefs": [ + "Fast" + ], + "spellSpeed": "Fast", + "spellSpeedRef": "Fast", + "rarity": "COMMON", + "rarityRef": "Common", + "subtypes": [], + "supertype": "", + "type": "Spell", + "collectible": true, + "set": "Set6cde" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/4_0_0/set6cde/en_us/img/cards/06PZ010.png", + "fullAbsolutePath": "http://dd.b.pvp.net/4_0_0/set6cde/en_us/img/cards/06PZ010-full.png" + } + ], + "regions": [ + "Piltover & Zaun" + ], + "regionRefs": [ + "PiltoverZaun" + ], + "attack": 2, + "cost": 3, + "health": 3, + "description": "Strike: Create a random new 2 cost spell in hand.", + "descriptionRaw": "Strike: Create a random new 2 cost spell in hand.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "Once, he'd dreamed of leaving Zaun and traveling the world with a song in his heart. Now, the world was asleep in her room, waiting for the songs tomorrow might bring.", + "artistName": "Envar Studio", + "name": "Acoustician", + "cardCode": "06PZ010", + "keywords": [], + "keywordRefs": [], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "EPIC", + "rarityRef": "Epic", + "subtypes": [], + "supertype": "", + "type": "Unit", + "collectible": true, + "set": "Set6cde" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/4_0_0/set6cde/en_us/img/cards/06PZ014.png", + "fullAbsolutePath": "http://dd.b.pvp.net/4_0_0/set6cde/en_us/img/cards/06PZ014-full.png" + } + ], + "regions": [ + "Piltover & Zaun" + ], + "regionRefs": [ + "PiltoverZaun" + ], + "attack": 2, + "cost": 5, + "health": 2, + "description": "Play: Manifest a spell that costs 5 and set its cost to 2.", + "descriptionRaw": "Play: Manifest a spell that costs 5 and set its cost to 2.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"It's not about how big your voice is, it's about how big your heart is!\" - Fanclub President", + "artistName": "Envar Studio", + "name": "Fanclub President", + "cardCode": "06PZ014", + "keywords": [], + "keywordRefs": [], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "RARE", + "rarityRef": "Rare", + "subtypes": [], + "supertype": "", + "type": "Unit", + "collectible": true, + "set": "Set6cde" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/4_0_0/set6cde/en_us/img/cards/06PZ030.png", + "fullAbsolutePath": "http://dd.b.pvp.net/4_0_0/set6cde/en_us/img/cards/06PZ030-full.png" + } + ], + "regions": [ + "Piltover & Zaun" + ], + "regionRefs": [ + "PiltoverZaun" + ], + "attack": 0, + "cost": 2, + "health": 0, + "description": "Attack: Create a new 2 cost spell in hand and give it Fleeting.", + "descriptionRaw": "Attack: Create a new 2 cost spell in hand and give it Fleeting.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"Oh dear, sounds like rain.\"\n\"Huh? Dad, it's so bright outside.\"\n\"Quick, cover the blueprints! It's a BRAINstorm!\"\n\"Daaaaad.\"\n- Seraphine & her father", + "artistName": "Kudos Productions", + "name": "Inspired Plans", + "cardCode": "06PZ030", + "keywords": [ + "Equipment" + ], + "keywordRefs": [ + "Equipment" + ], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "RARE", + "rarityRef": "Rare", + "subtypes": [], + "supertype": "", + "type": "Equipment", + "collectible": true, + "set": "Set6cde" + }, + { + "associatedCards": [], + "associatedCardRefs": [ + "06PZ008T2" + ], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/4_0_0/set6cde/en_us/img/cards/06PZ008T3.png", + "fullAbsolutePath": "http://dd.b.pvp.net/4_0_0/set6cde/en_us/img/cards/06PZ008T3-full.png" + } + ], + "regions": [ + "Piltover & Zaun" + ], + "regionRefs": [ + "PiltoverZaun" + ], + "attack": 0, + "cost": 2, + "health": 0, + "description": "", + "descriptionRaw": "", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "As the Targonians pondered where they should scatter the Darkin weapons, one of their kind suggested the lands that would become known as Zaun. Buried deep within the walls of the cavernous and winding passageways would be perfect, they assumed. Far from human reach. But not Chirean.", + "artistName": "Kudos Productions", + "name": "The Darkin Harp", + "cardCode": "06PZ008T3", + "keywords": [ + "Equipment", + "Quick Attack" + ], + "keywordRefs": [ + "Equipment", + "QuickStrike" + ], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "None", + "rarityRef": "None", + "subtypes": [ + "DARKIN" + ], + "supertype": "", + "type": "Equipment", + "collectible": false, + "set": "Set6cde" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/4_0_0/set6cde/en_us/img/cards/06PZ008T2.png", + "fullAbsolutePath": "http://dd.b.pvp.net/4_0_0/set6cde/en_us/img/cards/06PZ008T2-full.png" + } + ], + "regions": [ + "Piltover & Zaun" + ], + "regionRefs": [ + "PiltoverZaun" + ], + "attack": 8, + "cost": 8, + "health": 6, + "description": "Attack: Draw 2, then reduce those cards' costs by 2.", + "descriptionRaw": "Attack: Draw 2, then reduce those cards' costs by 2.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "Styraatu burst through the processing plant, furious and impatient. Her rage was known even before the tendrils of madness found their way into her mind, but now... now she would make them all pay. First here, in this land of technology, then south, where she would war alongside her general once again.", + "artistName": "Kudos Productions", + "name": "Styraatu", + "cardCode": "06PZ008T2", + "keywords": [ + "Quick Attack" + ], + "keywordRefs": [ + "QuickStrike" + ], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "None", + "rarityRef": "None", + "subtypes": [ + "DARKIN" + ], + "supertype": "", + "type": "Unit", + "collectible": false, + "set": "Set6cde" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/4_0_0/set6cde/en_us/img/cards/06PZ041.png", + "fullAbsolutePath": "http://dd.b.pvp.net/4_0_0/set6cde/en_us/img/cards/06PZ041-full.png" + } + ], + "regions": [ + "Piltover & Zaun" + ], + "regionRefs": [ + "PiltoverZaun" + ], + "attack": 2, + "cost": 2, + "health": 3, + "description": "When I'm summoned, if I was created, draw 1 and grant me +2|+1.", + "descriptionRaw": "When I'm summoned, if I was created, draw 1 and grant me +2|+1.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "When they're not sleeping in the middle of the day or throwing up in the middle of the night, cats are always up to some brand of mischief.", + "artistName": "Kudos Productions", + "name": "Cunning Kitten", + "cardCode": "06PZ041", + "keywords": [], + "keywordRefs": [], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "COMMON", + "rarityRef": "Common", + "subtypes": [], + "supertype": "", + "type": "Unit", + "collectible": true, + "set": "Set6cde" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/4_0_0/set6cde/en_us/img/cards/06PZ007.png", + "fullAbsolutePath": "http://dd.b.pvp.net/4_0_0/set6cde/en_us/img/cards/06PZ007-full.png" + } + ], + "regions": [ + "Piltover & Zaun" + ], + "regionRefs": [ + "PiltoverZaun" + ], + "attack": 3, + "cost": 4, + "health": 5, + "description": "Once you've Equipped an ally this game, create a new spell that costs 2 in hand and set its cost to 0.", + "descriptionRaw": "Once you've Equipped an ally this game, create a new spell that costs 2 in hand and set its cost to 0.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"I have always been willing to sacrifice in the name of science. No matter the personal risk, the limitless, inexhaustible power I gained through the exchange was more than reward.\"", + "artistName": "Mogi", + "name": "Ambitious Cultist", + "cardCode": "06PZ007", + "keywords": [], + "keywordRefs": [], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "COMMON", + "rarityRef": "Common", + "subtypes": [ + "CULTIST" + ], + "supertype": "", + "type": "Unit", + "collectible": true, + "set": "Set6cde" + }, + { + "associatedCards": [], + "associatedCardRefs": [ + "06PZ036T3" + ], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/4_0_0/set6cde/en_us/img/cards/06PZ036.png", + "fullAbsolutePath": "http://dd.b.pvp.net/4_0_0/set6cde/en_us/img/cards/06PZ036-full.png" + } + ], + "regions": [ + "Piltover & Zaun" + ], + "regionRefs": [ + "PiltoverZaun" + ], + "attack": 7, + "cost": 8, + "health": 5, + "description": "Play: Deal 1 to all enemies. If you've played 6+ new spells this game, deal 3 instead. ", + "descriptionRaw": "Play: Deal 1 to all enemies. If you've played 6+ new spells this game, deal 3 instead. ", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"Zaun! I hope you're ready to scream, 'cause we're about to sink this place all over again!\" - Zaun Diva", + "artistName": "Kudos Productions", + "name": "The Zaun Diva", + "cardCode": "06PZ036", + "keywords": [], + "keywordRefs": [], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "RARE", + "rarityRef": "Rare", + "subtypes": [], + "supertype": "", + "type": "Unit", + "collectible": true, + "set": "Set6cde" + }, + { + "associatedCards": [], + "associatedCardRefs": [ + "06PZ036" + ], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/4_0_0/set6cde/en_us/img/cards/06PZ036T3.png", + "fullAbsolutePath": "http://dd.b.pvp.net/4_0_0/set6cde/en_us/img/cards/06PZ036T3-full.png" + } + ], + "regions": [ + "Piltover & Zaun" + ], + "regionRefs": [ + "PiltoverZaun" + ], + "attack": 0, + "cost": 0, + "health": 0, + "description": "Deal 1 to all enemies. If you've played 6+ new spells this game, deal 3 instead.", + "descriptionRaw": "Deal 1 to all enemies. If you've played 6+ new spells this game, deal 3 instead.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"The Diva's show is totally worth the hearing damage!\" - Fans, probably", + "artistName": "Kudos Productions", + "name": "Fatal Encore", + "cardCode": "06PZ036T3", + "keywords": [ + "Skill" + ], + "keywordRefs": [ + "Skill" + ], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "RARE", + "rarityRef": "Rare", + "subtypes": [], + "supertype": "", + "type": "Ability", + "collectible": false, + "set": "Set6cde" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/4_0_0/set6cde/en_us/img/cards/06PZ009.png", + "fullAbsolutePath": "http://dd.b.pvp.net/4_0_0/set6cde/en_us/img/cards/06PZ009-full.png" + } + ], + "regions": [ + "Piltover & Zaun" + ], + "regionRefs": [ + "PiltoverZaun" + ], + "attack": 0, + "cost": 3, + "health": 0, + "description": "Flow: I cost 1 less.\r\nDeal 1 to all enemies.", + "descriptionRaw": "Flow: I cost 1 less.\r\nDeal 1 to all enemies.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "It takes a special sound to break through Zaun's rattle and clang, but the Diva always delivers.", + "artistName": "Kudos Productions", + "name": "Caustic Riff", + "cardCode": "06PZ009", + "keywords": [ + "Fast", + "Flow" + ], + "keywordRefs": [ + "Fast", + "Flow" + ], + "spellSpeed": "Fast", + "spellSpeedRef": "Fast", + "rarity": "COMMON", + "rarityRef": "Common", + "subtypes": [], + "supertype": "", + "type": "Spell", + "collectible": true, + "set": "Set6cde" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/4_0_0/set6cde/en_us/img/cards/06PZ022.png", + "fullAbsolutePath": "http://dd.b.pvp.net/4_0_0/set6cde/en_us/img/cards/06PZ022-full.png" + } + ], + "regions": [ + "Piltover & Zaun" + ], + "regionRefs": [ + "PiltoverZaun" + ], + "attack": 0, + "cost": 5, + "health": 0, + "description": "Draw 2.\r\nFlow: Reduce those cards' costs by 2.", + "descriptionRaw": "Draw 2.\r\nFlow: Reduce those cards' costs by 2.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "Music's all about timing, but once in a while you've gotta just let loose.", + "artistName": "Kudos Productions", + "name": "Drum Solo", + "cardCode": "06PZ022", + "keywords": [ + "Burst", + "Flow" + ], + "keywordRefs": [ + "Burst", + "Flow" + ], + "spellSpeed": "Burst", + "spellSpeedRef": "Burst", + "rarity": "COMMON", + "rarityRef": "Common", + "subtypes": [], + "supertype": "", + "type": "Spell", + "collectible": true, + "set": "Set6cde" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/4_0_0/set6cde/en_us/img/cards/06PZ029.png", + "fullAbsolutePath": "http://dd.b.pvp.net/4_0_0/set6cde/en_us/img/cards/06PZ029-full.png" + } + ], + "regions": [ + "Piltover & Zaun" + ], + "regionRefs": [ + "PiltoverZaun" + ], + "attack": 0, + "cost": 2, + "health": 0, + "description": "Give an ally +2|+0 and Quick Attack this round.\r\nFlow: Create a new 2 cost spell in hand.", + "descriptionRaw": "Give an ally +2|+0 and Quick Attack this round.\r\nFlow: Create a new 2 cost spell in hand.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"I can't hear you, Zaun!\" - Seraphine", + "artistName": "Kudos Productions", + "name": "Crowd Pleaser", + "cardCode": "06PZ029", + "keywords": [ + "Burst", + "Flow" + ], + "keywordRefs": [ + "Burst", + "Flow" + ], + "spellSpeed": "Burst", + "spellSpeedRef": "Burst", + "rarity": "COMMON", + "rarityRef": "Common", + "subtypes": [], + "supertype": "", + "type": "Spell", + "collectible": true, + "set": "Set6cde" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/4_0_0/set6cde/en_us/img/cards/06PZ020.png", + "fullAbsolutePath": "http://dd.b.pvp.net/4_0_0/set6cde/en_us/img/cards/06PZ020-full.png" + } + ], + "regions": [ + "Piltover & Zaun" + ], + "regionRefs": [ + "PiltoverZaun" + ], + "attack": 1, + "cost": 1, + "health": 1, + "description": "Nexus Strike: Reduce the cost of the most expensive spell in your hand by 1.", + "descriptionRaw": "Nexus Strike: Reduce the cost of the most expensive spell in your hand by 1.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "You wouldn't find his name on any of the blueprints, or credited in any of the songs, but those in the know agreed: Acorn was the heart of the whole operation.", + "artistName": "Caravan Studio", + "name": "Acorn, the Hextechnician", + "cardCode": "06PZ020", + "keywords": [ + "Elusive" + ], + "keywordRefs": [ + "Elusive" + ], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "EPIC", + "rarityRef": "Epic", + "subtypes": [], + "supertype": "", + "type": "Unit", + "collectible": true, + "set": "Set6cde" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/4_0_0/set6cde/en_us/img/cards/06PZ037.png", + "fullAbsolutePath": "http://dd.b.pvp.net/4_0_0/set6cde/en_us/img/cards/06PZ037-full.png" + } + ], + "regions": [ + "Piltover & Zaun" + ], + "regionRefs": [ + "PiltoverZaun" + ], + "attack": 0, + "cost": 2, + "health": 0, + "description": "Deal 1 to a unit. If you have Equipped an ally this game, copy me with the same targets.", + "descriptionRaw": "Deal 1 to a unit. If you have Equipped an ally this game, copy me with the same targets.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "If discord be the cacophony of destruction, then butcher on.", + "artistName": "Kudos Productions", + "name": "The Violent Dischord", + "cardCode": "06PZ037", + "keywords": [ + "Fast" + ], + "keywordRefs": [ + "Fast" + ], + "spellSpeed": "Fast", + "spellSpeedRef": "Fast", + "rarity": "RARE", + "rarityRef": "Rare", + "subtypes": [ + "CULTIST" + ], + "supertype": "", + "type": "Spell", + "collectible": true, + "set": "Set6cde" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/4_0_0/set6cde/en_us/img/cards/06PZ019.png", + "fullAbsolutePath": "http://dd.b.pvp.net/4_0_0/set6cde/en_us/img/cards/06PZ019-full.png" + } + ], + "regions": [ + "Piltover & Zaun" + ], + "regionRefs": [ + "PiltoverZaun" + ], + "attack": 4, + "cost": 4, + "health": 4, + "description": "Round Start: Flow: Refill 2 spell mana.", + "descriptionRaw": "Round Start: Flow: Refill 2 spell mana.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "If he had things his way, NOBODY would get in.", + "artistName": "Envar Studio", + "name": "Zaun Bouncer", + "cardCode": "06PZ019", + "keywords": [ + "Flow" + ], + "keywordRefs": [ + "Flow" + ], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "COMMON", + "rarityRef": "Common", + "subtypes": [], + "supertype": "", + "type": "Unit", + "collectible": true, + "set": "Set6cde" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/4_0_0/set6cde/en_us/img/cards/06PZ033.png", + "fullAbsolutePath": "http://dd.b.pvp.net/4_0_0/set6cde/en_us/img/cards/06PZ033-full.png" + } + ], + "regions": [ + "Piltover & Zaun" + ], + "regionRefs": [ + "PiltoverZaun" + ], + "attack": 0, + "cost": 3, + "health": 0, + "description": "Your spells and skills deal 1 extra damage.", + "descriptionRaw": "Your spells and skills deal 1 extra damage.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"Location: Sector 3, Underway 19B\nItem: Illegal Firearm\nNotes: Confiscated during Operation: Sumplight. Weapon is highly dangerous. Handle with extreme care.\"\n- Piltover Warden field report", + "artistName": "Kudos Productions", + "name": "Gatalyst v1.0", + "cardCode": "06PZ033", + "keywords": [ + "Equipment" + ], + "keywordRefs": [ + "Equipment" + ], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "COMMON", + "rarityRef": "Common", + "subtypes": [], + "supertype": "", + "type": "Equipment", + "collectible": true, + "set": "Set6cde" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/4_0_0/set6cde/en_us/img/cards/06BW029.png", + "fullAbsolutePath": "http://dd.b.pvp.net/4_0_0/set6cde/en_us/img/cards/06BW029-full.png" + } + ], + "regions": [ + "Bilgewater", + "Piltover & Zaun" + ], + "regionRefs": [ + "Bilgewater", + "PiltoverZaun" + ], + "attack": 2, + "cost": 3, + "health": 1, + "description": "When I'm summoned, I Improvise.", + "descriptionRaw": "When I'm summoned, I Improvise.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "Pesh met Jax in a dockside brawl, and their timely escape was more convenience than partnership. But Pesh has been ferrying Jax about ever since, because things break around Jax, and if there’s one thing Pesh likes more than a good scrap, it’s a break in need of fixing.", + "artistName": "Kudos Productions", + "name": "Piltovan Castaway", + "cardCode": "06BW029", + "keywords": [ + "Attune" + ], + "keywordRefs": [ + "Attune" + ], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "COMMON", + "rarityRef": "Common", + "subtypes": [ + "WEAPONMASTER" + ], + "supertype": "", + "type": "Unit", + "collectible": true, + "set": "Set6cde" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/4_0_0/set6cde/en_us/img/cards/06BW034.png", + "fullAbsolutePath": "http://dd.b.pvp.net/4_0_0/set6cde/en_us/img/cards/06BW034-full.png" + } + ], + "regions": [ + "Bilgewater" + ], + "regionRefs": [ + "Bilgewater" + ], + "attack": 0, + "cost": 2, + "health": 0, + "description": "Destroy a unit's equipment and deal 2 to it.", + "descriptionRaw": "Destroy a unit's equipment and deal 2 to it.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"WHO THROWS AN ANCHOR IN A BAR FIGHT?! WHAT IS WRONG WITH YOU LOT?!!\" - Bilgewater Bartender", + "artistName": "Kudos Productions", + "name": "Heavy Metal", + "cardCode": "06BW034", + "keywords": [ + "Slow" + ], + "keywordRefs": [ + "Slow" + ], + "spellSpeed": "Slow", + "spellSpeedRef": "Slow", + "rarity": "RARE", + "rarityRef": "Rare", + "subtypes": [], + "supertype": "", + "type": "Spell", + "collectible": true, + "set": "Set6cde" + }, + { + "associatedCards": [], + "associatedCardRefs": [ + "06SI031T1" + ], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/4_0_0/set6cde/en_us/img/cards/06BW027.png", + "fullAbsolutePath": "http://dd.b.pvp.net/4_0_0/set6cde/en_us/img/cards/06BW027-full.png" + } + ], + "regions": [ + "Bilgewater", + "Piltover & Zaun" + ], + "regionRefs": [ + "Bilgewater", + "PiltoverZaun" + ], + "attack": 0, + "cost": 4, + "health": 0, + "description": "To play, discard 1. Draw 2 and if you discarded an equipment, summon a Icathian Mirage.", + "descriptionRaw": "To play, discard 1. Draw 2 and if you discarded an equipment, summon a Icathian Mirage.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "Jax’s crew is proof that a whole can be greater than the sum of its parts. Still, Pesh insists on a different philosophy: sometimes, parts are pretty great on their own.", + "artistName": "Kudos Productions", + "name": "Parts Made Whole", + "cardCode": "06BW027", + "keywords": [ + "Burst" + ], + "keywordRefs": [ + "Burst" + ], + "spellSpeed": "Burst", + "spellSpeedRef": "Burst", + "rarity": "RARE", + "rarityRef": "Rare", + "subtypes": [ + "WEAPONMASTER" + ], + "supertype": "", + "type": "Spell", + "collectible": true, + "set": "Set6cde" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/4_0_0/set6cde/en_us/img/cards/06BW039.png", + "fullAbsolutePath": "http://dd.b.pvp.net/4_0_0/set6cde/en_us/img/cards/06BW039-full.png" + } + ], + "regions": [ + "Bilgewater" + ], + "regionRefs": [ + "Bilgewater" + ], + "attack": 0, + "cost": 4, + "health": 0, + "description": "Once you have Equipped an ally this game, I cost 2 less.\r\nDraw 2 and give them Fleeting. ", + "descriptionRaw": "Once you have Equipped an ally this game, I cost 2 less.\r\nDraw 2 and give them Fleeting. ", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "Though Ibaaros' old bones moved slow, the waters that surged ahead of him moved at an almost incomprehensible speed.", + "artistName": "Kudos Productions", + "name": "The Unending Wave", + "cardCode": "06BW039", + "keywords": [ + "Burst" + ], + "keywordRefs": [ + "Burst" + ], + "spellSpeed": "Burst", + "spellSpeedRef": "Burst", + "rarity": "RARE", + "rarityRef": "Rare", + "subtypes": [ + "CULTIST" + ], + "supertype": "", + "type": "Spell", + "collectible": true, + "set": "Set6cde" + }, + { + "associatedCards": [], + "associatedCardRefs": [ + "06BW026T1" + ], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/4_0_0/set6cde/en_us/img/cards/06BW026.png", + "fullAbsolutePath": "http://dd.b.pvp.net/4_0_0/set6cde/en_us/img/cards/06BW026-full.png" + } + ], + "regions": [ + "Bilgewater" + ], + "regionRefs": [ + "Bilgewater" + ], + "attack": 2, + "cost": 1, + "health": 2, + "description": "When Equipped allies attack, deal 1 to the enemy nexus.", + "descriptionRaw": "When Equipped allies attack, deal 1 to the enemy nexus.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "It didn't matter where the power came from--her goddess would not care. What mattered was the glory it would bring her through the monsters she slayed.", + "artistName": "Kudos Productions", + "name": "Buhru Cultist", + "cardCode": "06BW026", + "keywords": [], + "keywordRefs": [], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "COMMON", + "rarityRef": "Common", + "subtypes": [ + "CULTIST" + ], + "supertype": "", + "type": "Unit", + "collectible": true, + "set": "Set6cde" + }, + { + "associatedCards": [], + "associatedCardRefs": [ + "06BW014T1" + ], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/4_0_0/set6cde/en_us/img/cards/06BW014.png", + "fullAbsolutePath": "http://dd.b.pvp.net/4_0_0/set6cde/en_us/img/cards/06BW014-full.png" + } + ], + "regions": [ + "Bilgewater" + ], + "regionRefs": [ + "Bilgewater" + ], + "attack": 0, + "cost": 2, + "health": 0, + "description": "Attack: Draw 1 at next Round Start and give it Fleeting. \r\nYou may spend 8 mana to play me as Ibaaros.", + "descriptionRaw": "Attack: Draw 1 at next Round Start and give it Fleeting. \r\nYou may spend 8 mana to play me as Ibaaros.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"Steer clear, steer clear, of the strait of Daray,\nWhere the waters whisper and the winds betray,\nWhere sea beast and bird so seldom foray,\nFor fear o' the darkness deep 'neath the strait of Daray.\"\n- Bilgewater rhyme", + "artistName": "Kudos Productions", + "name": "The Darkin Harpoon", + "cardCode": "06BW014", + "keywords": [ + "Equipment", + "Fearsome" + ], + "keywordRefs": [ + "Equipment", + "Fearsome" + ], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "EPIC", + "rarityRef": "Epic", + "subtypes": [ + "DARKIN" + ], + "supertype": "", + "type": "Equipment", + "collectible": true, + "set": "Set6cde" + }, + { + "associatedCards": [], + "associatedCardRefs": [ + "02BW020" + ], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/4_0_0/set6cde/en_us/img/cards/06BW014T1.png", + "fullAbsolutePath": "http://dd.b.pvp.net/4_0_0/set6cde/en_us/img/cards/06BW014T1-full.png" + } + ], + "regions": [ + "Bilgewater" + ], + "regionRefs": [ + "Bilgewater" + ], + "attack": 1, + "cost": 9, + "health": 1, + "description": "I have +1|+1 for each card you've drawn this game. I can only be blocked by enemies with 4 or more Power.", + "descriptionRaw": "I have +1|+1 for each card you've drawn this game. I can only be blocked by enemies with 4 or more Power.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "Ibaaros, the Champion of the Dunes, lifted himself through the water. His blood coursed with that same familiar yearning from years before. To serve. To obey. To submit.", + "artistName": "Michal Ivan", + "name": "Ibaaros", + "cardCode": "06BW014T1", + "keywords": [], + "keywordRefs": [], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "None", + "rarityRef": "None", + "subtypes": [ + "DARKIN" + ], + "supertype": "", + "type": "Unit", + "collectible": false, + "set": "Set6cde" + }, + { + "associatedCards": [], + "associatedCardRefs": [ + "06BW014T1" + ], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/4_0_0/set6cde/en_us/img/cards/06BW014T3.png", + "fullAbsolutePath": "http://dd.b.pvp.net/4_0_0/set6cde/en_us/img/cards/06BW014T3-full.png" + } + ], + "regions": [ + "Bilgewater" + ], + "regionRefs": [ + "Bilgewater" + ], + "attack": 0, + "cost": 2, + "health": 0, + "description": "Attack: Draw 1 at the next Round Start and grant it Fleeting.", + "descriptionRaw": "Attack: Draw 1 at the next Round Start and grant it Fleeting.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"Steer clear, steer clear, of the strait of Daray,\nWhere the waters whisper and the winds betray,\nWhere sea beast and bird so seldom foray,\nFor fear o' the darkness deep 'neath the strait of Daray.\"\n- Bilgewater rhyme", + "artistName": "Kudos Productions", + "name": "The Darkin Harpoon", + "cardCode": "06BW014T3", + "keywords": [ + "Equipment", + "Fearsome" + ], + "keywordRefs": [ + "Equipment", + "Fearsome" + ], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "EPIC", + "rarityRef": "Epic", + "subtypes": [ + "DARKIN" + ], + "supertype": "", + "type": "Equipment", + "collectible": false, + "set": "Set6cde" + }, + { + "associatedCards": [], + "associatedCardRefs": [ + "06BW006T3" + ], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/4_0_0/set6cde/en_us/img/cards/06BW004.png", + "fullAbsolutePath": "http://dd.b.pvp.net/4_0_0/set6cde/en_us/img/cards/06BW004-full.png" + } + ], + "regions": [ + "Bilgewater" + ], + "regionRefs": [ + "Bilgewater" + ], + "attack": 0, + "cost": 1, + "health": 0, + "description": "Give an enemy Vulnerable this round. If it dies this round, deal 1 to the enemy Nexus.", + "descriptionRaw": "Give an enemy Vulnerable this round. If it dies this round, deal 1 to the enemy Nexus.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"Will you stand, or cower?\" - Illaoi", + "artistName": "Kudos Productions", + "name": "Test of Spirit", + "cardCode": "06BW004", + "keywords": [ + "Focus" + ], + "keywordRefs": [ + "Focus" + ], + "spellSpeed": "Burst", + "spellSpeedRef": "Burst", + "rarity": "RARE", + "rarityRef": "Rare", + "subtypes": [], + "supertype": "", + "type": "Spell", + "collectible": true, + "set": "Set6cde" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/4_0_0/set6cde/en_us/img/cards/06BW023.png", + "fullAbsolutePath": "http://dd.b.pvp.net/4_0_0/set6cde/en_us/img/cards/06BW023-full.png" + } + ], + "regions": [ + "Bilgewater" + ], + "regionRefs": [ + "Bilgewater" + ], + "attack": 0, + "cost": 3, + "health": 0, + "description": "Plunder: I cost 2 less.", + "descriptionRaw": "Plunder: I cost 2 less.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"Like the saying goes, nothin' ends a Bilgewater quarrel faster than a cutlass.\"\n\"Except maybe a pistol.\"\n\"Shut up, Baz.\"\n- Baz and Gav, aspiring bounty hunters", + "artistName": "Kudos Productions", + "name": "Jagged Cutlass", + "cardCode": "06BW023", + "keywords": [ + "Equipment", + "Plunder" + ], + "keywordRefs": [ + "Equipment", + "Plunder" + ], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "COMMON", + "rarityRef": "Common", + "subtypes": [], + "supertype": "", + "type": "Equipment", + "collectible": true, + "set": "Set6cde" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/4_0_0/set6cde/en_us/img/cards/06BW042.png", + "fullAbsolutePath": "http://dd.b.pvp.net/4_0_0/set6cde/en_us/img/cards/06BW042-full.png" + } + ], + "regions": [ + "Bilgewater" + ], + "regionRefs": [ + "Bilgewater" + ], + "attack": 0, + "cost": 5, + "health": 0, + "description": "Deal 2 to a unit. Draw 1 at the next Round Start for each damage dealt and give them Fleeting.", + "descriptionRaw": "Deal 2 to a unit. Draw 1 at the next Round Start for each damage dealt and give them Fleeting.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"Rex'll take care of the boom, don't you worry - an' I'll take care of the treasure. I'll take care of Rex's share too, elsewise he'll try to put it in the cannon, an' that's always a mess.\" - Petty Officer", + "artistName": "Kudos Productions", + "name": "Loaded Vessel", + "cardCode": "06BW042", + "keywords": [ + "Fast" + ], + "keywordRefs": [ + "Fast" + ], + "spellSpeed": "Fast", + "spellSpeedRef": "Fast", + "rarity": "EPIC", + "rarityRef": "Epic", + "subtypes": [], + "supertype": "", + "type": "Spell", + "collectible": true, + "set": "Set6cde" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/4_0_0/set6cde/en_us/img/cards/06BW040.png", + "fullAbsolutePath": "http://dd.b.pvp.net/4_0_0/set6cde/en_us/img/cards/06BW040-full.png" + } + ], + "regions": [ + "Bilgewater" + ], + "regionRefs": [ + "Bilgewater" + ], + "attack": 0, + "cost": 2, + "health": 0, + "description": "Attack: Spawn 2.", + "descriptionRaw": "Attack: Spawn 2.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"Stand strong beneath Her gaze!\" - Illaoi", + "artistName": "Kudos Productions", + "name": "Eye of God", + "cardCode": "06BW040", + "keywords": [ + "Equipment" + ], + "keywordRefs": [ + "Equipment" + ], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "RARE", + "rarityRef": "Rare", + "subtypes": [], + "supertype": "", + "type": "Equipment", + "collectible": true, + "set": "Set6cde" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/4_0_0/set6cde/en_us/img/cards/06BW044.png", + "fullAbsolutePath": "http://dd.b.pvp.net/4_0_0/set6cde/en_us/img/cards/06BW044-full.png" + } + ], + "regions": [ + "Bilgewater" + ], + "regionRefs": [ + "Bilgewater" + ], + "attack": 1, + "cost": 3, + "health": 3, + "description": "Nexus Strike: Draw 1 and give it Fleeting.", + "descriptionRaw": "Nexus Strike: Draw 1 and give it Fleeting.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"Nasty, thievin' little monsters, they are. Easy enough to spot 'em when they've filched somethin', at least.\"", + "artistName": "Kudos Productions", + "name": "Wily Newtfish", + "cardCode": "06BW044", + "keywords": [ + "Elusive" + ], + "keywordRefs": [ + "Elusive" + ], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "COMMON", + "rarityRef": "Common", + "subtypes": [], + "supertype": "", + "type": "Unit", + "collectible": true, + "set": "Set6cde" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/4_0_0/set6cde/en_us/img/cards/06BW026T1.png", + "fullAbsolutePath": "http://dd.b.pvp.net/4_0_0/set6cde/en_us/img/cards/06BW026T1-full.png" + } + ], + "regions": [ + "Bilgewater" + ], + "regionRefs": [ + "Bilgewater" + ], + "attack": 0, + "cost": 0, + "health": 0, + "description": "Deal 1 to the enemy nexus.", + "descriptionRaw": "Deal 1 to the enemy nexus.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "Yes... this weapon will certainly please Mother Serpent.", + "artistName": "Kudos Productions", + "name": "Piercing Bolt", + "cardCode": "06BW026T1", + "keywords": [ + "Skill" + ], + "keywordRefs": [ + "Skill" + ], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "None", + "rarityRef": "None", + "subtypes": [ + "CULTIST" + ], + "supertype": "", + "type": "Ability", + "collectible": false, + "set": "Set6cde" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/4_0_0/set6cde/en_us/img/cards/06MT007.png", + "fullAbsolutePath": "http://dd.b.pvp.net/4_0_0/set6cde/en_us/img/cards/06MT007-full.png" + } + ], + "regions": [ + "Targon" + ], + "regionRefs": [ + "Targon" + ], + "attack": 3, + "cost": 4, + "health": 5, + "description": "Empowered 5: Overwhelm.", + "descriptionRaw": "Empowered 5: Overwhelm.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"Ah, I see it now... the shapes left in the mountain were merely imprints--conduits for the beings from the realm beyond the stars...\" - Lorekeeper Skai'en", + "artistName": "Mogi", + "name": "Seraphic Wyvern", + "cardCode": "06MT007", + "keywords": [ + "Fury" + ], + "keywordRefs": [ + "Fury" + ], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "RARE", + "rarityRef": "Rare", + "subtypes": [ + "DRAGON" + ], + "supertype": "", + "type": "Unit", + "collectible": true, + "set": "Set6cde" + }, + { + "associatedCards": [], + "associatedCardRefs": [ + "06MT037T1" + ], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/4_0_0/set6cde/en_us/img/cards/06MT037.png", + "fullAbsolutePath": "http://dd.b.pvp.net/4_0_0/set6cde/en_us/img/cards/06MT037-full.png" + } + ], + "regions": [ + "Targon" + ], + "regionRefs": [ + "Targon" + ], + "attack": 0, + "cost": 2, + "health": 0, + "description": "Obliterate an ally and create a Corrupted Form with its stats.", + "descriptionRaw": "Obliterate an ally and create a Corrupted Form with its stats.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "The fallen god-warriors entombed in these weapons could not be easily defeated, and so instead were contained.", + "artistName": "Kudos Productions", + "name": "Seal In Steel", + "cardCode": "06MT037", + "keywords": [ + "Fast" + ], + "keywordRefs": [ + "Fast" + ], + "spellSpeed": "Fast", + "spellSpeedRef": "Fast", + "rarity": "RARE", + "rarityRef": "Rare", + "subtypes": [], + "supertype": "", + "type": "Spell", + "collectible": true, + "set": "Set6cde" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/4_0_0/set6cde/en_us/img/cards/06MT037T1.png", + "fullAbsolutePath": "http://dd.b.pvp.net/4_0_0/set6cde/en_us/img/cards/06MT037T1-full.png" + } + ], + "regions": [ + "Targon" + ], + "regionRefs": [ + "Targon" + ], + "attack": 0, + "cost": 3, + "health": 0, + "description": "", + "descriptionRaw": "", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "While the Darkin were entombed in the weapons they carried, they slowly changed until they resembled nothing of their original form.", + "artistName": "Kudos Productions", + "name": "Corrupted Form", + "cardCode": "06MT037T1", + "keywords": [ + "Equipment" + ], + "keywordRefs": [ + "Equipment" + ], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "None", + "rarityRef": "None", + "subtypes": [], + "supertype": "", + "type": "Equipment", + "collectible": false, + "set": "Set6cde" + }, + { + "associatedCards": [], + "associatedCardRefs": [ + "06MT018T1" + ], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/4_0_0/set6cde/en_us/img/cards/06MT018.png", + "fullAbsolutePath": "http://dd.b.pvp.net/4_0_0/set6cde/en_us/img/cards/06MT018-full.png" + } + ], + "regions": [ + "Targon" + ], + "regionRefs": [ + "Targon" + ], + "attack": 2, + "cost": 6, + "health": 7, + "description": "Play: Stun enemies with less Power than me.", + "descriptionRaw": "Play: Stun enemies with less Power than me.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"I fear the day has finally come... Justice returns on golden wings, and with her she brings a shining army!\" - Lorekeeper Skai'en", + "artistName": "Kudos Productions", + "name": "Lawkeeper", + "cardCode": "06MT018", + "keywords": [], + "keywordRefs": [], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "COMMON", + "rarityRef": "Common", + "subtypes": [], + "supertype": "", + "type": "Unit", + "collectible": true, + "set": "Set6cde" + }, + { + "associatedCards": [], + "associatedCardRefs": [ + "06MT018" + ], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/4_0_0/set6cde/en_us/img/cards/06MT018T1.png", + "fullAbsolutePath": "http://dd.b.pvp.net/4_0_0/set6cde/en_us/img/cards/06MT018T1-full.png" + } + ], + "regions": [ + "Targon" + ], + "regionRefs": [ + "Targon" + ], + "attack": 0, + "cost": 0, + "health": 0, + "description": "Stun enemies with less Power than me.", + "descriptionRaw": "Stun enemies with less Power than me.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"Gaze upon its golden light and know judgment!\" - Mihira, Aspect of Justice", + "artistName": "Kudos Productions", + "name": "Blinding Light", + "cardCode": "06MT018T1", + "keywords": [ + "Skill" + ], + "keywordRefs": [ + "Skill" + ], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "None", + "rarityRef": "None", + "subtypes": [], + "supertype": "", + "type": "Ability", + "collectible": false, + "set": "Set6cde" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/4_0_0/set6cde/en_us/img/cards/06MT031.png", + "fullAbsolutePath": "http://dd.b.pvp.net/4_0_0/set6cde/en_us/img/cards/06MT031-full.png" + } + ], + "regions": [ + "Targon" + ], + "regionRefs": [ + "Targon" + ], + "attack": 1, + "cost": 5, + "health": 1, + "description": "Round End: Grant allies in play and in hand +1|+1.\r\nEmpowered 5: Elusive, Lifesteal, and Overwhelm.", + "descriptionRaw": "Round End: Grant allies in play and in hand +1|+1.\r\nEmpowered 5: Elusive, Lifesteal, and Overwhelm.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"Some revere the Aspects as gods. Others see them as messengers from the realm beyond. Still others fear them... and perhaps rightly so.\" - Lorekeeper Skai'en", + "artistName": "Kudos Productions", + "name": "Mihira, Aspect of Justice", + "cardCode": "06MT031", + "keywords": [], + "keywordRefs": [], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "EPIC", + "rarityRef": "Epic", + "subtypes": [], + "supertype": "", + "type": "Unit", + "collectible": true, + "set": "Set6cde" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/4_0_0/set6cde/en_us/img/cards/06MT010.png", + "fullAbsolutePath": "http://dd.b.pvp.net/4_0_0/set6cde/en_us/img/cards/06MT010-full.png" + } + ], + "regions": [ + "Targon" + ], + "regionRefs": [ + "Targon" + ], + "attack": 0, + "cost": 6, + "health": 0, + "description": "Give an ally \"I can't take damage or die\" this round. \r\nGive all allies +1|+0 this round.", + "descriptionRaw": "Give an ally \"I can't take damage or die\" this round. \r\nGive all allies +1|+0 this round.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"Shielded by righteous flame!\" - Kayle", + "artistName": "Kudos Productions", + "name": "Divine Judgment", + "cardCode": "06MT010", + "keywords": [ + "Burst" + ], + "keywordRefs": [ + "Burst" + ], + "spellSpeed": "Burst", + "spellSpeedRef": "Burst", + "rarity": "RARE", + "rarityRef": "Rare", + "subtypes": [], + "supertype": "", + "type": "Spell", + "collectible": true, + "set": "Set6cde" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/4_0_0/set6cde/en_us/img/cards/06MT016.png", + "fullAbsolutePath": "http://dd.b.pvp.net/4_0_0/set6cde/en_us/img/cards/06MT016-full.png" + } + ], + "regions": [ + "Targon" + ], + "regionRefs": [ + "Targon" + ], + "attack": 2, + "cost": 3, + "health": 4, + "description": "Empowered 3: Elusive.", + "descriptionRaw": "Empowered 3: Elusive.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"Yes... I recognize you. The message you bear... it can only be a summons.\" - Ryze", + "artistName": "Kudos Productions", + "name": "Winged Messenger", + "cardCode": "06MT016", + "keywords": [], + "keywordRefs": [], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "COMMON", + "rarityRef": "Common", + "subtypes": [], + "supertype": "", + "type": "Unit", + "collectible": true, + "set": "Set6cde" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/4_0_0/set6cde/en_us/img/cards/06MT015.png", + "fullAbsolutePath": "http://dd.b.pvp.net/4_0_0/set6cde/en_us/img/cards/06MT015-full.png" + } + ], + "regions": [ + "Targon" + ], + "regionRefs": [ + "Targon" + ], + "attack": 0, + "cost": 4, + "health": 0, + "description": "Grant an ally in hand +3|+3 and another +2|+2.", + "descriptionRaw": "Grant an ally in hand +3|+3 and another +2|+2.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"Evil shall burn!\" - Kayle", + "artistName": "Kudos Productions", + "name": "Purifying Flames", + "cardCode": "06MT015", + "keywords": [ + "Burst" + ], + "keywordRefs": [ + "Burst" + ], + "spellSpeed": "Burst", + "spellSpeedRef": "Burst", + "rarity": "COMMON", + "rarityRef": "Common", + "subtypes": [], + "supertype": "", + "type": "Spell", + "collectible": true, + "set": "Set6cde" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/4_0_0/set6cde/en_us/img/cards/06MT042.png", + "fullAbsolutePath": "http://dd.b.pvp.net/4_0_0/set6cde/en_us/img/cards/06MT042-full.png" + } + ], + "regions": [ + "Targon" + ], + "regionRefs": [ + "Targon" + ], + "attack": 2, + "cost": 2, + "health": 2, + "description": "Daybreak: Give Daybreak allies +1|+1 this round.\r\nNightfall: Grant Nightfall allies +1|+0.", + "descriptionRaw": "Daybreak: Give Daybreak allies +1|+1 this round.\r\nNightfall: Grant Nightfall allies +1|+0.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "In the twilight hours and just before sunrise the owl can be heard, its call a reminder of the liminal places between dusk and dawn.", + "artistName": "Caravan Studio", + "name": "Twilit Protector", + "cardCode": "06MT042", + "keywords": [], + "keywordRefs": [], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "RARE", + "rarityRef": "Rare", + "subtypes": [], + "supertype": "", + "type": "Unit", + "collectible": true, + "set": "Set6cde" + }, + { + "associatedCards": [], + "associatedCardRefs": [ + "06MT008T1", + "06MT008T2" + ], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/4_0_0/set6cde/en_us/img/cards/06MT008.png", + "fullAbsolutePath": "http://dd.b.pvp.net/4_0_0/set6cde/en_us/img/cards/06MT008-full.png" + } + ], + "regions": [ + "Targon" + ], + "regionRefs": [ + "Targon" + ], + "attack": 2, + "cost": 6, + "health": 6, + "description": "I have +1|+0 for each time an ally attacked with increased Power.\r\nWhen I'm summoned, grant other allies +1|+0.\r\nEmpowered 6: Quick Attack.", + "descriptionRaw": "I have +1|+0 for each time an ally attacked with increased Power.\r\nWhen I'm summoned, grant other allies +1|+0.\r\nEmpowered 6: Quick Attack.", + "levelupDescription": "Round Start: I have 11+ Power.", + "levelupDescriptionRaw": "Round Start: I have 11+ Power.", + "flavorText": "\"The Demacians know her as the Winged Protector, but those of us who live under the vault of stars in Targon know her as the daughter of Justice, bearing divine purpose and a sword of starfire.\" - Lorekeeper Skai'en", + "artistName": "Michal Ivan", + "name": "Kayle", + "cardCode": "06MT008", + "keywords": [], + "keywordRefs": [], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "Champion", + "rarityRef": "Champion", + "subtypes": [], + "supertype": "Champion", + "type": "Unit", + "collectible": true, + "set": "Set6cde" + }, + { + "associatedCards": [], + "associatedCardRefs": [ + "06MT008T1", + "06MT008" + ], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/4_0_0/set6cde/en_us/img/cards/06MT008T2.png", + "fullAbsolutePath": "http://dd.b.pvp.net/4_0_0/set6cde/en_us/img/cards/06MT008T2-full.png" + } + ], + "regions": [ + "Targon" + ], + "regionRefs": [ + "Targon" + ], + "attack": 3, + "cost": 6, + "health": 7, + "description": "I have +1|+0 for each time an ally attacked with increased Power.\r\nWhen I'm summoned or level up, grant other allies +1|+1.\r\nEmpowered 16: Double Attack.", + "descriptionRaw": "I have +1|+0 for each time an ally attacked with increased Power.\r\nWhen I'm summoned or level up, grant other allies +1|+1.\r\nEmpowered 16: Double Attack.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"We would surely know her to see her, should she ever return... but I worry there is little reason for her to do so beyond a threat so dire that it requires her interference.\" - Lorekeeper Skai'en", + "artistName": "Michal Ivan", + "name": "Kayle", + "cardCode": "06MT008T2", + "keywords": [ + "Quick Attack", + "Overwhelm" + ], + "keywordRefs": [ + "QuickStrike", + "Overwhelm" + ], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "None", + "rarityRef": "None", + "subtypes": [], + "supertype": "Champion", + "type": "Unit", + "collectible": false, + "set": "Set6cde" + }, + { + "associatedCards": [], + "associatedCardRefs": [ + "06MT008T2", + "06MT008" + ], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/4_0_0/set6cde/en_us/img/cards/06MT008T1.png", + "fullAbsolutePath": "http://dd.b.pvp.net/4_0_0/set6cde/en_us/img/cards/06MT008T1-full.png" + } + ], + "regions": [ + "Targon" + ], + "regionRefs": [ + "Targon" + ], + "attack": 0, + "cost": 6, + "health": 0, + "description": "Give an ally \"I can't take damage or die\" this round. \r\nGive all allies +1|+0 this round.\r\nCreate a Kayle in your deck.", + "descriptionRaw": "Give an ally \"I can't take damage or die\" this round. \r\nGive all allies +1|+0 this round.\r\nCreate a Kayle in your deck.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"Shielded by righteous flame!\" - Kayle", + "artistName": "Kudos Productions", + "name": "Kayle's Divine Judgment", + "cardCode": "06MT008T1", + "keywords": [ + "Burst" + ], + "keywordRefs": [ + "Burst" + ], + "spellSpeed": "Burst", + "spellSpeedRef": "Burst", + "rarity": "None", + "rarityRef": "None", + "subtypes": [], + "supertype": "Champion", + "type": "Spell", + "collectible": false, + "set": "Set6cde" + }, + { + "associatedCards": [], + "associatedCardRefs": [ + "06MT035T1" + ], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/4_0_0/set6cde/en_us/img/cards/06MT035.png", + "fullAbsolutePath": "http://dd.b.pvp.net/4_0_0/set6cde/en_us/img/cards/06MT035-full.png" + } + ], + "regions": [ + "Targon" + ], + "regionRefs": [ + "Targon" + ], + "attack": 2, + "cost": 7, + "health": 2, + "description": "I have +2|+2 for each ally that died with its power increased.\r\nEmpowered 16: Transform me into Xolaani, Aspect's Bane.", + "descriptionRaw": "I have +2|+2 for each ally that died with its power increased.\r\nEmpowered 16: Transform me into Xolaani, Aspect's Bane.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "Xolaani watched on as Anaakco fell to his knees, subjugated by the very enemy he sought so desperately to destroy. Slowly, the beat of his heart rang out in unison with the others. Another heart to control. Another body to command.", + "artistName": "Aron Elekes", + "name": "Xolaani the Bloodweaver", + "cardCode": "06MT035", + "keywords": [ + "Overwhelm" + ], + "keywordRefs": [ + "Overwhelm" + ], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "EPIC", + "rarityRef": "Epic", + "subtypes": [ + "DARKIN" + ], + "supertype": "", + "type": "Unit", + "collectible": true, + "set": "Set6cde" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/4_0_0/set6cde/en_us/img/cards/06MT004.png", + "fullAbsolutePath": "http://dd.b.pvp.net/4_0_0/set6cde/en_us/img/cards/06MT004-full.png" + } + ], + "regions": [ + "Targon", + "Bandle City" + ], + "regionRefs": [ + "Targon", + "BandleCity" + ], + "attack": 2, + "cost": 3, + "health": 2, + "description": "Play: Pick an ally, it Improvises. If you don't, I Improvise.", + "descriptionRaw": "Play: Pick an ally, it Improvises. If you don't, I Improvise.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "Jax helped Chaska rescue their herd from rampaging faefolk. Then, Chaska rescued Jax from rampaging faefolk. They travel together whenever one of them doesn’t wander off.", + "artistName": "Caravan Studio", + "name": "Wandering Shepherd", + "cardCode": "06MT004", + "keywords": [], + "keywordRefs": [], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "COMMON", + "rarityRef": "Common", + "subtypes": [ + "WEAPONMASTER" + ], + "supertype": "", + "type": "Unit", + "collectible": true, + "set": "Set6cde" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/4_0_0/set6cde/en_us/img/cards/06MT017.png", + "fullAbsolutePath": "http://dd.b.pvp.net/4_0_0/set6cde/en_us/img/cards/06MT017-full.png" + } + ], + "regions": [ + "Targon" + ], + "regionRefs": [ + "Targon" + ], + "attack": 2, + "cost": 1, + "health": 1, + "description": "Empowered 3: Lifesteal.", + "descriptionRaw": "Empowered 3: Lifesteal.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"It is said that when Mihira left this place, she left a part of herself behind--a holy flame, burning brightly. For years, my family has tended to that fire, keeping it lit in the hopes that she may yet return.\"", + "artistName": "Kudos Productions", + "name": "Divine Clerk", + "cardCode": "06MT017", + "keywords": [], + "keywordRefs": [], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "RARE", + "rarityRef": "Rare", + "subtypes": [], + "supertype": "", + "type": "Unit", + "collectible": true, + "set": "Set6cde" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/4_0_0/set6cde/en_us/img/cards/06MT040.png", + "fullAbsolutePath": "http://dd.b.pvp.net/4_0_0/set6cde/en_us/img/cards/06MT040-full.png" + } + ], + "regions": [ + "Targon" + ], + "regionRefs": [ + "Targon" + ], + "attack": 0, + "cost": 4, + "health": 0, + "description": "Once you have Equipped an ally this game, I cost 2 less.\r\nGive an ally SpellShield this round. ", + "descriptionRaw": "Once you have Equipped an ally this game, I cost 2 less.\r\nGive an ally SpellShield this round. ", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "Look to the night sky and focus your eyes on a small swathe of the firmament. Now imagine all those lived within it, all the knowledge gained and all the experiences lived over countless millennia. Imagine all that information condensed into a shard that could fit into the palm of your hand. Think of how much wisdom you would hold. How much power.", + "artistName": "Kudos Productions", + "name": "The Expanse's Protection", + "cardCode": "06MT040", + "keywords": [ + "Burst" + ], + "keywordRefs": [ + "Burst" + ], + "spellSpeed": "Burst", + "spellSpeedRef": "Burst", + "rarity": "RARE", + "rarityRef": "Rare", + "subtypes": [ + "CULTIST" + ], + "supertype": "", + "type": "Spell", + "collectible": true, + "set": "Set6cde" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/4_0_0/set6cde/en_us/img/cards/06MT034.png", + "fullAbsolutePath": "http://dd.b.pvp.net/4_0_0/set6cde/en_us/img/cards/06MT034-full.png" + } + ], + "regions": [ + "Targon" + ], + "regionRefs": [ + "Targon" + ], + "attack": 0, + "cost": 7, + "health": 0, + "description": "Obliterate a unit or landmark. Heal your Nexus 3.", + "descriptionRaw": "Obliterate a unit or landmark. Heal your Nexus 3.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"Who would arrive in our hour of need?\" - Shuriman Elder", + "artistName": "Kudos Productions", + "name": "Celestial Impact", + "cardCode": "06MT034", + "keywords": [ + "Slow" + ], + "keywordRefs": [ + "Slow" + ], + "spellSpeed": "Slow", + "spellSpeedRef": "Slow", + "rarity": "RARE", + "rarityRef": "Rare", + "subtypes": [], + "supertype": "", + "type": "Spell", + "collectible": true, + "set": "Set6cde" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/4_0_0/set6cde/en_us/img/cards/06MT033.png", + "fullAbsolutePath": "http://dd.b.pvp.net/4_0_0/set6cde/en_us/img/cards/06MT033-full.png" + } + ], + "regions": [ + "Targon" + ], + "regionRefs": [ + "Targon" + ], + "attack": 0, + "cost": 4, + "health": 0, + "description": "My bearer is a Dragon.", + "descriptionRaw": "My bearer is a Dragon.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "Many call upon the might of dragons, though it manifests differently across Runeterra. Those that invoke the power of a celestial dragon may discover they possess an inner strength that burns as bright and hot as a star.", + "artistName": "Kudos Productions", + "name": "Draconic Bands", + "cardCode": "06MT033", + "keywords": [ + "Equipment", + "Fury" + ], + "keywordRefs": [ + "Equipment", + "Fury" + ], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "COMMON", + "rarityRef": "Common", + "subtypes": [], + "supertype": "", + "type": "Equipment", + "collectible": true, + "set": "Set6cde" + }, + { + "associatedCards": [], + "associatedCardRefs": [ + "06MT006T2" + ], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/4_0_0/set6cde/en_us/img/cards/06MT006.png", + "fullAbsolutePath": "http://dd.b.pvp.net/4_0_0/set6cde/en_us/img/cards/06MT006-full.png" + } + ], + "regions": [ + "Targon" + ], + "regionRefs": [ + "Targon" + ], + "attack": 0, + "cost": 2, + "health": 0, + "description": "Support: Grant my supported ally +1|+1.\r\nYou may spend 8 mana to play me as Horazi.", + "descriptionRaw": "Support: Grant my supported ally +1|+1.\r\nYou may spend 8 mana to play me as Horazi.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "Perhaps those who imprisoned the Darkin thought that burying the legendary warrior Horazi within an orb of star metal would sufficiently dim her irascible will. But as her general stirred, so too did Horazi, who found that even Targon's ancient protectors could be tempted by promises whispered from afar.", + "artistName": "Kudos Productions", + "name": "The Darkin Lodestone", + "cardCode": "06MT006", + "keywords": [ + "Equipment", + "Support" + ], + "keywordRefs": [ + "Equipment", + "Support" + ], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "EPIC", + "rarityRef": "Epic", + "subtypes": [ + "DARKIN" + ], + "supertype": "", + "type": "Equipment", + "collectible": true, + "set": "Set6cde" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/4_0_0/set6cde/en_us/img/cards/06MT006T2.png", + "fullAbsolutePath": "http://dd.b.pvp.net/4_0_0/set6cde/en_us/img/cards/06MT006T2-full.png" + } + ], + "regions": [ + "Targon" + ], + "regionRefs": [ + "Targon" + ], + "attack": 7, + "cost": 8, + "health": 7, + "description": "Support: Grow my supported ally's stats to mine. Give it my positive keywords this round.", + "descriptionRaw": "Support: Grow my supported ally's stats to mine. Give it my positive keywords this round.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "Horazi was gifted a higher perspective in the burning celestial matter that imprisoned her. She glimpsed the secrets of the cosmos, and of the infinite passage of time that preceded and followed her existence. She learned so much, and yet her hatred for the coward Xolaani remained.", + "artistName": "Kudos Productions", + "name": "Horazi", + "cardCode": "06MT006T2", + "keywords": [ + "SpellShield", + "Support" + ], + "keywordRefs": [ + "SpellShield", + "Support" + ], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "None", + "rarityRef": "None", + "subtypes": [ + "DARKIN" + ], + "supertype": "", + "type": "Unit", + "collectible": false, + "set": "Set6cde" + }, + { + "associatedCards": [], + "associatedCardRefs": [ + "06MT006T2" + ], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/4_0_0/set6cde/en_us/img/cards/06MT006T3.png", + "fullAbsolutePath": "http://dd.b.pvp.net/4_0_0/set6cde/en_us/img/cards/06MT006T3-full.png" + } + ], + "regions": [ + "Targon" + ], + "regionRefs": [ + "Targon" + ], + "attack": 0, + "cost": 2, + "health": 0, + "description": "Support: Grant my supported ally +1|+1.", + "descriptionRaw": "Support: Grant my supported ally +1|+1.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "Perhaps those who imprisoned the Darkin thought that burying the legendary warrior Horazi within an orb of star metal would sufficiently dim her irascible will. But as her general stirred, so too did Horazi, who found that even Targon's ancient protectors could be tempted by promises whispered from afar.", + "artistName": "Kudos Productions", + "name": "The Darkin Lodestone", + "cardCode": "06MT006T3", + "keywords": [ + "Equipment", + "Support" + ], + "keywordRefs": [ + "Equipment", + "Support" + ], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "None", + "rarityRef": "None", + "subtypes": [ + "DARKIN" + ], + "supertype": "", + "type": "Equipment", + "collectible": false, + "set": "Set6cde" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/4_0_0/set6cde/en_us/img/cards/06MT035T1.png", + "fullAbsolutePath": "http://dd.b.pvp.net/4_0_0/set6cde/en_us/img/cards/06MT035T1-full.png" + } + ], + "regions": [ + "Targon" + ], + "regionRefs": [ + "Targon" + ], + "attack": 2, + "cost": 7, + "health": 2, + "description": "I have +2|+2 for each ally that died with its power increased.\r\nAttack: Transform attacking non-Darkin followers into exact copies of me.", + "descriptionRaw": "I have +2|+2 for each ally that died with its power increased.\r\nAttack: Transform attacking non-Darkin followers into exact copies of me.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "More. More. Even the great hero of legend Mihira could not withstand Xolaani's overwhelming strength. The earth seemed to shudder to one beat now, such was the hemomantic power growing within Xolaani. She took a moment to observe the battlefield, and wept with the joy filling her soul. Soon, this world would be united in peace. In love. In silence.", + "artistName": "Kudos Productions", + "name": "Xolaani, Aspect's Bane", + "cardCode": "06MT035T1", + "keywords": [ + "Overwhelm" + ], + "keywordRefs": [ + "Overwhelm" + ], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "None", + "rarityRef": "None", + "subtypes": [ + "DARKIN" + ], + "supertype": "", + "type": "Unit", + "collectible": false, + "set": "Set6cde" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/4_0_0/set6cde/en_us/img/cards/06MT052.png", + "fullAbsolutePath": "http://dd.b.pvp.net/4_0_0/set6cde/en_us/img/cards/06MT052-full.png" + } + ], + "regions": [ + "Targon" + ], + "regionRefs": [ + "Targon" + ], + "attack": 0, + "cost": 2, + "health": 0, + "description": "Grant an ally in play and an ally in hand +1|+1.", + "descriptionRaw": "Grant an ally in play and an ally in hand +1|+1.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"By divine grace.\" - Kayle", + "artistName": "Kudos Productions", + "name": "Celestial Blessing", + "cardCode": "06MT052", + "keywords": [ + "Burst" + ], + "keywordRefs": [ + "Burst" + ], + "spellSpeed": "Burst", + "spellSpeedRef": "Burst", + "rarity": "COMMON", + "rarityRef": "Common", + "subtypes": [], + "supertype": "", + "type": "Spell", + "collectible": true, + "set": "Set6cde" + }, + { + "associatedCards": [], + "associatedCardRefs": [ + "03MT092T1" + ], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/4_0_0/set6cde/en_us/img/cards/06MT032.png", + "fullAbsolutePath": "http://dd.b.pvp.net/4_0_0/set6cde/en_us/img/cards/06MT032-full.png" + } + ], + "regions": [ + "Targon" + ], + "regionRefs": [ + "Targon" + ], + "attack": 1, + "cost": 2, + "health": 3, + "description": "When I'm summoned or once you've Equipped an ally this game, create a Gem in hand.", + "descriptionRaw": "When I'm summoned or once you've Equipped an ally this game, create a Gem in hand.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "She sought an end to the conflict between Sun and Moon, day and night. The bow offered power, though it came with a terrible cost - yet she pledged herself to it anyway, hoping that it would stop the war once and for all. ", + "artistName": "Kudos Productions", + "name": "Lunari Cultist", + "cardCode": "06MT032", + "keywords": [], + "keywordRefs": [], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "COMMON", + "rarityRef": "Common", + "subtypes": [ + "CULTIST" + ], + "supertype": "", + "type": "Unit", + "collectible": true, + "set": "Set6cde" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/4_0_0/set6cde/en_us/img/cards/06SH004T1.png", + "fullAbsolutePath": "http://dd.b.pvp.net/4_0_0/set6cde/en_us/img/cards/06SH004T1-full.png" + } + ], + "regions": [ + "Shurima" + ], + "regionRefs": [ + "Shurima" + ], + "attack": 1, + "cost": 1, + "health": 1, + "description": "The first time I'm Equipped grant me +2|+2.", + "descriptionRaw": "The first time I'm Equipped grant me +2|+2.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "Long did these devoted few tend their lady's temples. Long did they sweep back the sands and expel would-be desecrators. Long did they pray for her return. Her kindness. Her control.", + "artistName": "Kudos Productions", + "name": "Darkinthrall", + "cardCode": "06SH004T1", + "keywords": [ + "Can't Block" + ], + "keywordRefs": [ + "CantBlock" + ], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "None", + "rarityRef": "None", + "subtypes": [ + "CULTIST" + ], + "supertype": "", + "type": "Unit", + "collectible": false, + "set": "Set6cde" + }, + { + "associatedCards": [], + "associatedCardRefs": [ + "06SH004T2", + "06SH004T1" + ], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/4_0_0/set6cde/en_us/img/cards/06SH004T4.png", + "fullAbsolutePath": "http://dd.b.pvp.net/4_0_0/set6cde/en_us/img/cards/06SH004T4-full.png" + } + ], + "regions": [ + "Shurima" + ], + "regionRefs": [ + "Shurima" + ], + "attack": 0, + "cost": 1, + "health": 0, + "description": "LastBreath: If my bearer is not a Darkinthrall, summon a Darkinthrall.", + "descriptionRaw": "LastBreath: If my bearer is not a Darkinthrall, summon a Darkinthrall.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "", + "artistName": "Kudos Productions", + "name": "The Darkin Bloodletters", + "cardCode": "06SH004T4", + "keywords": [ + "Equipment" + ], + "keywordRefs": [ + "Equipment" + ], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "None", + "rarityRef": "None", + "subtypes": [ + "DARKIN" + ], + "supertype": "", + "type": "Equipment", + "collectible": false, + "set": "Set6cde" + }, + { + "associatedCards": [], + "associatedCardRefs": [ + "06SH031" + ], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/4_0_0/set6cde/en_us/img/cards/06SH032.png", + "fullAbsolutePath": "http://dd.b.pvp.net/4_0_0/set6cde/en_us/img/cards/06SH032-full.png" + } + ], + "regions": [ + "Shurima" + ], + "regionRefs": [ + "Shurima" + ], + "attack": 0, + "cost": 1, + "health": 0, + "description": "Countdown 2: Create a Treasure of the Sands in hand.", + "descriptionRaw": "Countdown 2: Create a Treasure of the Sands in hand.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"Why must you touch everything?\"\n\"What, you think it's booby-trapped? You think some boulder's just gonna come rollin' outta–\"\n\"RUNNN!\"\n- Argus and Silvio, tomb robbers", + "artistName": "Michal Ivan ", + "name": "Buried Armory", + "cardCode": "06SH032", + "keywords": [ + "Landmark", + "Countdown" + ], + "keywordRefs": [ + "LandmarkVisualOnly", + "Countdown" + ], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "COMMON", + "rarityRef": "Common", + "subtypes": [], + "supertype": "", + "type": "Landmark", + "collectible": true, + "set": "Set6cde" + }, + { + "associatedCards": [], + "associatedCardRefs": [ + "06SH004T1" + ], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/4_0_0/set6cde/en_us/img/cards/06SH035.png", + "fullAbsolutePath": "http://dd.b.pvp.net/4_0_0/set6cde/en_us/img/cards/06SH035-full.png" + } + ], + "regions": [ + "Shurima" + ], + "regionRefs": [ + "Shurima" + ], + "attack": 0, + "cost": 2, + "health": 0, + "description": "When you slay a unit, reduce the cost of the next Darkin Unit you play by 1.", + "descriptionRaw": "When you slay a unit, reduce the cost of the next Darkin Unit you play by 1.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "The altar throbbed with life once more, shaking the sands around it with a slow and steady beat. Each of Xolaani's disciples felt the same beat deep in their heart. Every muscle, every thought, every moment... they were all hers to control.", + "artistName": "Kudos Productions", + "name": "The Altar of Blood", + "cardCode": "06SH035", + "keywords": [ + "Landmark" + ], + "keywordRefs": [ + "LandmarkVisualOnly" + ], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "RARE", + "rarityRef": "Rare", + "subtypes": [], + "supertype": "", + "type": "Landmark", + "collectible": true, + "set": "Set6cde" + }, + { + "associatedCards": [], + "associatedCardRefs": [ + "04SH042" + ], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/4_0_0/set6cde/en_us/img/cards/06SH051.png", + "fullAbsolutePath": "http://dd.b.pvp.net/4_0_0/set6cde/en_us/img/cards/06SH051-full.png" + } + ], + "regions": [ + "Shurima" + ], + "regionRefs": [ + "Shurima" + ], + "attack": 1, + "cost": 3, + "health": 3, + "description": "When you summon an ally, advance your highest Countdown landmark 1 round.\r\nWhen I'm summoned, summon a Hibernating Rockbear.", + "descriptionRaw": "When you summon an ally, advance your highest Countdown landmark 1 round.\r\nWhen I'm summoned, summon a Hibernating Rockbear.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"The rockdoubbs treat Sadira like one of their own. She'd run away with 'em in a heartbeat if I let her, the little scamp!\" - Kadira, Desert Naturalist", + "artistName": "Caravan Studio", + "name": "Rockbear Shepherd", + "cardCode": "06SH051", + "keywords": [], + "keywordRefs": [], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "RARE", + "rarityRef": "Rare", + "subtypes": [], + "supertype": "", + "type": "Unit", + "collectible": true, + "set": "Set6cde" + }, + { + "associatedCards": [], + "associatedCardRefs": [ + "05SH016" + ], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/4_0_0/set6cde/en_us/img/cards/06SH046.png", + "fullAbsolutePath": "http://dd.b.pvp.net/4_0_0/set6cde/en_us/img/cards/06SH046-full.png" + } + ], + "regions": [ + "Shurima" + ], + "regionRefs": [ + "Shurima" + ], + "attack": 0, + "cost": 2, + "health": 0, + "description": "When I'm summoned, create a Ruinous Acolyte in hand. When you destroy me create an Acolyte's Reliquary in the top 5 cards of your deck.", + "descriptionRaw": "When I'm summoned, create a Ruinous Acolyte in hand. When you destroy me create an Acolyte's Reliquary in the top 5 cards of your deck.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"Our hands shape the desert!\" - Ruinous Acolyte", + "artistName": "Kudos Productions", + "name": "Acolyte's Reliquary", + "cardCode": "06SH046", + "keywords": [ + "Landmark" + ], + "keywordRefs": [ + "LandmarkVisualOnly" + ], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "RARE", + "rarityRef": "Rare", + "subtypes": [], + "supertype": "", + "type": "Landmark", + "collectible": true, + "set": "Set6cde" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/4_0_0/set6cde/en_us/img/cards/06SH033.png", + "fullAbsolutePath": "http://dd.b.pvp.net/4_0_0/set6cde/en_us/img/cards/06SH033-full.png" + } + ], + "regions": [ + "Shurima" + ], + "regionRefs": [ + "Shurima" + ], + "attack": 0, + "cost": 3, + "health": 0, + "description": "Predict. Give a unit \"I take double damage and if I would die, Obliterate me instead\" this round. ", + "descriptionRaw": "Predict. Give a unit \"I take double damage and if I would die, Obliterate me instead\" this round. ", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"Only fools seek power beyond their control.\" - Xerath", + "artistName": "Kudos Productions", + "name": "Curse of the Tomb", + "cardCode": "06SH033", + "keywords": [ + "Burst" + ], + "keywordRefs": [ + "Burst" + ], + "spellSpeed": "Burst", + "spellSpeedRef": "Burst", + "rarity": "RARE", + "rarityRef": "Rare", + "subtypes": [], + "supertype": "", + "type": "Spell", + "collectible": true, + "set": "Set6cde" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/4_0_0/set6cde/en_us/img/cards/06SH028.png", + "fullAbsolutePath": "http://dd.b.pvp.net/4_0_0/set6cde/en_us/img/cards/06SH028-full.png" + } + ], + "regions": [ + "Shurima" + ], + "regionRefs": [ + "Shurima" + ], + "attack": 0, + "cost": 2, + "health": 0, + "description": "When you summon an ally or an ally dies, grant each of its positive keywords to 3 allies in your deck.", + "descriptionRaw": "When you summon an ally or an ally dies, grant each of its positive keywords to 3 allies in your deck.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "The Hive Herald raised two hands to the colossal structure above. \"A THRONE,\" he screamed, \"FOR AN EMPRESS.\" The void gate above pulsed with life. Soon.", + "artistName": "Envar Studio", + "name": "Void Gate", + "cardCode": "06SH028", + "keywords": [ + "Landmark" + ], + "keywordRefs": [ + "LandmarkVisualOnly" + ], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "EPIC", + "rarityRef": "Epic", + "subtypes": [], + "supertype": "", + "type": "Landmark", + "collectible": true, + "set": "Set6cde" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/4_0_0/set6cde/en_us/img/cards/06SH005.png", + "fullAbsolutePath": "http://dd.b.pvp.net/4_0_0/set6cde/en_us/img/cards/06SH005-full.png" + } + ], + "regions": [ + "Shurima" + ], + "regionRefs": [ + "Shurima" + ], + "attack": 2, + "cost": 1, + "health": 1, + "description": "Play: Predict. If you pick a Darkin or an equipment, grant me +1|+1.", + "descriptionRaw": "Play: Predict. If you pick a Darkin or an equipment, grant me +1|+1.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "In his hand he clutched a braided belt, a gift from his friend Rhaast before their Ascension ceremony - but even as he revered the Darkin’s power, he harbored a secret resentment in his beastly heart.", + "artistName": "Kudos Productions", + "name": "Forsaken Baccai", + "cardCode": "06SH005", + "keywords": [], + "keywordRefs": [], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "COMMON", + "rarityRef": "Common", + "subtypes": [ + "CULTIST" + ], + "supertype": "", + "type": "Unit", + "collectible": true, + "set": "Set6cde" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/4_0_0/set6cde/en_us/img/cards/06SH040.png", + "fullAbsolutePath": "http://dd.b.pvp.net/4_0_0/set6cde/en_us/img/cards/06SH040-full.png" + } + ], + "regions": [ + "Shurima" + ], + "regionRefs": [ + "Shurima" + ], + "attack": 0, + "cost": 5, + "health": 0, + "description": "Once you have equipped an ally this game, I cost 2 less. Revive the Strongest dead allied champion.", + "descriptionRaw": "Once you have equipped an ally this game, I cost 2 less. Revive the Strongest dead allied champion.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "“You’ll never die, because I’ll never let you.”\n- Xolaani", + "artistName": "Kudos Productions", + "name": "Heedless Resurrection", + "cardCode": "06SH040", + "keywords": [ + "Slow" + ], + "keywordRefs": [ + "Slow" + ], + "spellSpeed": "Slow", + "spellSpeedRef": "Slow", + "rarity": "EPIC", + "rarityRef": "Epic", + "subtypes": [ + "CULTIST" + ], + "supertype": "", + "type": "Spell", + "collectible": true, + "set": "Set6cde" + }, + { + "associatedCards": [], + "associatedCardRefs": [ + "06SH021T1" + ], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/4_0_0/set6cde/en_us/img/cards/06SH021.png", + "fullAbsolutePath": "http://dd.b.pvp.net/4_0_0/set6cde/en_us/img/cards/06SH021-full.png" + } + ], + "regions": [ + "Shurima" + ], + "regionRefs": [ + "Shurima" + ], + "attack": 5, + "cost": 7, + "health": 3, + "description": "Play: I strike an enemy.\r\n", + "descriptionRaw": "Play: I strike an enemy.\r\n", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "As the assault continued, larger and even more ferocious creatures poured from the widening gate. The city of Belveth was lost, though, as the cruelty of fate would have it, its name would live on.", + "artistName": "Envar Studio", + "name": "Camouflaged Horror", + "cardCode": "06SH021", + "keywords": [ + "Fearsome", + "Evolve" + ], + "keywordRefs": [ + "Fearsome", + "Evolve" + ], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "RARE", + "rarityRef": "Rare", + "subtypes": [], + "supertype": "", + "type": "Unit", + "collectible": true, + "set": "Set6cde" + }, + { + "associatedCards": [], + "associatedCardRefs": [ + "06SH004T2", + "06SH004T1" + ], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/4_0_0/set6cde/en_us/img/cards/06SH004.png", + "fullAbsolutePath": "http://dd.b.pvp.net/4_0_0/set6cde/en_us/img/cards/06SH004-full.png" + } + ], + "regions": [ + "Shurima" + ], + "regionRefs": [ + "Shurima" + ], + "attack": 0, + "cost": 1, + "health": 0, + "description": "Last Breath: If my bearer is not a Darkinthrall, summon a Darkinthrall.\r\nYou may spend 6 mana and kill an ally to play me as Xolaani.", + "descriptionRaw": "Last Breath: If my bearer is not a Darkinthrall, summon a Darkinthrall.\r\nYou may spend 6 mana and kill an ally to play me as Xolaani.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "As the fighting raged on, Jun, desperate and badly wounded, turned to the voice whispering in her thoughts. \"You will never die,\" it said, soft as summer rain, \"because I will never let you.\"", + "artistName": "Kudos Productions", + "name": "The Darkin Bloodletters", + "cardCode": "06SH004", + "keywords": [ + "Equipment" + ], + "keywordRefs": [ + "Equipment" + ], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "EPIC", + "rarityRef": "Epic", + "subtypes": [ + "DARKIN" + ], + "supertype": "", + "type": "Equipment", + "collectible": true, + "set": "Set6cde" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/4_0_0/set6cde/en_us/img/cards/06SH031.png", + "fullAbsolutePath": "http://dd.b.pvp.net/4_0_0/set6cde/en_us/img/cards/06SH031-full.png" + } + ], + "regions": [ + "Shurima" + ], + "regionRefs": [ + "Shurima" + ], + "attack": 0, + "cost": 3, + "health": 0, + "description": "", + "descriptionRaw": "", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"Put those down, Silvio!\"\n\"Why? It ain't like the poor bugger's coming back for 'em!\"\n\"Some things should stay buried.\" \n- Argus and Silvio, tomb robbers ", + "artistName": "Kudos Productions", + "name": "Treasure of the Sands", + "cardCode": "06SH031", + "keywords": [ + "Equipment" + ], + "keywordRefs": [ + "Equipment" + ], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "None", + "rarityRef": "None", + "subtypes": [], + "supertype": "", + "type": "Equipment", + "collectible": false, + "set": "Set6cde" + }, + { + "associatedCards": [], + "associatedCardRefs": [ + "06SH004" + ], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/4_0_0/set6cde/en_us/img/cards/06SH004T2.png", + "fullAbsolutePath": "http://dd.b.pvp.net/4_0_0/set6cde/en_us/img/cards/06SH004T2-full.png" + } + ], + "regions": [ + "Shurima" + ], + "regionRefs": [ + "Shurima" + ], + "attack": 7, + "cost": 6, + "health": 7, + "description": "To play me, kill an ally.\r\nLast Breath: Create a The Darkin Bloodletters in hand.", + "descriptionRaw": "To play me, kill an ally.\r\nLast Breath: Create a The Darkin Bloodletters in hand.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "Shurima's Ascended were doomed the moment they took up arms against the Void. This was an enemy that could never be beaten, and while the god-warriors were all but guaranteed immortality, their minds were never as resilient. Madness consumed them all. Xolaani, once a beloved and gifted healer, began using her hemomantic powers to control her brethren, and soon enough, the hatred between her and Aatrox boiled over into civil war.", + "artistName": "Kudos Productions", + "name": "Xolaani", + "cardCode": "06SH004T2", + "keywords": [ + "Overwhelm", + "Last Breath" + ], + "keywordRefs": [ + "Overwhelm", + "LastBreath" + ], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "None", + "rarityRef": "None", + "subtypes": [ + "DARKIN" + ], + "supertype": "", + "type": "Unit", + "collectible": false, + "set": "Set6cde" + }, + { + "associatedCards": [], + "associatedCardRefs": [ + "06SH021" + ], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/4_0_0/set6cde/en_us/img/cards/06SH021T1.png", + "fullAbsolutePath": "http://dd.b.pvp.net/4_0_0/set6cde/en_us/img/cards/06SH021T1-full.png" + } + ], + "regions": [ + "Shurima" + ], + "regionRefs": [ + "Shurima" + ], + "attack": 0, + "cost": 0, + "health": 0, + "description": "Camouflaged Horror strikes an enemy.", + "descriptionRaw": "Camouflaged Horror strikes an enemy.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "With each corpse, the Void grew. Knowledge. Matter. Perspective. It began to feel. It began to want.", + "artistName": "Kudos Productions", + "name": "Feed the Void", + "cardCode": "06SH021T1", + "keywords": [ + "Skill" + ], + "keywordRefs": [ + "Skill" + ], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "None", + "rarityRef": "None", + "subtypes": [], + "supertype": "", + "type": "Ability", + "collectible": false, + "set": "Set6cde" + }, + { + "associatedCards": [], + "associatedCardRefs": [ + "04SH098" + ], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/4_0_0/set6cde/en_us/img/cards/06SH038.png", + "fullAbsolutePath": "http://dd.b.pvp.net/4_0_0/set6cde/en_us/img/cards/06SH038-full.png" + } + ], + "regions": [ + "Shurima" + ], + "regionRefs": [ + "Shurima" + ], + "attack": 0, + "cost": 3, + "health": 0, + "description": "Strike: Create a Lucky Find in hand.", + "descriptionRaw": "Strike: Create a Lucky Find in hand.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"Chase what you want. Without mercy.\" - Ruin Runner\n", + "artistName": "Kudos Productions", + "name": "Swinging Glaive", + "cardCode": "06SH038", + "keywords": [ + "Equipment" + ], + "keywordRefs": [ + "Equipment" + ], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "COMMON", + "rarityRef": "Common", + "subtypes": [], + "supertype": "", + "type": "Equipment", + "collectible": true, + "set": "Set6cde" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/4_0_0/set6cde/en_us/img/cards/06DE024.png", + "fullAbsolutePath": "http://dd.b.pvp.net/4_0_0/set6cde/en_us/img/cards/06DE024-full.png" + } + ], + "regions": [ + "Demacia", + "Freljord" + ], + "regionRefs": [ + "Demacia", + "Freljord" + ], + "attack": 0, + "cost": 1, + "health": 0, + "description": "Give an ally +1|+1 this round or equip it with an equipment in hand that costs 2 or less.", + "descriptionRaw": "Give an ally +1|+1 this round or equip it with an equipment in hand that costs 2 or less.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "This move is more painful if the party hasn't eaten yet.", + "artistName": "Kudos Productions", + "name": "Catch!", + "cardCode": "06DE024", + "keywords": [ + "Burst" + ], + "keywordRefs": [ + "Burst" + ], + "spellSpeed": "Burst", + "spellSpeedRef": "Burst", + "rarity": "RARE", + "rarityRef": "Rare", + "subtypes": [ + "WEAPONMASTER" + ], + "supertype": "", + "type": "Spell", + "collectible": true, + "set": "Set6cde" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/4_0_0/set6cde/en_us/img/cards/06DE025.png", + "fullAbsolutePath": "http://dd.b.pvp.net/4_0_0/set6cde/en_us/img/cards/06DE025-full.png" + } + ], + "regions": [ + "Demacia" + ], + "regionRefs": [ + "Demacia" + ], + "attack": 5, + "cost": 5, + "health": 5, + "description": "When I'm summoned, give Equipped allies Barrier this round.", + "descriptionRaw": "When I'm summoned, give Equipped allies Barrier this round.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"The boy is a liability. I was adamant he should not be taken along on our hunt, as still he refers to the foul creature as his 'sister'. It is a naivete so profound, it is frankly revolting. Yet, I suppose I do pity him well enough. At the very least, this will be an important lesson for him.\" - From the personal journal of Sirius Rowill, Zealous Ranger-Knight", + "artistName": "Kudos Productions", + "name": "Kind-hearted Recruit", + "cardCode": "06DE025", + "keywords": [], + "keywordRefs": [], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "RARE", + "rarityRef": "Rare", + "subtypes": [], + "supertype": "", + "type": "Unit", + "collectible": true, + "set": "Set6cde" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/4_0_0/set6cde/en_us/img/cards/06DE033.png", + "fullAbsolutePath": "http://dd.b.pvp.net/4_0_0/set6cde/en_us/img/cards/06DE033-full.png" + } + ], + "regions": [ + "Demacia" + ], + "regionRefs": [ + "Demacia" + ], + "attack": 0, + "cost": 1, + "health": 0, + "description": "Destroy a unit's equipment, and if it's a follower, Silence it.", + "descriptionRaw": "Destroy a unit's equipment, and if it's a follower, Silence it.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"You've brought this upon yourself.\" - Lord Eldred, Mageseeker Leader", + "artistName": "Kudos Productions", + "name": "Silence and Suppress", + "cardCode": "06DE033", + "keywords": [ + "Slow" + ], + "keywordRefs": [ + "Slow" + ], + "spellSpeed": "Slow", + "spellSpeedRef": "Slow", + "rarity": "RARE", + "rarityRef": "Rare", + "subtypes": [], + "supertype": "", + "type": "Spell", + "collectible": true, + "set": "Set6cde" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/4_0_0/set6cde/en_us/img/cards/06DE041.png", + "fullAbsolutePath": "http://dd.b.pvp.net/4_0_0/set6cde/en_us/img/cards/06DE041-full.png" + } + ], + "regions": [ + "Demacia" + ], + "regionRefs": [ + "Demacia" + ], + "attack": 0, + "cost": 9, + "health": 0, + "description": "Give allies +4|+4 this round. If you have the attack token, give them Scout this round. Otherwise, Rally.", + "descriptionRaw": "Give allies +4|+4 this round. If you have the attack token, give them Scout this round. Otherwise, Rally.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"Into battle with hearts aglow!\" - Lux", + "artistName": "Kudos Productions", + "name": "Champions' Strength", + "cardCode": "06DE041", + "keywords": [ + "Slow" + ], + "keywordRefs": [ + "Slow" + ], + "spellSpeed": "Slow", + "spellSpeedRef": "Slow", + "rarity": "EPIC", + "rarityRef": "Epic", + "subtypes": [], + "supertype": "", + "type": "Spell", + "collectible": true, + "set": "Set6cde" + }, + { + "associatedCards": [], + "associatedCardRefs": [ + "06DE011T1" + ], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/4_0_0/set6cde/en_us/img/cards/06DE011.png", + "fullAbsolutePath": "http://dd.b.pvp.net/4_0_0/set6cde/en_us/img/cards/06DE011-full.png" + } + ], + "regions": [ + "Demacia" + ], + "regionRefs": [ + "Demacia" + ], + "attack": 0, + "cost": 2, + "health": 0, + "description": "You may spend 5 mana to play me as Joraal.", + "descriptionRaw": "You may spend 5 mana to play me as Joraal.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"My son, listen now. That shield must never be touched. Long ago, it was gifted to our house on the condition that we keep it safe, and leave it be. It is my responsibility, and when I pass, it will be yours. Do you hear me now? You must never climb to it again. You must never touch it.\"\n\"But mama, the voice inside... it cries to me. It sounds so sad.\"\n\"...All the more reason, my son.\"\n- Lady Fortis and her son", + "artistName": "Kudos Productions", + "name": "The Darkin Aegis", + "cardCode": "06DE011", + "keywords": [ + "Equipment", + "Tough" + ], + "keywordRefs": [ + "Equipment", + "Tough" + ], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "EPIC", + "rarityRef": "Epic", + "subtypes": [ + "DARKIN" + ], + "supertype": "", + "type": "Equipment", + "collectible": true, + "set": "Set6cde" + }, + { + "associatedCards": [], + "associatedCardRefs": [ + "06DE021T3", + "06DE021T2", + "06DE021T1" + ], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/4_0_0/set6cde/en_us/img/cards/06DE021.png", + "fullAbsolutePath": "http://dd.b.pvp.net/4_0_0/set6cde/en_us/img/cards/06DE021-full.png" + } + ], + "regions": [ + "Demacia" + ], + "regionRefs": [ + "Demacia" + ], + "attack": 3, + "cost": 3, + "health": 4, + "description": "When I'm summoned or Round Start: Create a Tumble in hand or if you have one, reduce its cost by 1.", + "descriptionRaw": "When I'm summoned or Round Start: Create a Tumble in hand or if you have one, reduce its cost by 1.", + "levelupDescription": "I've seen you attack 4 times. ", + "levelupDescriptionRaw": "I've seen you attack 4 times. ", + "flavorText": "\"Our target was once human, which means it's smarter than your average beast. One wrong move could spell death for us all. Stay within eyesight of one another, call out anything suspicious--but above all else, remember...\"", + "artistName": "Kudos Productions", + "name": "Vayne", + "cardCode": "06DE021", + "keywords": [], + "keywordRefs": [], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "Champion", + "rarityRef": "Champion", + "subtypes": [], + "supertype": "Champion", + "type": "Unit", + "collectible": true, + "set": "Set6cde" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/4_0_0/set6cde/en_us/img/cards/06DE021T3.png", + "fullAbsolutePath": "http://dd.b.pvp.net/4_0_0/set6cde/en_us/img/cards/06DE021T3-full.png" + } + ], + "regions": [ + "Demacia" + ], + "regionRefs": [ + "Demacia" + ], + "attack": 0, + "cost": 4, + "health": 0, + "description": "Equip an ally with an equipment in hand that costs 2 or less. It starts a free attack.", + "descriptionRaw": "Equip an ally with an equipment in hand that costs 2 or less. It starts a free attack.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"I bring swift death.\" - Vayne", + "artistName": "Kudos Productions", + "name": "Tumble", + "cardCode": "06DE021T3", + "keywords": [ + "Slow" + ], + "keywordRefs": [ + "Slow" + ], + "spellSpeed": "Slow", + "spellSpeedRef": "Slow", + "rarity": "None", + "rarityRef": "None", + "subtypes": [], + "supertype": "", + "type": "Spell", + "collectible": false, + "set": "Set6cde" + }, + { + "associatedCards": [], + "associatedCardRefs": [ + "06DE021", + "06DE021T1" + ], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/4_0_0/set6cde/en_us/img/cards/06DE021T2.png", + "fullAbsolutePath": "http://dd.b.pvp.net/4_0_0/set6cde/en_us/img/cards/06DE021T2-full.png" + } + ], + "regions": [ + "Demacia" + ], + "regionRefs": [ + "Demacia" + ], + "attack": 0, + "cost": 6, + "health": 0, + "description": "If you've attacked 2+ times this round, I cost 5 less.\r\nAn ally strikes an enemy.\r\nCreate a Vayne in your deck.", + "descriptionRaw": "If you've attacked 2+ times this round, I cost 5 less.\r\nAn ally strikes an enemy.\r\nCreate a Vayne in your deck.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"Purifying bolts.\" - Vayne", + "artistName": "Kudos Productions", + "name": "Vayne's Condemn", + "cardCode": "06DE021T2", + "keywords": [ + "Fast" + ], + "keywordRefs": [ + "Fast" + ], + "spellSpeed": "Fast", + "spellSpeedRef": "Fast", + "rarity": "None", + "rarityRef": "None", + "subtypes": [], + "supertype": "Champion", + "type": "Spell", + "collectible": false, + "set": "Set6cde" + }, + { + "associatedCards": [], + "associatedCardRefs": [ + "06DE021T3", + "06DE021T2", + "06DE021" + ], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/4_0_0/set6cde/en_us/img/cards/06DE021T1.png", + "fullAbsolutePath": "http://dd.b.pvp.net/4_0_0/set6cde/en_us/img/cards/06DE021T1-full.png" + } + ], + "regions": [ + "Demacia" + ], + "regionRefs": [ + "Demacia" + ], + "attack": 4, + "cost": 3, + "health": 5, + "description": "When I'm summoned or Round Start: Create a 0 cost Tumble in hand or if you have one, reduce its cost to 0.", + "descriptionRaw": "When I'm summoned or Round Start: Create a 0 cost Tumble in hand or if you have one, reduce its cost to 0.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"...shoot to kill.\"", + "artistName": "Kudos Productions", + "name": "Vayne", + "cardCode": "06DE021T1", + "keywords": [], + "keywordRefs": [], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "None", + "rarityRef": "None", + "subtypes": [], + "supertype": "Champion", + "type": "Unit", + "collectible": false, + "set": "Set6cde" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/4_0_0/set6cde/en_us/img/cards/06DE011T1.png", + "fullAbsolutePath": "http://dd.b.pvp.net/4_0_0/set6cde/en_us/img/cards/06DE011T1-full.png" + } + ], + "regions": [ + "Demacia" + ], + "regionRefs": [ + "Demacia" + ], + "attack": 4, + "cost": 5, + "health": 3, + "description": "Your opponent's spells cost 2 more while I am attacking.", + "descriptionRaw": "Your opponent's spells cost 2 more while I am attacking.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "A mighty Ascended tactician known as the Aegis of Eternity, Joraal seemed impervious to attack, even for the immortal god-warriors of Shurima. But the war against the Void raged on, and as resilient as Joraal's body was, it was his mind that broke. And how it broke.", + "artistName": "Kudos Productions", + "name": "Joraal", + "cardCode": "06DE011T1", + "keywords": [ + "Challenger", + "Tough" + ], + "keywordRefs": [ + "Challenger", + "Tough" + ], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "None", + "rarityRef": "None", + "subtypes": [ + "DARKIN" + ], + "supertype": "", + "type": "Unit", + "collectible": false, + "set": "Set6cde" + }, + { + "associatedCards": [], + "associatedCardRefs": [ + "06DE011T1" + ], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/4_0_0/set6cde/en_us/img/cards/06DE011T4.png", + "fullAbsolutePath": "http://dd.b.pvp.net/4_0_0/set6cde/en_us/img/cards/06DE011T4-full.png" + } + ], + "regions": [ + "Demacia" + ], + "regionRefs": [ + "Demacia" + ], + "attack": 0, + "cost": 2, + "health": 0, + "description": "", + "descriptionRaw": "", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"My son, listen now. That shield must never be touched. Long ago, it was gifted to our house on the condition that we keep it safe, and leave it be. It is my responsibility, and when I pass, it will be yours. Do you hear me now? You must never climb to it again. You must never touch it.\"\n\"But mama, the voice inside... it cries to me. It sounds so sad.\"\n\"...All the more reason, my son.\"\n- Lady Fortis and her son", + "artistName": "Kudos Productions", + "name": "The Darkin Aegis", + "cardCode": "06DE011T4", + "keywords": [ + "Equipment", + "Tough" + ], + "keywordRefs": [ + "Equipment", + "Tough" + ], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "None", + "rarityRef": "None", + "subtypes": [ + "DARKIN" + ], + "supertype": "", + "type": "Equipment", + "collectible": false, + "set": "Set6cde" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/4_0_0/set6cde/en_us/img/cards/06DE018.png", + "fullAbsolutePath": "http://dd.b.pvp.net/4_0_0/set6cde/en_us/img/cards/06DE018-full.png" + } + ], + "regions": [ + "Demacia" + ], + "regionRefs": [ + "Demacia" + ], + "attack": 0, + "cost": 6, + "health": 0, + "description": "If you've attacked 2+ times this round, I cost 5 less.\r\nAn ally strikes an enemy.", + "descriptionRaw": "If you've attacked 2+ times this round, I cost 5 less.\r\nAn ally strikes an enemy.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"Purifying bolts.\" - Vayne", + "artistName": "Kudos Productions", + "name": "Condemn", + "cardCode": "06DE018", + "keywords": [ + "Fast" + ], + "keywordRefs": [ + "Fast" + ], + "spellSpeed": "Fast", + "spellSpeedRef": "Fast", + "rarity": "COMMON", + "rarityRef": "Common", + "subtypes": [], + "supertype": "", + "type": "Spell", + "collectible": true, + "set": "Set6cde" + }, + { + "associatedCards": [], + "associatedCardRefs": [ + "06SI031T1", + "06DE026T3" + ], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/4_0_0/set6cde/en_us/img/cards/06DE026.png", + "fullAbsolutePath": "http://dd.b.pvp.net/4_0_0/set6cde/en_us/img/cards/06DE026-full.png" + } + ], + "regions": [ + "Demacia" + ], + "regionRefs": [ + "Demacia" + ], + "attack": 0, + "cost": 2, + "health": 0, + "description": "Create an Icathian Mirage in hand that costs 0 this round, or create a Golden Spatula in hand.\r\n", + "descriptionRaw": "Create an Icathian Mirage in hand that costs 0 this round, or create a Golden Spatula in hand.\r\n", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "Legends say the original wielder of the Golden Spatula was a marine creature of outstanding culinary prowess--one who sought to become a warrior as strong and fearless as Jax.\n\nOther, more credible legends say that particular legend was fabricated entirely by a certain cook who was very, VERY lost in the sauce.", + "artistName": "Kudos Productions", + "name": "Icathian Myths", + "cardCode": "06DE026", + "keywords": [ + "Burst" + ], + "keywordRefs": [ + "Burst" + ], + "spellSpeed": "Burst", + "spellSpeedRef": "Burst", + "rarity": "RARE", + "rarityRef": "Rare", + "subtypes": [], + "supertype": "", + "type": "Spell", + "collectible": true, + "set": "Set6cde" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/4_0_0/set6cde/en_us/img/cards/06DE044.png", + "fullAbsolutePath": "http://dd.b.pvp.net/4_0_0/set6cde/en_us/img/cards/06DE044-full.png" + } + ], + "regions": [ + "Demacia" + ], + "regionRefs": [ + "Demacia" + ], + "attack": 0, + "cost": 3, + "health": 4, + "description": "I don't take damage from enemy spells or skills.", + "descriptionRaw": "I don't take damage from enemy spells or skills.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"Nothing is stronger than petricite.\" - Durand Architect", + "artistName": "Mogi", + "name": "Petricite Charger", + "cardCode": "06DE044", + "keywords": [ + "Formidable" + ], + "keywordRefs": [ + "Formidable" + ], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "RARE", + "rarityRef": "Rare", + "subtypes": [], + "supertype": "", + "type": "Unit", + "collectible": true, + "set": "Set6cde" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/4_0_0/set6cde/en_us/img/cards/06DE017.png", + "fullAbsolutePath": "http://dd.b.pvp.net/4_0_0/set6cde/en_us/img/cards/06DE017-full.png" + } + ], + "regions": [ + "Demacia" + ], + "regionRefs": [ + "Demacia" + ], + "attack": 0, + "cost": 2, + "health": 0, + "description": "An ally and an enemy strike each other, or an Equipped ally strikes an enemy, then is unequipped.", + "descriptionRaw": "An ally and an enemy strike each other, or an Equipped ally strikes an enemy, then is unequipped.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"Fish, meet face!\" - Ionian Hookmaster", + "artistName": "Kudos Productions", + "name": "Fish Fight", + "cardCode": "06DE017", + "keywords": [ + "Slow" + ], + "keywordRefs": [ + "Slow" + ], + "spellSpeed": "Slow", + "spellSpeedRef": "Slow", + "rarity": "COMMON", + "rarityRef": "Common", + "subtypes": [], + "supertype": "", + "type": "Spell", + "collectible": true, + "set": "Set6cde" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/4_0_0/set6cde/en_us/img/cards/06DE043.png", + "fullAbsolutePath": "http://dd.b.pvp.net/4_0_0/set6cde/en_us/img/cards/06DE043-full.png" + } + ], + "regions": [ + "Demacia" + ], + "regionRefs": [ + "Demacia" + ], + "attack": 1, + "cost": 1, + "health": 1, + "description": "The first time you summon another Elite, grant me +2|+2.", + "descriptionRaw": "The first time you summon another Elite, grant me +2|+2.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"She's not as fast as a silverwing, but you'd be surprised how fast her little legs can carry her.\" - Cithria, Lady of Clouds", + "artistName": "Kudos Productions", + "name": "Trusty Ramhound", + "cardCode": "06DE043", + "keywords": [], + "keywordRefs": [], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "COMMON", + "rarityRef": "Common", + "subtypes": [ + "ELITE" + ], + "supertype": "", + "type": "Unit", + "collectible": true, + "set": "Set6cde" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/4_0_0/set6cde/en_us/img/cards/06DE040.png", + "fullAbsolutePath": "http://dd.b.pvp.net/4_0_0/set6cde/en_us/img/cards/06DE040-full.png" + } + ], + "regions": [ + "Demacia" + ], + "regionRefs": [ + "Demacia" + ], + "attack": 0, + "cost": 1, + "health": 0, + "description": "Pick a follower or equipment from the top 4 cards of your deck. Draw it, place the rest into your deck.\r\n", + "descriptionRaw": "Pick a follower or equipment from the top 4 cards of your deck. Draw it, place the rest into your deck.\r\n", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "Soft, enticing whispers plant desire deep within the heart. Like a splinter, this festers and grows into hunger. Hunger gives way to transgression, which in turn brings death. And so the cycle continues.", + "artistName": "Kudos Productions", + "name": "Tempting Prospect", + "cardCode": "06DE040", + "keywords": [ + "Burst" + ], + "keywordRefs": [ + "Burst" + ], + "spellSpeed": "Burst", + "spellSpeedRef": "Burst", + "rarity": "COMMON", + "rarityRef": "Common", + "subtypes": [ + "CULTIST" + ], + "supertype": "", + "type": "Spell", + "collectible": true, + "set": "Set6cde" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/4_0_0/set6cde/en_us/img/cards/06DE017T1.png", + "fullAbsolutePath": "http://dd.b.pvp.net/4_0_0/set6cde/en_us/img/cards/06DE017T1-full.png" + } + ], + "regions": [ + "Demacia" + ], + "regionRefs": [ + "Demacia" + ], + "attack": 0, + "cost": 2, + "health": 0, + "description": "An ally and an enemy strike each other.", + "descriptionRaw": "An ally and an enemy strike each other.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"Fish, meet face!\" - Ionian Hookmaster", + "artistName": "Kudos Productions", + "name": "Fish Fight", + "cardCode": "06DE017T1", + "keywords": [ + "Slow" + ], + "keywordRefs": [ + "Slow" + ], + "spellSpeed": "Slow", + "spellSpeedRef": "Slow", + "rarity": "None", + "rarityRef": "None", + "subtypes": [], + "supertype": "", + "type": "Spell", + "collectible": false, + "set": "Set6cde" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/4_0_0/set6cde/en_us/img/cards/06DE017T2.png", + "fullAbsolutePath": "http://dd.b.pvp.net/4_0_0/set6cde/en_us/img/cards/06DE017T2-full.png" + } + ], + "regions": [ + "Demacia" + ], + "regionRefs": [ + "Demacia" + ], + "attack": 0, + "cost": 2, + "health": 0, + "description": "An Equipped ally strikes an enemy, then is unequipped.", + "descriptionRaw": "An Equipped ally strikes an enemy, then is unequipped.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"Fish, meet face!\" - Ionian Hookmaster", + "artistName": "Kudos Productions", + "name": "Fish Fight", + "cardCode": "06DE017T2", + "keywords": [ + "Slow" + ], + "keywordRefs": [ + "Slow" + ], + "spellSpeed": "Slow", + "spellSpeedRef": "Slow", + "rarity": "None", + "rarityRef": "None", + "subtypes": [], + "supertype": "", + "type": "Spell", + "collectible": false, + "set": "Set6cde" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/4_0_0/set6cde/en_us/img/cards/06DE028.png", + "fullAbsolutePath": "http://dd.b.pvp.net/4_0_0/set6cde/en_us/img/cards/06DE028-full.png" + } + ], + "regions": [ + "Demacia" + ], + "regionRefs": [ + "Demacia" + ], + "attack": 6, + "cost": 6, + "health": 4, + "description": "Play: Equip me with an equipment that costs 2 or less from hand. \r\nThe first time I would die while Equipped, fully heal me and destroy the equipment instead.", + "descriptionRaw": "Play: Equip me with an equipment that costs 2 or less from hand. \r\nThe first time I would die while Equipped, fully heal me and destroy the equipment instead.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"Kian, if you're reading this... I'm hopefully dead. I can't control what's happening to me. The blood under my nails won't wash off. I'm so itchy. I scratch and scratch but nothing helps. It hurts. I just want it to stop. If I'm still alive somehow, promise me you'll stop trying to find me.

I would ask for forgiveness, but I don't deserve it. Be good to mother, okay?\"
- Crumpled letter found in a torn-up satchel", + "artistName": "Kudos Productions", + "name": "Bloodcursed Harpy", + "cardCode": "06DE028", + "keywords": [ + "Scout" + ], + "keywordRefs": [ + "Scout" + ], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "EPIC", + "rarityRef": "Epic", + "subtypes": [], + "supertype": "", + "type": "Unit", + "collectible": true, + "set": "Set6cde" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/4_0_0/set6cde/en_us/img/cards/06DE027.png", + "fullAbsolutePath": "http://dd.b.pvp.net/4_0_0/set6cde/en_us/img/cards/06DE027-full.png" + } + ], + "regions": [ + "Demacia" + ], + "regionRefs": [ + "Demacia" + ], + "attack": 2, + "cost": 2, + "health": 3, + "description": "Attack: Give Equipped allies +1|+1 this round.", + "descriptionRaw": "Attack: Give Equipped allies +1|+1 this round.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"Janan, was it? What can you tell me about Sirius?\"\n\"Oh, Ranger-Knight Rowill? A few years ago, he had his title revoked. Apparently, he willfully disregarded every order he was given. Seems he does whatever he wants and doesn't take 'no' for an answer.\"\n\"Ah.\"\n\"So... why did you let him join this hunt, anyway?\"\n\"I didn't.\"\n\"Then, why... oh, right. Fantastic.\"\n- Vayne and Janan, Widowed Huntress", + "artistName": "Kudos Productions", + "name": "Zealous Ranger-Knight", + "cardCode": "06DE027", + "keywords": [], + "keywordRefs": [], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "RARE", + "rarityRef": "Rare", + "subtypes": [], + "supertype": "", + "type": "Unit", + "collectible": true, + "set": "Set6cde" + }, + { + "associatedCards": [], + "associatedCardRefs": [ + "06SI031T1" + ], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/4_0_0/set6cde/en_us/img/cards/06DE026T1.png", + "fullAbsolutePath": "http://dd.b.pvp.net/4_0_0/set6cde/en_us/img/cards/06DE026T1-full.png" + } + ], + "regions": [ + "Demacia" + ], + "regionRefs": [ + "Demacia" + ], + "attack": 0, + "cost": 2, + "health": 0, + "description": "Create an Icathian Mirage in hand that costs 0 this round.", + "descriptionRaw": "Create an Icathian Mirage in hand that costs 0 this round.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "Legends say the original wielder of the golden spatula was a marine creature of outstanding culinary prowess--one who sought to become a warrior as strong and fearless as Jax.\n\nOther, more credible legends say that particular legend was fabricated entirely by a certain cook who was very, VERY lost in the sauce.", + "artistName": "Kudos Productions", + "name": "Icathian Myths", + "cardCode": "06DE026T1", + "keywords": [ + "Burst" + ], + "keywordRefs": [ + "Burst" + ], + "spellSpeed": "Burst", + "spellSpeedRef": "Burst", + "rarity": "None", + "rarityRef": "None", + "subtypes": [], + "supertype": "", + "type": "Spell", + "collectible": false, + "set": "Set6cde" + }, + { + "associatedCards": [], + "associatedCardRefs": [ + "06DE026T3" + ], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/4_0_0/set6cde/en_us/img/cards/06DE026T2.png", + "fullAbsolutePath": "http://dd.b.pvp.net/4_0_0/set6cde/en_us/img/cards/06DE026T2-full.png" + } + ], + "regions": [ + "Demacia" + ], + "regionRefs": [ + "Demacia" + ], + "attack": 0, + "cost": 2, + "health": 0, + "description": "Create a Golden Spatula in hand.", + "descriptionRaw": "Create a Golden Spatula in hand.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "Legends say the original wielder of the golden spatula was a marine creature of outstanding culinary prowess--one who sought to become a warrior as strong and fearless as Jax.\n\nOther, more credible legends say that particular legend was fabricated entirely by a certain cook who was very, VERY lost in the sauce.", + "artistName": "Kudos Productions", + "name": "Icathian Myths", + "cardCode": "06DE026T2", + "keywords": [ + "Burst" + ], + "keywordRefs": [ + "Burst" + ], + "spellSpeed": "Burst", + "spellSpeedRef": "Burst", + "rarity": "None", + "rarityRef": "None", + "subtypes": [], + "supertype": "", + "type": "Spell", + "collectible": false, + "set": "Set6cde" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/4_0_0/set6cde/en_us/img/cards/06DE026T3.png", + "fullAbsolutePath": "http://dd.b.pvp.net/4_0_0/set6cde/en_us/img/cards/06DE026T3-full.png" + } + ], + "regions": [ + "Demacia" + ], + "regionRefs": [ + "Demacia" + ], + "attack": 3, + "cost": 2, + "health": 2, + "description": "", + "descriptionRaw": "", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "It definitely does something.", + "artistName": "Kudos Productions", + "name": "Golden Spatula", + "cardCode": "06DE026T3", + "keywords": [ + "Equipment" + ], + "keywordRefs": [ + "Equipment" + ], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "None", + "rarityRef": "None", + "subtypes": [], + "supertype": "", + "type": "Equipment", + "collectible": false, + "set": "Set6cde" + }, + { + "associatedCards": [], + "associatedCardRefs": [ + "06SI031T1" + ], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/4_0_0/set6cde/en_us/img/cards/06DE039.png", + "fullAbsolutePath": "http://dd.b.pvp.net/4_0_0/set6cde/en_us/img/cards/06DE039-full.png" + } + ], + "regions": [ + "Demacia" + ], + "regionRefs": [ + "Demacia" + ], + "attack": 0, + "cost": 6, + "health": 0, + "description": "Summon 2 Icathian Mirages Equipped with up to 2 Equipment in hand that cost 2 or less.", + "descriptionRaw": "Summon 2 Icathian Mirages Equipped with up to 2 Equipment in hand that cost 2 or less.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "Jax has spent countless dreams fighting alongside his lost kin. Some battles they win, some they lose, but always, they are together.", + "artistName": "Kudos Productions", + "name": "Roar of Icathia", + "cardCode": "06DE039", + "keywords": [ + "Slow" + ], + "keywordRefs": [ + "Slow" + ], + "spellSpeed": "Slow", + "spellSpeedRef": "Slow", + "rarity": "RARE", + "rarityRef": "Rare", + "subtypes": [], + "supertype": "", + "type": "Spell", + "collectible": true, + "set": "Set6cde" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/4_0_0/set6cde/en_us/img/cards/06DE019.png", + "fullAbsolutePath": "http://dd.b.pvp.net/4_0_0/set6cde/en_us/img/cards/06DE019-full.png" + } + ], + "regions": [ + "Demacia" + ], + "regionRefs": [ + "Demacia" + ], + "attack": 3, + "cost": 4, + "health": 3, + "description": "Play: Equip me with an equipment that costs 2 or less from hand.", + "descriptionRaw": "Play: Equip me with an equipment that costs 2 or less from hand.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"Though the woman seems a competent enough fighter, her grief is fresh and threatens to overwhelm her. Despair is indeed a compelling motivator--I should know--but unbridled so? Mayhap she is looking to die...\" - From the personal journal of Sirius Rowill, Zealous Ranger-Knight", + "artistName": "Kudos Productions", + "name": "Widowed Huntress", + "cardCode": "06DE019", + "keywords": [ + "Challenger" + ], + "keywordRefs": [ + "Challenger" + ], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "COMMON", + "rarityRef": "Common", + "subtypes": [], + "supertype": "", + "type": "Unit", + "collectible": true, + "set": "Set6cde" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/4_0_0/set6cde/en_us/img/cards/06DE032.png", + "fullAbsolutePath": "http://dd.b.pvp.net/4_0_0/set6cde/en_us/img/cards/06DE032-full.png" + } + ], + "regions": [ + "Demacia" + ], + "regionRefs": [ + "Demacia" + ], + "attack": 0, + "cost": 1, + "health": 0, + "description": "", + "descriptionRaw": "", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "The standard sword and shield of choice for Demacia's helmeted brothers-in-arms.", + "artistName": "Kudos Productions", + "name": "Demacian Steel", + "cardCode": "06DE032", + "keywords": [ + "Equipment" + ], + "keywordRefs": [ + "Equipment" + ], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "COMMON", + "rarityRef": "Common", + "subtypes": [], + "supertype": "", + "type": "Equipment", + "collectible": true, + "set": "Set6cde" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/4_0_0/set6cde/en_us/img/cards/06DE029.png", + "fullAbsolutePath": "http://dd.b.pvp.net/4_0_0/set6cde/en_us/img/cards/06DE029-full.png" + } + ], + "regions": [ + "Demacia" + ], + "regionRefs": [ + "Demacia" + ], + "attack": 2, + "cost": 1, + "health": 2, + "description": "The first time I see an ally Equipped, grant me Tough.", + "descriptionRaw": "The first time I see an ally Equipped, grant me Tough.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"Back, foul creature! Rend even a single hair from Purity's immaculate coat and I will see that you suffer AN ETERNITY OF AGONY!\" - Sirius Rowill, Zealous Ranger-Knight", + "artistName": "Kudos Productions", + "name": "Steadfast Elkin", + "cardCode": "06DE029", + "keywords": [], + "keywordRefs": [], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "COMMON", + "rarityRef": "Common", + "subtypes": [], + "supertype": "", + "type": "Unit", + "collectible": true, + "set": "Set6cde" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/4_0_0/set6cde/en_us/img/cards/06DE010.png", + "fullAbsolutePath": "http://dd.b.pvp.net/4_0_0/set6cde/en_us/img/cards/06DE010-full.png" + } + ], + "regions": [ + "Demacia" + ], + "regionRefs": [ + "Demacia" + ], + "attack": 4, + "cost": 4, + "health": 3, + "description": "Once you've Equipped an ally this game, grant me Scout.", + "descriptionRaw": "Once you've Equipped an ally this game, grant me Scout.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "Years of suppressing her magical abilities bred within her a fathomless self-hatred she maliciously unleashed on her victims. Once she had defected from the ranger-knights, her anger was aimless until a voice called in the darkness. It spoke of a new order, one where she could practice her cruelty unfettered.", + "artistName": "Kudos Productions", + "name": "Ranger-Knight Defector", + "cardCode": "06DE010", + "keywords": [ + "Tough" + ], + "keywordRefs": [ + "Tough" + ], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "RARE", + "rarityRef": "Rare", + "subtypes": [ + "CULTIST" + ], + "supertype": "", + "type": "Unit", + "collectible": true, + "set": "Set6cde" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/4_0_0/set6cde/en_us/img/cards/06DE006.png", + "fullAbsolutePath": "http://dd.b.pvp.net/4_0_0/set6cde/en_us/img/cards/06DE006-full.png" + } + ], + "regions": [ + "Demacia", + "Freljord" + ], + "regionRefs": [ + "Demacia", + "Freljord" + ], + "attack": 2, + "cost": 4, + "health": 2, + "description": "When I'm summoned, I Improvise and Forge me.", + "descriptionRaw": "When I'm summoned, I Improvise and Forge me.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "After his time in the Demacian military, Breshi thought he’d retire and cook at a quiet hamlet tavern. Jax ruined this retirement with a tavern brawl and a particularly bad opinion on hardboiled eggs. Since then, Breshi’s embraced a new lot in life: teaching Jax some taste.", + "artistName": "Envar Studio", + "name": "Combat Cook", + "cardCode": "06DE006", + "keywords": [], + "keywordRefs": [], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "COMMON", + "rarityRef": "Common", + "subtypes": [ + "WEAPONMASTER" + ], + "supertype": "", + "type": "Unit", + "collectible": true, + "set": "Set6cde" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/4_0_0/set6cde/en_us/img/cards/06DE034.png", + "fullAbsolutePath": "http://dd.b.pvp.net/4_0_0/set6cde/en_us/img/cards/06DE034-full.png" + } + ], + "regions": [ + "Demacia" + ], + "regionRefs": [ + "Demacia" + ], + "attack": 2, + "cost": 3, + "health": 3, + "description": "If an ally died this round, I cost 2 less.\r\nPlay: Equip me with an equipment that costs 2 or less from hand.", + "descriptionRaw": "If an ally died this round, I cost 2 less.\r\nPlay: Equip me with an equipment that costs 2 or less from hand.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"I've had Maggie since she was a pup. She may be long in the tooth, but she's still sharp as a fresh-whetted blade. I'd give my life for hers--and I know she'd give hers for mine.\" - Janan, Widowed Huntress", + "artistName": "Kudos Productions", + "name": "Faithful Wolfdog", + "cardCode": "06DE034", + "keywords": [], + "keywordRefs": [], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "COMMON", + "rarityRef": "Common", + "subtypes": [], + "supertype": "", + "type": "Unit", + "collectible": true, + "set": "Set6cde" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/4_0_0/set6cde/en_us/img/cards/06DE024T1.png", + "fullAbsolutePath": "http://dd.b.pvp.net/4_0_0/set6cde/en_us/img/cards/06DE024T1-full.png" + } + ], + "regions": [ + "Demacia", + "Freljord" + ], + "regionRefs": [ + "Demacia", + "Freljord" + ], + "attack": 0, + "cost": 1, + "health": 0, + "description": "Equip an ally with an equipment that costs 2 or less.", + "descriptionRaw": "Equip an ally with an equipment that costs 2 or less.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "This move is more painful if the party hasn't eaten yet.", + "artistName": "Kudos Productions", + "name": "Catch!", + "cardCode": "06DE024T1", + "keywords": [ + "Burst" + ], + "keywordRefs": [ + "Burst" + ], + "spellSpeed": "Burst", + "spellSpeedRef": "Burst", + "rarity": "None", + "rarityRef": "None", + "subtypes": [ + "WEAPONMASTER" + ], + "supertype": "", + "type": "Spell", + "collectible": false, + "set": "Set6cde" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/4_0_0/set6cde/en_us/img/cards/06DE024T2.png", + "fullAbsolutePath": "http://dd.b.pvp.net/4_0_0/set6cde/en_us/img/cards/06DE024T2-full.png" + } + ], + "regions": [ + "Demacia", + "Freljord" + ], + "regionRefs": [ + "Demacia", + "Freljord" + ], + "attack": 0, + "cost": 1, + "health": 0, + "description": "Give an ally +1|+1 this round.", + "descriptionRaw": "Give an ally +1|+1 this round.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "This move is more painful if the party hasn't eaten yet.", + "artistName": "Kudos Productions", + "name": "Catch!", + "cardCode": "06DE024T2", + "keywords": [ + "Burst" + ], + "keywordRefs": [ + "Burst" + ], + "spellSpeed": "Burst", + "spellSpeedRef": "Burst", + "rarity": "None", + "rarityRef": "None", + "subtypes": [ + "WEAPONMASTER" + ], + "supertype": "", + "type": "Spell", + "collectible": false, + "set": "Set6cde" + }, + { + "associatedCards": [], + "associatedCardRefs": [ + "06SI007T1" + ], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/4_0_0/set6cde/en_us/img/cards/06SI007.png", + "fullAbsolutePath": "http://dd.b.pvp.net/4_0_0/set6cde/en_us/img/cards/06SI007-full.png" + } + ], + "regions": [ + "Shadow Isles" + ], + "regionRefs": [ + "ShadowIsles" + ], + "attack": 0, + "cost": 1, + "health": 0, + "description": "To play me, kill an ally.\r\nYou may spend 10 mana to play me as Taarosh.", + "descriptionRaw": "To play me, kill an ally.\r\nYou may spend 10 mana to play me as Taarosh.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "Straining against the confines of his cell, Taarosh heard his general's call. He would answer it, one way or another.", + "artistName": "Kudos Productions ", + "name": "The Darkin Halberd", + "cardCode": "06SI007", + "keywords": [ + "Equipment" + ], + "keywordRefs": [ + "Equipment" + ], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "EPIC", + "rarityRef": "Epic", + "subtypes": [ + "DARKIN" + ], + "supertype": "", + "type": "Equipment", + "collectible": true, + "set": "Set6cde" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/4_0_0/set6cde/en_us/img/cards/06SI034.png", + "fullAbsolutePath": "http://dd.b.pvp.net/4_0_0/set6cde/en_us/img/cards/06SI034-full.png" + } + ], + "regions": [ + "Shadow Isles" + ], + "regionRefs": [ + "ShadowIsles" + ], + "attack": 2, + "cost": 6, + "health": 5, + "description": "Round End: For each ally that died this round, grant all allied copies of it everywhere +1|+1.", + "descriptionRaw": "Round End: For each ally that died this round, grant all allied copies of it everywhere +1|+1.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"I don't know what wicked magic they work, and I don't WANNA know. All's I need to know is that if they rise up, they're gettin' killed. Again.\" - Watcher on the Isles", + "artistName": "Michal Ivan", + "name": "Wraith of Echoes", + "cardCode": "06SI034", + "keywords": [], + "keywordRefs": [], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "EPIC", + "rarityRef": "Epic", + "subtypes": [], + "supertype": "", + "type": "Unit", + "collectible": true, + "set": "Set6cde" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/4_0_0/set6cde/en_us/img/cards/06SI029.png", + "fullAbsolutePath": "http://dd.b.pvp.net/4_0_0/set6cde/en_us/img/cards/06SI029-full.png" + } + ], + "regions": [ + "Shadow Isles" + ], + "regionRefs": [ + "ShadowIsles" + ], + "attack": 0, + "cost": 3, + "health": 0, + "description": "If an ally died this round, I cost 2 less.", + "descriptionRaw": "If an ally died this round, I cost 2 less.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"There can be no justice... only revenge.\" - Kalista", + "artistName": "Kudos Productions", + "name": "Malefic Spear", + "cardCode": "06SI029", + "keywords": [ + "Equipment", + "Fearsome" + ], + "keywordRefs": [ + "Equipment", + "Fearsome" + ], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "COMMON", + "rarityRef": "Common", + "subtypes": [], + "supertype": "", + "type": "Equipment", + "collectible": true, + "set": "Set6cde" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/4_0_0/set6cde/en_us/img/cards/06SI032.png", + "fullAbsolutePath": "http://dd.b.pvp.net/4_0_0/set6cde/en_us/img/cards/06SI032-full.png" + } + ], + "regions": [ + "Shadow Isles" + ], + "regionRefs": [ + "ShadowIsles" + ], + "attack": 0, + "cost": 1, + "health": 0, + "description": "Kill a unit with 2 or less power or destroy a unit's equipment.", + "descriptionRaw": "Kill a unit with 2 or less power or destroy a unit's equipment.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "However death manifests on the Shadow Isles, may it be blessedly swift.", + "artistName": "Kudos Productions", + "name": "Quietus", + "cardCode": "06SI032", + "keywords": [ + "Slow" + ], + "keywordRefs": [ + "Slow" + ], + "spellSpeed": "Slow", + "spellSpeedRef": "Slow", + "rarity": "RARE", + "rarityRef": "Rare", + "subtypes": [], + "supertype": "", + "type": "Spell", + "collectible": true, + "set": "Set6cde" + }, + { + "associatedCards": [], + "associatedCardRefs": [ + "06SI007T1" + ], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/4_0_0/set6cde/en_us/img/cards/06SI007T4.png", + "fullAbsolutePath": "http://dd.b.pvp.net/4_0_0/set6cde/en_us/img/cards/06SI007T4-full.png" + } + ], + "regions": [ + "Shadow Isles" + ], + "regionRefs": [ + "ShadowIsles" + ], + "attack": 0, + "cost": 1, + "health": 0, + "description": "To play me, kill an ally. ", + "descriptionRaw": "To play me, kill an ally. ", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "", + "artistName": "Kudos Productions ", + "name": "The Darkin Halberd", + "cardCode": "06SI007T4", + "keywords": [ + "Equipment" + ], + "keywordRefs": [ + "Equipment" + ], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "None", + "rarityRef": "None", + "subtypes": [ + "DARKIN" + ], + "supertype": "", + "type": "Equipment", + "collectible": false, + "set": "Set6cde" + }, + { + "associatedCards": [], + "associatedCardRefs": [ + "06SI007" + ], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/4_0_0/set6cde/en_us/img/cards/06SI007T1.png", + "fullAbsolutePath": "http://dd.b.pvp.net/4_0_0/set6cde/en_us/img/cards/06SI007T1-full.png" + } + ], + "regions": [ + "Shadow Isles" + ], + "regionRefs": [ + "ShadowIsles" + ], + "attack": 10, + "cost": 10, + "health": 10, + "description": "Each round, the first time I attack, fill your attackers with revived Ephemeral copies of the strongest followers you've slain this game.", + "descriptionRaw": "Each round, the first time I attack, fill your attackers with revived Ephemeral copies of the strongest followers you've slain this game.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "Legend says Taarosh was mere moments from destroying Xolaani when the Darkin were set upon by the Targonians. As centuries passed, he sensed the land around him become corrupted, tainted with rot and perpetual stench of death. How he dreamt of steeping Xolaani in this same suffering once he'd claimed his freedom.", + "artistName": "Kudos Productions", + "name": "Taarosh", + "cardCode": "06SI007T1", + "keywords": [ + "Fearsome" + ], + "keywordRefs": [ + "Fearsome" + ], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "None", + "rarityRef": "None", + "subtypes": [ + "DARKIN" + ], + "supertype": "", + "type": "Unit", + "collectible": false, + "set": "Set6cde" + }, + { + "associatedCards": [], + "associatedCardRefs": [ + "06SI031T1" + ], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/4_0_0/set6cde/en_us/img/cards/06SI031.png", + "fullAbsolutePath": "http://dd.b.pvp.net/4_0_0/set6cde/en_us/img/cards/06SI031-full.png" + } + ], + "regions": [ + "Shadow Isles", + "Shurima" + ], + "regionRefs": [ + "ShadowIsles", + "Shurima" + ], + "attack": 0, + "cost": 1, + "health": 0, + "description": "Give an ally \"Last Breath: Summon a Icathian Mirage with my equipment\" this round.", + "descriptionRaw": "Give an ally \"Last Breath: Summon a Icathian Mirage with my equipment\" this round.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "Sometimes, the best you can do for a fallen ally is to take up their weapon and continue the fight.", + "artistName": "Kudos Productions", + "name": "Blades of the Fallen", + "cardCode": "06SI031", + "keywords": [ + "Burst" + ], + "keywordRefs": [ + "Burst" + ], + "spellSpeed": "Burst", + "spellSpeedRef": "Burst", + "rarity": "RARE", + "rarityRef": "Rare", + "subtypes": [ + "WEAPONMASTER" + ], + "supertype": "", + "type": "Spell", + "collectible": true, + "set": "Set6cde" + }, + { + "associatedCards": [], + "associatedCardRefs": [ + "06SI009" + ], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/4_0_0/set6cde/en_us/img/cards/06SI014.png", + "fullAbsolutePath": "http://dd.b.pvp.net/4_0_0/set6cde/en_us/img/cards/06SI014-full.png" + } + ], + "regions": [ + "Shadow Isles" + ], + "regionRefs": [ + "ShadowIsles" + ], + "attack": 0, + "cost": 3, + "health": 0, + "description": "When I am summoned, or when you gain the attack token, summon a Ghastly Band.", + "descriptionRaw": "When I am summoned, or when you gain the attack token, summon a Ghastly Band.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"The players are ready, the stage is set, our audience is waiting--Maestro, if you please!\" - Boisterous Host", + "artistName": "Kudos Productions", + "name": "Opulent Foyer", + "cardCode": "06SI014", + "keywords": [ + "Landmark" + ], + "keywordRefs": [ + "LandmarkVisualOnly" + ], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "EPIC", + "rarityRef": "Epic", + "subtypes": [], + "supertype": "", + "type": "Landmark", + "collectible": true, + "set": "Set6cde" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/4_0_0/set6cde/en_us/img/cards/06SI042.png", + "fullAbsolutePath": "http://dd.b.pvp.net/4_0_0/set6cde/en_us/img/cards/06SI042-full.png" + } + ], + "regions": [ + "Shadow Isles" + ], + "regionRefs": [ + "ShadowIsles" + ], + "attack": 5, + "cost": 6, + "health": 5, + "description": "When I would gain Ephemeral, grant me +1|+1 instead.", + "descriptionRaw": "When I would gain Ephemeral, grant me +1|+1 instead.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "Soldiers that had been trained to withstand punishment in life were only more diligent and able in death--undeterred by cold, pain, or fear.", + "artistName": "Kudos Productions", + "name": "Deathless Knight", + "cardCode": "06SI042", + "keywords": [ + "Fearsome" + ], + "keywordRefs": [ + "Fearsome" + ], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "RARE", + "rarityRef": "Rare", + "subtypes": [], + "supertype": "", + "type": "Unit", + "collectible": true, + "set": "Set6cde" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/4_0_0/set6cde/en_us/img/cards/06SI003.png", + "fullAbsolutePath": "http://dd.b.pvp.net/4_0_0/set6cde/en_us/img/cards/06SI003-full.png" + } + ], + "regions": [ + "Shadow Isles", + "Shurima" + ], + "regionRefs": [ + "ShadowIsles", + "Shurima" + ], + "attack": 1, + "cost": 1, + "health": 1, + "description": "When I'm summoned, I Improvise.", + "descriptionRaw": "When I'm summoned, I Improvise.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "Jax asked for Fireth’s name two dozen times in their first weeks of travel together, but she would only ever growl, “I am the Reaper!”. Breshi found a novel solution—he’d just baked a cake, you see, and needed the name of the group’s strongest member to properly celebrate.", + "artistName": "Envar Studio", + "name": "Fireth, Reaper of the Sands", + "cardCode": "06SI003", + "keywords": [ + "Ephemeral", + "Can't Block" + ], + "keywordRefs": [ + "Ephemeral", + "CantBlock" + ], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "EPIC", + "rarityRef": "Epic", + "subtypes": [ + "WEAPONMASTER" + ], + "supertype": "", + "type": "Unit", + "collectible": true, + "set": "Set6cde" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/4_0_0/set6cde/en_us/img/cards/06SI006.png", + "fullAbsolutePath": "http://dd.b.pvp.net/4_0_0/set6cde/en_us/img/cards/06SI006-full.png" + } + ], + "regions": [ + "Shadow Isles" + ], + "regionRefs": [ + "ShadowIsles" + ], + "attack": 2, + "cost": 2, + "health": 2, + "description": "Once you've Equipped an ally this game, grant me Lifesteal.", + "descriptionRaw": "Once you've Equipped an ally this game, grant me Lifesteal.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "\"The Box does not give its secrets freely, Shieda Kayn. They come at a grim price. But if you have the courage to gaze into the shadow of shadows, you will find that wonderful, terrible things lay within.\" - Ysdra, Keeper of the Box", + "artistName": "Kudos Productions", + "name": "Keeper of the Box", + "cardCode": "06SI006", + "keywords": [ + "Fearsome" + ], + "keywordRefs": [ + "Fearsome" + ], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "COMMON", + "rarityRef": "Common", + "subtypes": [ + "CULTIST" + ], + "supertype": "", + "type": "Unit", + "collectible": true, + "set": "Set6cde" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/4_0_0/set6cde/en_us/img/cards/06SI031T1.png", + "fullAbsolutePath": "http://dd.b.pvp.net/4_0_0/set6cde/en_us/img/cards/06SI031T1-full.png" + } + ], + "regions": [ + "Shurima" + ], + "regionRefs": [ + "Shurima" + ], + "attack": 3, + "cost": 2, + "health": 2, + "description": "", + "descriptionRaw": "", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "Perhaps they are a mirage. Perhaps she and hers hail from a remote, hidden village. She says nothing of her origin, and Jax does not ask. But when she rises from the sands and stands beside him, they fight in perfect, soundless, impossible harmony.", + "artistName": "Envar Studio", + "name": "Icathian Mirage", + "cardCode": "06SI031T1", + "keywords": [], + "keywordRefs": [], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "None", + "rarityRef": "None", + "subtypes": [ + "WEAPONMASTER" + ], + "supertype": "", + "type": "Unit", + "collectible": false, + "set": "Set6cde" + }, + { + "associatedCards": [], + "associatedCardRefs": [ + "04SI045" + ], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/4_0_0/set6cde/en_us/img/cards/06SI039.png", + "fullAbsolutePath": "http://dd.b.pvp.net/4_0_0/set6cde/en_us/img/cards/06SI039-full.png" + } + ], + "regions": [ + "Shadow Isles" + ], + "regionRefs": [ + "ShadowIsles" + ], + "attack": 0, + "cost": 1, + "health": 0, + "description": "Kill an ally to summon an Encroaching Mist.\r\n", + "descriptionRaw": "Kill an ally to summon an Encroaching Mist.\r\n", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "Only a fool would stare into the Black Mist in hopes of deciphering a familiar shape.", + "artistName": "Kudos Productions", + "name": "Shape of Fear", + "cardCode": "06SI039", + "keywords": [ + "Fast" + ], + "keywordRefs": [ + "Fast" + ], + "spellSpeed": "Fast", + "spellSpeedRef": "Fast", + "rarity": "COMMON", + "rarityRef": "Common", + "subtypes": [], + "supertype": "", + "type": "Spell", + "collectible": true, + "set": "Set6cde" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/4_0_0/set6cde/en_us/img/cards/06SI036.png", + "fullAbsolutePath": "http://dd.b.pvp.net/4_0_0/set6cde/en_us/img/cards/06SI036-full.png" + } + ], + "regions": [ + "Shadow Isles" + ], + "regionRefs": [ + "ShadowIsles" + ], + "attack": 0, + "cost": 11, + "health": 0, + "description": "Kill all units except allied Darkin and allied Equipped units.", + "descriptionRaw": "Kill all units except allied Darkin and allied Equipped units.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "As she took hold of the weapons, her humanity fled, and in its place a hateful essence filled the emptying vessel that was once the student Jun. It washed through her, over her, around her, and out into the world, stirring the slumbering Darkin.", + "artistName": "Kudos Productions", + "name": "Utter Devastation", + "cardCode": "06SI036", + "keywords": [ + "Slow" + ], + "keywordRefs": [ + "Slow" + ], + "spellSpeed": "Slow", + "spellSpeedRef": "Slow", + "rarity": "RARE", + "rarityRef": "Rare", + "subtypes": [ + "CULTIST" + ], + "supertype": "", + "type": "Spell", + "collectible": true, + "set": "Set6cde" + }, + { + "associatedCards": [], + "associatedCardRefs": [ + "06SI009" + ], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/4_0_0/set6cde/en_us/img/cards/06SI038.png", + "fullAbsolutePath": "http://dd.b.pvp.net/4_0_0/set6cde/en_us/img/cards/06SI038-full.png" + } + ], + "regions": [ + "Shadow Isles" + ], + "regionRefs": [ + "ShadowIsles" + ], + "attack": 2, + "cost": 2, + "health": 2, + "description": "Attack: Summon an attacking Ghastly Band.", + "descriptionRaw": "Attack: Summon an attacking Ghastly Band.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "Striving for perfection was limiting, rigid. Perfection had no life; could not breathe. However, perfect imperfection--now, that was something to strive for.", + "artistName": "Kudos Productions", + "name": "Redeemed Prodigy", + "cardCode": "06SI038", + "keywords": [], + "keywordRefs": [], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "RARE", + "rarityRef": "Rare", + "subtypes": [], + "supertype": "", + "type": "Unit", + "collectible": true, + "set": "Set6cde" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/4_0_0/set6cde/en_us/img/cards/06SI032T2.png", + "fullAbsolutePath": "http://dd.b.pvp.net/4_0_0/set6cde/en_us/img/cards/06SI032T2-full.png" + } + ], + "regions": [ + "Shadow Isles" + ], + "regionRefs": [ + "ShadowIsles" + ], + "attack": 0, + "cost": 1, + "health": 0, + "description": "Destroy a unit's equipment.", + "descriptionRaw": "Destroy a unit's equipment.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "However death manifests on the Shadow Isles, may it be blessedly swift.", + "artistName": "Kudos Productions", + "name": "Quietus", + "cardCode": "06SI032T2", + "keywords": [ + "Slow" + ], + "keywordRefs": [ + "Slow" + ], + "spellSpeed": "Slow", + "spellSpeedRef": "Slow", + "rarity": "None", + "rarityRef": "None", + "subtypes": [], + "supertype": "", + "type": "Spell", + "collectible": false, + "set": "Set6cde" + }, + { + "associatedCards": [], + "associatedCardRefs": [], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/4_0_0/set6cde/en_us/img/cards/06SI032T1.png", + "fullAbsolutePath": "http://dd.b.pvp.net/4_0_0/set6cde/en_us/img/cards/06SI032T1-full.png" + } + ], + "regions": [ + "Shadow Isles" + ], + "regionRefs": [ + "ShadowIsles" + ], + "attack": 0, + "cost": 1, + "health": 0, + "description": "Kill a unit with 2 or less power.", + "descriptionRaw": "Kill a unit with 2 or less power.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "However death manifests on the Shadow Isles, may it be blessedly swift.", + "artistName": "Kudos Productions", + "name": "Quietus", + "cardCode": "06SI032T1", + "keywords": [ + "Slow" + ], + "keywordRefs": [ + "Slow" + ], + "spellSpeed": "Slow", + "spellSpeedRef": "Slow", + "rarity": "None", + "rarityRef": "None", + "subtypes": [], + "supertype": "", + "type": "Spell", + "collectible": false, + "set": "Set6cde" + }, + { + "associatedCards": [], + "associatedCardRefs": [ + "02SI008T3" + ], + "assets": [ + { + "gameAbsolutePath": "http://dd.b.pvp.net/4_0_0/set6cde/en_us/img/cards/06SI041.png", + "fullAbsolutePath": "http://dd.b.pvp.net/4_0_0/set6cde/en_us/img/cards/06SI041-full.png" + } + ], + "regions": [ + "Shadow Isles" + ], + "regionRefs": [ + "ShadowIsles" + ], + "attack": 2, + "cost": 3, + "health": 3, + "description": "When you summon an Ephemeral ally, grant it +1|+0.\r\nNightfall: Summon a Sapling.", + "descriptionRaw": "When you summon an Ephemeral ally, grant it +1|+0.\r\nNightfall: Summon a Sapling.", + "levelupDescription": "", + "levelupDescriptionRaw": "", + "flavorText": "Far from the Shadow Isles' shores are copses of trees thought long-dead, crooked and unmoving to all but the most keen observer--who will note that in that moon-drenched soil, new life stirs.", + "artistName": "Xavier Leroux", + "name": "Moonlit Glenkeeper", + "cardCode": "06SI041", + "keywords": [ + "Fearsome" + ], + "keywordRefs": [ + "Fearsome" + ], + "spellSpeed": "", + "spellSpeedRef": "", + "rarity": "COMMON", + "rarityRef": "Common", + "subtypes": [], + "supertype": "", + "type": "Unit", + "collectible": true, + "set": "Set6cde" + } +] \ No newline at end of file diff --git a/data/set6cde-en_us/metadata.json b/data/set6cde-en_us/metadata.json new file mode 100644 index 0000000..73ddb2d --- /dev/null +++ b/data/set6cde-en_us/metadata.json @@ -0,0 +1,5 @@ +{ + "locales": [ + "en_us" + ] +} \ No newline at end of file