From b808f411ea026baea3e5aefb44b1a7e9cfe663a6 Mon Sep 17 00:00:00 2001 From: mwisnowski <93788087+mwisnowski@users.noreply.github.com> Date: Wed, 25 Mar 2026 22:08:25 -0700 Subject: [PATCH] feat: replace ENABLE_SMART_LANDS env var with per-build checkbox in New Deck modal (#64) --- .env.example | 1 - CHANGELOG.md | 4 +- DOCKER.md | 5 +- RELEASE_NOTES_TEMPLATE.md | 4 +- .../phases/phase2_lands_analysis.py | 9 +- code/web/routes/build_newflow.py | 7 + code/web/services/build_utils.py | 1 + code/web/services/orchestrator.py | 3 + code/web/templates/build/_new_deck_modal.html | 4 + config/themes/theme_list.json | 6208 ++++------------- docker-compose.yml | 1 - dockerhub-docker-compose.yml | 1 - docs/user_guides/land_bases.md | 7 +- 13 files changed, 1209 insertions(+), 5046 deletions(-) diff --git a/.env.example b/.env.example index aa6b110..6c4a3dc 100644 --- a/.env.example +++ b/.env.example @@ -69,7 +69,6 @@ ENABLE_CARD_DETAILS=1 # dockerhub: ENABLE_CARD_DETAILS="1" SIMILARITY_CACHE_ENABLED=1 # dockerhub: SIMILARITY_CACHE_ENABLED="1" SIMILARITY_CACHE_PATH="card_files/similarity_cache.parquet" # Path to Parquet cache file ENABLE_BATCH_BUILD=1 # dockerhub: ENABLE_BATCH_BUILD="1" (enable Build X and Compare feature) -ENABLE_SMART_LANDS=1 # dockerhub: ENABLE_SMART_LANDS="1" (1=enable smart land base analysis; 0=use fixed defaults) # LAND_PROFILE=mid # Optional: force a land profile (basics|mid|fixing); skips auto-detection # LAND_COUNT=36 # Optional: force total land count; skips curve calculation diff --git a/CHANGELOG.md b/CHANGELOG.md index 7b4fd15..0571964 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -9,7 +9,7 @@ This format follows Keep a Changelog principles and aims for Semantic Versioning ## [Unreleased] ### Added -_No unreleased changes yet_ +- **Smart Land Bases checkbox**: The New Deck modal Preferences section now has a **Smart Land Bases** checkbox (checked by default) to enable or disable smart land analysis per-build, replacing the `ENABLE_SMART_LANDS` environment variable. ### Changed _No unreleased changes yet_ @@ -18,7 +18,7 @@ _No unreleased changes yet_ _No unreleased changes yet_ ### Removed -_No unreleased changes yet_ +- **`ENABLE_SMART_LANDS` environment variable**: Removed in favor of the per-build checkbox in the New Deck modal. Use `LAND_PROFILE` or `LAND_COUNT` for headless/CLI control. ## [4.3.1] - 2026-03-25 ### Added diff --git a/DOCKER.md b/DOCKER.md index c655315..c89668d 100644 --- a/DOCKER.md +++ b/DOCKER.md @@ -195,13 +195,13 @@ Enable cost-aware deck building with `ENABLE_BUDGET_MODE=1` (default). A per-car ## Smart Land Bases -Enable automatic land count and profile selection with `ENABLE_SMART_LANDS=1` (default). Each build analyses the commander's speed and the card pool's color-pip intensity to pick a land base profile. +Enable or disable smart land analysis per-build via the **Smart Land Bases** checkbox in the Preferences section of the New Deck modal (checked by default). Each build analyses the commander's speed and the card pool's color-pip intensity to pick a land base profile. - **Basics-heavy**: 1–2 color decks or low-pip pools. ~60% basics, reduced ETB-tapped tolerance. - **Balanced**: 2–3 color decks with moderate pip density. Standard ratios and ETB thresholds. - **Fixing-heavy**: 3+ colors or high pip density (≥15 double-pip or ≥3 triple-or-more-pip cards). Minimal basics, raised ETB-tapped tolerance. - Land targets: fast decks (commander CMC < 3) get 33 lands; slow decks (CMC > 4) get 37–39. -- Override with `LAND_PROFILE=basics|mid|fixing` or `LAND_COUNT=` to bypass auto-detection. +- Override with `LAND_PROFILE=basics|mid|fixing` or `LAND_COUNT=` to bypass auto-detection (useful for headless/CLI builds). - The **Land Summary** section of each deck result shows a "Smart Lands" notice explaining the chosen profile. - See [`docs/user_guides/land_bases.md`](docs/user_guides/land_bases.md) for the full guide. @@ -290,7 +290,6 @@ See `.env.example` for the full catalog. Common knobs: | `WEB_VIRTUALIZE` | `1` | Opt-in to virtualized lists/grids for large result sets. | | `ALLOW_MUST_HAVES` | `1` | Enable include/exclude enforcement in Step 5. | | `SHOW_MUST_HAVE_BUTTONS` | `0` | Surface the must include/exclude buttons and quick-add UI (requires `ALLOW_MUST_HAVES=1`). | -| `ENABLE_SMART_LANDS` | `1` | Enable automatic land count and profile selection based on commander speed and pip density. | | `LAND_PROFILE` | _(auto)_ | Force a land profile: `basics`, `mid`, or `fixing`. Skips auto-detection. | | `LAND_COUNT` | _(auto)_ | Force total land count (e.g. `36`). Skips curve calculation. | | `ENABLE_BUDGET_MODE` | `1` | Enable budget mode controls (per-card ceiling, soft enforcement) and price display throughout the builder. | diff --git a/RELEASE_NOTES_TEMPLATE.md b/RELEASE_NOTES_TEMPLATE.md index 65d62ef..a7dda74 100644 --- a/RELEASE_NOTES_TEMPLATE.md +++ b/RELEASE_NOTES_TEMPLATE.md @@ -2,7 +2,7 @@ ## [Unreleased] ### Added -_No unreleased changes yet_ +- **Smart Land Bases checkbox**: The New Deck modal now has a **Smart Land Bases** checkbox in the Preferences section (checked by default). Enables or disables smart land analysis per-build without needing environment variables. ### Changed _No unreleased changes yet_ @@ -11,7 +11,7 @@ _No unreleased changes yet_ _No unreleased changes yet_ ### Removed -_No unreleased changes yet_ +- **`ENABLE_SMART_LANDS` environment variable**: Replaced by the per-build checkbox. Use `LAND_PROFILE` or `LAND_COUNT` for headless overrides. ## [4.3.1] - 2026-03-25 ### Added diff --git a/code/deck_builder/phases/phase2_lands_analysis.py b/code/deck_builder/phases/phase2_lands_analysis.py index e14a68a..fbe761f 100644 --- a/code/deck_builder/phases/phase2_lands_analysis.py +++ b/code/deck_builder/phases/phase2_lands_analysis.py @@ -10,8 +10,8 @@ from .. import builder_utils as bu """Phase 2 (pre-step): Smart land base analysis (Roadmap 14, M1). LandAnalysisMixin.run_land_analysis() is called from run_deck_build_step2() -AFTER ideal_counts defaults are seeded, so ENABLE_SMART_LANDS, LAND_PROFILE, -and LAND_COUNT env overrides win over the calculated values. +AFTER ideal_counts defaults are seeded, so LAND_PROFILE and LAND_COUNT env +overrides win over the calculated values. Responsibilities: - compute_pip_density(): delegate to builder_utils @@ -38,9 +38,10 @@ class LandAnalysisMixin: self._land_report_data dict persisted for M3 diagnostics export Mutates: self.ideal_counts['lands'] and self.ideal_counts['basic_lands'] - (only when ENABLE_SMART_LANDS=1; env overrides honoured after) + (only when enable_smart_lands is True on the builder; LAND_PROFILE/LAND_COUNT env overrides honoured after) """ - if not os.environ.get('ENABLE_SMART_LANDS'): + # Per-build toggle from UI checkbox (defaults True = opted in) + if not getattr(self, 'enable_smart_lands', True): return try: diff --git a/code/web/routes/build_newflow.py b/code/web/routes/build_newflow.py index 7918107..b5b3303 100644 --- a/code/web/routes/build_newflow.py +++ b/code/web/routes/build_newflow.py @@ -126,6 +126,7 @@ async def build_new_modal(request: Request) -> HTMLResponse: "use_owned_only": bool(sess.get("use_owned_only")), "prefer_owned": bool(sess.get("prefer_owned")), "swap_mdfc_basics": bool(sess.get("swap_mdfc_basics")), + "enable_smart_lands": bool(sess.get("enable_smart_lands", True)), # Add ideal values from session (will be None on first load, triggering defaults) "ramp": sess.get("ideals", {}).get("ramp"), "lands": sess.get("ideals", {}).get("lands"), @@ -417,6 +418,7 @@ async def build_new_submit( use_owned_only: bool = Form(False), prefer_owned: bool = Form(False), swap_mdfc_basics: bool = Form(False), + enable_smart_lands: bool = Form(False), # Integrated Multi-Copy (optional) multi_choice_id: str | None = Form(None), multi_count: int | None = Form(None), @@ -472,6 +474,7 @@ async def build_new_submit( "use_owned_only": bool(use_owned_only), "prefer_owned": bool(prefer_owned), "swap_mdfc_basics": bool(swap_mdfc_basics), + "enable_smart_lands": bool(enable_smart_lands), "include_cards": include_cards or "", "exclude_cards": exclude_cards or "", "enforcement_mode": enforcement_mode or "warn", @@ -819,6 +822,10 @@ async def build_new_submit( sess["swap_mdfc_basics"] = bool(swap_mdfc_basics) except Exception: sess["swap_mdfc_basics"] = False + try: + sess["enable_smart_lands"] = bool(enable_smart_lands) + except Exception: + sess["enable_smart_lands"] = True # Combos config from modal try: if combo_count is not None: diff --git a/code/web/services/build_utils.py b/code/web/services/build_utils.py index e8dc326..c93c4d0 100644 --- a/code/web/services/build_utils.py +++ b/code/web/services/build_utils.py @@ -185,6 +185,7 @@ def start_ctx_from_session(sess: dict, *, set_on_session: bool = True) -> Dict[s include_cards=sess.get("include_cards"), exclude_cards=sess.get("exclude_cards"), swap_mdfc_basics=bool(sess.get("swap_mdfc_basics")), + enable_smart_lands=bool(sess.get("enable_smart_lands", True)), partner_feature_enabled=partner_enabled, secondary_commander=secondary_commander, background_commander=background_choice, diff --git a/code/web/services/orchestrator.py b/code/web/services/orchestrator.py index 3c36e0f..18136ce 100644 --- a/code/web/services/orchestrator.py +++ b/code/web/services/orchestrator.py @@ -2516,6 +2516,7 @@ def start_build_ctx( include_cards: List[str] | None = None, exclude_cards: List[str] | None = None, swap_mdfc_basics: bool | None = None, + enable_smart_lands: bool | None = None, partner_feature_enabled: bool | None = None, secondary_commander: str | None = None, background_commander: str | None = None, @@ -2682,6 +2683,8 @@ def start_build_ctx( pass # Smart land analysis — mirrors run_deck_build_step2() so web builds get profiles too try: + if enable_smart_lands is not None: + b.enable_smart_lands = bool(enable_smart_lands) b.run_land_analysis() except Exception: pass diff --git a/code/web/templates/build/_new_deck_modal.html b/code/web/templates/build/_new_deck_modal.html index ca2565a..fad7013 100644 --- a/code/web/templates/build/_new_deck_modal.html +++ b/code/web/templates/build/_new_deck_modal.html @@ -104,6 +104,10 @@ Swap basics for MDFC lands + diff --git a/config/themes/theme_list.json b/config/themes/theme_list.json index 3df2b31..48f866b 100644 --- a/config/themes/theme_list.json +++ b/config/themes/theme_list.json @@ -1,14 +1,5 @@ { "themes": [ - { - "id": "blood-counters", - "theme": " Blood Counters", - "synergies": [], - "primary_color": "Black", - "secondary_color": "Blue", - "popularity_bucket": "Rare", - "description": "Uses Blood tokens to loot, set up graveyard recursion, and trigger discard/madness payoffs." - }, { "id": "plus1-plus1-counters", "theme": "+1/+1 Counters", @@ -92,18 +83,18 @@ "Infect", "Proliferate", "Counters Matter", - "Blight", "Poison Counters", - "Scarecrow Kindred", "Planeswalkers", "Superfriends", "Midrange", - "Toxic", "Phyrexian Kindred", "Ore Counters", - "Fungus Kindred", - "Treefolk Kindred", - "Kithkin Kindred" + "Advisor Kindred", + "Horror Kindred", + "+1/+1 Counters", + "Insect Kindred", + "Burn", + "Elemental Kindred" ], "primary_color": "Black", "secondary_color": "Green", @@ -133,15 +124,7 @@ { "id": "adamant", "theme": "Adamant", - "synergies": [ - "Knight Kindred", - "+1/+1 Counters", - "Counters Matter", - "Voltron", - "Spells Matter" - ], - "primary_color": "Black", - "secondary_color": "Blue", + "synergies": [], "popularity_bucket": "Rare", "description": "Builds around the Adamant theme and its supporting synergies." }, @@ -186,9 +169,9 @@ "id": "addendum", "theme": "Addendum", "synergies": [ + "Interaction", "Spells Matter", - "Spellslinger", - "Interaction" + "Spellslinger" ], "primary_color": "White", "secondary_color": "Blue", @@ -219,11 +202,11 @@ "id": "advisor-kindred", "theme": "Advisor Kindred", "synergies": [ - "Mutant Kindred", - "Human Kindred", - "Infect", + "-1/-1 Counters", "Conditional Draw", - "-1/-1 Counters" + "Human Kindred", + "Midrange", + "Toughness Matters" ], "primary_color": "Blue", "secondary_color": "White", @@ -300,9 +283,9 @@ "synergies": [ "Cost Reduction", "X Spells", - "Golem Kindred", - "Land Types Matter", - "Artifacts Matter" + "Artifacts Matter", + "Big Mana", + "Flying" ], "primary_color": "Blue", "secondary_color": "White", @@ -405,10 +388,9 @@ "theme": "Aftermath", "synergies": [ "Mill", - "Spells Matter", - "Spellslinger", "Big Mana", - "Control" + "Spells Matter", + "Spellslinger" ], "primary_color": "Black", "secondary_color": "Blue", @@ -441,9 +423,9 @@ "synergies": [ "Cumulative upkeep", "Storage Counters", - "Page Counters", "Counters Matter", - "Enchantments Matter" + "Enchantments Matter", + "Lands Matter" ], "primary_color": "Blue", "secondary_color": "Green", @@ -507,31 +489,10 @@ "popularity_bucket": "Very Common", "description": "Applies early pressure and combat tempo to close the game before slower value engines stabilize. Synergies like Combat Matters and Voltron reinforce the plan." }, - { - "id": "airbend", - "theme": "Airbend", - "synergies": [ - "Airbending", - "Bending", - "Ally Kindred", - "Exile Matters", - "Leave the Battlefield" - ], - "primary_color": "White", - "secondary_color": "Blue", - "popularity_bucket": "Rare", - "description": "Builds around Airbend leveraging synergies with Airbending and Bending." - }, { "id": "airbending", "theme": "Airbending", - "synergies": [ - "Airbend", - "Bending", - "Avatar Kindred", - "Ally Kindred", - "Exile Matters" - ], + "synergies": [], "primary_color": "White", "example_commanders": [ "Appa, Steadfast Guardian", @@ -553,11 +514,11 @@ "id": "alien-kindred", "theme": "Alien Kindred", "synergies": [ - "Suspend", - "Lore Counters", - "Ore Counters", - "Sagas Matter", - "Horror Kindred" + "Clones", + "Horror Kindred", + "Exile Matters", + "Trample", + "Soldier Kindred" ], "primary_color": "Blue", "secondary_color": "Green", @@ -593,11 +554,11 @@ "id": "alliance", "theme": "Alliance", "synergies": [ - "Mutant Kindred", "Druid Kindred", "Elf Kindred", - "+1/+1 Counters", - "Token Creation" + "Little Fellas", + "Aggro", + "Combat Matters" ], "primary_color": "Green", "secondary_color": "White", @@ -632,8 +593,8 @@ "Rally", "Cohort", "Earthbending", - "Airbending", - "Earthbend" + "Bending", + "Kor Kindred" ], "primary_color": "White", "secondary_color": "Green", @@ -737,11 +698,11 @@ "id": "angel-kindred", "theme": "Angel Kindred", "synergies": [ + "Vigilance", "Lifegain", "Life Matters", "Flying", - "Foretell", - "Vigilance" + "Protection" ], "primary_color": "White", "secondary_color": "Black", @@ -776,13 +737,7 @@ { "id": "annihilator", "theme": "Annihilator", - "synergies": [ - "Eldrazi Kindred", - "Sacrifice Matters", - "Aristocrats", - "Big Mana", - "Aggro" - ], + "synergies": [], "primary_color": "Blue", "secondary_color": "Red", "example_commanders": [ @@ -836,10 +791,10 @@ "theme": "Ape Kindred", "synergies": [ "Removal", + "Artifacts Matter", "Big Mana", "Toughness Matters", - "Artifacts Matter", - "+1/+1 Counters" + "Interaction" ], "primary_color": "Green", "secondary_color": "Black", @@ -1039,9 +994,9 @@ "synergies": [ "Treasure", "Servo Kindred", + "Powerstone Token", "Fabricate", - "Junk Token", - "Junk Tokens" + "Junk Token" ], "primary_color": "Black", "secondary_color": "White", @@ -1113,9 +1068,9 @@ "synergies": [ "Fabricate", "Servo Kindred", + "Thopter Kindred", "Powerstone Token", - "Improvise", - "Thopter Kindred" + "Vedalken Kindred" ], "primary_color": "Blue", "secondary_color": "White", @@ -1150,10 +1105,10 @@ "theme": "Ascend", "synergies": [ "Creature Tokens", - "Little Fellas", "Token Creation", - "Card Draw", - "Tokens Matter" + "Tokens Matter", + "Little Fellas", + "Human Kindred" ], "primary_color": "Blue", "secondary_color": "White", @@ -1189,8 +1144,8 @@ "Freerunning", "Outlaw Kindred", "Deathtouch", - "Vampire Kindred", - "Menace" + "Cost Reduction", + "Vampire Kindred" ], "primary_color": "Black", "secondary_color": "Blue", @@ -1225,11 +1180,7 @@ { "id": "assembly-worker-kindred", "theme": "Assembly-Worker Kindred", - "synergies": [ - "Artifacts Matter", - "Little Fellas", - "Big Mana" - ], + "synergies": [], "primary_color": "White", "example_cards": [ "Academy Manufactor", @@ -1286,10 +1237,10 @@ "theme": "Astartes Kindred", "synergies": [ "Warrior Kindred", - "Exile Matters", - "Creature Tokens", - "Token Creation", - "Tokens Matter" + "Blink", + "Enter the Battlefield", + "Leave the Battlefield", + "Big Mana" ], "primary_color": "White", "secondary_color": "Black", @@ -1410,10 +1361,10 @@ "theme": "Avatar Kindred", "synergies": [ "Impending", - "Airbending", - "Bending", "Time Counters", - "Ally Kindred" + "Politics", + "Horror Kindred", + "Cost Reduction" ], "primary_color": "White", "secondary_color": "Black", @@ -1480,12 +1431,7 @@ { "id": "azra-kindred", "theme": "Azra Kindred", - "synergies": [ - "Warrior Kindred", - "Aggro", - "Combat Matters", - "Little Fellas" - ], + "synergies": [], "primary_color": "Black", "secondary_color": "Red", "example_commanders": [ @@ -1512,8 +1458,8 @@ "Choose a background", "Treasure", "Treasure Token", - "Enchantments Matter", - "Dragon Kindred" + "Dragon Kindred", + "Enchantments Matter" ], "primary_color": "Blue", "secondary_color": "Black", @@ -1582,11 +1528,8 @@ "id": "badger-kindred", "theme": "Badger Kindred", "synergies": [ - "Lands Matter", "Aggro", - "Combat Matters", - "Big Mana", - "Little Fellas" + "Combat Matters" ], "primary_color": "Green", "example_commanders": [ @@ -1653,11 +1596,11 @@ "id": "barbarian-kindred", "theme": "Barbarian Kindred", "synergies": [ - "First strike", "Haste", "Human Kindred", "Discard Matters", - "Blink" + "Blink", + "Enter the Battlefield" ], "primary_color": "Red", "secondary_color": "Black", @@ -1694,10 +1637,10 @@ "theme": "Bard Kindred", "synergies": [ "Toughness Matters", - "Human Kindred", "Little Fellas", - "Ramp", - "Token Creation" + "Human Kindred", + "Blink", + "Enter the Battlefield" ], "primary_color": "Green", "secondary_color": "White", @@ -1733,10 +1676,10 @@ "id": "bargain", "theme": "Bargain", "synergies": [ + "Burn", "Blink", "Enter the Battlefield", "Leave the Battlefield", - "Burn", "Spells Matter" ], "primary_color": "Black", @@ -1771,9 +1714,9 @@ "theme": "Basic landcycling", "synergies": [ "Landcycling", - "Typecycling", "Cycling", "Loot", + "Ramp", "Discard Matters" ], "primary_color": "Green", @@ -1911,9 +1854,6 @@ "id": "battle-cry", "theme": "Battle Cry", "synergies": [ - "Creature Tokens", - "Token Creation", - "Tokens Matter", "Aggro", "Combat Matters" ], @@ -1948,10 +1888,10 @@ "theme": "Battles Matter", "synergies": [ "Transform", - "Protective Effects", - "Unconditional Draw", - "Discard Matters", - "Creature Tokens" + "Card Draw", + "Burn", + "Flying", + "Enchantments Matter" ], "primary_color": "Green", "secondary_color": "Black", @@ -1984,9 +1924,9 @@ "synergies": [ "Druid Kindred", "Trample", - "Spirit Kindred", "Creature Tokens", - "Token Creation" + "Token Creation", + "Tokens Matter" ], "primary_color": "Green", "secondary_color": "Black", @@ -2022,11 +1962,11 @@ "id": "beast-kindred", "theme": "Beast Kindred", "synergies": [ - "Sloth Kindred", "Mutate", "Goat Kindred", "Boar Kindred", - "Saddle" + "Morph", + "Frog Kindred" ], "primary_color": "Green", "secondary_color": "Blue", @@ -2085,10 +2025,8 @@ "theme": "Behold", "synergies": [ "Dragon Kindred", - "Blink", - "Enter the Battlefield", - "Leave the Battlefield", - "Spells Matter" + "Spells Matter", + "Spellslinger" ], "primary_color": "Black", "secondary_color": "Blue", @@ -2115,9 +2053,7 @@ { "id": "beholder-kindred", "theme": "Beholder Kindred", - "synergies": [ - "Big Mana" - ], + "synergies": [], "primary_color": "Black", "secondary_color": "Red", "example_commanders": [ @@ -2141,10 +2077,10 @@ "theme": "Bending", "synergies": [ "Earthbending", - "Earthbend", - "Firebending", "Waterbending", - "Waterbend" + "Firebending", + "Ally Kindred", + "Landfall" ], "primary_color": "Blue", "secondary_color": "Green", @@ -2220,8 +2156,8 @@ "Nymph Kindred", "Equipment Matters", "Auras", - "Enchantments Matter", - "Spirit Kindred" + "Artifacts Matter", + "Enchantments Matter" ], "primary_color": "White", "secondary_color": "Green", @@ -2256,8 +2192,8 @@ "Cost Reduction", "Convoke", "Affinity", - "Discover", - "Waterbending" + "Delve", + "Leviathan Kindred" ], "primary_color": "Green", "secondary_color": "Blue", @@ -2293,10 +2229,10 @@ "theme": "Bird Kindred", "synergies": [ "Flying", - "Morph", - "Protection", "Soldier Kindred", - "Scout Kindred" + "Protection", + "Morph", + "Protection from Color" ], "primary_color": "White", "secondary_color": "Blue", @@ -2340,21 +2276,6 @@ "popularity_bucket": "Rare", "description": "Accumulates blaze counters to unlock scaling payoffs, removal triggers, or delayed value conversions." }, - { - "id": "blight", - "theme": "Blight", - "synergies": [ - "-1/-1 Counters", - "Warlock Kindred", - "Goblin Kindred", - "Outlaw Kindred", - "Counters Matter" - ], - "primary_color": "Black", - "secondary_color": "Red", - "popularity_bucket": "Rare", - "description": "Builds around Blight leveraging synergies with -1/-1 Counters and Warlock Kindred." - }, { "id": "blink", "theme": "Blink", @@ -2362,8 +2283,8 @@ "Enter the Battlefield", "Flicker", "Token Creation", - "Persist", - "Exploit" + "Exploit", + "Offspring" ], "primary_color": "Black", "secondary_color": "White", @@ -2397,8 +2318,8 @@ "Midrange", "Warrior Kindred", "Sacrifice Matters", - "Aristocrats", - "Unconditional Draw" + "Conditional Draw", + "Aristocrats" ], "primary_color": "Black", "secondary_color": "Green", @@ -2501,8 +2422,8 @@ "Blood Token", "+1/+1 Counters", "Burn", - "Counters Matter", - "Warrior Kindred" + "Warrior Kindred", + "Counters Matter" ], "primary_color": "Green", "secondary_color": "Black", @@ -2536,9 +2457,9 @@ "synergies": [ "Beast Kindred", "Trample", - "Haste", "Artifact Tokens", - "Token Creation" + "Token Creation", + "Tokens Matter" ], "primary_color": "Green", "secondary_color": "Black", @@ -2686,9 +2607,7 @@ { "id": "bounty-counters", "theme": "Bounty Counters", - "synergies": [ - "Counters Matter" - ], + "synergies": [], "primary_color": "Black", "example_commanders": [ "Shay Cormac", @@ -2706,20 +2625,6 @@ "popularity_bucket": "Rare", "description": "Accumulates bounty counters to unlock scaling payoffs, removal triggers, or delayed value conversions." }, - { - "id": "bringer-kindred", - "theme": "Bringer Kindred", - "synergies": [ - "Trample", - "Big Mana", - "Aggro", - "Combat Matters" - ], - "primary_color": "Black", - "secondary_color": "Blue", - "popularity_bucket": "Rare", - "description": "Focuses on getting a high number of Bringer creatures into play with shared payoffs (e.g., Trample and Big Mana)." - }, { "id": "brushwagg-kindred", "theme": "Brushwagg Kindred", @@ -2739,10 +2644,10 @@ "theme": "Burn", "synergies": [ "Pingers", - "Wither", "Bloodthirst", - "Extort", - "Spectacle" + "Wither", + "Afflict", + "Extort" ], "primary_color": "Black", "secondary_color": "Red", @@ -2818,8 +2723,8 @@ "Spells Matter", "Spellslinger", "Control", - "Removal", - "Lands Matter" + "Lands Matter", + "Removal" ], "primary_color": "Black", "secondary_color": "Blue", @@ -2873,9 +2778,7 @@ { "id": "camel-kindred", "theme": "Camel Kindred", - "synergies": [ - "Little Fellas" - ], + "synergies": [], "primary_color": "White", "secondary_color": "Black", "example_cards": [ @@ -2896,10 +2799,10 @@ "theme": "Cantrips", "synergies": [ "Clue Token", - "Unconditional Draw", "Investigate", + "Unconditional Draw", "Sacrifice to Draw", - "Gift" + "Gates Matter" ], "primary_color": "Blue", "secondary_color": "White", @@ -2953,15 +2856,15 @@ "Conditional Draw", "Draw Triggers", "Cantrips", - "Sacrifice to Draw", "Cycling", - "Typecycling", - "Landcycling", + "Sacrifice to Draw", "Connive", - "Hellbent", - "Basic landcycling", + "Landcycling", "Learn", + "Hellbent", + "Blitz", "Dredge", + "Basic landcycling", "Plainscycling" ], "primary_color": "Blue", @@ -2999,8 +2902,8 @@ "Explore", "Map Token", "Scout Kindred", - "Merfolk Kindred", - "Pirate Kindred" + "Pirate Kindred", + "Merfolk Kindred" ], "primary_color": "Green", "secondary_color": "Black", @@ -3094,7 +2997,6 @@ "id": "cases-matter", "theme": "Cases Matter", "synergies": [ - "Solved", "Enchantments Matter" ], "primary_color": "White", @@ -3157,10 +3059,10 @@ "theme": "Cat Kindred", "synergies": [ "Forestwalk", - "Mutate", - "Max speed", - "Start your engines!", - "Nightmare Kindred" + "Vigilance", + "Energy Counters", + "Energy", + "Resource Engine" ], "primary_color": "White", "secondary_color": "Green", @@ -3232,9 +3134,7 @@ "id": "celebration", "theme": "Celebration", "synergies": [ - "Little Fellas", - "Aggro", - "Combat Matters" + "Little Fellas" ], "primary_color": "White", "secondary_color": "Red", @@ -3263,10 +3163,10 @@ "theme": "Centaur Kindred", "synergies": [ "Archer Kindred", - "Threshold", + "Scout Kindred", "Druid Kindred", "Shaman Kindred", - "Scout Kindred" + "Warrior Kindred" ], "primary_color": "Green", "secondary_color": "White", @@ -3371,7 +3271,7 @@ "Cost Reduction", "X Spells", "Lands Matter", - "Enchantments Matter" + "Artifacts Matter" ], "primary_color": "Green", "secondary_color": "Blue", @@ -3406,10 +3306,10 @@ "theme": "Charge Counters", "synergies": [ "Station", - "Sunburst", "Mana Rock", "Counters Matter", - "Artifacts Matter" + "Artifacts Matter", + "Ramp" ], "primary_color": "Blue", "secondary_color": "White", @@ -3453,11 +3353,7 @@ "id": "chimera-kindred", "theme": "Chimera Kindred", "synergies": [ - "Flying", - "Topdeck", - "Counters Matter", - "Artifacts Matter", - "Toughness Matters" + "Big Mana" ], "primary_color": "Blue", "secondary_color": "Green", @@ -3485,9 +3381,9 @@ "theme": "Choose a background", "synergies": [ "Backgrounds Matter", - "Enchantments Matter", - "Cleric Kindred", "Elf Kindred", + "Cleric Kindred", + "Enchantments Matter", "Artifact Tokens" ], "primary_color": "Blue", @@ -3538,10 +3434,10 @@ "id": "cipher", "theme": "Cipher", "synergies": [ - "Spells Matter", - "Spellslinger", "Aggro", - "Combat Matters" + "Combat Matters", + "Spells Matter", + "Spellslinger" ], "primary_color": "Blue", "secondary_color": "Black", @@ -3573,10 +3469,10 @@ "theme": "Citizen Kindred", "synergies": [ "Halfling Kindred", - "Shield Counters", "Food Token", "Food", - "Hero Kindred" + "Treasure", + "Treasure Token" ], "primary_color": "Green", "secondary_color": "White", @@ -3614,8 +3510,8 @@ "Warrior Kindred", "Control", "Removal", - "Spells Matter", - "Spellslinger" + "Stax", + "Spells Matter" ], "primary_color": "Blue", "secondary_color": "Green", @@ -3678,9 +3574,9 @@ "synergies": [ "Lifegain", "Life Matters", - "Kor Kindred", + "Fox Kindred", "Lifegain Triggers", - "Choose a background" + "Kor Kindred" ], "primary_color": "White", "secondary_color": "Black", @@ -3714,9 +3610,7 @@ "theme": "Cloak", "synergies": [ "Ward", - "Protective Effects", - "Spells Matter", - "Spellslinger" + "Protective Effects" ], "primary_color": "Blue", "secondary_color": "White", @@ -3749,9 +3643,9 @@ "theme": "Clones", "synergies": [ "Myriad", + "Populate", "Embalm", "Eternalize", - "Populate", "Shapeshifter Kindred" ], "primary_color": "Blue", @@ -3897,9 +3791,9 @@ "synergies": [ "Detective Kindred", "Mill", - "Flying", "Big Mana", - "Toughness Matters" + "Toughness Matters", + "Little Fellas" ], "primary_color": "Green", "secondary_color": "Blue", @@ -4001,26 +3895,10 @@ "popularity_bucket": "Very Common", "description": "Builds around Combat Tricks leveraging synergies with Flash and Strive." }, - { - "id": "companion", - "theme": "Companion", - "synergies": [ - "Big Mana" - ], - "primary_color": "White", - "secondary_color": "Black", - "popularity_bucket": "Rare", - "description": "Builds around Companion leveraging synergies with Big Mana." - }, { "id": "compleated", "theme": "Compleated", - "synergies": [ - "Loyalty Counters", - "Planeswalkers", - "Superfriends", - "Counters Matter" - ], + "synergies": [], "primary_color": "Black", "secondary_color": "Blue", "example_cards": [ @@ -4080,10 +3958,10 @@ "theme": "Connive", "synergies": [ "Loot", - "Discard Matters", "Rogue Kindred", + "Discard Matters", "Outlaw Kindred", - "Reanimate" + "+1/+1 Counters" ], "primary_color": "Blue", "secondary_color": "Black", @@ -4155,8 +4033,8 @@ "Nymph Kindred", "Enchantments Matter", "Toughness Matters", - "Human Kindred", - "Little Fellas" + "Little Fellas", + "Reanimate" ], "primary_color": "Green", "secondary_color": "White", @@ -4192,9 +4070,9 @@ "synergies": [ "Prototype", "Unearth", - "Artifact Tokens", "Artifacts Matter", - "Phyrexian Kindred" + "Artifact Tokens", + "Scry" ], "primary_color": "Blue", "secondary_color": "White", @@ -4225,9 +4103,9 @@ "id": "control", "theme": "Control", "synergies": [ - "Council's dilemma", "Daybound", "Nightbound", + "Council's dilemma", "Soulshift", "Counterspells" ], @@ -4262,11 +4140,9 @@ "id": "converge", "theme": "Converge", "synergies": [ - "+1/+1 Counters", - "Counters Matter", "Spells Matter", "Spellslinger", - "Voltron" + "Big Mana" ], "primary_color": "Blue", "secondary_color": "Green", @@ -4297,8 +4173,8 @@ "id": "convert", "theme": "Convert", "synergies": [ - "More Than Meets the Eye", "Living metal", + "More Than Meets the Eye", "Eye Kindred", "Robot Kindred", "Vehicles" @@ -4333,10 +4209,10 @@ "theme": "Convoke", "synergies": [ "Big Mana", - "Vigilance", "Knight Kindred", - "Elemental Kindred", - "Combat Tricks" + "Toolbox", + "Combat Tricks", + "Removal" ], "primary_color": "White", "secondary_color": "Green", @@ -4392,7 +4268,7 @@ "Infect", "Phyrexian Kindred", "Counters Matter", - "Lifegain" + "Mill" ], "primary_color": "Black", "secondary_color": "Green", @@ -4425,10 +4301,10 @@ "theme": "Cost Reduction", "synergies": [ "Affinity", - "Waterbending", - "Waterbend", "Freerunning", - "Undaunted" + "Waterbending", + "Undaunted", + "X Spells" ], "primary_color": "Blue", "secondary_color": "Green", @@ -4606,7 +4482,7 @@ "Blink", "Enter the Battlefield", "Leave the Battlefield", - "Aggro" + "Little Fellas" ], "primary_color": "White", "secondary_color": "Green", @@ -4638,10 +4514,7 @@ { "id": "coward-kindred", "theme": "Coward Kindred", - "synergies": [ - "Ward", - "Protective Effects" - ], + "synergies": [], "primary_color": "Red", "secondary_color": "Black", "example_commanders": [ @@ -4673,11 +4546,11 @@ "id": "crab-kindred", "theme": "Crab Kindred", "synergies": [ - "Flash", "Toughness Matters", "Protective Effects", - "Stax", - "+1/+1 Counters" + "Mill", + "Blink", + "Enter the Battlefield" ], "primary_color": "Blue", "secondary_color": "Black", @@ -4711,10 +4584,10 @@ "theme": "Craft", "synergies": [ "Graveyard Matters", - "Transform", "Golem Kindred", + "Transform", "Exile Matters", - "Mill" + "Artifacts Matter" ], "primary_color": "Blue", "secondary_color": "Black", @@ -4748,8 +4621,8 @@ "Token Creation", "Populate", "Tokens Matter", - "Germ Kindred", - "For Mirrodin!" + "For Mirrodin!", + "Endure" ], "primary_color": "White", "secondary_color": "Green", @@ -4785,10 +4658,10 @@ "theme": "Crew", "synergies": [ "Vehicles", - "Exhaust", - "Treasure Token", "Artifacts Matter", - "Treasure" + "Treasure Token", + "Trample", + "Vigilance" ], "primary_color": "Blue", "secondary_color": "White", @@ -4822,11 +4695,11 @@ "id": "crocodile-kindred", "theme": "Crocodile Kindred", "synergies": [ - "Zombie Kindred", - "Protective Effects", "Counters Matter", "+1/+1 Counters", - "Toughness Matters" + "Toughness Matters", + "Voltron", + "Big Mana" ], "primary_color": "Black", "secondary_color": "Green", @@ -4855,15 +4728,6 @@ "popularity_bucket": "Rare", "description": "Focuses on getting a high number of Crocodile creatures into play with shared payoffs (e.g., Counters Matter and +1/+1 Counters)." }, - { - "id": "crystal-counters", - "theme": "Crystal Counters", - "synergies": [], - "primary_color": "Black", - "secondary_color": "Blue", - "popularity_bucket": "Rare", - "description": "Accumulates crystal counters to unlock scaling payoffs, removal triggers, or delayed value conversions." - }, { "id": "cumulative-upkeep", "theme": "Cumulative upkeep", @@ -4872,7 +4736,7 @@ "Counters Matter", "Enchantments Matter", "Trample", - "Enchant" + "Stax" ], "primary_color": "Blue", "secondary_color": "Green", @@ -4915,9 +4779,7 @@ { "id": "cyberman-kindred", "theme": "Cyberman Kindred", - "synergies": [ - "Artifacts Matter" - ], + "synergies": [], "primary_color": "Black", "secondary_color": "Blue", "example_commanders": [ @@ -4942,11 +4804,11 @@ "id": "cycling", "theme": "Cycling", "synergies": [ - "Typecycling", "Landcycling", "Basic landcycling", "Plainscycling", - "Mountaincycling" + "Mountaincycling", + "Forestcycling" ], "primary_color": "Blue", "secondary_color": "White", @@ -4974,11 +4836,11 @@ "id": "cyclops-kindred", "theme": "Cyclops Kindred", "synergies": [ - "Trample", - "Warrior Kindred", "Big Mana", - "Toughness Matters", - "Blink" + "Blink", + "Enter the Battlefield", + "Leave the Battlefield", + "Aggro" ], "primary_color": "Red", "secondary_color": "Black", @@ -5012,9 +4874,7 @@ { "id": "dalek-kindred", "theme": "Dalek Kindred", - "synergies": [ - "Artifacts Matter" - ], + "synergies": [], "primary_color": "Black", "example_commanders": [ "The Dalek Emperor", @@ -5105,9 +4965,9 @@ "synergies": [ "Nightbound", "Werewolf Kindred", - "Wolf Kindred", "Control", - "Stax" + "Stax", + "Human Kindred" ], "primary_color": "Green", "secondary_color": "Black", @@ -5135,8 +4995,8 @@ "id": "deathtouch", "theme": "Deathtouch", "synergies": [ - "Scorpion Kindred", "Basilisk Kindred", + "Scorpion Kindred", "Gorgon Kindred", "Assassin Kindred", "Snake Kindred" @@ -5175,8 +5035,8 @@ "Wall Kindred", "Egg Kindred", "Plant Kindred", - "Gargoyle Kindred", - "Toughness Matters" + "Toughness Matters", + "Illusion Kindred" ], "primary_color": "Blue", "secondary_color": "White", @@ -5239,8 +5099,8 @@ "Reanimate", "Mill", "Horror Kindred", - "Trample", - "Blink" + "Blink", + "Enter the Battlefield" ], "primary_color": "Green", "secondary_color": "Black", @@ -5277,9 +5137,9 @@ "synergies": [ "Mill", "Big Mana", - "Reanimate", "Spells Matter", - "Spellslinger" + "Spellslinger", + "Flying" ], "primary_color": "Black", "secondary_color": "Blue", @@ -5349,11 +5209,11 @@ "id": "demon-kindred", "theme": "Demon Kindred", "synergies": [ - "Elder Kindred", "Ogre Kindred", "Trample", "Flying", - "Sacrifice Matters" + "Sacrifice Matters", + "Aristocrats" ], "primary_color": "Black", "secondary_color": "Red", @@ -5451,11 +5311,8 @@ "id": "descend", "theme": "Descend", "synergies": [ - "Spirit Kindred", "Reanimate", - "Mill", - "Card Draw", - "Blink" + "Mill" ], "primary_color": "Blue", "secondary_color": "Black", @@ -5502,8 +5359,8 @@ "Land Types Matter", "Lands Matter", "Cycling", - "Pingers", - "Loot" + "Loot", + "Ramp" ], "primary_color": "Green", "secondary_color": "White", @@ -5540,8 +5397,7 @@ "Stax", "Blink", "Enter the Battlefield", - "Leave the Battlefield", - "Human Kindred" + "Leave the Battlefield" ], "primary_color": "White", "secondary_color": "Blue", @@ -5613,8 +5469,8 @@ "+1/+1 Counters", "Counters Matter", "Voltron", - "Human Kindred", - "Aggro" + "Aggro", + "Combat Matters" ], "primary_color": "Blue", "secondary_color": "Green", @@ -5645,9 +5501,9 @@ "synergies": [ "Pingers", "Haste", + "Conditional Draw", "Sacrifice Matters", - "Aristocrats", - "Burn" + "Aristocrats" ], "primary_color": "Red", "secondary_color": "Black", @@ -5685,8 +5541,8 @@ "synergies": [ "Ingest", "Processor Kindred", - "Drone Kindred", "Scion Kindred", + "Drone Kindred", "Eldrazi Kindred" ], "primary_color": "Blue", @@ -5763,9 +5619,9 @@ "synergies": [ "Enrage", "Elder Kindred", - "Mutate", - "Landcycling", - "Typecycling" + "Fight", + "Trample", + "Cycling" ], "primary_color": "Green", "secondary_color": "White", @@ -5795,18 +5651,6 @@ "popularity_bucket": "Uncommon", "description": "Focuses on getting a high number of Dinosaur creatures into play with shared payoffs (e.g., Enrage and Elder Kindred)." }, - { - "id": "disappear", - "theme": "Disappear", - "synergies": [ - "Aggro", - "Combat Matters" - ], - "primary_color": "Black", - "secondary_color": "Green", - "popularity_bucket": "Rare", - "description": "Builds around Disappear leveraging synergies with Aggro and Combat Matters." - }, { "id": "discard-matters", "theme": "Discard Matters", @@ -5850,10 +5694,10 @@ "theme": "Discover", "synergies": [ "Caves Matter", - "Exile Matters", "Land Types Matter", + "Exile Matters", "Topdeck", - "Big Mana" + "Lands Matter" ], "primary_color": "Green", "secondary_color": "Blue", @@ -5891,8 +5735,8 @@ "Ward", "Detective Kindred", "Protective Effects", - "Outlaw Kindred", - "Rogue Kindred" + "Flying", + "+1/+1 Counters" ], "primary_color": "Green", "secondary_color": "White", @@ -5929,8 +5773,8 @@ "Transform", "Spirit Kindred", "Enchant", - "Auras", - "Reanimate" + "Reanimate", + "Auras" ], "primary_color": "Blue", "secondary_color": "White", @@ -6004,8 +5848,8 @@ "Prowess", "Monk Kindred", "Flying", - "Wizard Kindred", - "Trample" + "Toughness Matters", + "Big Mana" ], "primary_color": "Blue", "secondary_color": "Black", @@ -6044,8 +5888,8 @@ "Doctor's Companion", "Doctor's companion", "Sagas Matter", - "Investigate", - "Time Counters" + "Lore Counters", + "Ore Counters" ], "primary_color": "White", "secondary_color": "Blue", @@ -6076,21 +5920,6 @@ "popularity_bucket": "Rare", "description": "Focuses on getting a high number of Doctor creatures into play with shared payoffs (e.g., Doctor's Companion and Doctor's companion)." }, - { - "id": "doctors-companion", - "theme": "Doctor's Companion", - "synergies": [ - "Doctor's companion", - "Doctor Kindred", - "Sagas Matter", - "Human Kindred", - "Little Fellas" - ], - "primary_color": "White", - "secondary_color": "Blue", - "popularity_bucket": "Rare", - "description": "Builds around Doctor's Companion leveraging synergies with Doctor Kindred and Sagas Matter." - }, { "id": "doctors-companion", "theme": "Doctor's companion", @@ -6135,8 +5964,8 @@ "Menace", "Elemental Kindred", "Scout Kindred", - "Phyrexian Kindred", - "First strike" + "First strike", + "Phyrexian Kindred" ], "primary_color": "White", "secondary_color": "Green", @@ -6174,9 +6003,9 @@ "synergies": [ "Lands Matter", "Ramp", - "Cost Reduction", - "X Spells", - "Warrior Kindred" + "Topdeck", + "Big Mana", + "Spells Matter" ], "primary_color": "Green", "secondary_color": "Black", @@ -6225,11 +6054,11 @@ "id": "double-strike", "theme": "Double strike", "synergies": [ - "Dwarf Kindred", - "Noble Kindred", "Knight Kindred", "Warrior Kindred", - "Cat Kindred" + "Aggro", + "Combat Matters", + "Trample" ], "primary_color": "White", "secondary_color": "Red", @@ -6265,8 +6094,8 @@ "id": "dragon-kindred", "theme": "Dragon Kindred", "synergies": [ - "Elder Kindred", "Behold", + "Elder Kindred", "Megamorph", "Flying", "Backgrounds Matter" @@ -6349,23 +6178,14 @@ "popularity_bucket": "Rare", "description": "Focuses on getting a high number of Dreadnought creatures into play with shared payoffs." }, - { - "id": "dream-counters", - "theme": "Dream Counters", - "synergies": [], - "primary_color": "Blue", - "secondary_color": "White", - "popularity_bucket": "Rare", - "description": "Accumulates dream counters to unlock scaling payoffs, removal triggers, or delayed value conversions." - }, { "id": "dredge", "theme": "Dredge", "synergies": [ "Unconditional Draw", "Reanimate", - "Mill", "Card Draw", + "Mill", "Spells Matter" ], "primary_color": "Black", @@ -6398,8 +6218,8 @@ "theme": "Drone Kindred", "synergies": [ "Ingest", - "Devoid", "Spawn Kindred", + "Devoid", "Scion Kindred", "Eldrazi Kindred" ], @@ -6430,8 +6250,8 @@ "Alliance", "Mana Dork", "Elf Kindred", - "Treefolk Kindred", - "Squirrel Kindred" + "Ramp", + "Bear Kindred" ], "primary_color": "Green", "secondary_color": "Black", @@ -6504,10 +6324,10 @@ "theme": "Dwarf Kindred", "synergies": [ "Servo Kindred", - "Pilot Kindred", "Berserker Kindred", "Artificer Kindred", - "Double strike" + "Treasure", + "Treasure Token" ], "primary_color": "White", "secondary_color": "Red", @@ -6538,30 +6358,15 @@ "popularity_bucket": "Niche", "description": "Focuses on getting a high number of Dwarf creatures into play with shared payoffs (e.g., Servo Kindred and Artificer Kindred)." }, - { - "id": "earthbend", - "theme": "Earthbend", - "synergies": [ - "Earthbending", - "Bending", - "Landfall", - "Ally Kindred", - "Lands Matter" - ], - "primary_color": "Green", - "secondary_color": "Red", - "popularity_bucket": "Niche", - "description": "Builds around Earthbend leveraging synergies with Earthbending and Bending." - }, { "id": "earthbending", "theme": "Earthbending", "synergies": [ - "Earthbend", "Bending", "Landfall", "Ally Kindred", - "Lands Matter" + "Lands Matter", + "+1/+1 Counters" ], "primary_color": "Green", "secondary_color": "Black", @@ -6638,9 +6443,9 @@ "synergies": [ "Rooms Matter", "Enchantments Matter", - "Flying", "Toughness Matters", - "Human Kindred" + "Human Kindred", + "Little Fellas" ], "primary_color": "Blue", "secondary_color": "White", @@ -6670,9 +6475,7 @@ "synergies": [ "Flying", "Burn", - "Little Fellas", - "Toughness Matters", - "Interaction" + "Little Fellas" ], "primary_color": "Blue", "secondary_color": "Red", @@ -6704,15 +6507,6 @@ "popularity_bucket": "Rare", "description": "Focuses on getting a high number of Efreet creatures into play with shared payoffs (e.g., Flying)." }, - { - "id": "egg-counters", - "theme": "Egg Counters", - "synergies": [], - "primary_color": "Black", - "secondary_color": "Green", - "popularity_bucket": "Rare", - "description": "Accumulates egg counters to unlock scaling payoffs, removal triggers, or delayed value conversions." - }, { "id": "egg-kindred", "theme": "Egg Kindred", @@ -6720,8 +6514,8 @@ "Defender", "Sacrifice Matters", "Aristocrats", - "Creature Tokens", - "Toughness Matters" + "Toughness Matters", + "Little Fellas" ], "primary_color": "Blue", "secondary_color": "Green", @@ -6756,11 +6550,11 @@ "id": "elder-kindred", "theme": "Elder Kindred", "synergies": [ - "Dragon Kindred", "Dinosaur Kindred", - "Demon Kindred", - "Vigilance", - "Trample" + "Dragon Kindred", + "Flying", + "Big Mana", + "Aggro" ], "primary_color": "Black", "secondary_color": "Blue", @@ -6793,11 +6587,11 @@ "id": "eldrazi-kindred", "theme": "Eldrazi Kindred", "synergies": [ - "Annihilator", - "Processor Kindred", "Ingest", + "Processor Kindred", "Spawn Kindred", - "Scion Kindred" + "Scion Kindred", + "Drone Kindred" ], "primary_color": "Blue", "secondary_color": "Green", @@ -6831,8 +6625,8 @@ "Evoke", "Awaken", "Incarnation Kindred", - "Vivid", - "Wither" + "Wither", + "Fear" ], "primary_color": "Green", "secondary_color": "Blue", @@ -6863,11 +6657,11 @@ "id": "elephant-kindred", "theme": "Elephant Kindred", "synergies": [ - "Cleric Kindred", "Trample", + "Cleric Kindred", "Soldier Kindred", "Creature Tokens", - "Vigilance" + "Blink" ], "primary_color": "Green", "secondary_color": "White", @@ -6903,10 +6697,10 @@ "id": "elf-kindred", "theme": "Elf Kindred", "synergies": [ - "Druid Kindred", "Alliance", - "Archer Kindred", + "Druid Kindred", "Ranger Kindred", + "Archer Kindred", "Scout Kindred" ], "primary_color": "Green", @@ -6940,11 +6734,11 @@ "id": "elk-kindred", "theme": "Elk Kindred", "synergies": [ - "Elemental Kindred", - "Protective Effects", - "Ramp", "Lifegain", - "Life Matters" + "Life Matters", + "Blink", + "Enter the Battlefield", + "Leave the Battlefield" ], "primary_color": "Green", "secondary_color": "White", @@ -7044,15 +6838,6 @@ "popularity_bucket": "Rare", "description": "Builds around Emerge leveraging synergies with Eldrazi Kindred and Big Mana." }, - { - "id": "eminence", - "theme": "Eminence", - "synergies": [], - "primary_color": "Black", - "secondary_color": "White", - "popularity_bucket": "Rare", - "description": "Builds around the Eminence theme and its supporting synergies." - }, { "id": "employee-kindred", "theme": "Employee Kindred", @@ -7131,7 +6916,7 @@ "Inspired", "Hero Kindred", "Equipment Matters", - "Auras" + "Scry" ], "primary_color": "White", "secondary_color": "Blue", @@ -7201,11 +6986,11 @@ "id": "encore", "theme": "Encore", "synergies": [ - "Incarnation Kindred", "Politics", "Pirate Kindred", "Outlaw Kindred", - "Elemental Kindred" + "Mill", + "Aggro" ], "primary_color": "Black", "secondary_color": "Blue", @@ -7238,8 +7023,8 @@ "theme": "Endure", "synergies": [ "Spirit Kindred", - "Soldier Kindred", "Creature Tokens", + "Soldier Kindred", "+1/+1 Counters", "Token Creation" ], @@ -7380,10 +7165,8 @@ "theme": "Enrage", "synergies": [ "Dinosaur Kindred", - "+1/+1 Counters", - "Counters Matter", "Big Mana", - "Voltron" + "Toughness Matters" ], "primary_color": "Green", "secondary_color": "White", @@ -7420,8 +7203,8 @@ "Blink", "Reanimate", "Token Creation", - "Persist", - "Exploit" + "Exploit", + "Offspring" ], "primary_color": "Black", "secondary_color": "White", @@ -7534,8 +7317,8 @@ "theme": "Equip", "synergies": [ "Job select", - "Living weapon", "For Mirrodin!", + "Living weapon", "Equipment", "Germ Kindred" ], @@ -7564,9 +7347,9 @@ "synergies": [ "Equip", "Job select", - "Living weapon", "Reconfigure", - "For Mirrodin!" + "For Mirrodin!", + "Living weapon" ], "primary_color": "White", "secondary_color": "Black", @@ -7597,8 +7380,8 @@ "Equipment", "Equip", "Role token", - "Germ Kindred", - "Job select" + "Job select", + "Reconfigure" ], "primary_color": "White", "secondary_color": "Blue", @@ -7775,11 +7558,11 @@ "id": "evolve", "theme": "Evolve", "synergies": [ - "Mutant Kindred", "+1/+1 Counters", "Counters Matter", "Voltron", - "Toughness Matters" + "Toughness Matters", + "Aggro" ], "primary_color": "Green", "secondary_color": "Blue", @@ -7811,11 +7594,11 @@ "id": "exalted", "theme": "Exalted", "synergies": [ - "Knight Kindred", - "Soldier Kindred", + "Human Kindred", "Aggro", "Combat Matters", - "Human Kindred" + "Little Fellas", + "Toughness Matters" ], "primary_color": "White", "secondary_color": "Black", @@ -7851,8 +7634,8 @@ "Jackal Kindred", "Warrior Kindred", "Human Kindred", - "Aggro", - "Combat Matters" + "Little Fellas", + "Aggro" ], "primary_color": "White", "secondary_color": "Green", @@ -7883,11 +7666,11 @@ "id": "exhaust", "theme": "Exhaust", "synergies": [ - "Bending", - "Crew", "Vehicles", - "Goblin Kindred", - "+1/+1 Counters" + "+1/+1 Counters", + "Counters Matter", + "Voltron", + "Aggro" ], "primary_color": "Green", "secondary_color": "Blue", @@ -7926,7 +7709,7 @@ "Suspend", "Foretell", "Warp", - "Cascade" + "Plot" ], "primary_color": "Blue", "secondary_color": "Black", @@ -7958,13 +7741,7 @@ { "id": "experience-counters", "theme": "Experience Counters", - "synergies": [ - "Counters Matter", - "Human Kindred", - "Little Fellas", - "Aggro", - "Combat Matters" - ], + "synergies": [], "primary_color": "Blue", "secondary_color": "White", "example_commanders": [ @@ -8028,11 +7805,11 @@ "id": "explore", "theme": "Explore", "synergies": [ - "Card Selection", "Map Token", + "Card Selection", "Scout Kindred", - "Merfolk Kindred", - "Pirate Kindred" + "Pirate Kindred", + "Merfolk Kindred" ], "primary_color": "Green", "secondary_color": "Black", @@ -8068,7 +7845,7 @@ "Burn", "Spells Matter", "Spellslinger", - "Lifegain" + "Little Fellas" ], "primary_color": "Black", "secondary_color": "White", @@ -8100,9 +7877,9 @@ "id": "eye-kindred", "theme": "Eye Kindred", "synergies": [ - "More Than Meets the Eye", - "Living metal", "Convert", + "Living metal", + "More Than Meets the Eye", "Robot Kindred", "Vehicles" ], @@ -8172,8 +7949,7 @@ "synergies": [ "Fading", "Counters Matter", - "Enchantments Matter", - "Artifacts Matter" + "Enchantments Matter" ], "primary_color": "Green", "secondary_color": "Black", @@ -8231,7 +8007,7 @@ "Flying", "Outlaw Kindred", "Flash", - "Warlock Kindred" + "Wizard Kindred" ], "primary_color": "Blue", "secondary_color": "Black", @@ -8294,10 +8070,7 @@ { "id": "fathomless-descent", "theme": "Fathomless descent", - "synergies": [ - "Reanimate", - "Mill" - ], + "synergies": [], "primary_color": "Black", "secondary_color": "Blue", "example_cards": [ @@ -8349,15 +8122,6 @@ "popularity_bucket": "Rare", "description": "Builds around Fear leveraging synergies with Horror Kindred and Elemental Kindred." }, - { - "id": "feather-counters", - "theme": "Feather Counters", - "synergies": [], - "primary_color": "White", - "secondary_color": "Blue", - "popularity_bucket": "Rare", - "description": "Accumulates feather counters to unlock scaling payoffs, removal triggers, or delayed value conversions." - }, { "id": "ferocious", "theme": "Ferocious", @@ -8408,10 +8172,10 @@ "theme": "Fight", "synergies": [ "Lore Counters", - "Ore Counters", "Sagas Matter", "Dinosaur Kindred", - "Burn" + "Ore Counters", + "Indestructible" ], "primary_color": "Green", "secondary_color": "Red", @@ -8448,9 +8212,9 @@ "synergies": [ "Mill", "Counters Matter", + "Reanimate", "Blink", - "Enter the Battlefield", - "Leave the Battlefield" + "Enter the Battlefield" ], "primary_color": "Black", "secondary_color": "Green", @@ -8487,10 +8251,10 @@ "theme": "Firebending", "synergies": [ "Bending", - "Noble Kindred", "Mana Dork", - "Ally Kindred", - "X Spells" + "X Spells", + "Ramp", + "Human Kindred" ], "primary_color": "Red", "secondary_color": "Black", @@ -8525,10 +8289,10 @@ "theme": "First strike", "synergies": [ "Banding", - "Barbarian Kindred", - "Knight Kindred", "Kithkin Kindred", - "Protection" + "Knight Kindred", + "Protection", + "Partner" ], "primary_color": "White", "secondary_color": "Red", @@ -8564,9 +8328,9 @@ "synergies": [ "Gift", "Loot", + "Stax", "Discard Matters", - "Creature Tokens", - "Stax" + "Creature Tokens" ], "primary_color": "Blue", "secondary_color": "Black", @@ -8646,11 +8410,11 @@ "id": "flash", "theme": "Flash", "synergies": [ - "Combat Tricks", "Evoke", + "Combat Tricks", "Faerie Kindred", - "Crab Kindred", - "Hexproof" + "Hexproof", + "Wolf Kindred" ], "primary_color": "Blue", "secondary_color": "White", @@ -8685,9 +8449,9 @@ "synergies": [ "Reanimate", "Mill", + "Clones", "Spells Matter", - "Spellslinger", - "Clones" + "Spellslinger" ], "primary_color": "Green", "secondary_color": "Blue", @@ -8717,9 +8481,7 @@ { "id": "flood-counters", "theme": "Flood Counters", - "synergies": [ - "Counters Matter" - ], + "synergies": [], "primary_color": "Blue", "example_commanders": [ "Eluge, the Shoreless Sea", @@ -8743,7 +8505,6 @@ "Monk Kindred", "Spells Matter", "Spellslinger", - "Human Kindred", "Little Fellas" ], "primary_color": "White", @@ -8925,11 +8686,11 @@ "id": "forage", "theme": "Forage", "synergies": [ - "Squirrel Kindred", "Food Token", "Food", "Lifegain", - "Life Matters" + "Life Matters", + "Mill" ], "primary_color": "Green", "secondary_color": "Black", @@ -8989,11 +8750,11 @@ "id": "forestcycling", "theme": "Forestcycling", "synergies": [ - "Landcycling", - "Typecycling", "Land Types Matter", "Cycling", - "Loot" + "Loot", + "Ramp", + "Discard Matters" ], "primary_color": "Green", "example_commanders": [ @@ -9027,7 +8788,7 @@ "Landwalk", "Cat Kindred", "Lands Matter", - "Warrior Kindred" + "Little Fellas" ], "primary_color": "Green", "secondary_color": "Black", @@ -9062,10 +8823,10 @@ "theme": "Foretell", "synergies": [ "Exile Matters", - "Angel Kindred", "Cleric Kindred", "Spells Matter", - "Spellslinger" + "Spellslinger", + "Control" ], "primary_color": "Blue", "secondary_color": "White", @@ -9098,8 +8859,8 @@ "id": "formidable", "theme": "Formidable", "synergies": [ - "Toughness Matters", "Human Kindred", + "Toughness Matters", "Little Fellas" ], "primary_color": "Green", @@ -9136,8 +8897,8 @@ "Bushido", "Samurai Kindred", "Cleric Kindred", - "Lifelink", - "Spirit Kindred" + "Lifegain", + "Life Matters" ], "primary_color": "White", "secondary_color": "Green", @@ -9173,11 +8934,11 @@ "id": "fractal-kindred", "theme": "Fractal Kindred", "synergies": [ - "Creature Tokens", "+1/+1 Counters", - "Token Creation", - "Tokens Matter", - "Counters Matter" + "Counters Matter", + "Voltron", + "Aggro", + "Combat Matters" ], "primary_color": "Green", "secondary_color": "Blue", @@ -9213,9 +8974,9 @@ "synergies": [ "Assassin Kindred", "Cost Reduction", - "Outlaw Kindred", "Big Mana", - "Human Kindred" + "Spells Matter", + "Spellslinger" ], "primary_color": "Black", "secondary_color": "Blue", @@ -9248,11 +9009,7 @@ { "id": "friends-forever", "theme": "Friends Forever", - "synergies": [ - "Human Kindred" - ], - "primary_color": "Red", - "secondary_color": "White", + "synergies": [], "example_commanders": [ "Wernog, Rider's Chaplain", "Bjorna, Nightfall Alchemist", @@ -9278,9 +9035,9 @@ "synergies": [ "Reach", "Beast Kindred", - "Druid Kindred", - "Horror Kindred", - "Conditional Draw" + "Wizard Kindred", + "+1/+1 Counters", + "Blink" ], "primary_color": "Green", "secondary_color": "Blue", @@ -9361,27 +9118,10 @@ "popularity_bucket": "Niche", "description": "Focuses on getting a high number of Fungus creatures into play with shared payoffs (e.g., Spore Counters and Saproling Kindred)." }, - { - "id": "fuse", - "theme": "Fuse", - "synergies": [ - "Removal", - "Interaction", - "Spells Matter", - "Spellslinger", - "Big Mana" - ], - "primary_color": "Red", - "secondary_color": "Blue", - "popularity_bucket": "Rare", - "description": "Builds around Fuse leveraging synergies with Removal and Interaction." - }, { "id": "fuse-counters", "theme": "Fuse Counters", - "synergies": [ - "Counters Matter" - ], + "synergies": [], "primary_color": "Red", "example_cards": [ "Goblin Bomb", @@ -9397,11 +9137,11 @@ "id": "gargoyle-kindred", "theme": "Gargoyle Kindred", "synergies": [ - "Defender", "Flying", - "Protective Effects", - "Artifacts Matter", - "Toughness Matters" + "Blink", + "Enter the Battlefield", + "Leave the Battlefield", + "Big Mana" ], "primary_color": "White", "secondary_color": "Blue", @@ -9434,9 +9174,9 @@ "synergies": [ "Sacrifice to Draw", "Artifact Tokens", - "Doctor Kindred", "Land Types Matter", - "Lands Matter" + "Lands Matter", + "Cantrips" ], "primary_color": "Blue", "secondary_color": "Green", @@ -9473,9 +9213,9 @@ "theme": "Germ Kindred", "synergies": [ "Living weapon", - "Phyrexian Kindred", "Equip", "Equipment", + "Phyrexian Kindred", "Equipment Matters" ], "primary_color": "Black", @@ -9510,8 +9250,8 @@ "Monstrosity", "Berserker Kindred", "Warrior Kindred", - "Reach", - "Vigilance" + "Vigilance", + "Trample" ], "primary_color": "White", "secondary_color": "Green", @@ -9654,10 +9394,10 @@ "theme": "Gnome Kindred", "synergies": [ "Artifact Tokens", + "Ramp", "Creature Tokens", "Artifacts Matter", - "Token Creation", - "Tokens Matter" + "Token Creation" ], "primary_color": "White", "secondary_color": "Blue", @@ -9693,11 +9433,11 @@ "id": "goad", "theme": "Goad", "synergies": [ - "Politics", - "First strike", - "Rogue Kindred", "Theft", - "Haste" + "Rogue Kindred", + "Enchant", + "Artifact Tokens", + "Auras" ], "primary_color": "Red", "secondary_color": "Blue", @@ -9733,10 +9473,10 @@ "theme": "Goat Kindred", "synergies": [ "Beast Kindred", - "Creature Tokens", "+1/+1 Counters", - "Lands Matter", - "Token Creation" + "Creature Tokens", + "Token Creation", + "Tokens Matter" ], "primary_color": "White", "secondary_color": "Black", @@ -9769,11 +9509,11 @@ "id": "goblin-kindred", "theme": "Goblin Kindred", "synergies": [ - "Blight", - "Exhaust", "Shaman Kindred", - "Berserker Kindred", - "Echo" + "Echo", + "Haste", + "Warrior Kindred", + "Mutant Kindred" ], "primary_color": "Red", "secondary_color": "Black", @@ -9807,10 +9547,10 @@ "theme": "God Kindred", "synergies": [ "Indestructible", + "Ward", "Protective Effects", "Transform", - "Sagas Matter", - "Ward" + "Midrange" ], "primary_color": "Black", "secondary_color": "White", @@ -9849,7 +9589,7 @@ "Token Creation", "Tokens Matter", "Artifacts Matter", - "Toughness Matters" + "Aggro" ], "primary_color": "White", "secondary_color": "Black", @@ -9887,9 +9627,9 @@ "synergies": [ "Craft", "Graveyard Matters", - "Affinity", - "Phyrexian Kindred", - "Artificer Kindred" + "Artificer Kindred", + "Artifact Tokens", + "Phyrexian Kindred" ], "primary_color": "Green", "secondary_color": "White", @@ -9926,10 +9666,10 @@ "theme": "Gorgon Kindred", "synergies": [ "Deathtouch", - "Outlaw Kindred", "Removal", "Toughness Matters", - "Interaction" + "Stax", + "Reanimate" ], "primary_color": "Black", "example_commanders": [ @@ -9966,9 +9706,9 @@ "synergies": [ "Mutant Kindred", "+1/+1 Counters", + "Counters Matter", "Blink", - "Enter the Battlefield", - "Leave the Battlefield" + "Enter the Battlefield" ], "primary_color": "Green", "secondary_color": "Blue", @@ -10017,15 +9757,6 @@ "popularity_bucket": "Rare", "description": "Builds around the Grandeur theme and its supporting synergies." }, - { - "id": "graveborn-kindred", - "theme": "Graveborn Kindred", - "synergies": [], - "primary_color": "Black", - "secondary_color": "Red", - "popularity_bucket": "Rare", - "description": "Focuses on getting a high number of Graveborn creatures into play with shared payoffs." - }, { "id": "graveyard-matters", "theme": "Graveyard Matters", @@ -10066,9 +9797,8 @@ "id": "gremlin-kindred", "theme": "Gremlin Kindred", "synergies": [ - "Little Fellas", - "Counters Matter", "Artifacts Matter", + "Little Fellas", "Aggro", "Combat Matters" ], @@ -10103,8 +9833,8 @@ "synergies": [ "Flying", "Vigilance", - "Little Fellas", "Toughness Matters", + "Little Fellas", "Big Mana" ], "primary_color": "White", @@ -10165,7 +9895,6 @@ "Blink", "Enter the Battlefield", "Leave the Battlefield", - "Toughness Matters", "Little Fellas" ], "primary_color": "Black", @@ -10199,9 +9928,7 @@ { "id": "hag-kindred", "theme": "Hag Kindred", - "synergies": [ - "Little Fellas" - ], + "synergies": [], "primary_color": "Blue", "secondary_color": "Black", "example_cards": [ @@ -10222,9 +9949,9 @@ "theme": "Halfling Kindred", "synergies": [ "Peasant Kindred", + "Citizen Kindred", "Food Token", "Food", - "Citizen Kindred", "Artifact Tokens" ], "primary_color": "White", @@ -10310,9 +10037,6 @@ "theme": "Harpy Kindred", "synergies": [ "Flying", - "Blink", - "Enter the Battlefield", - "Leave the Battlefield", "Little Fellas" ], "primary_color": "Black", @@ -10344,11 +10068,11 @@ "id": "haste", "theme": "Haste", "synergies": [ - "Phoenix Kindred", "Hellion Kindred", + "Phoenix Kindred", "Echo", - "Berserker Kindred", - "Barbarian Kindred" + "Barbarian Kindred", + "Minotaur Kindred" ], "primary_color": "Red", "secondary_color": "Green", @@ -10447,7 +10171,6 @@ "Draw Triggers", "Wheels", "Card Draw", - "Pingers", "Burn" ], "primary_color": "Black", @@ -10481,9 +10204,9 @@ "synergies": [ "Haste", "Trample", - "Big Mana", "Blink", - "Enter the Battlefield" + "Enter the Battlefield", + "Leave the Battlefield" ], "primary_color": "Red", "example_commanders": [ @@ -10598,8 +10321,8 @@ "Hexproof from", "Protective Effects", "Indestructible", - "Sphinx Kindred", - "Turtle Kindred" + "Flash", + "Stax" ], "primary_color": "Green", "secondary_color": "Blue", @@ -10636,10 +10359,7 @@ "theme": "Hexproof from", "synergies": [ "Hexproof", - "Protective Effects", - "Flying", - "Lifegain", - "Life Matters" + "Protective Effects" ], "primary_color": "Black", "secondary_color": "Green", @@ -10675,10 +10395,7 @@ "theme": "Hideaway", "synergies": [ "Topdeck", - "Lands Matter", - "Enchantments Matter", - "Aggro", - "Combat Matters" + "Lands Matter" ], "primary_color": "Blue", "secondary_color": "Green", @@ -10705,10 +10422,7 @@ { "id": "hippo-kindred", "theme": "Hippo Kindred", - "synergies": [ - "Card Draw", - "Big Mana" - ], + "synergies": [], "primary_color": "Green", "secondary_color": "Black", "example_commanders": [ @@ -10763,9 +10477,9 @@ "synergies": [ "Legends Matter", "Backgrounds Matter", - "Partner", "Choose a background", - "Doctor's companion" + "Doctor's companion", + "Shrines Matter" ], "primary_color": "White", "secondary_color": "Black", @@ -10840,10 +10554,8 @@ "id": "homunculus-kindred", "theme": "Homunculus Kindred", "synergies": [ - "Draw Triggers", - "Wheels", - "Toughness Matters", "Little Fellas", + "Toughness Matters", "Card Draw" ], "primary_color": "Blue", @@ -10881,10 +10593,10 @@ "theme": "Horror Kindred", "synergies": [ "Impending", + "Alien Kindred", "Fear", "Nightmare Kindred", - "Alien Kindred", - "Swampwalk" + "Eldrazi Kindred" ], "primary_color": "Black", "secondary_color": "Blue", @@ -10919,9 +10631,9 @@ "synergies": [ "Saddle", "Mount Kindred", - "Nightmare Kindred", - "Haste", - "Blink" + "Blink", + "Enter the Battlefield", + "Leave the Battlefield" ], "primary_color": "White", "secondary_color": "Black", @@ -11011,7 +10723,7 @@ "synergies": [ "Horsemanship", "Training", - "Friends Forever", + "Mystic Kindred", "Daybound", "Nightbound" ], @@ -11048,11 +10760,11 @@ "id": "hydra-kindred", "theme": "Hydra Kindred", "synergies": [ - "Plant Kindred", "X Spells", - "+1/+1 Counters", "Trample", - "Reach" + "+1/+1 Counters", + "Reach", + "Counters Matter" ], "primary_color": "Green", "secondary_color": "Red", @@ -11134,7 +10846,7 @@ "Wall Kindred", "Defender", "Flying", - "Clones" + "Draw Triggers" ], "primary_color": "Blue", "secondary_color": "Black", @@ -11206,11 +10918,11 @@ "id": "impending", "theme": "Impending", "synergies": [ - "Time Counters", "Avatar Kindred", + "Time Counters", "Horror Kindred", - "Enchantments Matter", - "Counters Matter" + "Counters Matter", + "Enchantments Matter" ], "primary_color": "Black", "secondary_color": "Blue", @@ -11236,13 +10948,7 @@ { "id": "imprint", "theme": "Imprint", - "synergies": [ - "Exile Matters", - "Clones", - "Removal", - "Artifacts Matter", - "Stax" - ], + "synergies": [], "primary_color": "Blue", "secondary_color": "White", "example_commanders": [ @@ -11265,7 +10971,6 @@ "id": "improvise", "theme": "Improvise", "synergies": [ - "Artificer Kindred", "Artifacts Matter", "Big Mana", "Spells Matter", @@ -11303,7 +11008,7 @@ "Junk Tokens", "Junk Token", "Exile Matters", - "Artificer Kindred", + "Treasure", "Spell Copy" ], "primary_color": "Red", @@ -11340,10 +11045,10 @@ "theme": "Incarnation Kindred", "synergies": [ "Evoke", - "Encore", "Elemental Kindred", - "Politics", - "Mill" + "Reanimate", + "Mill", + "Big Mana" ], "primary_color": "White", "secondary_color": "Green", @@ -11559,11 +11264,7 @@ { "id": "inkling-kindred", "theme": "Inkling Kindred", - "synergies": [ - "Creature Tokens", - "Token Creation", - "Tokens Matter" - ], + "synergies": [], "primary_color": "Black", "secondary_color": "White", "example_commanders": [ @@ -11584,24 +11285,15 @@ "popularity_bucket": "Rare", "description": "Focuses on getting a high number of Inkling creatures into play with shared payoffs." }, - { - "id": "inquisitor-kindred", - "theme": "Inquisitor Kindred", - "synergies": [], - "primary_color": "Black", - "secondary_color": "Blue", - "popularity_bucket": "Rare", - "description": "Focuses on getting a high number of Inquisitor creatures into play with shared payoffs." - }, { "id": "insect-kindred", "theme": "Insect Kindred", "synergies": [ "Landfall", - "Poison Counters", "Shroud", + "Poison Counters", "Druid Kindred", - "Time Counters" + "Horror Kindred" ], "primary_color": "Green", "secondary_color": "Black", @@ -11716,9 +11408,9 @@ "synergies": [ "Zombie Kindred", "Reanimate", - "Human Kindred", "Little Fellas", - "Big Mana" + "Human Kindred", + "Voltron" ], "primary_color": "Black", "secondary_color": "Red", @@ -11788,9 +11480,9 @@ "theme": "Islandcycling", "synergies": [ "Landcycling", - "Typecycling", "Cycling", "Loot", + "Ramp", "Discard Matters" ], "primary_color": "Blue", @@ -11893,8 +11585,8 @@ "Flying", "Toughness Matters", "Little Fellas", - "Counters Matter", - "+1/+1 Counters" + "Blink", + "Enter the Battlefield" ], "primary_color": "Blue", "secondary_color": "White", @@ -11980,13 +11672,7 @@ { "id": "juggernaut-kindred", "theme": "Juggernaut Kindred", - "synergies": [ - "Artifacts Matter", - "Aggro", - "Combat Matters", - "Big Mana", - "Toughness Matters" - ], + "synergies": [], "primary_color": "Blue", "example_commanders": [ "Graaz, Unstoppable Juggernaut" @@ -12046,8 +11732,7 @@ "Jump", "Mill", "Spells Matter", - "Spellslinger", - "Card Draw" + "Spellslinger" ], "primary_color": "Blue", "secondary_color": "Red", @@ -12117,9 +11802,9 @@ "synergies": [ "Junk Token", "Impulse", - "Exile Matters", "Artifact Tokens", - "Equipment Matters" + "Exile Matters", + "Token Creation" ], "primary_color": "Green", "secondary_color": "Red", @@ -12155,8 +11840,8 @@ "Kicker", "+1/+1 Counters", "Soldier Kindred", - "Little Fellas", - "Lands Matter" + "Lands Matter", + "Counters Matter" ], "primary_color": "Green", "secondary_color": "Red", @@ -12224,9 +11909,9 @@ "id": "kicker", "theme": "Kicker", "synergies": [ - "Volver Kindred", "Kavu Kindred", - "Wizard Kindred", + "Merfolk Kindred", + "+1/+1 Counters", "Removal", "Combat Tricks" ], @@ -12300,8 +11985,6 @@ "synergies": [ "Spirit Kindred", "Flying", - "Aggro", - "Combat Matters", "Little Fellas" ], "primary_color": "White", @@ -12340,9 +12023,9 @@ "synergies": [ "Soldier Kindred", "First strike", - "Scout Kindred", + "Cleric Kindred", "Knight Kindred", - "Cleric Kindred" + "Little Fellas" ], "primary_color": "White", "secondary_color": "Green", @@ -12378,9 +12061,9 @@ "synergies": [ "Flanking", "Adamant", - "Exalted", "Protection", - "First strike" + "First strike", + "Protection from Color" ], "primary_color": "White", "secondary_color": "Black", @@ -12417,8 +12100,7 @@ "Toughness Matters", "Little Fellas", "Aggro", - "Combat Matters", - "Big Mana" + "Combat Matters" ], "primary_color": "Red", "example_commanders": [ @@ -12490,11 +12172,11 @@ "id": "kraken-kindred", "theme": "Kraken Kindred", "synergies": [ - "Leviathan Kindred", - "Serpent Kindred", - "Octopus Kindred", "Draw Triggers", - "Protective Effects" + "Wheels", + "Protective Effects", + "Creature Tokens", + "Stax" ], "primary_color": "Blue", "secondary_color": "Black", @@ -12526,18 +12208,6 @@ "popularity_bucket": "Rare", "description": "Focuses on getting a high number of Kraken creatures into play with shared payoffs (e.g., Draw Triggers and Wheels)." }, - { - "id": "lairs-matter", - "theme": "Lairs Matter", - "synergies": [ - "Land Types Matter", - "Lands Matter" - ], - "primary_color": "Black", - "secondary_color": "Blue", - "popularity_bucket": "Rare", - "description": "Builds around Lairs Matter leveraging synergies with Land Types Matter and Lands Matter." - }, { "id": "lamia-kindred", "theme": "Lamia Kindred", @@ -12570,8 +12240,8 @@ "Plainscycling", "Mountaincycling", "Forestcycling", - "Urza's Lands Matter", - "Lairs Matter" + "Swampcycling", + "Spheres Matter" ], "primary_color": "Green", "secondary_color": "White", @@ -12600,10 +12270,10 @@ "theme": "Landcycling", "synergies": [ "Basic landcycling", - "Plainscycling", - "Mountaincycling", - "Forestcycling", - "Islandcycling" + "Islandcycling", + "Cycling", + "Loot", + "Ramp" ], "primary_color": "Blue", "secondary_color": "Green", @@ -12632,7 +12302,7 @@ "Ramp", "Token Creation", "Earthbending", - "Earthbend" + "Bending" ], "primary_color": "Green", "secondary_color": "White", @@ -12671,7 +12341,7 @@ "Domain", "Land Tutors", "Land Types Matter", - "Gates Matter" + "Landwalk" ], "primary_color": "Green", "secondary_color": "Blue", @@ -12778,9 +12448,9 @@ "synergies": [ "Blink", "Enter the Battlefield", - "Persist", "Exploit", - "Offspring" + "Offspring", + "Fabricate" ], "primary_color": "Black", "secondary_color": "White", @@ -12815,7 +12485,7 @@ "X Spells", "Lifegain", "Life Matters", - "Little Fellas" + "Burn" ], "primary_color": "Black", "secondary_color": "Green", @@ -12849,9 +12519,9 @@ "synergies": [ "Historics Matter", "Backgrounds Matter", - "Partner", "Choose a background", - "Doctor's companion" + "Doctor's companion", + "Shrines Matter" ], "primary_color": "White", "secondary_color": "Black", @@ -12945,11 +12615,11 @@ "id": "leviathan-kindred", "theme": "Leviathan Kindred", "synergies": [ - "Kraken Kindred", - "Octopus Kindred", - "Serpent Kindred", "Trample", - "Big Mana" + "Big Mana", + "Blink", + "Enter the Battlefield", + "Leave the Battlefield" ], "primary_color": "Blue", "secondary_color": "Green", @@ -12985,11 +12655,8 @@ "id": "lhurgoyf-kindred", "theme": "Lhurgoyf Kindred", "synergies": [ - "Reanimate", - "Mill", "Aggro", - "Combat Matters", - "Big Mana" + "Combat Matters" ], "primary_color": "Green", "secondary_color": "Black", @@ -13022,9 +12689,9 @@ "synergies": [ "Equipment Matters", "Auras", + "Artifacts Matter", "Enchantments Matter", - "Voltron", - "Artifacts Matter" + "Voltron" ], "primary_color": "Blue", "secondary_color": "Black", @@ -13127,9 +12794,7 @@ "theme": "Life to Draw", "synergies": [ "Card Draw", - "Enchantments Matter", - "Lifegain", - "Life Matters" + "Enchantments Matter" ], "primary_color": "Black", "example_commanders": [ @@ -13196,10 +12861,10 @@ "theme": "Lifegain Triggers", "synergies": [ "Vampire Kindred", - "Food Token", "Lifelink", "Lifegain", - "Life Matters" + "Life Matters", + "Cleric Kindred" ], "primary_color": "White", "secondary_color": "Black", @@ -13238,7 +12903,7 @@ "Vampire Kindred", "Lifegain", "Life Matters", - "Unicorn Kindred" + "Angel Kindred" ], "primary_color": "White", "secondary_color": "Black", @@ -13274,8 +12939,8 @@ "Lifeloss Triggers", "Bat Kindred", "Life Matters", - "Draw Triggers", - "Wheels" + "Lifegain", + "Flying" ], "primary_color": "Black", "secondary_color": "White", @@ -13309,8 +12974,8 @@ "Lifeloss", "Bat Kindred", "Life Matters", - "Draw Triggers", - "Wheels" + "Lifegain", + "Flying" ], "primary_color": "Black", "secondary_color": "White", @@ -13341,11 +13006,11 @@ "id": "little-fellas", "theme": "Little Fellas", "synergies": [ + "Banding", "Licid Kindred", "Spike Kindred", - "Training", - "Metathran Kindred", - "Slith Kindred" + "Soltari Kindred", + "Training" ], "primary_color": "White", "secondary_color": "Blue", @@ -13376,8 +13041,8 @@ "id": "living-metal", "theme": "Living metal", "synergies": [ - "More Than Meets the Eye", "Convert", + "More Than Meets the Eye", "Eye Kindred", "Robot Kindred", "Vehicles" @@ -13412,9 +13077,9 @@ "theme": "Living weapon", "synergies": [ "Germ Kindred", - "Phyrexian Kindred", "Equip", "Equipment", + "Phyrexian Kindred", "Equipment Matters" ], "primary_color": "Black", @@ -13443,11 +13108,11 @@ "id": "lizard-kindred", "theme": "Lizard Kindred", "synergies": [ - "Mercenary Kindred", - "Warlock Kindred", "Menace", - "Mutant Kindred", - "Shaman Kindred" + "Shaman Kindred", + "Outlaw Kindred", + "Haste", + "Warrior Kindred" ], "primary_color": "Green", "secondary_color": "Black", @@ -13487,7 +13152,7 @@ "Discard Matters", "Reanimate", "Cycling", - "Typecycling" + "Connive" ], "primary_color": "Blue", "secondary_color": "Black", @@ -13524,10 +13189,10 @@ "theme": "Lore Counters", "synergies": [ "Read Ahead", - "Ore Counters", "Sagas Matter", + "Ore Counters", "Praetor Kindred", - "Alien Kindred" + "Doctor Kindred" ], "primary_color": "White", "secondary_color": "Green", @@ -13560,11 +13225,11 @@ "id": "loyalty-counters", "theme": "Loyalty Counters", "synergies": [ - "Compleated", "Planeswalkers", "Superfriends", "Counters Matter", - "Draw Triggers" + "Draw Triggers", + "Wheels" ], "primary_color": "White", "secondary_color": "Black", @@ -13637,10 +13302,10 @@ "theme": "Magecraft", "synergies": [ "Transform", - "Shaman Kindred", "Wizard Kindred", "Human Kindred", - "Spells Matter" + "Spells Matter", + "Spellslinger" ], "primary_color": "Blue", "secondary_color": "White", @@ -13678,8 +13343,8 @@ "Firebending", "Scion Kindred", "Spawn Kindred", - "Powerstone Token", - "Ramp" + "Ramp", + "Myr Kindred" ], "primary_color": "Green", "secondary_color": "Blue", @@ -13714,11 +13379,11 @@ "id": "mana-rock", "theme": "Mana Rock", "synergies": [ - "Ramp", "Myr Kindred", "Charge Counters", - "Mana Dork", - "Sacrifice to Draw" + "Ramp", + "Robot Kindred", + "Mana Dork" ], "primary_color": "Blue", "secondary_color": "Green", @@ -13755,8 +13420,8 @@ "synergies": [ "Manifest dread", "Topdeck", - "Reanimate", "Equipment Matters", + "Reanimate", "Mill" ], "primary_color": "Green", @@ -13792,7 +13457,7 @@ "Topdeck", "Reanimate", "Mill", - "Sacrifice Matters" + "+1/+1 Counters" ], "primary_color": "Green", "secondary_color": "Blue", @@ -13824,7 +13489,6 @@ "theme": "Manticore Kindred", "synergies": [ "Burn", - "Flying", "Blink", "Enter the Battlefield", "Leave the Battlefield" @@ -13856,8 +13520,8 @@ "id": "map-token", "theme": "Map Token", "synergies": [ - "Card Selection", "Explore", + "Card Selection", "Artifact Tokens", "Token Creation", "Tokens Matter" @@ -13892,10 +13556,10 @@ "theme": "Max speed", "synergies": [ "Start your engines!", - "Scout Kindred", "Vehicles", - "Cat Kindred", - "Conditional Draw" + "Scout Kindred", + "Conditional Draw", + "Burn" ], "primary_color": "Black", "secondary_color": "White", @@ -13929,9 +13593,7 @@ "theme": "Mayhem", "synergies": [ "Discard Matters", - "Mill", - "Aggro", - "Combat Matters" + "Mill" ], "primary_color": "Black", "secondary_color": "Blue", @@ -14029,7 +13691,6 @@ "theme": "Melee", "synergies": [ "Politics", - "Human Kindred", "Aggro", "Combat Matters", "Little Fellas" @@ -14067,10 +13728,10 @@ "theme": "Menace", "synergies": [ "Warlock Kindred", - "Rat Kindred", - "Mutant Kindred", - "Ninja Kindred", - "Blood Token" + "Blood Token", + "Pirate Kindred", + "Werewolf Kindred", + "Dog Kindred" ], "primary_color": "Black", "secondary_color": "Red", @@ -14110,7 +13771,7 @@ "+1/+1 Counters", "Counters Matter", "Voltron", - "Human Kindred" + "Aggro" ], "primary_color": "White", "secondary_color": "Blue", @@ -14146,10 +13807,10 @@ "theme": "Mercenary Kindred", "synergies": [ "Outlaw Kindred", - "Lizard Kindred", "Horror Kindred", - "Treasure", - "Treasure Token" + "Phyrexian Kindred", + "Human Kindred", + "Zombie Kindred" ], "primary_color": "Black", "secondary_color": "White", @@ -14189,7 +13850,7 @@ "Explore", "Card Selection", "Wizard Kindred", - "Scout Kindred" + "Landwalk" ], "primary_color": "Blue", "secondary_color": "Green", @@ -14227,9 +13888,9 @@ "synergies": [ "Transform", "Artifacts Matter", - "Soldier Kindred", "Human Kindred", - "Flying" + "Flying", + "Toughness Matters" ], "primary_color": "White", "secondary_color": "Blue", @@ -14326,7 +13987,7 @@ "Surveil", "Threshold", "Delirium", - "Escape", + "Madness", "Delve" ], "primary_color": "Black", @@ -14365,8 +14026,8 @@ "Threshold", "Phyrexian Kindred", "Human Kindred", - "Little Fellas", - "Reanimate" + "Reanimate", + "Sacrifice Matters" ], "primary_color": "Black", "secondary_color": "Blue", @@ -14402,8 +14063,8 @@ "synergies": [ "Berserker Kindred", "Shaman Kindred", - "Warrior Kindred", "Haste", + "Warrior Kindred", "First strike" ], "primary_color": "Red", @@ -14474,11 +14135,11 @@ "id": "mite-kindred", "theme": "Mite Kindred", "synergies": [ - "Toxic", "Poison Counters", "Infect", "Phyrexian Kindred", - "Artifact Tokens" + "Artifact Tokens", + "Creature Tokens" ], "primary_color": "White", "secondary_color": "Black", @@ -14515,7 +14176,7 @@ "Creature Tokens", "Token Creation", "Tokens Matter", - "Aggro" + "Toughness Matters" ], "primary_color": "Black", "secondary_color": "White", @@ -14579,8 +14240,8 @@ "Sacrifice Matters", "Aristocrats", "+1/+1 Counters", - "Counters Matter", - "Voltron" + "Artifacts Matter", + "Counters Matter" ], "primary_color": "Red", "secondary_color": "White", @@ -14613,11 +14274,7 @@ "id": "mole-kindred", "theme": "Mole Kindred", "synergies": [ - "+1/+1 Counters", - "Blink", - "Enter the Battlefield", - "Leave the Battlefield", - "Counters Matter" + "Little Fellas" ], "primary_color": "Green", "secondary_color": "Black", @@ -14647,8 +14304,8 @@ "Politics", "Group Hug", "Card Draw", - "Knight Kindred", - "Outlaw Kindred" + "Outlaw Kindred", + "Soldier Kindred" ], "primary_color": "White", "secondary_color": "Black", @@ -14720,8 +14377,8 @@ "Flurry", "Prowess", "Djinn Kindred", - "Rhino Kindred", - "Lore Counters" + "Lore Counters", + "Sagas Matter" ], "primary_color": "White", "secondary_color": "Green", @@ -14755,11 +14412,9 @@ "id": "monkey-kindred", "theme": "Monkey Kindred", "synergies": [ - "Token Creation", - "Tokens Matter", "Little Fellas", - "Toughness Matters", - "Artifacts Matter" + "Aggro", + "Combat Matters" ], "primary_color": "Green", "secondary_color": "Black", @@ -14798,7 +14453,7 @@ "+1/+1 Counters", "Counters Matter", "Voltron", - "Protective Effects" + "Aggro" ], "primary_color": "Green", "secondary_color": "Blue", @@ -14835,8 +14490,8 @@ "Wizard Kindred", "Flying", "Toughness Matters", - "Control", - "Little Fellas" + "Artifacts Matter", + "Stax" ], "primary_color": "Blue", "example_commanders": [ @@ -14873,9 +14528,9 @@ "synergies": [ "+1/+1 Counters", "Counters Matter", - "Blink", - "Enter the Battlefield", - "Leave the Battlefield" + "Voltron", + "Token Creation", + "Blink" ], "primary_color": "Green", "secondary_color": "Black", @@ -14906,8 +14561,8 @@ "id": "more-than-meets-the-eye", "theme": "More Than Meets the Eye", "synergies": [ - "Living metal", "Convert", + "Living metal", "Eye Kindred", "Robot Kindred", "Vehicles" @@ -14941,11 +14596,11 @@ "id": "morph", "theme": "Morph", "synergies": [ - "Illusion Kindred", "Beast Kindred", + "Illusion Kindred", + "Wizard Kindred", "Cleric Kindred", - "Bird Kindred", - "Wizard Kindred" + "Bird Kindred" ], "primary_color": "Blue", "secondary_color": "Green", @@ -14981,7 +14636,7 @@ "Pilot Kindred", "Horse Kindred", "Vehicles", - "Beast Kindred" + "Vigilance" ], "primary_color": "White", "secondary_color": "Green", @@ -15014,11 +14669,11 @@ "id": "mountaincycling", "theme": "Mountaincycling", "synergies": [ - "Landcycling", - "Typecycling", "Land Types Matter", "Cycling", - "Loot" + "Loot", + "Ramp", + "Discard Matters" ], "primary_color": "Red", "example_commanders": [ @@ -15078,9 +14733,9 @@ "synergies": [ "Valiant", "Soldier Kindred", - "+1/+1 Counters", - "Voltron", - "Counters Matter" + "Little Fellas", + "Counters Matter", + "Toughness Matters" ], "primary_color": "White", "secondary_color": "Green", @@ -15177,9 +14832,9 @@ "synergies": [ "Graft", "Rad Counters", - "Turtle Kindred", - "Ninja Kindred", - "Sneak" + "Goblin Kindred", + "Zombie Kindred", + "+1/+1 Counters" ], "primary_color": "Green", "secondary_color": "Blue", @@ -15210,11 +14865,11 @@ "id": "mutate", "theme": "Mutate", "synergies": [ - "Nightmare Kindred", "Beast Kindred", - "Dinosaur Kindred", - "Cat Kindred", - "Elemental Kindred" + "Flying", + "Toughness Matters", + "Big Mana", + "Aggro" ], "primary_color": "Black", "secondary_color": "Blue", @@ -15251,10 +14906,10 @@ "theme": "Myr Kindred", "synergies": [ "Mana Rock", - "Phyrexian Kindred", "Mana Dork", - "Artifact Tokens", - "Artifacts Matter" + "Ramp", + "Artifacts Matter", + "Little Fellas" ], "primary_color": "Blue", "secondary_color": "White", @@ -15326,11 +14981,8 @@ "id": "mystic-kindred", "theme": "Mystic Kindred", "synergies": [ - "Nomad Kindred", - "Threshold", "Human Kindred", - "Reanimate", - "Mill" + "Little Fellas" ], "primary_color": "White", "secondary_color": "Green", @@ -15373,10 +15025,10 @@ "theme": "Necron Kindred", "synergies": [ "Unearth", - "Artifact Tokens", "Artifacts Matter", "Wizard Kindred", - "Warrior Kindred" + "Mill", + "Blink" ], "primary_color": "Black", "example_commanders": [ @@ -15404,15 +15056,6 @@ "popularity_bucket": "Rare", "description": "Focuses on getting a high number of Necron creatures into play with shared payoffs (e.g., Unearth and Artifacts Matter)." }, - { - "id": "nephilim-kindred", - "theme": "Nephilim Kindred", - "synergies": [], - "primary_color": "Black", - "secondary_color": "Blue", - "popularity_bucket": "Rare", - "description": "Focuses on getting a high number of Nephilim creatures into play with shared payoffs." - }, { "id": "net-counters", "theme": "Net Counters", @@ -15432,9 +15075,9 @@ "synergies": [ "Daybound", "Werewolf Kindred", - "Wolf Kindred", "Control", - "Stax" + "Stax", + "Human Kindred" ], "primary_color": "Green", "secondary_color": "Black", @@ -15462,11 +15105,11 @@ "id": "nightmare-kindred", "theme": "Nightmare Kindred", "synergies": [ - "Mutate", - "Horse Kindred", "Horror Kindred", - "Surveil", - "Beast Kindred" + "Beast Kindred", + "Draw Triggers", + "Blink", + "Enter the Battlefield" ], "primary_color": "Black", "secondary_color": "Blue", @@ -15530,10 +15173,10 @@ "theme": "Ninja Kindred", "synergies": [ "Ninjutsu", - "Sneak", - "Turtle Kindred", - "Mutant Kindred", - "Rat Kindred" + "Rat Kindred", + "Human Kindred", + "Big Mana", + "Aggro" ], "primary_color": "Blue", "secondary_color": "Black", @@ -15603,11 +15246,11 @@ "id": "noble-kindred", "theme": "Noble Kindred", "synergies": [ - "Firebending", - "Bending", - "Octopus Kindred", + "Lore Counters", "Vampire Kindred", - "Ally Kindred" + "Sagas Matter", + "Ore Counters", + "Transform" ], "primary_color": "Black", "secondary_color": "White", @@ -15639,23 +15282,14 @@ "popularity_bucket": "Niche", "description": "Focuses on getting a high number of Noble creatures into play with shared payoffs (e.g., Lore Counters and Sagas Matter)." }, - { - "id": "noggle-kindred", - "theme": "Noggle Kindred", - "synergies": [], - "primary_color": "Red", - "secondary_color": "Blue", - "popularity_bucket": "Rare", - "description": "Focuses on getting a high number of Noggle creatures into play with shared payoffs." - }, { "id": "nomad-kindred", "theme": "Nomad Kindred", "synergies": [ - "Mystic Kindred", "Threshold", "Human Kindred", "Reanimate", + "Little Fellas", "Mill" ], "primary_color": "White", @@ -15720,11 +15354,11 @@ "id": "octopus-kindred", "theme": "Octopus Kindred", "synergies": [ - "Leviathan Kindred", - "Kraken Kindred", - "Serpent Kindred", - "Noble Kindred", - "Rogue Kindred" + "Rogue Kindred", + "Loot", + "Outlaw Kindred", + "Wizard Kindred", + "Discard Matters" ], "primary_color": "Blue", "secondary_color": "Black", @@ -15796,8 +15430,8 @@ "id": "offspring", "theme": "Offspring", "synergies": [ - "Outlaw Kindred", "Pingers", + "Outlaw Kindred", "Blink", "Enter the Battlefield", "Leave the Battlefield" @@ -15839,7 +15473,7 @@ "Warrior Kindred", "Shaman Kindred", "Rogue Kindred", - "Menace" + "Outlaw Kindred" ], "primary_color": "Black", "secondary_color": "Red", @@ -15876,10 +15510,10 @@ "theme": "Oil Counters", "synergies": [ "Phyrexian Kindred", - "Beast Kindred", "Counters Matter", + "Artifacts Matter", "Warrior Kindred", - "Artifacts Matter" + "Wizard Kindred" ], "primary_color": "Blue", "secondary_color": "Green", @@ -15927,8 +15561,8 @@ "synergies": [ "Clones", "+1/+1 Counters", - "Midrange", "Counters Matter", + "Creature Tokens", "Voltron" ], "primary_color": "Green", @@ -15969,7 +15603,7 @@ "Blink", "Enter the Battlefield", "Leave the Battlefield", - "Toughness Matters" + "Little Fellas" ], "primary_color": "Black", "secondary_color": "Blue", @@ -16017,8 +15651,8 @@ "Army Kindred", "Amass", "Dash", - "Raid", - "Pirate Kindred" + "Pirate Kindred", + "Treasure" ], "primary_color": "Black", "secondary_color": "Blue", @@ -16099,11 +15733,11 @@ "id": "otter-kindred", "theme": "Otter Kindred", "synergies": [ - "Prowess", "Wizard Kindred", - "Spells Matter", - "Spellslinger", - "Card Draw" + "Artifacts Matter", + "Blink", + "Enter the Battlefield", + "Leave the Battlefield" ], "primary_color": "Blue", "secondary_color": "Red", @@ -16138,10 +15772,7 @@ "theme": "Ouphe Kindred", "synergies": [ "Stax", - "Little Fellas", - "Counters Matter", - "Blink", - "Enter the Battlefield" + "Little Fellas" ], "primary_color": "Green", "secondary_color": "Black", @@ -16172,8 +15803,8 @@ "+1/+1 Counters", "Counters Matter", "Voltron", - "Human Kindred", - "Toughness Matters" + "Toughness Matters", + "Human Kindred" ], "primary_color": "White", "secondary_color": "Black", @@ -16241,10 +15872,10 @@ "theme": "Overload", "synergies": [ "Combat Tricks", + "Removal", "Spells Matter", "Spellslinger", - "Interaction", - "Removal" + "Interaction" ], "primary_color": "Blue", "secondary_color": "Black", @@ -16279,11 +15910,11 @@ "id": "ox-kindred", "theme": "Ox Kindred", "synergies": [ - "Creature Tokens", "Token Creation", "Tokens Matter", - "Lands Matter", - "Toughness Matters" + "Toughness Matters", + "Artifacts Matter", + "Aggro" ], "primary_color": "White", "secondary_color": "Green", @@ -16328,8 +15959,7 @@ "theme": "Pack tactics", "synergies": [ "Aggro", - "Combat Matters", - "Little Fellas" + "Combat Matters" ], "primary_color": "Green", "secondary_color": "Red", @@ -16373,10 +16003,7 @@ "theme": "Paradox", "synergies": [ "Spells Matter", - "Spellslinger", - "Aggro", - "Combat Matters", - "Little Fellas" + "Spellslinger" ], "primary_color": "Blue", "secondary_color": "Green", @@ -16408,10 +16035,9 @@ "theme": "Parley", "synergies": [ "Politics", - "Wheels", "Draw Triggers", - "Card Draw", - "Token Creation" + "Wheels", + "Card Draw" ], "primary_color": "Green", "secondary_color": "Blue", @@ -16444,11 +16070,11 @@ "id": "partner", "theme": "Partner", "synergies": [ + "Partner with", "Pirate Kindred", "Artificer Kindred", - "Elf Kindred", - "Outlaw Kindred", - "Wizard Kindred" + "First strike", + "Elf Kindred" ], "primary_color": "Blue", "secondary_color": "White", @@ -16484,8 +16110,6 @@ "id": "partner-father-son", "theme": "Partner - Father & Son", "synergies": [], - "primary_color": "Red", - "secondary_color": "Blue", "example_commanders": [ "Atreus, Impulsive Son", "Kratos, Stoic Father" @@ -16497,24 +16121,15 @@ "popularity_bucket": "Rare", "description": "Builds around the Partner - Father & Son theme and its supporting synergies." }, - { - "id": "partner-survivors", - "theme": "Partner - Survivors", - "synergies": [], - "primary_color": "Red", - "secondary_color": "Black", - "popularity_bucket": "Rare", - "description": "Builds around the Partner - Survivors theme and its supporting synergies." - }, { "id": "partner-with", "theme": "Partner with", "synergies": [ + "Partner", "Blink", "Enter the Battlefield", "Leave the Battlefield", - "Conditional Draw", - "Vigilance" + "Conditional Draw" ], "primary_color": "Blue", "secondary_color": "Black", @@ -16625,7 +16240,7 @@ "Enter the Battlefield", "Leave the Battlefield", "Human Kindred", - "+1/+1 Counters" + "Aggro" ], "primary_color": "Green", "secondary_color": "Blue", @@ -16735,10 +16350,10 @@ "theme": "Phasing", "synergies": [ "Equipment Matters", - "Interaction", "Protective Effects", - "Planeswalkers", - "Superfriends" + "Interaction", + "Removal", + "Artifacts Matter" ], "primary_color": "Blue", "secondary_color": "White", @@ -16769,15 +16384,6 @@ "popularity_bucket": "Niche", "description": "Builds around Phasing leveraging synergies with Equipment Matters and Protective Effects." }, - { - "id": "phelddagrif-kindred", - "theme": "Phelddagrif Kindred", - "synergies": [], - "primary_color": "Blue", - "secondary_color": "Green", - "popularity_bucket": "Rare", - "description": "Focuses on getting a high number of Phelddagrif creatures into play with shared payoffs." - }, { "id": "phoenix-kindred", "theme": "Phoenix Kindred", @@ -16821,9 +16427,9 @@ "synergies": [ "Germ Kindred", "Carrier Kindred", + "Living weapon", "Incubator Token", - "Incubate", - "Living weapon" + "Incubate" ], "primary_color": "Black", "secondary_color": "Green", @@ -16858,8 +16464,8 @@ "Planeswalkers", "Superfriends", "Control", - "Vigilance", - "Stax" + "Stax", + "Pingers" ], "primary_color": "White", "secondary_color": "Green", @@ -16897,9 +16503,9 @@ "synergies": [ "Vehicles", "Mount Kindred", - "Dwarf Kindred", - "Scry", - "Artifacts Matter" + "Artifacts Matter", + "Creature Tokens", + "Token Creation" ], "primary_color": "White", "secondary_color": "Blue", @@ -16938,7 +16544,7 @@ "Devil Kindred", "Offspring", "Burn", - "Hellbent" + "Role token" ], "primary_color": "Black", "secondary_color": "Red", @@ -17022,11 +16628,11 @@ "id": "plainscycling", "theme": "Plainscycling", "synergies": [ - "Landcycling", - "Typecycling", "Land Types Matter", "Cycling", - "Loot" + "Loot", + "Ramp", + "Discard Matters" ], "primary_color": "White", "example_commanders": [ @@ -17058,9 +16664,9 @@ "synergies": [ "Proliferate", "Superfriends", - "Compleated", "Myriad", - "Loyalty Counters" + "Loyalty Counters", + "Infect" ], "primary_color": "White", "secondary_color": "Blue", @@ -17094,9 +16700,9 @@ "synergies": [ "Defender", "Wall Kindred", - "Hydra Kindred", "Landfall", - "Reach" + "Reach", + "Mana Dork" ], "primary_color": "Green", "secondary_color": "Black", @@ -17136,7 +16742,7 @@ "Rogue Kindred", "Outlaw Kindred", "Unconditional Draw", - "Blink" + "Card Draw" ], "primary_color": "Blue", "secondary_color": "Green", @@ -17170,8 +16776,8 @@ "id": "poison-counters", "theme": "Poison Counters", "synergies": [ - "Corrupted", "Toxic", + "Corrupted", "Mite Kindred", "Infect", "Phyrexian Kindred" @@ -17206,8 +16812,8 @@ "id": "politics", "theme": "Politics", "synergies": [ + "Encore", "Melee", - "Parley", "Council's dilemma", "Tempting offer", "Monger Kindred" @@ -17308,8 +16914,8 @@ "id": "powerstone-token", "theme": "Powerstone Token", "synergies": [ - "Artificer Kindred", "Artifact Tokens", + "Artificer Kindred", "Mana Dork", "Ramp", "Token Creation" @@ -17402,9 +17008,7 @@ "synergies": [ "Devoid", "Eldrazi Kindred", - "Exile Matters", - "Toughness Matters", - "Blink" + "Exile Matters" ], "primary_color": "Blue", "secondary_color": "Black", @@ -17548,8 +17152,7 @@ "Protection", "Protective Effects", "Human Kindred", - "Little Fellas", - "Aggro" + "Little Fellas" ], "primary_color": "White", "secondary_color": "Black", @@ -17611,8 +17214,8 @@ "synergies": [ "Protection", "Protective Effects", - "Interaction", "Cleric Kindred", + "Interaction", "Spirit Kindred" ], "primary_color": "White", @@ -17754,9 +17357,9 @@ "synergies": [ "Spellslinger", "Noncreature Spells", - "Otter Kindred", "Monk Kindred", - "Djinn Kindred" + "Djinn Kindred", + "Artifacts Matter" ], "primary_color": "Blue", "secondary_color": "Red", @@ -17865,11 +17468,11 @@ "id": "rabbit-kindred", "theme": "Rabbit Kindred", "synergies": [ - "Vigilance", "Warrior Kindred", "Creature Tokens", - "Tokens Matter", - "+1/+1 Counters" + "Lands Matter", + "Token Creation", + "Tokens Matter" ], "primary_color": "White", "secondary_color": "Green", @@ -17905,11 +17508,11 @@ "id": "raccoon-kindred", "theme": "Raccoon Kindred", "synergies": [ - "Mana Dork", "Warrior Kindred", - "Outlaw Kindred", - "Ramp", - "+1/+1 Counters" + "Blink", + "Enter the Battlefield", + "Leave the Battlefield", + "Aggro" ], "primary_color": "Green", "secondary_color": "Red", @@ -17949,7 +17552,7 @@ "Zombie Kindred", "Mill", "Counters Matter", - "Reanimate" + "+1/+1 Counters" ], "primary_color": "Black", "secondary_color": "Green", @@ -18012,10 +17615,10 @@ "theme": "Raid", "synergies": [ "Pirate Kindred", - "Orc Kindred", "Outlaw Kindred", "Draw Triggers", - "Wheels" + "Wheels", + "Warrior Kindred" ], "primary_color": "Black", "secondary_color": "Blue", @@ -18050,9 +17653,7 @@ "theme": "Rally", "synergies": [ "Ally Kindred", - "Human Kindred", - "Little Fellas", - "Big Mana" + "Little Fellas" ], "primary_color": "White", "secondary_color": "Green", @@ -18087,7 +17688,7 @@ "Land Tutors", "Mana Dork", "Mana Rock", - "Firebending" + "Landcycling" ], "primary_color": "Green", "secondary_color": "Blue", @@ -18120,10 +17721,7 @@ "id": "rampage", "theme": "Rampage", "synergies": [ - "Big Mana", - "Toughness Matters", - "Aggro", - "Combat Matters" + "Big Mana" ], "primary_color": "Green", "secondary_color": "Red", @@ -18157,8 +17755,8 @@ "Elf Kindred", "Scout Kindred", "Reach", - "Vigilance", - "Human Kindred" + "Ramp", + "Lands Matter" ], "primary_color": "Green", "secondary_color": "White", @@ -18197,8 +17795,8 @@ "Ninjutsu", "Ninja Kindred", "Threshold", - "Squirrel Kindred", - "Warlock Kindred" + "Warlock Kindred", + "Poison Counters" ], "primary_color": "Black", "secondary_color": "Blue", @@ -18307,10 +17905,10 @@ "theme": "Read Ahead", "synergies": [ "Lore Counters", - "Ore Counters", "Sagas Matter", - "Enchantments Matter", - "Counters Matter" + "Ore Counters", + "Counters Matter", + "Creature Tokens" ], "primary_color": "Black", "secondary_color": "Blue", @@ -18381,10 +17979,10 @@ "theme": "Rebel Kindred", "synergies": [ "For Mirrodin!", - "Ally Kindred", "Equip", "Equipment", - "Equipment Matters" + "Equipment Matters", + "Human Kindred" ], "primary_color": "White", "secondary_color": "Black", @@ -18454,8 +18052,8 @@ "synergies": [ "Equipment", "Equipment Matters", - "Voltron", "Artifacts Matter", + "Voltron", "Aggro" ], "primary_color": "Black", @@ -18578,8 +18176,8 @@ "Soulshift", "Interaction", "Control", - "Imprint", - "Phasing" + "Gift", + "Replicate" ], "primary_color": "Black", "secondary_color": "White", @@ -18648,8 +18246,8 @@ "id": "renown", "theme": "Renown", "synergies": [ - "Soldier Kindred", "+1/+1 Counters", + "Soldier Kindred", "Counters Matter", "Voltron", "Human Kindred" @@ -18684,8 +18282,7 @@ "id": "replacement-draw", "theme": "Replacement Draw", "synergies": [ - "Card Draw", - "Enchantments Matter" + "Card Draw" ], "primary_color": "Black", "secondary_color": "Blue", @@ -18784,10 +18381,8 @@ "theme": "Retrace", "synergies": [ "Mill", - "Creature Tokens", "Spells Matter", - "Spellslinger", - "Token Creation" + "Spellslinger" ], "primary_color": "Green", "secondary_color": "Black", @@ -18819,10 +18414,10 @@ "theme": "Revolt", "synergies": [ "Warrior Kindred", + "+1/+1 Counters", "Blink", "Enter the Battlefield", - "Leave the Battlefield", - "+1/+1 Counters" + "Leave the Battlefield" ], "primary_color": "Green", "secondary_color": "White", @@ -18853,11 +18448,11 @@ "id": "rhino-kindred", "theme": "Rhino Kindred", "synergies": [ - "Monk Kindred", "Trample", "Soldier Kindred", "Warrior Kindred", - "Blink" + "Creature Tokens", + "Big Mana" ], "primary_color": "Green", "secondary_color": "White", @@ -18961,9 +18556,9 @@ "id": "robot-kindred", "theme": "Robot Kindred", "synergies": [ - "More Than Meets the Eye", - "Living metal", "Convert", + "Living metal", + "More Than Meets the Eye", "Clown Kindred", "Eye Kindred" ], @@ -19002,8 +18597,8 @@ "synergies": [ "Prowl", "Outlaw Kindred", - "Aetherborn Kindred", "Connive", + "Aetherborn Kindred", "Tiefling Kindred" ], "primary_color": "Black", @@ -19089,8 +18684,8 @@ "synergies": [ "Eerie", "Enchantments Matter", - "Spirit Kindred", "Pingers", + "Spirit Kindred", "Big Mana" ], "primary_color": "Blue", @@ -19120,10 +18715,10 @@ "theme": "Sacrifice Matters", "synergies": [ "Persist", + "Modular", "Zubera Kindred", "Aristocrats", - "Afterlife", - "Exploit" + "Blitz" ], "primary_color": "Black", "secondary_color": "Green", @@ -19155,10 +18750,10 @@ "id": "sacrifice-to-draw", "theme": "Sacrifice to Draw", "synergies": [ + "Spheres Matter", "Clue Token", "Investigate", "Gates Matter", - "Spheres Matter", "Blood Token" ], "primary_color": "Black", @@ -19194,9 +18789,9 @@ "synergies": [ "Mount Kindred", "Horse Kindred", - "Beast Kindred", "Aggro", - "Combat Matters" + "Combat Matters", + "+1/+1 Counters" ], "primary_color": "White", "secondary_color": "Green", @@ -19231,8 +18826,8 @@ "Lore Counters", "Read Ahead", "Ore Counters", - "Praetor Kindred", - "Doctor's Companion" + "Doctor Kindred", + "Praetor Kindred" ], "primary_color": "White", "secondary_color": "Blue", @@ -19305,9 +18900,9 @@ "synergies": [ "Bushido", "Fox Kindred", - "Human Kindred", "Equipment Matters", - "Haste" + "Human Kindred", + "Vigilance" ], "primary_color": "White", "secondary_color": "Black", @@ -19400,9 +18995,9 @@ "synergies": [ "Ramp", "Sacrifice Matters", + "Lands Matter", "Aristocrats", - "Little Fellas", - "Enchantments Matter" + "Little Fellas" ], "primary_color": "Green", "secondary_color": "Red", @@ -19434,13 +19029,7 @@ { "id": "scarecrow-kindred", "theme": "Scarecrow Kindred", - "synergies": [ - "-1/-1 Counters", - "Artifacts Matter", - "Ramp", - "Little Fellas", - "Toughness Matters" - ], + "synergies": [], "primary_color": "Black", "secondary_color": "Blue", "example_commanders": [ @@ -19469,7 +19058,7 @@ "Mill", "Counters Matter", "Voltron", - "Reanimate" + "Aggro" ], "primary_color": "Green", "secondary_color": "Black", @@ -19500,11 +19089,9 @@ "id": "scientist-kindred", "theme": "Scientist Kindred", "synergies": [ - "Robot Kindred", - "Vigilance", + "Toughness Matters", "Human Kindred", - "Draw Triggers", - "Wheels" + "Little Fellas" ], "primary_color": "Blue", "secondary_color": "Green", @@ -19541,8 +19128,8 @@ "theme": "Scion Kindred", "synergies": [ "Devoid", - "Drone Kindred", "Eldrazi Kindred", + "Drone Kindred", "Mana Dork", "Ramp" ], @@ -19573,10 +19160,10 @@ "theme": "Scorpion Kindred", "synergies": [ "Deathtouch", - "Little Fellas", "Blink", "Enter the Battlefield", - "Leave the Battlefield" + "Leave the Battlefield", + "Little Fellas" ], "primary_color": "Black", "secondary_color": "Green", @@ -19663,10 +19250,10 @@ "theme": "Scry", "synergies": [ "Topdeck", - "Enchantment Tokens", "Role token", + "Enchantment Tokens", "Sphinx Kindred", - "Pilot Kindred" + "Construct Kindred" ], "primary_color": "Blue", "secondary_color": "White", @@ -19744,11 +19331,11 @@ "id": "serpent-kindred", "theme": "Serpent Kindred", "synergies": [ - "Kraken Kindred", - "Leviathan Kindred", - "Octopus Kindred", - "Ward", - "Cycling" + "Cycling", + "Cost Reduction", + "Stax", + "Loot", + "X Spells" ], "primary_color": "Blue", "secondary_color": "Black", @@ -19820,9 +19407,9 @@ "theme": "Shade Kindred", "synergies": [ "Little Fellas", - "Lands Matter", "Flying", - "Toughness Matters" + "Toughness Matters", + "Counters Matter" ], "primary_color": "Black", "secondary_color": "White", @@ -19880,10 +19467,10 @@ "theme": "Shaman Kindred", "synergies": [ "Kinship", - "Magecraft", "Minotaur Kindred", "Troll Kindred", - "Treefolk Kindred" + "Treefolk Kindred", + "Goblin Kindred" ], "primary_color": "Green", "secondary_color": "Black", @@ -19920,7 +19507,7 @@ "Clones", "Flash", "Little Fellas", - "Phyrexian Kindred" + "Outlaw Kindred" ], "primary_color": "Blue", "secondary_color": "Green", @@ -19953,11 +19540,11 @@ "id": "shark-kindred", "theme": "Shark Kindred", "synergies": [ - "Outlaw Kindred", "Discard Matters", - "+1/+1 Counters", "Stax", - "Card Draw" + "Card Draw", + "Toughness Matters", + "Interaction" ], "primary_color": "Blue", "secondary_color": "Green", @@ -19991,12 +19578,7 @@ { "id": "sheep-kindred", "theme": "Sheep Kindred", - "synergies": [ - "Blink", - "Enter the Battlefield", - "Leave the Battlefield", - "Little Fellas" - ], + "synergies": [], "primary_color": "White", "secondary_color": "Blue", "example_cards": [ @@ -20015,11 +19597,11 @@ "id": "shield-counters", "theme": "Shield Counters", "synergies": [ - "Citizen Kindred", "Soldier Kindred", "Counters Matter", - "+1/+1 Counters", - "Aggro" + "Lifegain", + "Life Matters", + "Blink" ], "primary_color": "White", "secondary_color": "Green", @@ -20054,11 +19636,7 @@ "id": "shrines-matter", "theme": "Shrines Matter", "synergies": [ - "Enchantments Matter", - "Blink", - "Enter the Battlefield", - "Leave the Battlefield", - "Burn" + "Enchantments Matter" ], "primary_color": "White", "secondary_color": "Black", @@ -20093,9 +19671,9 @@ "synergies": [ "Protective Effects", "Insect Kindred", + "Beast Kindred", "Enchant", - "Equip", - "Beast Kindred" + "Auras" ], "primary_color": "Blue", "secondary_color": "Green", @@ -20134,7 +19712,7 @@ "Pirate Kindred", "Outlaw Kindred", "Flying", - "Little Fellas", + "Artifacts Matter", "Toughness Matters" ], "primary_color": "Blue", @@ -20168,11 +19746,11 @@ "id": "skeleton-kindred", "theme": "Skeleton Kindred", "synergies": [ - "Menace", - "Mill", "Exile Matters", - "Haste", - "Warrior Kindred" + "Mill", + "Outlaw Kindred", + "Warrior Kindred", + "Blink" ], "primary_color": "Black", "secondary_color": "Blue", @@ -20340,9 +19918,7 @@ { "id": "sloth-kindred", "theme": "Sloth Kindred", - "synergies": [ - "Beast Kindred" - ], + "synergies": [], "primary_color": "Green", "secondary_color": "White", "example_cards": [ @@ -20361,7 +19937,6 @@ "id": "slug-kindred", "theme": "Slug Kindred", "synergies": [ - "Big Mana", "Little Fellas" ], "primary_color": "Black", @@ -20409,7 +19984,7 @@ "Deathtouch", "Archer Kindred", "Poison Counters", - "Druid Kindred" + "Landwalk" ], "primary_color": "Green", "secondary_color": "Black", @@ -20441,30 +20016,15 @@ "popularity_bucket": "Uncommon", "description": "Focuses on getting a high number of Snake creatures into play with shared payoffs (e.g., Swampwalk and Deathtouch)." }, - { - "id": "sneak", - "theme": "Sneak", - "synergies": [ - "Ninja Kindred", - "Turtle Kindred", - "Mutant Kindred", - "Spells Matter", - "Spellslinger" - ], - "primary_color": "Black", - "secondary_color": "White", - "popularity_bucket": "Rare", - "description": "Builds around Sneak leveraging synergies with Ninja Kindred and Turtle Kindred." - }, { "id": "soldier-kindred", "theme": "Soldier Kindred", "synergies": [ "Horsemanship", "Battalion", - "Valiant", "Mentor", - "Endure" + "Endure", + "Banding" ], "primary_color": "White", "secondary_color": "Blue", @@ -20501,10 +20061,9 @@ "theme": "Soltari Kindred", "synergies": [ "Shadow", - "Soldier Kindred", + "Little Fellas", "Aggro", - "Combat Matters", - "Little Fellas" + "Combat Matters" ], "primary_color": "White", "example_commanders": [ @@ -20526,25 +20085,10 @@ "popularity_bucket": "Rare", "description": "Focuses on getting a high number of Soltari creatures into play with shared payoffs (e.g., Shadow and Aggro)." }, - { - "id": "solved", - "theme": "Solved", - "synergies": [ - "Cases Matter", - "Enchantments Matter" - ], - "primary_color": "Blue", - "secondary_color": "White", - "popularity_bucket": "Rare", - "description": "Builds around Solved leveraging synergies with Cases Matter and Enchantments Matter." - }, { "id": "soul-counters", "theme": "Soul Counters", - "synergies": [ - "Counters Matter", - "Artifacts Matter" - ], + "synergies": [], "primary_color": "Black", "example_cards": [ "Séance Board", @@ -20633,8 +20177,8 @@ "id": "spawn-kindred", "theme": "Spawn Kindred", "synergies": [ - "Drone Kindred", "Eldrazi Kindred", + "Drone Kindred", "Devoid", "Mana Dork", "Ramp" @@ -20669,10 +20213,10 @@ "theme": "Spectacle", "synergies": [ "Burn", - "Card Draw", "Aggro", "Combat Matters", - "Spells Matter" + "Spells Matter", + "Spellslinger" ], "primary_color": "Black", "example_commanders": [ @@ -20706,7 +20250,7 @@ "Wheels", "Flying", "Card Draw", - "Little Fellas" + "Burn" ], "primary_color": "Black", "example_commanders": [ @@ -20740,8 +20284,8 @@ "Storm", "Replicate", "Casualty", - "Conspire", - "Demonstrate" + "Demonstrate", + "Conspire" ], "primary_color": "Blue", "secondary_color": "Red", @@ -20850,8 +20394,8 @@ "Discard Matters", "Human Kindred", "Little Fellas", - "Removal", - "Ramp" + "Ramp", + "Removal" ], "primary_color": "Black", "secondary_color": "Blue", @@ -20957,11 +20501,11 @@ "id": "sphinx-kindred", "theme": "Sphinx Kindred", "synergies": [ - "Flying", "Scry", - "Ward", - "Hexproof", - "Conditional Draw" + "Flying", + "Topdeck", + "Conditional Draw", + "Big Mana" ], "primary_color": "Blue", "secondary_color": "White", @@ -21000,8 +20544,8 @@ "Web-slinging", "Hero Kindred", "Reach", - "Citizen Kindred", - "Deathtouch" + "Deathtouch", + "Toughness Matters" ], "primary_color": "Green", "secondary_color": "White", @@ -21074,9 +20618,9 @@ "synergies": [ "Soulshift", "Disturb", - "Afterlife", + "Endure", "Ki Counters", - "Endure" + "Afterlife" ], "primary_color": "White", "secondary_color": "Blue", @@ -21112,6 +20656,7 @@ "synergies": [ "Spells Matter", "Spellslinger", + "Removal", "Interaction" ], "primary_color": "Blue", @@ -21145,9 +20690,9 @@ "synergies": [ "Stax", "Combat Tricks", + "Interaction", "Spells Matter", - "Spellslinger", - "Interaction" + "Spellslinger" ], "primary_color": "Black", "secondary_color": "Blue", @@ -21260,7 +20805,7 @@ "Enter the Battlefield", "Leave the Battlefield", "Human Kindred", - "Artifacts Matter" + "Tokens Matter" ], "primary_color": "White", "secondary_color": "Black", @@ -21316,11 +20861,11 @@ "id": "squirrel-kindred", "theme": "Squirrel Kindred", "synergies": [ - "Forage", "Food Token", "Food", "Warlock Kindred", - "Rat Kindred" + "Tokens Matter", + "Token Creation" ], "primary_color": "Green", "secondary_color": "Black", @@ -21355,9 +20900,7 @@ { "id": "starfish-kindred", "theme": "Starfish Kindred", - "synergies": [ - "Little Fellas" - ], + "synergies": [], "primary_color": "Black", "secondary_color": "Blue", "example_commanders": [ @@ -21381,7 +20924,7 @@ "Vehicles", "Scout Kindred", "Conditional Draw", - "Cat Kindred" + "Burn" ], "primary_color": "Black", "secondary_color": "White", @@ -21432,10 +20975,10 @@ "theme": "Station", "synergies": [ "Charge Counters", - "Counters Matter", + "Flying", "Artifacts Matter", - "Lands Matter", - "Toughness Matters" + "Counters Matter", + "Lands Matter" ], "primary_color": "Blue", "secondary_color": "Green", @@ -21599,11 +21142,11 @@ "id": "stun-counters", "theme": "Stun Counters", "synergies": [ - "Lore Counters", - "Ore Counters", - "Sagas Matter", "Counters Matter", - "Stax" + "Stax", + "Loot", + "Wizard Kindred", + "Blink" ], "primary_color": "Blue", "secondary_color": "White", @@ -21642,8 +21185,8 @@ "Planeswalkers", "Proliferate", "Token Creation", - "Compleated", - "Myriad" + "Myriad", + "Loyalty Counters" ], "primary_color": "White", "secondary_color": "Blue", @@ -21761,7 +21304,7 @@ "Reanimate", "Graveyard Matters", "Topdeck", - "Detective Kindred" + "Menace" ], "primary_color": "Blue", "secondary_color": "Black", @@ -21828,9 +21371,9 @@ "synergies": [ "Survival", "Human Kindred", - "Creature Tokens", - "Token Creation", - "Tokens Matter" + "Aggro", + "Combat Matters", + "Little Fellas" ], "primary_color": "Green", "secondary_color": "White", @@ -21865,9 +21408,7 @@ "synergies": [ "Blink", "Enter the Battlefield", - "Leave the Battlefield", - "Aggro", - "Combat Matters" + "Leave the Battlefield" ], "primary_color": "Black", "secondary_color": "Red", @@ -21900,9 +21441,9 @@ "synergies": [ "Time Travel", "Time Counters", - "Alien Kindred", "Exile Matters", - "Counters Matter" + "Counters Matter", + "Toolbox" ], "primary_color": "Blue", "secondary_color": "White", @@ -21934,11 +21475,11 @@ "id": "swampcycling", "theme": "Swampcycling", "synergies": [ - "Landcycling", - "Typecycling", - "Cycling", "Land Types Matter", - "Loot" + "Cycling", + "Loot", + "Ramp", + "Discard Matters" ], "primary_color": "Black", "example_commanders": [ @@ -22096,10 +21637,10 @@ "theme": "Theft", "synergies": [ "Goad", + "Sacrifice to Draw", + "Sacrifice Matters", "Treasure Token", - "Pirate Kindred", - "Treasure", - "Sacrifice to Draw" + "Aristocrats" ], "primary_color": "Blue", "secondary_color": "Black", @@ -22174,11 +21715,11 @@ "id": "threshold", "theme": "Threshold", "synergies": [ - "Mystic Kindred", "Nomad Kindred", "Minion Kindred", "Rat Kindred", - "Centaur Kindred" + "Reanimate", + "Protection from Color" ], "primary_color": "Black", "secondary_color": "Green", @@ -22209,8 +21750,8 @@ "Sacrifice Matters", "Aristocrats", "Creature Tokens", - "Little Fellas", - "Token Creation" + "Token Creation", + "Tokens Matter" ], "primary_color": "Black", "secondary_color": "White", @@ -22291,19 +21832,6 @@ "popularity_bucket": "Rare", "description": "Focuses on getting a high number of Tiefling creatures into play with shared payoffs (e.g., Blink and Enter the Battlefield)." }, - { - "id": "tiered", - "theme": "Tiered", - "synergies": [ - "Interaction", - "Spells Matter", - "Spellslinger" - ], - "primary_color": "Red", - "secondary_color": "White", - "popularity_bucket": "Rare", - "description": "Builds around Tiered leveraging synergies with Interaction and Spells Matter." - }, { "id": "time-counters", "theme": "Time Counters", @@ -22312,7 +21840,7 @@ "Time Travel", "Impending", "Suspend", - "Doctor Kindred" + "Exile Matters" ], "primary_color": "Blue", "secondary_color": "White", @@ -22343,8 +21871,8 @@ "id": "time-travel", "theme": "Time Travel", "synergies": [ - "Suspend", "Time Counters", + "Suspend", "Exile Matters", "Counters Matter" ], @@ -22491,9 +22019,9 @@ "synergies": [ "Entwine", "Proliferate", - "Loyalty Counters", + "Citizen Kindred", "Removal", - "Counterspells" + "Convoke" ], "primary_color": "Green", "secondary_color": "White", @@ -22566,10 +22094,10 @@ "theme": "Toughness Matters", "synergies": [ "Defender", - "Wall Kindred", "Egg Kindred", - "Atog Kindred", - "Living metal" + "Convert", + "Living metal", + "More Than Meets the Eye" ], "primary_color": "Blue", "secondary_color": "White", @@ -22604,11 +22132,11 @@ "id": "toxic", "theme": "Toxic", "synergies": [ - "Mite Kindred", "Poison Counters", "Infect", - "Proliferate", - "Phyrexian Kindred" + "Phyrexian Kindred", + "Counters Matter", + "Artifacts Matter" ], "primary_color": "Green", "secondary_color": "Black", @@ -22644,9 +22172,7 @@ "theme": "Toy Kindred", "synergies": [ "Artifacts Matter", - "Little Fellas", - "Aggro", - "Combat Matters" + "Little Fellas" ], "primary_color": "White", "secondary_color": "Black", @@ -22716,11 +22242,11 @@ "id": "trample", "theme": "Trample", "synergies": [ - "Bringer Kindred", - "Mountaincycling", "Rhino Kindred", "Wurm Kindred", - "Hellion Kindred" + "Hydra Kindred", + "Hellion Kindred", + "Leviathan Kindred" ], "primary_color": "Green", "secondary_color": "Black", @@ -22757,9 +22283,9 @@ "theme": "Transform", "synergies": [ "Incubator Token", - "Metalcraft", "Incubate", - "Magecraft", + "Metalcraft", + "Battles Matter", "Graveyard Matters" ], "primary_color": "White", @@ -22796,8 +22322,7 @@ "synergies": [ "Toughness Matters", "Spells Matter", - "Spellslinger", - "Little Fellas" + "Spellslinger" ], "primary_color": "Blue", "secondary_color": "Black", @@ -22905,8 +22430,8 @@ "Druid Kindred", "Shaman Kindred", "Reach", - "Landwalk", - "Land Types Matter" + "Land Types Matter", + "Trample" ], "primary_color": "Green", "secondary_color": "Black", @@ -23029,11 +22554,11 @@ "id": "turtle-kindred", "theme": "Turtle Kindred", "synergies": [ - "Ninja Kindred", - "Sneak", - "Mutant Kindred", "Ward", - "Hexproof" + "Protective Effects", + "Toughness Matters", + "Stax", + "Little Fellas" ], "primary_color": "Blue", "secondary_color": "Green", @@ -23065,30 +22590,15 @@ "popularity_bucket": "Rare", "description": "Focuses on getting a high number of Turtle creatures into play with shared payoffs (e.g., Ward and Protective Effects)." }, - { - "id": "typecycling", - "theme": "Typecycling", - "synergies": [ - "Landcycling", - "Basic landcycling", - "Plainscycling", - "Mountaincycling", - "Forestcycling" - ], - "primary_color": "Blue", - "secondary_color": "Red", - "popularity_bucket": "Niche", - "description": "Builds around Typecycling leveraging synergies with Landcycling and Basic landcycling." - }, { "id": "tyranid-kindred", "theme": "Tyranid Kindred", "synergies": [ "Ravenous", "X Spells", - "Mana Dork", + "Ramp", "+1/+1 Counters", - "Trample" + "Counters Matter" ], "primary_color": "Green", "secondary_color": "Blue", @@ -23156,8 +22666,8 @@ "id": "unconditional-draw", "theme": "Unconditional Draw", "synergies": [ - "Learn", "Dredge", + "Learn", "Blitz", "Cantrips", "Gift" @@ -23333,11 +22843,11 @@ "id": "unicorn-kindred", "theme": "Unicorn Kindred", "synergies": [ - "Lifelink", "Lifegain", "Life Matters", + "Toughness Matters", "Little Fellas", - "+1/+1 Counters" + "Enchantments Matter" ], "primary_color": "White", "secondary_color": "Green", @@ -23408,8 +22918,7 @@ "id": "valiant", "theme": "Valiant", "synergies": [ - "Mouse Kindred", - "Soldier Kindred" + "Mouse Kindred" ], "primary_color": "White", "example_commanders": [ @@ -23435,8 +22944,8 @@ "Blood Token", "Lifegain Triggers", "Madness", - "Lifelink", - "Noble Kindred" + "Noble Kindred", + "Lifelink" ], "primary_color": "Black", "secondary_color": "White", @@ -23560,8 +23069,8 @@ "Artifacts Matter", "Crew", "Pilot Kindred", - "Living metal", - "More Than Meets the Eye" + "Convert", + "Living metal" ], "primary_color": "White", "secondary_color": "Blue", @@ -23595,11 +23104,10 @@ "id": "venture-into-the-dungeon", "theme": "Venture into the dungeon", "synergies": [ - "Toughness Matters", "Aggro", "Combat Matters", - "Human Kindred", - "Blink" + "Artifacts Matter", + "Toughness Matters" ], "primary_color": "White", "secondary_color": "Blue", @@ -23635,8 +23143,8 @@ "id": "verse-counters", "theme": "Verse Counters", "synergies": [ - "Enchantments Matter", - "Counters Matter" + "Counters Matter", + "Enchantments Matter" ], "primary_color": "Blue", "secondary_color": "Green", @@ -23668,10 +23176,10 @@ "theme": "Vigilance", "synergies": [ "Angel Kindred", - "Elder Kindred", - "Scientist Kindred", - "Alien Kindred", - "Rabbit Kindred" + "Mount Kindred", + "Griffin Kindred", + "Cat Kindred", + "Crew" ], "primary_color": "White", "secondary_color": "Green", @@ -23703,21 +23211,6 @@ "popularity_bucket": "Common", "description": "Builds around Vigilance leveraging synergies with Angel Kindred and Mount Kindred." }, - { - "id": "vivid", - "theme": "Vivid", - "synergies": [ - "Elemental Kindred", - "Blink", - "Enter the Battlefield", - "Leave the Battlefield", - "Big Mana" - ], - "primary_color": "Green", - "secondary_color": "Blue", - "popularity_bucket": "Rare", - "description": "Builds around Vivid leveraging synergies with Elemental Kindred and Blink." - }, { "id": "void", "theme": "Void", @@ -23726,7 +23219,7 @@ "Exile Matters", "Card Draw", "Burn", - "Voltron" + "Aggro" ], "primary_color": "Black", "example_commanders": [ @@ -23800,21 +23293,6 @@ "popularity_bucket": "Very Common", "description": "Stacks auras, equipment, and protection on a single threat to push commander damage with layered resilience. Synergies like Equipment Matters and Auras reinforce the plan." }, - { - "id": "volver-kindred", - "theme": "Volver Kindred", - "synergies": [ - "Kicker", - "+1/+1 Counters", - "Counters Matter", - "Voltron", - "Aggro" - ], - "primary_color": "Black", - "secondary_color": "Blue", - "popularity_bucket": "Rare", - "description": "Focuses on getting a high number of Volver creatures into play with shared payoffs (e.g., Kicker and +1/+1 Counters)." - }, { "id": "wall-kindred", "theme": "Wall Kindred", @@ -23854,11 +23332,11 @@ "id": "ward", "theme": "Ward", "synergies": [ - "Hero's Reward", + "Demigod Kindred", "Disguise", "Cloak", - "Coward Kindred", - "Demigod Kindred" + "Protective Effects", + "Turtle Kindred" ], "primary_color": "Blue", "secondary_color": "Green", @@ -23893,11 +23371,11 @@ "id": "warlock-kindred", "theme": "Warlock Kindred", "synergies": [ - "Blight", "Outlaw Kindred", "Squirrel Kindred", + "Food Token", "Rat Kindred", - "Food Token" + "Food" ], "primary_color": "Black", "secondary_color": "Blue", @@ -23970,10 +23448,10 @@ "theme": "Warrior Kindred", "synergies": [ "Mobilize", + "Exert", "Astartes Kindred", "Blitz", - "Exert", - "Azra Kindred" + "Jackal Kindred" ], "primary_color": "Green", "secondary_color": "Black", @@ -24004,30 +23482,14 @@ "popularity_bucket": "Very Common", "description": "Focuses on getting a high number of Warrior creatures into play with shared payoffs (e.g., Mobilize and Exert)." }, - { - "id": "waterbend", - "theme": "Waterbend", - "synergies": [ - "Waterbending", - "Bending", - "Ally Kindred", - "Cost Reduction", - "Warrior Kindred" - ], - "primary_color": "Blue", - "secondary_color": "Black", - "popularity_bucket": "Rare", - "description": "Builds around Waterbend leveraging synergies with Waterbending and Bending." - }, { "id": "waterbending", "theme": "Waterbending", "synergies": [ - "Waterbend", "Bending", - "Ally Kindred", "Cost Reduction", - "Warrior Kindred" + "Card Draw", + "Big Mana" ], "primary_color": "Blue", "secondary_color": "White", @@ -24078,8 +23540,7 @@ "theme": "Web-slinging", "synergies": [ "Hero Kindred", - "Spider Kindred", - "Human Kindred" + "Spider Kindred" ], "primary_color": "White", "secondary_color": "Green", @@ -24113,13 +23574,7 @@ { "id": "weird-kindred", "theme": "Weird Kindred", - "synergies": [ - "Toughness Matters", - "Spells Matter", - "Spellslinger", - "Burn", - "Little Fellas" - ], + "synergies": [], "primary_color": "Blue", "secondary_color": "Black", "example_commanders": [ @@ -24178,8 +23633,8 @@ "Flying", "Big Mana", "Toughness Matters", - "Blink", - "Enter the Battlefield" + "Aggro", + "Combat Matters" ], "primary_color": "Blue", "example_commanders": [ @@ -24274,8 +23729,6 @@ "id": "will-of-the-council", "theme": "Will of the council", "synergies": [ - "Card Draw", - "Interaction", "Spells Matter", "Spellslinger" ], @@ -24374,8 +23827,8 @@ "Moonfolk Kindred", "Vedalken Kindred", "Otter Kindred", - "Merfolk Kindred", - "Magecraft" + "Magecraft", + "Merfolk Kindred" ], "primary_color": "Blue", "secondary_color": "Black", @@ -24412,10 +23865,10 @@ "theme": "Wolf Kindred", "synergies": [ "Werewolf Kindred", - "Daybound", - "Nightbound", "Flash", - "Creature Tokens" + "Creature Tokens", + "Token Creation", + "Tokens Matter" ], "primary_color": "Green", "secondary_color": "Black", @@ -24487,9 +23940,9 @@ "synergies": [ "Sacrifice Matters", "Aristocrats", - "Creature Tokens", - "Token Creation", - "Tokens Matter" + "Little Fellas", + "Aggro", + "Combat Matters" ], "primary_color": "Black", "secondary_color": "Blue", @@ -24524,8 +23977,7 @@ "Swampwalk", "Landwalk", "Lands Matter", - "Big Mana", - "Aggro" + "Big Mana" ], "primary_color": "Black", "example_commanders": [ @@ -24563,8 +24015,8 @@ "Trample", "Phyrexian Kindred", "Big Mana", - "Aggro", - "Combat Matters" + "+1/+1 Counters", + "Aggro" ], "primary_color": "Green", "secondary_color": "Black", @@ -24597,11 +24049,11 @@ "id": "x-spells", "theme": "X Spells", "synergies": [ - "Firebending", - "Ravenous", - "Undaunted", "Affinity", - "Cost Reduction" + "Ravenous", + "Firebending", + "Cost Reduction", + "Undaunted" ], "primary_color": "Blue", "secondary_color": "Green", @@ -24755,10 +24207,7 @@ "id": "plus1-plus0-counters", "theme": "\\+1/\\+0 Counters", "synergies": [ - "Counters Matter", - "Toughness Matters", - "Little Fellas", - "Big Mana" + "Counters Matter" ], "primary_color": "Red", "secondary_color": "Black", @@ -24783,9 +24232,7 @@ { "id": "plus2-plus2-counters", "theme": "\\+2/\\+2 Counters", - "synergies": [ - "Counters Matter" - ], + "synergies": [], "primary_color": "Black", "secondary_color": "Green", "example_commanders": [ @@ -24806,3674 +24253,379 @@ } ], "frequencies_by_base_color": { - "white": { - "Aggro": 2179, - "Artifacts Matter": 1123, - "Combat Matters": 2179, - "Equip": 70, - "Equipment": 73, - "Equipment Matters": 300, - "Voltron": 1363, - "Big Mana": 1742, - "Bird Kindred": 225, - "Blink": 1090, - "Enter the Battlefield": 1090, - "Flying": 1016, - "Guest Kindred": 2, - "Leave the Battlefield": 1101, - "Life Matters": 1672, - "Lifegain": 1671, - "Little Fellas": 2455, - "Toughness Matters": 1393, - "Mill": 673, - "Spells Matter": 1679, - "Spellslinger": 1679, - "Auras": 468, - "Enchantments Matter": 1240, - "Ally Kindred": 110, - "Avatar Kindred": 54, - "Creature Tokens": 849, - "Historics Matter": 1241, - "Human Kindred": 1767, - "Legends Matter": 1241, - "Token Creation": 998, - "Tokens Matter": 1012, - "Cantrips": 126, - "Card Draw": 661, - "Combat Tricks": 272, - "Interaction": 1324, - "Unconditional Draw": 229, - "Bending": 23, - "Cost Reduction": 135, - "Flash": 144, - "Scry": 101, - "Topdeck": 302, - "Waterbend": 4, - "Waterbending": 5, - "+1/+1 Counters": 754, - "Aristocrats": 285, - "Counters Matter": 1104, - "Reanimate": 362, - "Sacrifice Matters": 285, - "Vigilance": 430, - "Airbend": 12, - "Airbending": 13, - "Exile Matters": 200, - "Experience Counters": 8, - "Earthbend": 5, - "Earthbending": 6, - "Landfall": 31, - "Lands Matter": 491, - "Transform": 121, - "Midrange": 184, - "Reach": 28, - "Spirit Kindred": 341, - "Trample": 90, - "Lifelink": 423, - "Beast Kindred": 60, - "Sloth Kindred": 4, - "Gargoyle Kindred": 19, - "Protection": 85, - "Protection from Color": 117, - "Protective Effects": 564, - "Griffin Kindred": 50, - "Cleric Kindred": 468, - "Backgrounds Matter": 12, - "Choose a background": 5, - "Soldier Kindred": 842, - "Warrior Kindred": 307, - "Control": 379, - "Toolbox": 143, - "Bard Kindred": 14, - "First strike": 184, - "Removal": 592, - "Burn": 513, - "Deserts Matter": 14, - "Land Types Matter": 92, - "Pingers": 98, - "Haunt": 6, - "Thrull Kindred": 10, - "Lammasu Kindred": 3, - "Stax": 655, - "Counterspells": 56, - "Devoid": 4, - "X Spells": 200, - "Ward": 74, - "Cat Kindred": 194, - "Entwine": 7, - "Bolster": 15, - "Mana Rock": 69, - "Ramp": 198, - "Sacrifice to Draw": 75, - "Outlast": 8, - "Dog Kindred": 46, - "Mana Dork": 58, - "Morph": 27, - "Enchant": 314, - "Knight Kindred": 359, - "Battle Cry": 7, - "Survival": 7, - "Survivor Kindred": 8, - "Channel": 7, - "Citizen Kindred": 63, - "Artifact Tokens": 227, - "Charge Counters": 14, - "Clones": 88, - "Station": 7, - "Indestructible": 216, - "Vampire Kindred": 86, - "Gnome Kindred": 16, - "Unicorn Kindred": 31, - "Angel Kindred": 291, - "Theft": 35, - "Planeswalkers": 165, - "Politics": 91, - "Superfriends": 165, - "Merfolk Kindred": 27, - "Alien Kindred": 5, - "Emerge": 1, - "Board Wipes": 214, - "Double strike": 68, - "Eternalize": 4, - "Zombie Kindred": 53, - "Melee": 6, - "Dragon Kindred": 85, - "Haste": 72, - "Scout Kindred": 90, - "Construct Kindred": 26, - "Hexproof": 89, - "Shield Counters": 16, - "Convoke": 39, - "Artificer Kindred": 82, - "Vehicles": 90, - "Dwarf Kindred": 64, - "Crew": 25, - "Elephant Kindred": 43, - "Performer Kindred": 7, - "Support": 9, - "Shroud": 26, - "Wizard Kindred": 214, - "Lifegain Triggers": 54, - "Hero Kindred": 50, - "Stun Counters": 12, - "Take 59 Flights of Stairs": 1, - "Take the Elevator": 1, - "Druid Kindred": 35, - "Pilot Kindred": 28, - "Energy": 31, - "Energy Counters": 29, - "Resource Engine": 31, - "Servo Kindred": 13, - "Conspire": 3, - "Spell Copy": 29, - "Conditional Draw": 167, - "Defender": 68, - "Giant Kindred": 64, - "Wall Kindred": 49, - "Advisor Kindred": 67, - "Detective Kindred": 31, - "Suspect": 1, - "Exert": 10, - "Goblin Kindred": 16, - "Clue Token": 43, - "Monk Kindred": 83, - "Quest Counters": 10, - "Revolt": 8, - "Prowess": 13, - "Lore Counters": 65, - "Ore Counters": 75, - "Sagas Matter": 90, - "Loyalty Counters": 22, - "Strive": 5, - "Kithkin Kindred": 85, - "Compleated": 2, - "Infect": 52, - "Poison Counters": 30, - "Dinosaur Kindred": 55, - "Kor Kindred": 88, - "Partner": 15, - "Exalted": 22, - "Heroic": 16, - "Cycling": 102, - "Discard Matters": 189, - "Loot": 126, - "Landcycling": 17, - "Phyrexian Kindred": 93, - "Plainscycling": 13, - "Samurai Kindred": 49, - "Typecycling": 17, - "Kirin Kindred": 8, - "Leech Kindred": 1, - "Mount Kindred": 24, - "Deathtouch": 25, - "Faerie Kindred": 20, - "Outlaw Kindred": 101, - "Warlock Kindred": 28, - "Golem Kindred": 25, - "Flurry": 6, - "Elf Kindred": 90, - "Partner with": 13, - "Centaur Kindred": 19, - "Fuse": 8, - "Assassin Kindred": 22, - "Warp": 9, - "Buyback": 9, - "Join forces": 1, - "Rogue Kindred": 56, - "Draw Triggers": 114, - "Replacement Draw": 2, - "Wheels": 125, - "Gates Matter": 50, - "Investigate": 42, - "Nymph Kindred": 6, - "Protection from Quality": 62, - "Memory Counters": 1, - "Card Selection": 11, - "Explore": 9, - "Coven": 13, - "Peasant Kindred": 27, - "Surveil": 20, - "Rebel Kindred": 67, - "Endure": 3, - "Flashback": 37, - "Elder Kindred": 19, - "Spider Kindred": 24, - "Delirium": 10, - "Encore": 6, - "Fabricate": 5, - "Embalm": 8, - "Split second": 3, - "Eldrazi Kindred": 9, - "Lieutenant": 4, - "Affinity": 17, - "Mercenary Kindred": 23, - "-1/-1 Counters": 67, - "Demigod Kindred": 3, - "Menace": 29, - "Berserker Kindred": 4, - "Toxic": 10, - "Impulse": 24, - "Pillowfort": 26, - "Token Modification": 15, - "Frog Kindred": 3, - "Multikicker": 4, - "Corrupted": 7, - "Food": 44, - "Food Token": 38, - "Aftermath": 9, - "Ninja Kindred": 29, - "Bushido": 20, - "Toy Kindred": 5, - "Web-slinging": 6, - "Enlist": 5, - "Noble Kindred": 62, - "Ranger Kindred": 17, - "Monarch": 18, - "Eminence": 4, - "Archer Kindred": 29, - "Pegasus Kindred": 25, - "Doctor Kindred": 20, - "For Auld Lang Syne": 1, - "Modular": 5, - "Assembly-Worker Kindred": 2, - "Convert": 9, - "Eye Kindred": 10, - "Living metal": 7, - "More Than Meets the Eye": 8, - "Robot Kindred": 36, - "Kicker": 51, - "Arrow Counters": 1, - "Halfling Kindred": 26, - "Archon Kindred": 20, - "Constellation": 10, - "Detain": 9, - "Bargain": 2, - "Fox Kindred": 45, - "Age Counters": 21, - "Cumulative upkeep": 17, - "Cascade": 9, - "Metalcraft": 10, - "Adamant": 3, - "Oil Counters": 3, - "Orc Kindred": 20, - "Wurm Kindred": 7, - "Sliver Kindred": 36, - "Armadillo Kindred": 1, - "Horse Kindred": 14, - "Celebration": 6, - "Mouse Kindred": 18, - "Addendum": 7, - "Rebound": 9, - "Domain": 8, - "Vedalken Kindred": 10, - "Elemental Kindred": 88, - "Astartes Kindred": 12, - "Muster Counters": 1, - "Storm": 3, - "Brand-new Sky": 1, - "God Kindred": 30, - "Coin Counters": 1, - "Egg Kindred": 2, - "Shaman Kindred": 28, - "Atog Kindred": 4, - "Horror Kindred": 24, - "Proliferate": 16, - "Suspend": 23, - "Time Counters": 33, - "Incubator Token": 14, - "Shadow": 12, - "Saproling Kindred": 13, - "Disguise": 12, - "Mentor": 12, - "Gold Counters": 1, - "Gold Token": 7, - "Prototype": 3, - "Firebending": 3, - "Plot": 5, - "Feather Counters": 3, - "Vanishing": 7, - "Megamorph": 5, - "Threshold": 23, - "Amplify": 2, - "Spellshaper Kindred": 10, - "Changeling": 14, - "Shapeshifter Kindred": 21, - "Boast": 5, - "Banding": 20, - "Filibuster Counters": 1, - "Sphinx Kindred": 21, - "Wind Walk": 1, - "Protection from Creature Type": 8, - "Miracle": 8, - "Doctor's Companion": 8, - "Doctor's companion": 8, - "History Teacher": 1, - "Thopter Kindred": 10, - "Venture into the dungeon": 14, - "Ox Kindred": 16, - "Extort": 11, - "Mite Kindred": 9, - "Caves Matter": 2, - "Radiance": 6, - "Myriad": 7, - "Treasure": 29, - "Treasure Token": 32, - "Finality Counters": 9, - "Rabbit Kindred": 28, - "Lure the Unwary": 1, - "Insect Kindred": 13, - "Bat Kindred": 18, - "Master of Machines": 1, - "Ultima Founding": 1, - "Enrage": 4, - "Incarnation Kindred": 8, - "Disturb": 14, - "Protection from Creatures": 7, - "Flanking": 17, - "Enchantment Tokens": 22, - "Role token": 10, - "Elk Kindred": 11, - "Fish Kindred": 4, - "Mine Vibranium": 1, - "Survey the Realm": 1, - "Ninjutsu": 1, - "For Mirrodin!": 6, - "Minotaur Kindred": 10, - "Escalate": 3, - "Splice": 5, - "Hippogriff Kindred": 7, - "Phasing": 20, - "Inkling Kindred": 6, - "Backup": 7, - "Demon Kindred": 14, - "Mobilize": 7, - "Blessing Counters": 1, - "Nomad Kindred": 21, - "Battalion": 13, - "Alliance": 9, - "Saddle": 13, - "Fateful hour": 6, - "Reinforce": 5, - "Soulbond": 4, - "Sheep Kindred": 4, - "Weasel Kindred": 1, - "Possum Kindred": 1, - "Fight": 6, - "Incubate": 12, - "Assist": 4, - "Bringer Kindred": 5, - "Daybound": 1, - "Nightbound": 1, - "Werewolf Kindred": 2, - "Raccoon Kindred": 1, - "Storage Counters": 4, - "Unity Counters": 1, - "Licid Kindred": 2, - "Camel Kindred": 5, - "Lhurgoyf Kindred": 1, - "Discover": 5, - "Devour": 1, - "Goat Kindred": 8, - "... Catch": 1, - "Throw ...": 1, - "Employee Kindred": 4, - "Level Counters": 8, - "Level Up": 7, - "Cases Matter": 4, - "Solved": 3, - "Evoke": 9, - "Populate": 16, - "Bestow": 13, - "Omen Counters": 1, - "Healing Tears": 1, - "Retrace": 2, - "Squid Kindred": 1, - "Behold": 3, - "Champion": 2, - "Troll Kindred": 2, - "Collection Counters": 1, - "Ogre Kindred": 2, - "Dryad Kindred": 10, - "Forestwalk": 1, - "Landwalk": 14, - "Manticore Kindred": 1, - "Sleight Counters": 1, - "Rampage": 2, - "Jump": 1, - "Cid, Timeless Artificer": 1, - "Multiple Copies": 3, - "Renown": 9, - "Craft": 6, - "Graveyard Matters": 7, - "Magecraft": 8, - "Mountainwalk": 2, - "Tiered": 2, - "Drake Kindred": 7, - "Reconfigure": 3, - "Flagbearer Kindred": 3, - "Chimera Kindred": 3, - "Treefolk Kindred": 17, - "Hideaway": 4, - "Exploit": 1, - "Squirrel Kindred": 3, - "Crash Landing": 1, - "Junk Token": 2, - "Junk Tokens": 3, - "Leading from the Front": 1, - "Summary Execution": 1, - "Bring it Down!": 1, - "Command Section": 1, - "Clown Kindred": 3, - "Open an Attraction": 2, - "Boar Kindred": 4, - "Foretell": 15, - "Will of the council": 4, - "Homunculus Kindred": 3, - "One for My Baby": 1, - "Strife Counters": 1, - "Illusion Kindred": 4, - "Gift": 6, - "Mutate": 9, - "Eerie": 5, - "Rooms Matter": 12, - "Coward Kindred": 2, - "Overload": 3, - "Job select": 5, - "Mutant Kindred": 28, - "Sneak": 11, - "Turtle Kindred": 15, - "Rhino Kindred": 24, - "Hope Counters": 1, - "Mold Earth": 1, - "Fade Counters": 2, - "Fading": 2, - "Provoke": 3, - "Volver Kindred": 3, - "Delay Counters": 1, - "Dragonfire Dive": 1, - "Jackal Kindred": 1, - "Freerunning": 2, - "Intervention Counters": 1, - "Sculpture Kindred": 1, - "Scientist Kindred": 9, - "Gae Bolg": 1, - "Coyote Kindred": 1, - "Lairs Matter": 3, - "Wither": 2, - "Nephilim Kindred": 4, - "Sand Kindred": 2, - "Bear Kindred": 9, - "Fear": 2, - "Blood Token": 4, - "Efreet Kindred": 3, - "Umbra armor": 5, - "Blind Betrayal": 1, - "Hexproof from": 7, - "Praetor Kindred": 3, - "Djinn Kindred": 10, - "Escape": 3, - "Max speed": 9, - "Start your engines!": 10, - "Awaken": 5, - "Squad": 6, - "Epic": 1, - "Glimmer Kindred": 5, - "Veil of Time": 1, - "Lifeloss": 9, - "Lifeloss Triggers": 9, - "Blight": 3, - "Demonstrate": 1, - "Imprint": 1, - "Judgment Counters": 1, - "Ki Counters": 2, - "Swampwalk": 2, - "Hunger Counters": 1, - "Nightmare Kindred": 13, - "Cleave": 3, - "Cost Scaling": 5, - "Modal": 5, - "Spree": 5, - "Monstrosity": 5, - "Offspring": 4, - "Valiant": 6, - "Jellyfish Kindred": 2, - "Depletion Counters": 4, - "Cyclops Kindred": 1, - "Madness": 2, - "Healing Counters": 2, - "The Allagan Eye": 1, - "Lizard Kindred": 4, - "Moonfolk Kindred": 3, - "Rat Kindred": 6, - "Map Token": 3, - "Fungus Kindred": 3, - "Spell mastery": 4, - "Meld": 2, - "Gith Kindred": 2, - "Psychic Defense": 1, - "Basic landcycling": 4, - "Shrines Matter": 6, - "Inspired": 2, - "Myr Kindred": 5, - "Antelope Kindred": 3, - "Powerstone Token": 4, - "Skulk": 1, - "Rites of Banishment": 1, - "Plant Kindred": 5, - "Rally": 8, - "Training": 7, - "Horsemanship": 7, - "Snake Kindred": 1, - "Manifest": 6, - "Learn": 5, - "Bribery Counters": 1, - "Hag Kindred": 3, - "Hare Apparent": 1, - "Friends Forever": 4, - "Sage Project": 1, - "Persist": 7, - "Task Counters": 1, - "Echo": 3, - "Slith Kindred": 2, - "Hoofprint Counters": 1, - "Soulshift": 5, - "Science Teacher": 1, - "Javelin Counters": 1, - "Credit Counters": 1, - "Protection Fighting Style": 1, - "Tiefling Kindred": 1, - "Connive": 7, - "Ascend": 7, - "Duty Counters": 1, - "Goad": 12, - "Afterlife": 8, - "Hunt for Heresy": 1, - "Inquisitor Kindred": 1, - "Unquestionable Wisdom": 1, - "Valor Counters": 1, - "Battles Matter": 11, - "Yeti Kindred": 1, - "-1/-0 Counters": 1, - "Ravenous": 1, - "Kavu Kindred": 4, - "Companion": 6, - "Hamster Kindred": 2, - "Phoenix Kindred": 3, - "Octopus Kindred": 3, - "Ghostform Counters": 1, - "Divinity Counters": 2, - "Ouphe Kindred": 1, - "Vivid": 1, - "Kinship": 2, - "-0/-1 Counters": 1, - "Deserter Kindred": 1, - "Adapt": 1, - "Partner - Father & Son": 1, - "Council's dilemma": 2, - "Chroma": 2, - "Aegis Counters": 1, - "Read Ahead": 2, - "Life to Draw": 1, - "Reprieve Counters": 1, - "Germ Kindred": 1, - "Living weapon": 1, - "Raid": 4, - "Chapter Master": 1, - "Master Tactician": 1, - "Exhaust": 1, - "Bounty Counters": 2, - "Gremlin Kindred": 1, - "Cohort": 4, - "Morbid": 1, - "Spore Counters": 2, - "Mystic Kindred": 5, - "Rogue Trader": 1, - "Incarnation Counters": 1, - "Clash": 5, - "Soul Counters": 1, - "Improvise": 1, - "Grandeur": 1, - "Tribute": 1, - "Carrion Counters": 1, - "Impending": 1, - "First Contact": 1, - "Synth Kindred": 1, - "Forecast": 8, - "Forestcycling": 1, - "Palliation Counters": 1, - "Will of the Planeswalkers": 1, - "Offering": 1, - "Parley": 4, - "Hippo Kindred": 2, - "Phelddagrif Kindred": 2, - "Skeleton Kindred": 3, - "Hydra Kindred": 3, - "Devotion Counters": 1, - "Starfish Kindred": 1, - "Unearth": 6, - "Converge": 3, - "Crystal Counters": 1, - "Vow Counters": 1, - "Study Counters": 1, - "Isolation Counters": 1, - "Dream Counters": 2, - "Scarecrow Kindred": 1, - "Natural Shelter": 1, - "Brain Counters": 1, - "Dash": 1, - "Angelo Cannon": 1, - "Crab Kindred": 1, - "The Last Centurion": 1, - "Bad Wolf": 1, - "Wolf Kindred": 7, - "\\+0/\\+1 Counters": 3, - "Islandcycling": 1, - "Satyr Kindred": 1, - "Keen Sight": 1, - "Training Counters": 1, - "Share Intelligence": 1, - "Verse Counters": 2, - "Shark Kindred": 1, - "Shade Kindred": 1, - "The Nuka-Cola Challenge": 1, - "Zubera Kindred": 1, - "Medicus Ministorum": 1, - "Otter Kindred": 1, - "Sokratic Dialogue": 1, - "Soltari Kindred": 10, - "Echo Counters": 1, - "Concealed Position": 1, - "Intimidate": 1, - "Reflection Kindred": 1, - "Rough Divide": 1, - "Story Counters": 1, - "Drone Kindred": 1, - "Metathran Kindred": 1, - "Undaunted": 1, - "Harpy Kindred": 1, - "Recover": 1, - "Ripple": 1, - "Islandwalk": 1, - "Brave Heart": 1, - "Tempest Hawk": 1, - "Tempting offer": 2, - "Collect evidence": 1, - "Enlightened Counters": 1, - "I. AM. TALKING!": 1, - "Spheres Matter": 1, - "Peaceful Coexistence": 1, - "Time Travel": 2, - "How Civil of You": 1, - "Crushing Teeth": 1, - "Currency Counters": 1, - "Trap Counters": 1, - "Fate Counters": 1, - "Praesidium Protectiva": 1, - "Hyena Kindred": 2, - "Formidable": 1, - "Cloak": 2, - "Manifest dread": 1, - "Blessing of Light": 1, - "Aegis of the Emperor": 1, - "Custodes Kindred": 1, - "Invitation Counters": 1, - "Look to the Stars": 1, - "Monger Kindred": 1, - "Ice Counters": 1, - "Wild Card": 1, - "Serpent Kindred": 1, - "Call for Aid": 1, - "Stall for Time": 1, - "Pray for Protection": 1, - "Strike a Deal": 1, - "Kick Counters": 1 - }, - "blue": { - "Blink": 875, - "Enter the Battlefield": 875, - "Guest Kindred": 4, - "Human Kindred": 1034, - "Leave the Battlefield": 878, - "Little Fellas": 2230, - "Outlaw Kindred": 370, - "Rogue Kindred": 248, - "Casualty": 5, - "Spell Copy": 143, - "Spells Matter": 2454, - "Spellslinger": 2454, - "Topdeck": 662, - "Aggro": 1655, - "Ally Kindred": 47, - "Artifacts Matter": 1066, - "Avatar Kindred": 51, - "Big Mana": 2062, - "Combat Matters": 1655, - "Creature Tokens": 431, - "Historics Matter": 1182, - "Legends Matter": 1182, - "Token Creation": 596, - "Tokens Matter": 598, - "+1/+1 Counters": 508, - "Bending": 30, - "Counters Matter": 908, - "Earthbend": 2, - "Earthbending": 3, - "Flying": 1195, - "Landfall": 28, - "Lands Matter": 574, - "Transform": 118, - "Voltron": 959, - "Airbend": 2, - "Airbending": 3, - "Cost Reduction": 233, - "Exile Matters": 272, - "Flash": 243, - "Midrange": 104, - "Reach": 17, - "Spirit Kindred": 222, - "Toughness Matters": 1473, - "Trample": 87, - "Waterbend": 22, - "Waterbending": 23, - "Bird Kindred": 223, - "Astartes Kindred": 6, - "Cascade": 18, - "Mark of Chaos Ascendant": 1, - "Warrior Kindred": 106, - "Card Draw": 1674, - "Discard Matters": 491, - "Unconditional Draw": 642, - "Aristocrats": 189, - "Auras": 413, - "Enchant": 348, - "Enchantments Matter": 955, - "Sacrifice Matters": 179, - "Theft": 168, - "Elf Kindred": 54, - "Mill": 950, - "Reanimate": 814, - "Shaman Kindred": 45, - "Horror Kindred": 83, - "Insect Kindred": 21, - "Eye Kindred": 7, - "Manifest": 18, - "Manifest dread": 11, - "Control": 898, - "Counterspells": 425, - "Interaction": 1162, - "Stax": 1200, - "Fish Kindred": 55, - "Probing Telepathy": 1, - "Protective Effects": 358, - "Ward": 110, - "Treefolk Kindred": 1, - "Draw Triggers": 324, - "Loot": 366, - "Morph": 50, - "Wheels": 370, - "Shroud": 48, - "Threshold": 13, - "Noble Kindred": 55, - "Octopus Kindred": 55, - "Protection from Color": 31, - "Life Matters": 301, - "Lifegain": 300, - "Removal": 406, - "Devoid": 44, - "Eldrazi Kindred": 54, - "Ramp": 256, - "Scion Kindred": 6, - "Drake Kindred": 93, - "Kicker": 64, - "Wizard Kindred": 826, - "X Spells": 320, - "Equipment Matters": 120, - "Conditional Draw": 381, - "Defender": 88, - "Wall Kindred": 47, - "Artifact Tokens": 230, - "Thopter Kindred": 30, - "Cantrips": 267, - "Assassin Kindred": 30, - "Freerunning": 4, - "Menace": 34, - "Board Wipes": 107, - "Equipment": 31, - "Reconfigure": 3, - "Charge Counters": 17, - "Mana Dork": 115, - "Unicorn Kindred": 1, - "Burn": 338, - "Pingers": 88, - "Illusion Kindred": 108, - "Haste": 51, - "Pirate Kindred": 94, - "Finality Counters": 5, - "Raid": 11, - "Artificer Kindred": 104, - "Doctor Kindred": 26, - "Doctor's Companion": 7, - "Doctor's companion": 6, - "Ultimate Sacrifice": 1, - "Clones": 229, - "Merfolk Kindred": 289, - "Token Modification": 9, - "Drone Kindred": 29, - "Zombie Kindred": 155, - "Vehicles": 71, - "Giant Kindred": 27, - "Turtle Kindred": 46, - "Suspend": 31, - "Time Counters": 41, - "Impulse": 41, - "Soldier Kindred": 151, - "Combat Tricks": 181, - "Strive": 4, - "Cleric Kindred": 45, - "Enchantment Tokens": 17, - "Inspired": 7, - "Beast Kindred": 79, - "Elemental Kindred": 189, - "Adapt": 10, - "Homunculus Kindred": 26, - "Mutant Kindred": 69, - "Serpent Kindred": 60, - "Toolbox": 118, - "Energy": 42, - "Energy Counters": 39, - "Resource Engine": 42, - "Saproling Kindred": 3, - "Sacrifice to Draw": 137, - "Politics": 73, - "Servo Kindred": 4, - "Vedalken Kindred": 75, - "Max speed": 5, - "Start your engines!": 5, - "Scry": 191, - "Deathtouch": 34, - "Phyrexian Kindred": 79, - "Shapeshifter Kindred": 89, - "Evoke": 9, - "Leviathan Kindred": 30, - "Whale Kindred": 19, - "Conspire": 4, - "Detective Kindred": 48, - "Sphinx Kindred": 83, - "Renew": 4, - "Shield Counters": 11, - "Fight": 6, - "Clue Token": 70, - "Advisor Kindred": 60, - "Dinosaur Kindred": 17, - "Otter Kindred": 21, - "Robot Kindred": 45, - "Stun Counters": 62, - "Cleave": 6, - "Faerie Kindred": 127, - "Lifelink": 68, - "Warlock Kindred": 27, - "Goad": 20, - "Spellshaper Kindred": 11, - "Reflection Kindred": 3, - "Planeswalkers": 167, - "Sagas Matter": 67, - "Superfriends": 167, - "Storm": 11, - "Time Travel": 4, - "Domain": 8, - "Siren Kindred": 23, - "Backgrounds Matter": 14, - "Choose a background": 7, - "Halfling Kindred": 4, - "Discover": 5, - "Vigilance": 148, - "Partner with": 15, - "Gates Matter": 79, - "Investigate": 69, - "Foretell": 18, - "God Kindred": 26, - "Flashback": 48, - "Dragon Kindred": 117, - "Alien Kindred": 14, - "Surveil": 85, - "Changeling": 15, - "Frog Kindred": 42, - "Salamander Kindred": 10, - "Encore": 6, - "Treasure": 43, - "Treasure Token": 44, - "Lore Counters": 51, - "Ore Counters": 58, - "Volver Kindred": 3, - "Age Counters": 37, - "Cumulative upkeep": 26, - "Crab Kindred": 43, - "Basic landcycling": 6, - "Cycling": 109, - "Landcycling": 17, - "Typecycling": 19, - "Elder Kindred": 18, - "Hexproof": 113, - "Vampire Kindred": 29, - "Protection": 30, - "Scientist Kindred": 32, - "Ninja Kindred": 46, - "Flood Counters": 5, - "Monarch": 12, - "Manifestation Counters": 1, - "For Auld Lang Syne": 1, - "Quest Counters": 6, - "Cipher": 10, - "Prototype": 4, - "Learn": 4, - "Aura Swap": 1, - "Mutate": 12, - "Magecraft": 12, - "Mount Kindred": 2, - "Saddle": 1, - "Archon Kindred": 2, - "Detain": 7, - "Exalted": 12, - "Metalcraft": 8, - "Kraken Kindred": 37, - "Slumber Counters": 1, - "Cat Kindred": 29, - "Protection from Quality": 16, - "Knight Kindred": 54, - "Addendum": 5, - "Construct Kindred": 27, - "Mouse Kindred": 1, - "Heroic": 11, - "Convoke": 20, - "Angel Kindred": 32, - "Cyberman Kindred": 4, - "Nightmare Kindred": 29, - "Role token": 6, - "Infect": 49, - "Poison Counters": 11, - "Equip": 27, - "Affinity": 26, - "Incubate": 4, - "Incubator Token": 4, - "Project Image": 1, - "Hero Kindred": 33, - "Job select": 4, - "Oil Counters": 13, - "Atog Kindred": 5, - "-1/-1 Counters": 70, - "Proliferate": 36, - "Archer Kindred": 6, - "Experience Counters": 5, - "Partner - Father & Son": 1, - "Druid Kindred": 35, - "Troll Kindred": 3, - "Kithkin Kindred": 11, - "Elephant Kindred": 6, - "Firebending": 5, - "Amass": 22, - "Army Kindred": 21, - "Embalm": 7, - "Feather Counters": 2, - "Scout Kindred": 57, - "Jellyfish Kindred": 23, - "Banding": 1, - "Indestructible": 36, - "Filibuster Counters": 1, - "Mana Rock": 76, - "Griffin Kindred": 6, - "Land Types Matter": 66, - "First strike": 29, - "Rat Kindred": 17, - "Performer Kindred": 7, - "Sheep Kindred": 2, - "Monkey Kindred": 3, - "Disturb": 14, - "Peasant Kindred": 5, - "Crew": 34, - "Beeble Kindred": 3, - "Venture into the dungeon": 9, - "Improvise": 9, - "Demon Kindred": 20, - "Lord of Torment": 1, - "Prince of Chaos": 1, - "Jump": 8, - "Jump-start": 8, - "Fuse": 8, - "Cloak": 4, - "Collect evidence": 8, - "Master of Machines": 1, - "Ultima Founding": 1, - "Megamorph": 9, - "Islandwalk": 25, - "Landwalk": 50, - "Djinn Kindred": 48, - "Ingest": 5, - "Shark Kindred": 16, - "Horse Kindred": 9, - "Hydra Kindred": 6, - "Loyalty Counters": 19, - "Egg Kindred": 2, - "Fractal Kindred": 10, - "Friends Forever": 3, - "For Mirrodin!": 1, - "Rebel Kindred": 4, - "Rebound": 9, - "Weird Kindred": 16, - "Support": 2, - "Specter Kindred": 5, - "Efreet Kindred": 11, - " Blood Counters": 2, - "Blood Token": 4, - "Prowess": 47, - "Overload": 11, - "Bard Kindred": 9, - "Ox Kindred": 1, - "Cyclops Kindred": 4, - "Rooms Matter": 19, - "Lizard Kindred": 17, - "Card Selection": 14, - "Explore": 13, - "Map Token": 6, - "Unearth": 9, - "Craft": 7, - "Net Counters": 2, - "Replacement Draw": 3, - "Goblin Kindred": 19, - "Phasing": 45, - "Food": 14, - "Food Token": 10, - "Golem Kindred": 17, - "Converge": 7, - "Hag Kindred": 2, - "Partner": 14, - "Corrupted": 2, - "Bringer Kindred": 5, - "Clash": 8, - "Madness": 7, - "Citizen Kindred": 19, - "Myriad": 2, - "Snake Kindred": 45, - "Berserker Kindred": 1, - "Enrage": 1, - "Myr Kindred": 6, - "Disguise": 8, - "Storage Counters": 4, - "Spell mastery": 4, - "Retrace": 4, - "Demigod Kindred": 2, - "Ki Counters": 2, - "Buyback": 9, - "... Catch": 1, - "Throw ...": 1, - "Orc Kindred": 23, - "Cases Matter": 3, - "Solved": 3, - "Harpy Kindred": 1, - "Dwarf Kindred": 4, - "Fabricate": 1, - "Populate": 2, - "Shred Counters": 1, - "Squid Kindred": 8, - "Dog Kindred": 8, - "Nautilus Kindred": 3, - "Mayhem": 2, - "Eternalize": 3, - "Level Counters": 9, - "Behold": 3, - "Connive": 21, - "Monstrosity": 5, - "Bestow": 9, - "Manticore Kindred": 1, - "Sleight Counters": 1, - "Rampage": 2, - "Vanishing": 6, - "Cid, Timeless Artificer": 1, - "Multiple Copies": 3, - "Gnome Kindred": 5, - "Evolve": 11, - "Kirin Kindred": 2, - "Fade Counters": 3, - "Fading": 3, - "Awaken": 6, - "Transmute": 9, - "Undaunted": 1, - "Kavu Kindred": 4, - "Chimera Kindred": 11, - "Warp": 11, - "Lhurgoyf Kindred": 2, - "Pillowfort": 8, - "Channel": 9, - "Open an Attraction": 5, - "Roll to Visit Your Attractions": 1, - "Aftermath": 9, - "Surge": 6, - "Replicate": 11, - "Splice": 10, - "Rad Counters": 7, - "Aetherborn Kindred": 2, - "Recover": 1, - "Polyp Counters": 1, - "\\+0/\\+1 Counters": 1, - "Level Up": 7, - "Voyage Counters": 1, - "Spider Kindred": 15, - "Descend": 8, - "Ninjutsu": 17, - "Umbra armor": 4, - "Emerge": 7, - "Lairs Matter": 3, - "Protection from Creatures": 1, - "Worm Kindred": 3, - "Processor Kindred": 5, - "Sliver Kindred": 29, - "Dalek Kindred": 1, - "Boar Kindred": 1, - "Parley": 2, - "Field Reprogramming": 1, - "Convert": 5, - "Living metal": 4, - "More Than Meets the Eye": 5, - "Graft": 6, - "Secret council": 4, - "Islandcycling": 11, - "Gorgon Kindred": 2, - "Mentor": 1, - "Ascend": 9, - "Soulbond": 7, - "Incarnation Kindred": 7, - "Depletion Counters": 4, - "Employee Kindred": 4, - "Homarid Kindred": 8, - "Mercenary Kindred": 3, - "Skeleton Kindred": 8, - "Dreadnought Kindred": 1, - "Deserts Matter": 8, - "Miracle": 3, - "Delve": 11, - "Bargain": 5, - "Double strike": 8, - "Exploit": 9, - "Plot": 14, - "Wish Counters": 1, - "Bear Kindred": 5, - "Licid Kindred": 3, - "Sneak": 3, - "Incubation Counters": 1, - "Entwine": 6, - "Yeti Kindred": 3, - "Shadow": 9, - "Lifegain Triggers": 5, - "Spawn Kindred": 8, - "Trilobite Kindred": 3, - "The Most Important Punch in History": 1, - "Fox Kindred": 8, - "Tiefling Kindred": 4, - "Two-Headed Coin": 1, - "Monk Kindred": 44, - "Pilot Kindred": 12, - "Coward Kindred": 1, - "Echo of the Lost": 1, - "Multikicker": 4, - "Glimmer Kindred": 3, - "Vortex Counters": 1, - "Prowl": 5, - "Eerie": 9, - "Veil of Time": 1, - "Delay Counters": 1, - "-0/-1 Counters": 1, - "Epic": 1, - "Afflict": 2, - "Minotaur Kindred": 5, - "Hit Counters": 1, - "Constellation": 7, - "Collection Counters": 1, - "Fire of Tzeentch": 1, - "Sorcerous Inspiration": 1, - "Ooze Kindred": 10, - "Council's dilemma": 3, - "Offspring": 3, - "Ogre Kindred": 9, - "Cockatrice Kindred": 1, - "Zubera Kindred": 2, - "Moonfolk Kindred": 29, - "Skulk": 9, - "Ferocious": 4, - "Delirium": 7, - "Read Ahead": 2, - "Wurm Kindred": 3, - "Fungus Kindred": 2, - "Will of the council": 4, - "Alliance": 1, - "Hippogriff Kindred": 2, - "Assist": 5, - "Gargoyle Kindred": 9, - "Tyranid Kindred": 14, - "Neurotraumal Rod": 1, - "Children of the Cult": 1, - "Genestealer's Kiss": 1, - "Infection Counters": 1, - "Powerstone Token": 6, - "Undying": 4, - "Corruption Counters": 1, - "Three Autostubs": 1, - "Oyster Kindred": 1, - "Ouphe Kindred": 2, - "Gremlin Kindred": 1, - "Harmonize": 5, - "Persist": 5, - "Escape": 7, - "Nephilim Kindred": 4, - "Vivid": 4, - "Shrines Matter": 6, - "Gold Token": 3, - "Nymph Kindred": 5, - "Forecast": 6, - "Crocodile Kindred": 7, - "Aberrant Tinkering": 1, - "Germ Kindred": 1, - "Croak Counters": 1, - "Samurai Kindred": 3, - "Ranger Kindred": 6, - "Bribery Counters": 1, - "Companion": 4, - "Fetch Counters": 1, - "Horsemanship": 7, - "Caves Matter": 3, - "Tide Counters": 2, - "Camarid Kindred": 1, - "Tiered": 1, - "Ice Counters": 3, - "Imprint": 2, - "Wraith Kindred": 3, - "Split second": 5, - "Eminence": 3, - "Kor Kindred": 2, - "Station": 7, - "Kinship": 2, - "Fear": 4, - "Inquisitor Kindred": 2, - "Hunt for Heresy": 1, - "Unquestionable Wisdom": 1, - "Gift": 5, - "Battles Matter": 11, - "Exhaust": 13, - "Graveyard Matters": 7, - "Genius Industrialist": 1, - "Compleated": 2, - "Cost Scaling": 5, - "Modal": 5, - "Spree": 5, - "Come Fly With Me": 1, - "Elk Kindred": 8, - "Training": 1, - "Flurry": 4, - "Swampcycling": 1, - "Ingenuity Counters": 2, - "Praetor Kindred": 3, - "Leech Kindred": 3, - "Plant Kindred": 6, - "Confounding Clouds": 1, - "Dryad Kindred": 2, - "Azra Kindred": 1, - "Homunculus Servant": 1, - "Hippo Kindred": 4, - "Jackal Kindred": 1, - "Study Counters": 1, - "Flanking": 2, - "Disappear": 1, - "Rabbit Kindred": 4, - "Treasure Counters": 1, - "Verse Counters": 3, - "Grandeur": 1, - "Metathran Kindred": 8, - "Architect of Deception": 1, - "Lord of the Nazgûl": 1, - "Lieutenant": 2, - "Hatchling Counters": 1, - "Lifeloss": 2, - "Lifeloss Triggers": 2, - "Werewolf Kindred": 2, - "Wolf Kindred": 2, - "Devil Kindred": 1, - "Blade of Magnus": 1, - "Primarch Kindred": 1, - "Unearthly Power": 1, - "Eon Counters": 1, - "Psychic Stimulus": 1, - "Spiritual Leader": 1, - "Cage Counters": 1, - "Scavenge the Dead": 1, - "Growth Counters": 2, - "Dethrone": 4, - "Chapter Master": 1, - "Master Tactician": 1, - "Woman Who Walked the Earth": 1, - "Hour Counters": 1, - "Join forces": 1, - "Champion": 3, - "Music Counters": 1, - "Warp Vortex": 1, - "Divinity Counters": 1, - "Midway Counters": 1, - "Tentacle Kindred": 2, - "Hexproof from": 5, - "Synth Kindred": 2, - "Bigby's Hand": 1, - "Noggle Kindred": 4, - "Annihilator": 1, - "Sonic Booster": 1, - "Soul Counters": 1, - "Wave Cannon": 1, - "Foreshadow Counters": 1, - "Everything Counters": 1, - "Wither": 1, - "Bolster": 1, - "Paradox": 3, - "Impending": 1, - "Palliation Counters": 1, - "Will of the Planeswalkers": 1, - "Offering": 1, - "Rhino Kindred": 3, - "Persistent Petitioners": 1, - "Web-slinging": 2, - "Orb Kindred": 1, - "Phelddagrif Kindred": 2, - "Minion Kindred": 3, - "Coruscating Flames": 1, - "Starfish Kindred": 3, - "Ape Kindred": 2, - "Crystal Counters": 1, - "Page Counters": 2, - "Blue Magic": 1, - "Dream Counters": 2, - "Echo": 1, - "Ravenous": 2, - "Scarecrow Kindred": 2, - "Alluring Eyes": 1, - "Demonstrate": 1, - "Brain Counters": 1, - "Meet in Reverse": 1, - "The Last Centurion": 1, - "Backup": 1, - "Monger Kindred": 1, - "Plainscycling": 1, - "Chroma": 1, - "Scorpion Kindred": 1, - "Leap Strike": 1, - "Rope Dart": 1, - "Hideaway": 4, - "Benediction of the Omnissiah": 1, - "Squad": 2, - "Tribute": 1, - "Psychic Abomination": 1, - "Forestwalk": 2, - "Slith Kindred": 1, - "Slime Counters": 2, - "Sokratic Dialogue": 1, - "Swampwalk": 2, - "Fathomless descent": 1, - "Omen Counters": 1, - "Squirrel Kindred": 1, - "Fateful hour": 1, - "Ceaseless Tempest": 1, - "Ripple": 1, - "Surrakar Kindred": 2, - "Daybound": 1, - "Nightbound": 1, - "Toxic": 4, - "Imp Kindred": 1, - "Hourglass Counters": 1, - "Tempting offer": 1, - "Juggernaut Kindred": 1, - "Thalakos Kindred": 7, - "I. AM. TALKING!": 1, - "Peaceful Coexistence": 1, - "Water Always Wins": 1, - "Knowledge Counters": 1, - "Body Thief": 1, - "Takeover Counters": 1, - "Into the TARDIS": 1, - "How Civil of You": 1, - "Time Lord's Prerogative": 1, - "Spheres Matter": 1, - "Rapid Regeneration": 1, - "Xenos Cunning": 1, - "Team TARDIS": 1, - "Sponge Kindred": 2, - "Parallel Universe": 1, - "Rejection Counters": 1, - "Slug Kindred": 1, - "Subterranean Assault": 1, - "Adamant": 3, - "Sleight of Hand": 1, - "Shrieking Gargoyles": 1, - "Synapse Creature": 1, - "Sorcerous Elixir": 1, - "Time Compression": 1, - "Toy Kindred": 1, - "Life to Draw": 1, - "Possession Counters": 1, - "Meld": 1, - " Hone Counters": 1, - "Suppressing Fire": 1, - "Intimidate": 1, - "Sleep Counters": 1, - "Bat Kindred": 1, - "Snail Kindred": 1, - "Blight": 1, - "The Will of the Hive Mind": 1, - "Gust of Wind": 1, - "Coin Counters": 1, - "Phoenix Kindred": 1, - "Beholder Kindred": 1, - "Commander ninjutsu": 1, - "Hive Mind": 1, - "Kick Counters": 1, - "Warp Blast": 1 - }, - "black": { - "Blink": 1152, - "Enter the Battlefield": 1152, - "Guest Kindred": 6, - "Leave the Battlefield": 1153, - "Little Fellas": 2024, - "Mill": 1566, - "Open an Attraction": 9, - "Reanimate": 1447, - "Roll to Visit Your Attractions": 2, - "Zombie Kindred": 641, - "+1/+1 Counters": 668, - "Aggro": 2049, - "Aristocrats": 957, - "Artifacts Matter": 794, - "Big Mana": 1984, - "Burn": 1375, - "Combat Matters": 2049, - "Counters Matter": 1071, - "Creature Tokens": 579, - "Druid Kindred": 36, - "Historics Matter": 1162, - "Insect Kindred": 115, - "Legends Matter": 1162, - "Pingers": 372, - "Sacrifice Matters": 953, - "Token Creation": 774, - "Tokens Matter": 779, - "Voltron": 1001, - "Astartes Kindred": 11, - "Cascade": 10, - "Exile Matters": 227, - "Mark of Chaos Ascendant": 1, - "Trample": 141, - "Warrior Kindred": 298, - "Spells Matter": 1903, - "Spellslinger": 1903, - "X Spells": 221, - "First strike": 62, - "Life Matters": 1311, - "Lifegain": 1308, - "Toughness Matters": 972, - "-1/-1 Counters": 164, - "Demon Kindred": 219, - "Flying": 757, - "Harpy Kindred": 12, - "Protective Effects": 267, - "Ward": 70, - "Bard Kindred": 8, - "Bird Kindred": 53, - "Lifelink": 304, - "Combat Tricks": 211, - "Interaction": 1227, - "Midrange": 122, - "Horror Kindred": 239, - "Card Draw": 1043, - "Discard Matters": 363, - "Draw Triggers": 397, - "Loot": 154, - "Morph": 27, - "Wheels": 422, - "Elf Kindred": 114, - "Menace": 232, - "Vigilance": 59, - "Removal": 741, - "Basic landcycling": 4, - "Cycling": 83, - "Landcycling": 15, - "Lands Matter": 510, - "Ramp": 201, - "Typecycling": 15, - "Devoid": 42, - "Eldrazi Kindred": 42, - "Emerge": 3, - "Leech Kindred": 16, - "Board Wipes": 212, - "Clones": 67, - "Nightmare Kindred": 69, - "Outlaw Kindred": 594, - "Warlock Kindred": 136, - "Assassin Kindred": 128, - "Human Kindred": 920, - "Nightstalker Kindred": 12, - "Stax": 401, - "Specter Kindred": 27, - "Enchantments Matter": 807, - "Spirit Kindred": 221, - "Mana Rock": 67, - "Sacrifice to Draw": 151, - "Toolbox": 123, - "Unconditional Draw": 248, - "Cleric Kindred": 183, - "Dog Kindred": 24, - "Mana Dork": 88, - "Centaur Kindred": 5, - "Indestructible": 125, - "Intimidate": 14, - "Auras": 283, - "Control": 398, - "Cost Reduction": 120, - "Enchant": 233, - "Equipment Matters": 114, - "Shaman Kindred": 118, - "Transform": 114, - "Politics": 88, - "Venture into the dungeon": 9, - "Wizard Kindred": 255, - "Freerunning": 8, - "Deathtouch": 225, - "Dragon Kindred": 106, - "Megamorph": 4, - "Sliver Kindred": 29, - "Bat Kindred": 47, - "Conditional Draw": 188, - "God Kindred": 31, - "Vampire Kindred": 362, - "Rogue Kindred": 280, - "Flash": 84, - "Phyrexian Kindred": 215, - "Shapeshifter Kindred": 31, - "Topdeck": 331, - "Pirate Kindred": 48, - "Theft": 161, - "Finality Counters": 22, - "Crocodile Kindred": 16, - "Renew": 5, - "Knight Kindred": 129, - "Vehicles": 48, - "Artifact Tokens": 248, - "Artificer Kindred": 35, - "Energy": 8, - "Energy Counters": 8, - "Resource Engine": 8, - "Servo Kindred": 9, - "Cantrips": 117, - "Aetherborn Kindred": 19, - "Delve": 15, - "Ally Kindred": 34, - "Lizard Kindred": 36, - "Ogre Kindred": 54, - "Infect": 75, - "Mutant Kindred": 50, - "Planeswalkers": 140, - "Proliferate": 18, - "Superfriends": 140, - "Constellation": 7, - "Advisor Kindred": 36, - "Mercenary Kindred": 58, - "Heroic": 4, - "Backgrounds Matter": 13, - "Hero Kindred": 13, - "Soldier Kindred": 119, - "Kicker": 62, - "Eye Kindred": 13, - "Descend": 8, - "Fungus Kindred": 24, - "Djinn Kindred": 7, - "Scorpion Kindred": 11, - "Haste": 102, - "Monkey Kindred": 2, - "Faerie Kindred": 54, - "Goad": 18, - "Dash": 8, - "Orc Kindred": 53, - "Raid": 14, - "Scream Counters": 2, - "Disguise": 10, - "Beast Kindred": 64, - "Madness": 31, - "Monstrosity": 5, - "Void": 11, - "Warp": 16, - "Skeleton Kindred": 82, - "Charge Counters": 12, - "Craft": 4, - "Graveyard Matters": 6, - "Hexproof": 39, - "Memory Counters": 1, - "Card Selection": 11, - "Explore": 11, - "Lifegain Triggers": 33, - "Scout Kindred": 21, - "Fabricate": 5, - "Construct Kindred": 25, - "Surveil": 85, - "Afflict": 4, - "Unearth": 27, - "Volver Kindred": 3, - "Food": 53, - "Elder Kindred": 25, - "Treefolk Kindred": 24, - "Angel Kindred": 40, - "Minotaur Kindred": 23, - "Amass": 30, - "Army Kindred": 28, - "Demigod Kindred": 2, - "Blood Token": 39, - "Berserker Kindred": 37, - "Goblin Kindred": 92, - "Corrupted": 9, - "Poison Counters": 53, - "Lord of the Pyrrhian Legions": 1, - "Necron Kindred": 25, - "Hellbent": 15, - "Frog Kindred": 17, - "Landwalk": 53, - "Swampwalk": 29, - "Gorgon Kindred": 27, - "Snake Kindred": 42, - "Crew": 19, - "Merfolk Kindred": 17, - "Modular": 1, - "Turtle Kindred": 8, - "Defender": 34, - "Wall Kindred": 23, - "Oil Counters": 4, - "Archon Kindred": 2, - "Backup": 4, - "Squad": 3, - "Noble Kindred": 79, - "Life to Draw": 10, - "Shark Kindred": 3, - "Golem Kindred": 12, - "Partner": 15, - "Thrull Kindred": 31, - "\\+1/\\+2 Counters": 1, - "Flashback": 44, - "Lore Counters": 50, - "Ore Counters": 57, - "Sagas Matter": 56, - "Cyberman Kindred": 4, - "Spell Copy": 29, - "Rat Kindred": 112, - "Zubera Kindred": 1, - "Elemental Kindred": 92, - "Impulse": 30, - "Powerstone Token": 6, - "Devil Kindred": 20, - "Food Token": 48, - "Coin Counters": 1, - "Atog Kindred": 4, - "Blight": 15, - "Prowl": 5, - "Shade Kindred": 33, - "Delirium": 25, - "Airbending": 1, - "Avatar Kindred": 56, - "Bending": 27, - "Earthbending": 7, - "Firebending": 16, - "Landfall": 24, - "Waterbending": 6, - "Fear": 37, - "Mobilize": 7, - "Giant Kindred": 32, - "Kor Kindred": 5, - "Experience Counters": 6, - "Azra Kindred": 8, - "Ninja Kindred": 49, - "Ninjutsu": 18, - "Clue Token": 31, - "Fight": 4, - "Bargain": 5, - "Pilot Kindred": 6, - "Land Types Matter": 85, - "Graveborn Kindred": 2, - "Age Counters": 21, - "Cumulative upkeep": 15, - "Beholder Kindred": 6, - "Bestow": 9, - "Eerie": 5, - "Rooms Matter": 12, - "Gates Matter": 35, - "Investigate": 25, - "Dwarf Kindred": 8, - "Minion Kindred": 43, - "Daybound": 4, - "Nightbound": 4, - "Werewolf Kindred": 7, - "Myriad": 3, - "Equip": 44, - "Equipment": 47, - "Suspect": 5, - "Wurm Kindred": 12, - "Boast": 5, - "Connive": 18, - "\\+2/\\+2 Counters": 2, - "Lhurgoyf Kindred": 7, - "Extort": 12, - "Detective Kindred": 16, - "Improvise": 4, - "Lord of Torment": 1, - "Prince of Chaos": 1, - "Boar Kindred": 6, - "Rhino Kindred": 4, - "Partner with": 12, - "Swampcycling": 11, - "Citizen Kindred": 15, - "Earthbend": 6, - "Pest Kindred": 7, - "Islandwalk": 2, - "Entwine": 8, - "Rebel Kindred": 6, - "Halfling Kindred": 14, - "Toxic": 12, - "Threshold": 32, - "Will of the council": 3, - "Storm": 4, - "Horse Kindred": 11, - "Cat Kindred": 35, - "Protection": 40, - "Protection from Color": 40, - "Job select": 4, - "Buy Information": 1, - "Hire a Mercenary": 1, - "Sell Contraband": 1, - "Treasure": 81, - "Treasure Token": 86, - "Plot": 6, - "Spectacle": 8, - "Reconfigure": 3, - "Serpent Kindred": 5, - "Metalcraft": 1, - "Imp Kindred": 41, - "Incubate": 12, - "Incubator Token": 12, - "Saproling Kindred": 19, - "Haunt": 6, - "Alien Kindred": 12, - "Convert": 6, - "Living metal": 5, - "More Than Meets the Eye": 6, - "Robot Kindred": 18, - "Rad Counters": 11, - "Counterspells": 33, - "Pillowfort": 8, - "Replacement Draw": 4, - "Bloodstain Counters": 1, - "Assist": 4, - "Quest Counters": 5, - "Multikicker": 2, - " Blood Counters": 4, - "Convoke": 15, - "Bloodthirst": 5, - "Devotion Counters": 1, - "Inkling Kindred": 7, - "Badger Kindred": 1, - "Clash": 6, - "Wraith Kindred": 15, - "Spellshaper Kindred": 11, - "Forestwalk": 5, - "Champion": 1, - "Echo": 4, - "Squirrel Kindred": 20, - "Mutate": 11, - "Scavenge": 7, - "Scry": 51, - "Junk Token": 2, - "Junk Tokens": 1, - "Escalate": 2, - "Domain": 8, - "Troll Kindred": 15, - "Storage Counters": 4, - "Archer Kindred": 10, - "Bounty Counters": 5, - "Read Ahead": 2, - "Transmute": 8, - "Overload": 3, - "Fuse": 7, - "Thopter Kindred": 2, - "Encore": 8, - "Bringer Kindred": 5, - "Drone Kindred": 20, - "Scion Kindred": 6, - "Reach": 22, - "Spider Kindred": 22, - "Buyback": 9, - "Choose a background": 6, - "Tunnel Snakes Rule!": 1, - "Undying": 9, - "Flanking": 4, - "Changeling": 11, - "Shroud": 4, - "Kavu Kindred": 5, - "Cipher": 8, - "Forage": 3, - "Horsemanship": 7, - "Council's dilemma": 2, - "Mayhem": 7, - "Crab Kindred": 3, - "Unleash": 9, - "Wolf Kindred": 10, - "Protection from Quality": 6, - "Cases Matter": 2, - "Solved": 2, - "Fish Kindred": 4, - "Slug Kindred": 6, - "Adamant": 3, - "Mount Kindred": 3, - "Saddle": 2, - "Behold": 3, - "Nymph Kindred": 3, - "Friends Forever": 2, - "Hideaway": 3, - "Animate Chains": 1, - "Battle Cannon": 1, - "Suspend": 11, - "Time Counters": 15, - "Escape": 12, - "Token Modification": 2, - "Manticore Kindred": 2, - "Rampage": 1, - "Atomic Transmutation": 1, - "Fathomless descent": 4, - "Wither": 11, - "Goat Kindred": 4, - "Aftermath": 9, - "Particle Beam": 1, - "Gift": 4, - "Exploit": 14, - "Leading from the Front": 1, - "Summary Execution": 1, - "Bring it Down!": 1, - "Command Section": 1, - "Dinosaur Kindred": 14, - "Enchantment Tokens": 16, - "Role token": 9, - "Loyalty Counters": 15, - "Rebound": 4, - "Ooze Kindred": 15, - "Spawn Kindred": 4, - "Rust Counters": 1, - "Licid Kindred": 2, - "Monarch": 12, - "Disturb": 1, - "Learn": 5, - "Germ Kindred": 3, - "Living weapon": 3, - "Soulshift": 9, - "Plant Kindred": 15, - "Worm Kindred": 10, - "Illusion Kindred": 5, - "Lairs Matter": 3, - "Corpse Counters": 4, - "Strive": 2, - "Double strike": 6, - "Ingest": 4, - "Dalek Kindred": 6, - "Spite Counters": 1, - "Bushido": 6, - "Samurai Kindred": 14, - "Adapt": 6, - "Wombat Kindred": 1, - "Undaunted": 1, - "Casualty": 7, - "Field Reprogramming": 1, - "Phasing": 7, - "Survival": 1, - "Survivor Kindred": 3, - "Dredge": 8, - "Egg Counters": 2, - "Spell mastery": 4, - "Sneak": 11, - "Gargoyle Kindred": 4, - "Offspring": 4, - "Dauthi Kindred": 11, - "Shadow": 15, - "Jackal Kindred": 5, - "Void Counters": 2, - "Scientist Kindred": 10, - "Employee Kindred": 8, - "Ascend": 6, - "Collect evidence": 5, - "Plot Counters": 1, - "Vanishing": 2, - "Tiefling Kindred": 8, - "Cockatrice Kindred": 1, - "Morbid": 11, - "Spore Counters": 2, - "Afterlife": 6, - "Evoke": 7, - "Incarnation Kindred": 6, - "Lieutenant": 2, - "Affinity": 7, - "Despair Counters": 1, - "Hag Kindred": 7, - "Deserts Matter": 8, - "Peasant Kindred": 8, - "Cleave": 4, - "Jump": 2, - "Jump-start": 1, - "Dryad Kindred": 5, - "Bear Kindred": 6, - "Inspired": 7, - "Verse Counters": 2, - "Satyr Kindred": 2, - "Infection Counters": 2, - "Outlast": 2, - "Manifest": 8, - "Manifest dread": 3, - "Conspire": 3, - "Soulbond": 1, - "Skunk Kindred": 1, - "Daemon Sword": 1, - "Echo of the First Murder": 1, - "Cohort": 3, - "Ice Counters": 1, - "Scarecrow Kindred": 8, - "Beaver Kindred": 1, - "Foretell": 9, - "Eternalize": 1, - "Nephilim Kindred": 4, - "Sand Kindred": 1, - "Ouphe Kindred": 2, - "Exalted": 7, - "Drake Kindred": 9, - "-2/-2 Counters": 1, - "Praetor Kindred": 6, - "\\+1/\\+0 Counters": 1, - "Eminence": 4, - "Blind Betrayal": 1, - "Sphinx Kindred": 11, - "Hexproof from": 7, - "Elephant Kindred": 3, - "Partner - Survivors": 2, - "Max speed": 10, - "Start your engines!": 12, - "Amplify": 3, - "Echo of the Lost": 1, - "Glimmer Kindred": 2, - "Miracle": 3, - "Station": 6, - "Vedalken Kindred": 5, - "Fox Kindred": 2, - "Defense Counters": 1, - "Slith Kindred": 2, - "Salamander Kindred": 3, - "Cloak": 1, - "Hit Counters": 3, - "Hatchling Counters": 1, - "Collection Counters": 1, - "Replicate": 1, - "Split second": 5, - "Magecraft": 7, - "Cyclops Kindred": 4, - "Map Token": 1, - "Skulk": 5, - "Revolt": 4, - "Devour": 4, - "Mentor": 1, - "Intel Counters": 1, - "Flesh Flayer": 1, - "Gremlin Kindred": 2, - "Ranger Kindred": 2, - "Waterbend": 5, - "Disappear": 7, - "\\+0/\\+2 Counters": 1, - "Caves Matter": 5, - "Recover": 3, - "Corruption Counters": 1, - "Death Ray": 1, - "Disintegration Ray": 1, - "Channel": 3, - "Gold Token": 2, - "Blitz": 5, - "Pangolin Kindred": 2, - "Evolve": 1, - "Shrines Matter": 6, - "Lifeloss": 11, - "Lifeloss Triggers": 11, - "Prototype": 2, - "Splice": 4, - "Meld": 3, - "Hydra Kindred": 5, - "Lamia Kindred": 2, - "Persist": 9, - "Reverberating Summons": 1, - "-0/-2 Counters": 2, - "Level Counters": 4, - "Level Up": 4, - "Kithkin Kindred": 2, - "Companion": 5, - "Kraken Kindred": 4, - "Ritual Counters": 1, - "Dreadnought Kindred": 1, - "Multi-threat Eliminator": 1, - "Discover": 2, - "Ki Counters": 2, - "Exhaust": 3, - "Soul Counters": 5, - "Mountaincycling": 1, - "Secrets of the Soul": 1, - "Grand Strategist": 1, - "Demonstrate": 1, - "Enrage": 1, - "Kirin Kindred": 1, - "Inquisitor Kindred": 2, - "Hunt for Heresy": 1, - "Unquestionable Wisdom": 1, - "Cost Scaling": 4, - "Modal": 4, - "Spree": 4, - "Body Thief": 2, - "Devour Intellect": 1, - "Battles Matter": 10, - "Undergrowth": 7, - "Gnome Kindred": 1, - "Elk Kindred": 1, - "Islandcycling": 1, - "Efreet Kindred": 1, - "Stun Counters": 4, - "Rally": 1, - "Octopus Kindred": 8, - "Ghostform Counters": 1, - "Rabbit Kindred": 1, - "Endure": 4, - "Grandeur": 1, - "-0/-1 Counters": 3, - "Monk Kindred": 1, - "Depletion Counters": 3, - "Hippo Kindred": 1, - "Myr Kindred": 3, - "Enmitic Exterminator": 1, - "Lord of the Nazgûl": 1, - "Multiple Copies": 5, - "Armour of Shrieking Souls": 1, - "Guardian Protocols": 1, - "Performer Kindred": 2, - "Cage Counters": 1, - "Mannequin Counters": 1, - "Bad Breath": 1, - "Dethrone": 1, - "Chapter Master": 1, - "Master Tactician": 1, - "Raccoon Kindred": 1, - "Metathran Kindred": 2, - "Hour Counters": 1, - "Processor Kindred": 3, - "Awaken": 3, - "Mold Harvest": 1, - "Nautilus Kindred": 1, - "Rigger Kindred": 1, - "Primarch Kindred": 1, - "Primarch of the Death Guard": 1, - "Divinity Counters": 1, - "Psychic Blades": 1, - "Protection from Creature Type": 2, - "Feeding Counters": 1, - "Synaptic Disintegrator": 1, - "Relentless March": 1, - "Leviathan Kindred": 3, - "Epic": 1, - "Rogue Trader": 1, - "Kinship": 2, - "Revival Counters": 1, - "Weird Insight": 1, - "Weird Kindred": 1, - "Mole Kindred": 2, - "Hellion Kindred": 1, - "Eon Counters": 1, - "Impending": 1, - "Toy Kindred": 2, - "Converge": 3, - "Fade Counters": 3, - "Fading": 3, - "Barbarian Kindred": 5, - "Will of the Planeswalkers": 1, - "Offering": 1, - "Carrier Kindred": 5, - "Plague Counters": 3, - "Rot Fly": 1, - "Dynastic Advisor": 1, - "Nomad Kindred": 1, - "Curse of the Walking Pox": 1, - "Battle Cry": 2, - "Executioner Round": 1, - "Hyperfrag Round": 1, - "Crystal Counters": 1, - "Populate": 2, - "Mystic Kindred": 1, - "Kobold Kindred": 3, - "Harbinger of Despair": 1, - "Homunculus Kindred": 1, - "Starfish Kindred": 2, - "Rat Colony": 1, - "Retrace": 3, - "Relentless Rats": 1, - "Mite Kindred": 3, - "Blight Counters": 1, - "Phalanx Commander": 1, - "Blood Chalice": 1, - "Elite Troops": 1, - "Ape Kindred": 3, - "Monger Kindred": 1, - "Coward Kindred": 1, - "Serf Kindred": 1, - "Griffin Kindred": 1, - "Super Nova": 1, - "Shadowborn Apostle": 1, - "C'tan Kindred": 2, - "Drain Life": 1, - "Matter Absorption": 1, - "Spear of the Void Dragon": 1, - "Join forces": 1, - "Vivid": 1, - "Siren Kindred": 2, - "Surrakar Kindred": 2, - "Tribute": 1, - "Medicus Ministorum": 1, - "Hyperphase Threshers": 1, - "Command Protocols": 1, - "Snail Kindred": 2, - "Jolly Gutpipes": 1, - "Spike Kindred": 1, - "Rough Divide": 1, - "Blood Drain": 1, - "Ripple": 1, - "Sanctified Rules of Combat": 1, - "Phoenix Kindred": 2, - "My Will Be Done": 1, - "The Seven-fold Chant": 1, - "Page Counters": 1, - "Tempting offer": 1, - "Prey Counters": 1, - "Spheres Matter": 1, - "Weasel Kindred": 1, - "Takeover Counters": 1, - "Make Them Pay": 1, - "Gamer Kindred": 1, - "Necrodermis Counters": 1, - "Varmint Kindred": 1, - "Consume Anomaly": 1, - "Stash Counters": 1, - "Pegasus Kindred": 1, - "Chef's Knife": 1, - "Slime Counters": 1, - "Prismatic Gallery": 1, - "Fate Counters": 1, - "Dynastic Codes": 1, - "Targeting Relay": 1, - "Horrific Symbiosis": 1, - "Whale Kindred": 1, - "Time Compression": 1, - "Chroma": 1, - "Rat Tail": 1, - "Devourer of Souls": 1, - "Spiked Retribution": 1, - "Death Gigas": 1, - "Galian Beast": 1, - "Tiered": 1, - "Deal with the Black Guardian": 1, - "Doctor Kindred": 1, - "Doctor's Companion": 1, - "Doctor's companion": 1, - "Compleated": 1, - "Toxic Spores": 1, - "Wish Counters": 1, - "Camel Kindred": 1, - "Petrification Counters": 1, - "Commander ninjutsu": 1, - "Burning Chains": 1, - "My First Friend": 1 - }, - "red": { - "Burn": 2169, - "Enchantments Matter": 781, - "Blink": 730, - "Enter the Battlefield": 730, - "Goblin Kindred": 480, - "Guest Kindred": 4, - "Leave the Battlefield": 731, - "Little Fellas": 1890, - "Mana Dork": 161, - "Ramp": 295, - "Aggro": 2358, - "Astartes Kindred": 8, - "Big Mana": 2058, - "Cascade": 28, - "Combat Matters": 2358, - "Exile Matters": 373, - "Historics Matter": 1205, - "Legends Matter": 1205, - "Mark of Chaos Ascendant": 1, - "Trample": 339, - "Warrior Kindred": 569, - "Card Draw": 725, - "Discard Matters": 465, - "Spells Matter": 2178, - "Spellslinger": 2178, - "Unconditional Draw": 255, - "Combat Tricks": 212, - "Interaction": 967, - "Madness": 20, - "Mill": 634, - "Reanimate": 479, - "Flashback": 69, - "Artifacts Matter": 1148, - "Human Kindred": 1085, - "Impulse": 202, - "Monk Kindred": 42, - "Prowess": 38, - "-1/-1 Counters": 65, - "Counters Matter": 857, - "Creature Tokens": 539, - "Fungus Kindred": 3, - "Partner - Survivors": 3, - "Survivor Kindred": 5, - "Token Creation": 785, - "Tokens Matter": 795, - "Zombie Kindred": 58, - "Removal": 351, - "Toolbox": 137, - "Deserts Matter": 14, - "Land Types Matter": 80, - "Lands Matter": 590, - "Pingers": 479, - "Learn": 5, - "Intimidate": 6, - "Cantrips": 124, - "Sliver Kindred": 36, - "Draw Triggers": 138, - "Heavy Rock Cutter": 1, - "Tyranid Kindred": 12, - "Wheels": 145, - "+1/+1 Counters": 535, - "Renown": 5, - "Voltron": 916, - "Auras": 245, - "Enchant": 181, - "Goad": 49, - "Rad Counters": 2, - "Stax": 508, - "Theft": 179, - "Control": 289, - "Spirit Kindred": 119, - "Clash": 5, - "Flying": 496, - "Haste": 504, - "Wizard Kindred": 233, - "Outlaw Kindred": 289, - "Pirate Kindred": 74, - "Finality Counters": 4, - "Minotaur Kindred": 97, - "Pilot Kindred": 20, - "Vehicles": 71, - "Knight Kindred": 102, - "Melee": 5, - "Politics": 89, - "Dragon Kindred": 293, - "Life Matters": 327, - "Lifegain": 326, - "Lifelink": 56, - "Toughness Matters": 854, - "Conditional Draw": 162, - "Giant Kindred": 125, - "Equip": 67, - "Equipment": 73, - "Equipment Matters": 212, - "Shield Counters": 2, - "Berserker Kindred": 119, - "Rampage": 5, - "Beast Kindred": 136, - "Artifact Tokens": 309, - "Artificer Kindred": 93, - "Energy": 44, - "Energy Counters": 41, - "First strike": 161, - "Resource Engine": 44, - "Servo Kindred": 4, - "Defender": 43, - "Reach": 69, - "Wall Kindred": 36, - "Aetherborn Kindred": 1, - "Revolt": 1, - "Rogue Kindred": 143, - "Transform": 108, - "Werewolf Kindred": 44, - "Board Wipes": 368, - "Lizard Kindred": 119, - "Offspring": 5, - "Cost Reduction": 143, - "Warlock Kindred": 31, - "X Spells": 325, - "Sacrifice to Draw": 83, - "Kicker": 63, - "Insect Kindred": 33, - "Soldier Kindred": 210, - "Spell Copy": 128, - "Vigilance": 93, - "Detective Kindred": 14, - "Double strike": 60, - "Suspect": 5, - "Exert": 13, - "Aristocrats": 357, - "Sacrifice Matters": 351, - "Dog Kindred": 44, - "Morph": 28, - "Scout Kindred": 42, - "Bird Kindred": 27, - "Planeswalkers": 143, - "Superfriends": 143, - "Cat Kindred": 60, - "Midrange": 62, - "Dinosaur Kindred": 93, - "Indestructible": 73, - "Kor Kindred": 8, - "Protective Effects": 177, - "Ally Kindred": 60, - "Partner": 14, - "Samurai Kindred": 27, - "Shaman Kindred": 260, - "Protection": 26, - "Protection from Color": 25, - "Phyrexian Kindred": 71, - "Landfall": 46, - "Phoenix Kindred": 37, - "Cohort": 2, - "Elemental Kindred": 321, - "Heroic": 9, - "Angel Kindred": 30, - "Scorpion Kindred": 3, - "Otter Kindred": 14, - "Cleave": 2, - "Treasure": 166, - "Treasure Token": 173, - "Raid": 24, - "Golem Kindred": 20, - "Scry": 68, - "Topdeck": 270, - "Infect": 12, - "Ore Counters": 65, - "Vampire Kindred": 96, - "Assassin Kindred": 38, - "Memory Counters": 1, - "Backgrounds Matter": 14, - "Choose a background": 7, - "Cleric Kindred": 39, - "Dwarf Kindred": 87, - "Doctor Kindred": 13, - "Doctor's Companion": 6, - "Doctor's companion": 6, - "Partner with": 12, - "Suspend": 26, - "Time Counters": 32, - "Unearth": 17, - "Demigod Kindred": 1, - "Satyr Kindred": 18, - "Ward": 54, - "Elder Kindred": 20, - "Fade Counters": 1, - "Fading": 1, - "Hydra Kindred": 11, - "Kavu Kindred": 44, - "Jackal Kindred": 15, - "Incarnation Kindred": 7, - "Amass": 20, - "Army Kindred": 19, - "Citizen Kindred": 30, - "Deathtouch": 22, - "Gnome Kindred": 6, - "Blood Token": 46, - "Loot": 155, - "Flash": 45, - "Hellbent": 11, - "God Kindred": 29, - "Mole Kindred": 1, - "Crew": 23, - "Toy Kindred": 4, - "Monarch": 13, - "Noble Kindred": 56, - "Hero Kindred": 33, - "Spider Kindred": 19, - "Sagas Matter": 67, - "Powerstone Token": 9, - "Spellshaper Kindred": 12, - "Ox Kindred": 9, - "Modular": 6, - "Riot": 10, - "Menace": 149, - "Convert": 9, - "Eye Kindred": 7, - "Living metal": 6, - "More Than Meets the Eye": 7, - "Robot Kindred": 40, - "Verse Counters": 3, - "Sphinx Kindred": 2, - "Wolf Kindred": 30, - "Daybound": 17, - "Nightbound": 17, - "Fuse": 9, - "Orc Kindred": 80, - "Boast": 8, - "Fight": 40, - "Lore Counters": 59, - "Disguise": 12, - "Mouse Kindred": 14, - "Counterspells": 28, - "Saproling Kindred": 9, - "Celebration": 6, - "Peasant Kindred": 8, - "Cyberman Kindred": 2, - "Clones": 89, - "Magecraft": 10, - "Druid Kindred": 26, - "Food": 11, - "Food Token": 8, - "Demon Kindred": 57, - "Ruinous Ascension": 1, - "Elephant Kindred": 9, - "Muster Counters": 1, - "Mercenary Kindred": 36, - "Skilled Outrider": 1, - "Efreet Kindred": 21, - "Megamorph": 5, - "Mana Rock": 73, - "Formidable": 6, - "Ogre Kindred": 95, - "Egg Kindred": 6, - "Atog Kindred": 5, - "Archer Kindred": 25, - "Experience Counters": 8, - "Partner - Father & Son": 2, - "Casualty": 4, - "Advisor Kindred": 18, - "Devil Kindred": 62, - "Blight": 11, - "Mentor": 11, - "Rebel Kindred": 28, - "Echo": 25, - "Nomad Kindred": 6, - "Airbending": 1, - "Avatar Kindred": 44, - "Bending": 36, - "Earthbending": 8, - "Firebending": 29, - "Waterbending": 1, - "Oil Counters": 17, - "Elf Kindred": 41, - "Eldrazi Kindred": 34, - "Azra Kindred": 3, - "Barbarian Kindred": 40, - "Enlist": 4, - "Graveborn Kindred": 2, - "Age Counters": 19, - "Cumulative upkeep": 13, - "\\+1/\\+0 Counters": 4, - "Horror Kindred": 33, - "Rabbit Kindred": 3, - "Monkey Kindred": 9, - "Horsemanship": 6, - "Landwalk": 35, - "Threshold": 13, - "For Mirrodin!": 6, - "Entwine": 6, - "Gremlin Kindred": 14, - "Ferocious": 7, - "Devoid": 33, - "Gargoyle Kindred": 2, - "Goat Kindred": 7, - "Pack tactics": 5, - "Basic landcycling": 5, - "Cycling": 93, - "Landcycling": 17, - "Typecycling": 18, - "Bushido": 8, - "Shapeshifter Kindred": 16, - "Scientist Kindred": 13, - "Lord of Torment": 1, - "Prince of Chaos": 1, - "Jump": 7, - "Jump-start": 6, - "Vedalken Kindred": 3, - "Delirium": 16, - "Enchantment Tokens": 14, - "Role token": 8, - "Mountaincycling": 12, - "Wurm Kindred": 13, - "Bard Kindred": 27, - "Raccoon Kindred": 16, - "Scorching Ray": 1, - "Halfling Kindred": 3, - "Clue Token": 19, - "Gates Matter": 29, - "Investigate": 18, - "Earthbend": 7, - "Exhaust": 15, - "Friends Forever": 4, - "Metalcraft": 7, - "Serpent Kindred": 3, - "Ki Counters": 2, - "Changeling": 9, - "Boar Kindred": 22, - "Skeleton Kindred": 7, - "Offering": 2, - "Flanking": 6, - "Blow Up": 1, - "Specter Kindred": 2, - "Imp Kindred": 7, - "Strive": 5, - "Weird Kindred": 14, - "Construct Kindred": 26, - "Prototype": 4, - "Hellion Kindred": 22, - "Bloodthirst": 12, - "Bloodstain Counters": 1, - "Crown of Madness": 1, - "Escape": 9, - "Devastating Charge": 1, - "Unleash": 10, - "Ooze Kindred": 6, - "Wolverine Kindred": 7, - "Cyclops Kindred": 33, - "Gift": 4, - "Porcupine Kindred": 2, - "Death Counters": 1, - "Scarecrow Kindred": 4, - "Wither": 12, - "Faerie Kindred": 8, - "Foretell": 12, - "Awaken": 1, - "Coward Kindred": 5, - "Fuse Counters": 4, - "Battalion": 12, - "Mobilize": 7, - "Miracle": 4, - "Junk Token": 9, - "Junk Tokens": 9, - "Homunculus Kindred": 1, - "Escalate": 3, - "Improvise": 6, - "Surge": 5, - "Ranger Kindred": 10, - "Shark Kindred": 5, - "Caves Matter": 6, - "Discover": 12, - "Card Selection": 3, - "Explore": 2, - "Thopter Kindred": 16, - "Backup": 8, - "Fox Kindred": 3, - "Radiance": 6, - "Reinforce": 1, - "Level Counters": 3, - "Level Up": 3, - "Plot": 10, - "Morbid": 4, - "Bringer Kindred": 5, - "Reconfigure": 6, - "Spawn Kindred": 8, - "Encore": 7, - "Enrage": 9, - "Myr Kindred": 4, - "Conspire": 3, - "Convoke": 11, - "Zubera Kindred": 2, - "Centaur Kindred": 7, - "Max speed": 8, - "Start your engines!": 11, - "Orgg Kindred": 4, - "Proliferate": 4, - "Plant Kindred": 8, - "Horse Kindred": 8, - "Mount Kindred": 10, - "Saddle": 5, - "Devour": 10, - "Retrace": 7, - "Drake Kindred": 13, - "Mountainwalk": 14, - "... Catch": 1, - "Throw ...": 1, - "Employee Kindred": 6, - "Mayhem": 7, - "Nightmare Kindred": 13, - "Cases Matter": 2, - "Solved": 2, - "Mutant Kindred": 43, - "Ninja Kindred": 14, - "Turtle Kindred": 18, - "Evoke": 8, - "Kithkin Kindred": 2, - "Cost Scaling": 4, - "Modal": 4, - "Spree": 4, - "Fabricate": 1, - "Populate": 4, - "Merfolk Kindred": 9, - "Volver Kindred": 3, - "Minion Kindred": 3, - "Rev Counters": 1, - "Behold": 5, - "Luck Counters": 1, - "Loyalty Counters": 14, - "Champion": 3, - "Harmonize": 5, - "Battle Cannon": 1, - "Lord of Chaos": 1, - "Fury Counters": 1, - "Rat Kindred": 13, - "Rooms Matter": 9, - "Rally": 5, - "Overload": 13, - "Snake Kindred": 5, - "Affinity": 13, - "Bestow": 7, - "Manticore Kindred": 11, - "Salamander Kindred": 4, - "Shade Kindred": 1, - "Pillowfort": 5, - "Clown Kindred": 6, - "Aftermath": 11, - "Mutate": 8, - "Shroud": 5, - "Domain": 9, - "Multikicker": 4, - "Squirrel Kindred": 1, - "Surveil": 10, - "Treefolk Kindred": 4, - "Licid Kindred": 2, - "Flurry": 6, - "Rust Counters": 1, - "Time Travel": 3, - "Storm": 18, - "Yeti Kindred": 10, - "One for My Baby": 1, - "Quest Counters": 8, - "Germ Kindred": 1, - "Living weapon": 1, - "Demonstrate": 2, - "Shrines Matter": 6, - "Provoke": 2, - "Kobold Kindred": 15, - "Illusion Kindred": 3, - "Lairs Matter": 3, - "Manifest": 6, - "Dalek Kindred": 2, - "Coyote Kindred": 1, - "Gold Token": 3, - "Parley": 2, - "Egg Counters": 2, - "Gift of Chaos": 1, - "Alien Kindred": 8, - "Beholder Kindred": 2, - "Monstrosity": 8, - "Dash": 14, - "Flesh Hooks": 1, - "Charge Counters": 24, - "Station": 7, - "Elk Kindred": 3, - "Descent Counters": 1, - "Splice": 8, - "Collect evidence": 3, - "Lhurgoyf Kindred": 4, - "Alliance": 11, - "Craft": 5, - "Graveyard Matters": 7, - "Manifest dread": 3, - "Undaunted": 1, - "Djinn Kindred": 18, - "Connive": 2, - "Hexproof": 16, - "Soulbond": 5, - "Daemon Sword": 1, - "Echo of the First Murder": 1, - "Dragon's Approach": 1, - "Multiple Copies": 2, - "Hunters for Hire": 1, - "Nephilim Kindred": 4, - "Sand Kindred": 2, - "Bear Kindred": 3, - "\\+0/\\+1 Counters": 1, - "\\+2/\\+2 Counters": 1, - "Storage Counters": 4, - "Performer Kindred": 9, - "Eternalize": 1, - "Eminence": 3, - "Drone Kindred": 15, - "Fish Kindred": 6, - "Trilobite Kindred": 1, - "Myriad": 7, - "Tiefling Kindred": 7, - "Adamant": 3, - "Valiant": 5, - "Glimmer Kindred": 1, - "Dethrone": 6, - "Poison Counters": 4, - "Collection Counters": 1, - "Fire of Tzeentch": 1, - "Sorcerous Inspiration": 1, - "Bio-plasmic Barrage": 1, - "Ravenous": 3, - "Vivid": 3, - "Cloak": 1, - "Spell mastery": 4, - "Freerunning": 3, - "Rebound": 6, - "Tribute": 5, - "Buyback": 7, - "Inspired": 3, - "Ape Kindred": 10, - "Chroma": 3, - "Enthralling Performance": 1, - "Tiered": 2, - "Blaze Counters": 2, - "Flame Counters": 1, - "Intel Counters": 1, - "Paradox": 4, - "Undying": 7, - "Frog Kindred": 3, - "Constellation": 1, - "Nymph Kindred": 3, - "Phasing": 5, - "Afflict": 4, - "Warp": 15, - "Incubate": 3, - "Incubator Token": 3, - "Persist": 4, - "Hexproof from": 4, - "Corruption Counters": 1, - "Protection from Quality": 8, - "Rhino Kindred": 8, - "Bloodrush": 9, - "Channel": 7, - "Three Autostubs": 1, - "Stash Counters": 2, - "Gnoll Kindred": 2, - "Chimera Kindred": 6, - "Troll Kindred": 7, - "Exalted": 2, - "Islandwalk": 1, - "Battle Cry": 5, - "Dream Counters": 1, - "Juggernaut Kindred": 2, - "Spectacle": 6, - "Meld": 2, - "Aim Counters": 1, - "Sage Project": 1, - "Embalm": 1, - "Dreadnought Kindred": 1, - "Pressure Counters": 1, - "Locus of Slaanesh": 1, - "Emerge": 1, - "Annihilator": 1, - "Kirin Kindred": 2, - "Badger Kindred": 3, - "Hyena Kindred": 2, - "Recover": 1, - "Imprint": 2, - "Vanishing": 3, - "Swampcycling": 1, - "Doom Counters": 2, - "Wraith Kindred": 2, - "Exploit": 1, - "Eerie": 1, - "Vicious Mockery": 1, - "Void": 4, - "Battles Matter": 10, - "Split second": 5, - "Genius Industrialist": 1, - "Blitz": 9, - "Companion": 3, - "Sneak": 3, - "Training": 2, - "Ingenuity Counters": 1, - "Token Modification": 4, - "Converge": 3, - "Dryad Kindred": 1, - "Symphony of Pain": 1, - "Sigil of Corruption": 1, - "The Betrayer": 1, - "Venture into the dungeon": 2, - "Amplify": 1, - "Frenzied Rampage": 1, - "Forestwalk": 1, - "Depletion Counters": 3, - "Assist": 2, - "Replicate": 5, - "Fear": 3, - "Legendary landwalk": 1, - "Loud Ruckus": 1, - "Lieutenant": 3, - "Armour of Shrieking Souls": 1, - "Lifeloss": 1, - "Lifeloss Triggers": 1, - "Compleated": 2, - "Stun Counters": 4, - "Delve": 1, - "Blade of Magnus": 1, - "Primarch Kindred": 1, - "Unearthly Power": 1, - "Psychic Stimulus": 1, - "Spiritual Leader": 1, - "Cage Counters": 1, - "Siren Kindred": 1, - "Join forces": 1, - "Swampwalk": 2, - "Bounty Counters": 1, - "Terror from the Deep": 1, - "Worm Kindred": 2, - "Mine Counters": 1, - "Hamster Kindred": 2, - "Jellyfish Kindred": 1, - "Secret council": 2, - "Mongoose Kindred": 1, - "Kinship": 3, - "Warp Vortex": 1, - "Divinity Counters": 1, - "Midway Counters": 1, - "Open an Attraction": 2, - "Banding": 1, - "Noggle Kindred": 5, - "Sonic Blaster": 1, - "Bolster": 1, - "Pangolin Kindred": 1, - "Impending": 1, - "Fetch Counters": 1, - "Will of the Planeswalkers": 1, - "Coruscating Flames": 1, - "Squad": 2, - "Support": 1, - "Crystal Counters": 1, - "Selfie Shot": 1, - "Mystic Kindred": 1, - "Thrull Kindred": 1, - " Blood Counters": 1, - "Bargain": 3, - "Alluring Eyes": 1, - "Crab Kindred": 1, - "Job select": 3, - "Sloth Kindred": 1, - "Griffin Kindred": 2, - "Ice Counters": 1, - "Meet in Reverse": 1, - "Shell Counters": 1, - "Basilisk Kindred": 1, - "Wage Counters": 1, - "Leech Kindred": 1, - "Web-slinging": 1, - "Bio-Plasmic Scream": 1, - "Lifegain Triggers": 2, - "Family Gathering": 1, - "Family gathering": 1, - "Allure of Slaanesh": 1, - "Fire Cross": 1, - "Seven Dwarves": 1, - "Ouphe Kindred": 1, - "Leap Strike": 1, - "Rope Dart": 1, - "Dredge": 1, - "Temporal Foresight": 1, - "Double Overdrive": 1, - "Grandeur": 2, - "Slith Kindred": 1, - "Ember Counters": 1, - "Shadow": 1, - "Soltari Kindred": 1, - "Hideaway": 2, - "Mantle of Inspiration": 1, - "Ascend": 2, - "Ceaseless Tempest": 1, - "Glory of Battle": 1, - "Ripple": 1, - "Sanctified Rules of Combat": 1, - "Synth Kindred": 1, - "Tempting offer": 2, - "Reflection Kindred": 1, - "Spheres Matter": 1, - "Read Ahead": 2, - "Weasel Kindred": 1, - "Make Them Pay": 1, - "Into the TARDIS": 1, - "Advanced Species": 1, - "Rapid Regeneration": 1, - "Xenos Cunning": 1, - "Slug Kindred": 1, - "Armadillo Kindred": 1, - "Contested Counters": 1, - "Sorcerous Elixir": 1, - "Epic": 1, - "Praetor Kindred": 3, - " Hone Counters": 1, - "Forestcycling": 1, - "Ingest": 1, - "Monger Kindred": 1, - "Child Kindred": 1, - "Snail Kindred": 1, - "The Will of the Hive Mind": 1, - "Bat Kindred": 1, - "Unrivaled Lethality": 1, - "Leviathan Kindred": 1, - "Bribe the Guards": 1, - "Threaten the Merchant": 1, - "Ninjutsu": 1, - "Warp Blast": 1 - }, - "green": { - "+1/+1 Counters": 1264, - "Aggro": 2442, - "Alien Kindred": 13, - "Big Mana": 2189, - "Blink": 883, - "Combat Matters": 2442, - "Counters Matter": 1569, - "Dinosaur Kindred": 123, - "Enter the Battlefield": 883, - "Leave the Battlefield": 884, - "Trample": 535, - "Voltron": 1580, - "Creature Tokens": 718, - "Enchantments Matter": 899, - "Goblin Kindred": 35, - "Human Kindred": 780, - "Merfolk Kindred": 60, - "Token Creation": 910, - "Tokens Matter": 921, - "Ally Kindred": 55, - "Artifacts Matter": 764, - "Avatar Kindred": 55, - "Historics Matter": 1081, - "Legends Matter": 1081, - "Aristocrats": 325, - "Mill": 887, - "Reanimate": 604, - "Sacrifice Matters": 306, - "Bending": 35, - "Earthbend": 31, - "Earthbending": 32, - "Flying": 218, - "Landfall": 114, - "Lands Matter": 1072, - "Topdeck": 433, - "Transform": 102, - "Burn": 452, - "Druid Kindred": 351, - "Insect Kindred": 154, - "Pingers": 75, - "-1/-1 Counters": 113, - "Fungus Kindred": 60, - "Partner - Survivors": 2, - "Survivor Kindred": 9, - "Zombie Kindred": 60, - "Heavy Power Hammer": 1, - "Interaction": 854, - "Little Fellas": 2037, - "Mutant Kindred": 83, - "Ravenous": 9, - "Removal": 423, - "Tyranid Kindred": 28, - "X Spells": 281, - "Stax": 431, - "Treefolk Kindred": 114, - "Card Draw": 693, - "Discard Matters": 159, - "Draw Triggers": 110, - "Horror Kindred": 48, - "Loot": 99, - "Morph": 32, - "Toughness Matters": 1067, - "Wheels": 115, - "Elf Kindred": 586, - "Menace": 35, - "Vigilance": 189, - "Age Counters": 26, - "Cumulative upkeep": 20, - "Elemental Kindred": 241, - "Spells Matter": 1592, - "Spellslinger": 1592, - "Unconditional Draw": 268, - "Auras": 309, - "Cantrips": 122, - "Enchant": 224, - "Midrange": 173, - "Spirit Kindred": 140, - "Mana Rock": 68, - "Ramp": 767, - "Sacrifice to Draw": 84, - "Dog Kindred": 38, - "Shaman Kindred": 201, - "Toolbox": 185, - "Cleric Kindred": 62, - "Life Matters": 657, - "Lifegain": 657, - "Mana Dork": 313, - "Lifelink": 76, - "Warrior Kindred": 438, - "Combat Tricks": 227, - "Doctor Kindred": 12, - "Doctor's Companion": 5, - "Doctor's companion": 5, - "Fight": 111, - "Rebel Kindred": 6, - "Equipment Matters": 112, - "Reach": 282, - "Spider Kindred": 103, - "Deathtouch": 94, - "Ooze Kindred": 48, - "Backgrounds Matter": 12, - "Cost Reduction": 128, - "Dragon Kindred": 102, - "Flashback": 51, - "Squirrel Kindred": 40, - "Echo": 13, - "Beast Kindred": 347, - "Evolve": 14, - "Lizard Kindred": 62, - "Infect": 90, - "Phyrexian Kindred": 99, - "Planeswalkers": 153, - "Proliferate": 34, - "Superfriends": 153, - "Clones": 105, - "Protective Effects": 409, - "Token Modification": 14, - "Ward": 89, - "Wizard Kindred": 113, - "Control": 266, - "Knight Kindred": 61, - "Archer Kindred": 66, - "Megamorph": 8, - "Bird Kindred": 45, - "Shroud": 42, - "Ouphe Kindred": 17, - "Persist": 9, - "Adapt": 15, - "Homunculus Kindred": 3, - "Serpent Kindred": 7, - "Artifact Tokens": 211, - "Artificer Kindred": 32, - "Energy": 24, - "Energy Counters": 24, - "Resource Engine": 24, - "Servo Kindred": 6, - "Saproling Kindred": 77, - "Flash": 97, - "Cat Kindred": 121, - "Spell Copy": 35, - "Storm": 6, - "Exhaust": 15, - "Detective Kindred": 19, - "Outlaw Kindred": 102, - "Warlock Kindred": 26, - "Bargain": 5, - "Lifegain Triggers": 13, - "Indestructible": 128, - "Rogue Kindred": 58, - "Conditional Draw": 191, - "Shield Counters": 12, - "Elephant Kindred": 59, - "Cycling": 86, - "Vehicles": 44, - "Exert": 7, - "Revolt": 7, - "Scout Kindred": 134, - "Hexproof": 125, - "Faerie Kindred": 25, - "Loyalty Counters": 18, - "Soldier Kindred": 113, - "Compleated": 4, - "Poison Counters": 47, - "Descend": 5, - "Mount Kindred": 20, - "Saddle": 13, - "Exile Matters": 148, - "Time Counters": 16, - "Troll Kindred": 47, - "Crocodile Kindred": 19, - "Sagas Matter": 69, - "Centaur Kindred": 75, - "Fuse": 7, - "Affinity": 5, - "Brushwagg Kindred": 4, - "Plant Kindred": 102, - "Plot": 12, - "Discover": 8, - "Monstrosity": 15, - "Kavu Kindred": 26, - "Bear Kindred": 59, - "Theft": 36, - "Shapeshifter Kindred": 27, - "Politics": 64, - "Monk Kindred": 35, - "Advisor Kindred": 28, - "Guest Kindred": 6, - "Barbarian Kindred": 5, - "Snake Kindred": 117, - "Wolf Kindred": 97, - "Kicker": 72, - "Landwalk": 71, - "Swampwalk": 11, - "Collect evidence": 8, - "Partner": 14, - "Volver Kindred": 3, - "Treasure": 50, - "Treasure Token": 51, - "Turtle Kindred": 37, - "Elder Kindred": 19, - "Convoke": 26, - "Ape Kindred": 30, - "First strike": 31, - "Demigod Kindred": 2, - "Citizen Kindred": 59, - "Protection": 42, - "Protection from Color": 33, - "Spell mastery": 3, - "Impulse": 18, - "Cascade": 17, - "Heroic": 6, - "Rooms Matter": 6, - "Frog Kindred": 53, - "Threshold": 26, - "God Kindred": 22, - "Mole Kindred": 9, - "Enrage": 14, - "Chimera Kindred": 5, - "Hydra Kindred": 59, - "Assassin Kindred": 15, - "Gorgon Kindred": 10, - "Aftermath": 10, - "Training": 4, - "Graft": 9, - "Noble Kindred": 49, - "Ore Counters": 85, - "Ranger Kindred": 50, - "Scry": 52, - "Eminence": 2, - "Board Wipes": 93, - "Channel": 12, - "Manifest": 19, - "Powerstone Token": 4, - "Giant Kindred": 49, - "Populate": 14, - "Sloth Kindred": 3, - "Defender": 50, - "Wall Kindred": 27, - "Boar Kindred": 41, - "Archon Kindred": 2, - "Land Types Matter": 113, - "Outlast": 3, - "Wurm Kindred": 96, - "Kraken Kindred": 4, - "Slumber Counters": 1, - "Daybound": 18, - "Nightbound": 18, - "Werewolf Kindred": 54, - "Oil Counters": 10, - "Lore Counters": 58, - "Madness": 2, - "Haste": 102, - "Skilled Outrider": 1, - "Formidable": 9, - "Egg Kindred": 4, - "Charge Counters": 12, - "Station": 7, - "Atog Kindred": 4, - "Performer Kindred": 12, - "Angel Kindred": 21, - "Alliance": 6, - "Coven": 10, - "Blight": 2, - "Aurochs Kindred": 4, - "Vivid": 8, - "Elk Kindred": 30, - "Mutate": 12, - "Delirium": 29, - "Airbending": 1, - "Firebending": 3, - "Waterbending": 2, - "Disguise": 12, - "Counterspells": 23, - "Dryad Kindred": 54, - "Eldrazi Kindred": 49, - "Spawn Kindred": 15, - "Legendary landwalk": 2, - "Experience Counters": 4, - "Badger Kindred": 11, - "Dwarf Kindred": 6, - "Food": 103, - "Food Token": 95, - "Raccoon Kindred": 19, - "Crew": 15, - "Forestcycling": 11, - "Landcycling": 17, - "Typecycling": 17, - "Stun Counters": 4, - "Rabbit Kindred": 19, - "Finality Counters": 6, - "Reinforce": 5, - "Scavenge": 10, - "Halfling Kindred": 20, - "Equip": 31, - "Equipment": 33, - "Hero Kindred": 27, - "Job select": 2, - "Berserker Kindred": 22, - "Conspire": 4, - "Enlist": 3, - "Grandeur": 1, - "Manifest dread": 13, - "Devoid": 30, - "Capybara Kindred": 1, - "Shark Kindred": 5, - "Blood Token": 20, - "Bloodthirst": 11, - "Foretell": 7, - "Umbra armor": 7, - "Level Counters": 4, - "Level Up": 4, - "Quest Counters": 5, - "Rhino Kindred": 54, - "Delve": 4, - "Mercenary Kindred": 10, - "Pest Kindred": 6, - "Bard Kindred": 20, - "Intimidate": 3, - "Goad": 8, - "Fractal Kindred": 12, - "Robot Kindred": 11, - "Genomic Enhancement": 1, - "Scientist Kindred": 11, - "Drone Kindred": 17, - "Scion Kindred": 9, - "Jackal Kindred": 6, - "Mine Vibranium": 1, - "Survey the Realm": 1, - "Convert": 4, - "Eye Kindred": 2, - "Modular": 1, - "More Than Meets the Eye": 2, - "Fade Counters": 5, - "Fading": 5, - "Miracle": 2, - "Incubate": 6, - "Incubator Token": 6, - "Hellion Kindred": 4, - "Toxic": 17, - "Vampire Kindred": 4, - "Escape": 7, - "Devour": 13, - "Scorpion Kindred": 5, - "Ticket Counters": 1, - "Partner with": 14, - "Mongoose Kindred": 3, - "Soulshift": 12, - "Wither": 7, - "Ogre Kindred": 10, - "Nightmare Kindred": 12, - "Ox Kindred": 8, - "Bestow": 11, - "Satyr Kindred": 22, - "Cyclops Kindred": 5, - "Domain": 24, - "Golem Kindred": 20, - "Prototype": 6, - "Fish Kindred": 6, - "Kirin Kindred": 1, - "Flood Counters": 2, - "Peasant Kindred": 15, - "Incarnation Kindred": 7, - "Junk Token": 3, - "Junk Tokens": 3, - "Clue Token": 34, - "Gates Matter": 49, - "Investigate": 34, - "Evoke": 8, - "Backup": 7, - "Fox Kindred": 5, - "Construct Kindred": 12, - "Kithkin Kindred": 16, - "Converge": 8, - "Bringer Kindred": 5, - "Deserts Matter": 21, - "Phasing": 4, - "Provoke": 3, - "Sliver Kindred": 31, - "Warp": 8, - "Surveil": 28, - "Brood Telepathy": 1, - "Encore": 4, - "Ki Counters": 2, - "Hippo Kindred": 9, - "Islandwalk": 8, - "Forage": 6, - "Offspring": 4, - "Bolster": 9, - "Hyena Kindred": 3, - "Morbid": 14, - "Orc Kindred": 7, - "Blitz": 5, - "Constellation": 13, - "Myriad": 7, - "Amplify": 3, - "Goat Kindred": 3, - "Support": 9, - "Metalcraft": 3, - "Gnome Kindred": 2, - "Tiefling Kindred": 1, - "Cases Matter": 2, - "Solved": 2, - "Forestwalk": 24, - "Survival": 7, - "Behold": 4, - "Card Selection": 22, - "Explore": 21, - "Changeling": 17, - "Renew": 5, - "Champion": 3, - "Assist": 2, - "Bounty Counters": 1, - "Samurai Kindred": 7, - "Acorn Counters": 1, - "Manticore Kindred": 2, - "Natural Recovery": 1, - "Renown": 7, - "Proclamator Hailer": 1, - "Fateful hour": 2, - "Gathered Swarm": 1, - "Particle Beam": 1, - "Cockatrice Kindred": 2, - "Pupa Counters": 1, - "Ninja Kindred": 19, - "Ninjutsu": 3, - "Worm Kindred": 5, - "Escalate": 1, - "Join forces": 1, - "Germ Kindred": 2, - "Living weapon": 2, - "Strive": 5, - "Open an Attraction": 5, - "Hippogriff Kindred": 1, - "Buyback": 5, - "Corrupted": 6, - "Myr Kindred": 2, - "Caves Matter": 6, - "Lhurgoyf Kindred": 8, - "Exalted": 11, - "Monarch": 6, - "Learn": 4, - "Suspend": 12, - "Rampage": 4, - "Illusion Kindred": 2, - "Fabricate": 4, - "Enchantment Tokens": 16, - "Role token": 9, - "Wombat Kindred": 2, - "Wind Counters": 2, - "Secret council": 2, - "Demon Kindred": 8, - "Basilisk Kindred": 12, - "Cost Scaling": 3, - "Modal": 3, - "Spree": 3, - "Egg Counters": 2, - "Lairs Matter": 3, - "Spellshaper Kindred": 11, - "Minotaur Kindred": 3, - "Vanishing": 3, - "Flesh Hooks": 1, - "Skeleton Kindred": 6, - "Emerge": 4, - "Wolverine Kindred": 4, - "Pilot Kindred": 6, - "Hag Kindred": 4, - "Sand Kindred": 4, - "Cleave": 2, - "Soulbond": 8, - "Double strike": 7, - "Employee Kindred": 3, - "Magecraft": 7, - "Drake Kindred": 6, - "Scarecrow Kindred": 8, - "Zubera Kindred": 1, - "Pillowfort": 8, - "Nymph Kindred": 6, - "Nonbasic landwalk": 1, - "The Most Important Punch in History": 1, - "Nephilim Kindred": 4, - "Choose a background": 6, - "Endure": 3, - "Awaken": 1, - "Monkey Kindred": 7, - "Venture into the dungeon": 6, - "Friends Forever": 2, - "Otter Kindred": 1, - "Prowess": 1, - "Spore Counters": 16, - "Antelope Kindred": 7, - "Unicorn Kindred": 7, - "Vedalken Kindred": 6, - "Epic": 1, - "Glimmer Kindred": 1, - "Djinn Kindred": 4, - "Hideaway": 4, - "Freerunning": 2, - "Leviathan Kindred": 9, - "Eternalize": 3, - "Ferocious": 11, - "Tribute": 4, - "Melee": 4, - "Overload": 2, - "Protection from Quality": 15, - "Salamander Kindred": 4, - "Octopus Kindred": 7, - "Clash": 6, - "Entwine": 7, - "Waterbend": 1, - "Retrace": 5, - "Riot": 7, - "Storage Counters": 4, - "\\+2/\\+2 Counters": 1, - "Squad": 1, - "Will of the council": 2, - "Adamant": 3, - "Gargoyle Kindred": 2, - "Hexproof from": 5, - "Sheep Kindred": 1, - "Bloodrush": 7, - "Beaver Kindred": 1, - "Gremlin Kindred": 1, - "Mountainwalk": 1, - "Rad Counters": 6, - "Jellyfish Kindred": 2, - "Multikicker": 4, - "Gnoll Kindred": 2, - "Pack tactics": 4, - "Shrines Matter": 6, - "Dredge": 7, - "Undergrowth": 9, - "Aetherborn Kindred": 1, - "Paradox": 3, - "Protection from Creature Type": 3, - "Croak Counters": 1, - "Rally": 3, - "Crab Kindred": 6, - "Juggernaut Kindred": 1, - "Slime Counters": 1, - "Devouring Monster": 1, - "Rapacious Hunger": 1, - "Replicate": 2, - "Sage Project": 1, - "Demonstrate": 1, - "Tower Counters": 1, - "Mite Kindred": 2, - "Devil Kindred": 2, - "Depletion Counters": 3, - "Cloak": 2, - "Frenzied Metabolism": 1, - "Embalm": 1, - "Boast": 2, - "Endless Swarm": 1, - "Undying": 4, - "Rat Kindred": 2, - "Efreet Kindred": 2, - "Parley": 6, - "Harmony Counters": 1, - "Battles Matter": 10, - "Bushido": 2, - "Yeti Kindred": 5, - "Leech Kindred": 3, - "Craft": 2, - "Graveyard Matters": 2, - "Companion": 4, - "Flanking": 2, - "Ferret Kindred": 1, - "000 Needles": 1, - "Map Token": 3, - "Study Counters": 1, - "Splice": 4, - "Split second": 4, - "Horsemanship": 1, - "Raid": 1, - "Kinship": 3, - "Pheromone Trail": 1, - "Awakening Counters": 1, - "Metathran Kindred": 1, - "Vitality Counters": 1, - "Gift": 5, - "Disappear": 5, - "Max speed": 1, - "Start your engines!": 3, - "Lieutenant": 2, - "Basic landcycling": 6, - "Psychic Stimulus": 1, - "Spiritual Leader": 1, - "Scavenge the Dead": 1, - "Growth Counters": 4, - "Harmonize": 4, - "Unearth": 3, - "Terror from the Deep": 1, - "Sneak": 3, - "Verse Counters": 3, - "Fungus Counters": 2, - "Hamster Kindred": 2, - "Slug Kindred": 2, - "Horse Kindred": 10, - "Infesting Spores": 1, - "Divinity Counters": 1, - "Mystic Kindred": 3, - "Nomad Kindred": 2, - "Strategic Coordinator": 1, - "Noggle Kindred": 1, - "Licid Kindred": 2, - "Fast Healing": 1, - "Wave Cannon": 1, - "Everything Counters": 1, - "Council's dilemma": 3, - "Impending": 1, - "Mama's Coming": 1, - "Fetch Counters": 1, - "Plainscycling": 1, - "Dethrone": 1, - "Pegasus Kindred": 1, - "Will of the Planeswalkers": 1, - "Offering": 1, - "Web-slinging": 6, - "Phelddagrif Kindred": 2, - "Inspired": 2, - "Chroma": 2, - "Plague Counters": 1, - "Defense Counters": 1, - "Rebound": 3, - "Crystal Counters": 1, - "Ribbon Counters": 1, - "Kobold Kindred": 1, - "Vanguard Species": 1, - "Camel Kindred": 1, - "Possum Kindred": 2, - "Thopter Kindred": 1, - " Blood Counters": 1, - "Pangolin Kindred": 2, - "Recover": 1, - "Griffin Kindred": 2, - "Angelo Cannon": 1, - "Undaunted": 1, - "Graveborn Kindred": 1, - "Share Intelligence": 1, - "Conjure Elemental": 1, - "Multiple Copies": 1, - "Slime Against Humanity": 1, - "Slith Kindred": 1, - "Sphinx Kindred": 1, - "Animal May-Ham": 1, - "Spike Kindred": 10, - "Armadillo Kindred": 1, - "Spore Chimney": 1, - "Monger Kindred": 1, - "Fathomless descent": 1, - "Mouse Kindred": 2, - "Supply Counters": 1, - "Ceaseless Tempest": 1, - "Glory of Battle": 1, - "Ripple": 1, - "Replacement Draw": 1, - "For Mirrodin!": 1, - "Moonfolk Kindred": 1, - "Reconfigure": 2, - "Tempting offer": 1, - "Ascend": 2, - "Death Frenzy": 1, - "Hatching Counters": 1, - "Gold Token": 1, - "Spheres Matter": 1, - "Gamer Kindred": 1, - "Time Lord's Prerogative": 1, - "Rapid Regeneration": 1, - "Xenos Cunning": 1, - "Team TARDIS": 1, - "Read Ahead": 2, - "Bear Witness": 1, - "Final Heaven": 1, - "Meteor Strikes": 1, - "Tiered": 1, - "Banding": 1, - "Meld": 2, - "Velocity Counters": 1, - "Hypertoxic Miasma": 1, - "Dash": 1, - "Mentor": 1, - "Subterranean Assault": 1, - "Nest Counters": 1, - "Toy Kindred": 1, - "Shrieking Gargoyles": 1, - "Synapse Creature": 1, - "Living metal": 1, - "Mountaincycling": 1, - "Processor Kindred": 1, - "Varmint Kindred": 1, - "Praetor Kindred": 3, - "Pirate Kindred": 2, - "-0/-1 Counters": 1, - "Unrivaled Lethality": 1, - "Phoenix Kindred": 1, - "Gather Your Courage": 1, - "Run and Hide": 1 - } + "white": {}, + "blue": {}, + "black": {}, + "red": {}, + "green": {} }, "generated_from": "merge (analytics + curated YAML + whitelist)", "metadata_info": { "mode": "merge", - "generated_at": "2026-03-22T14:52:28", + "generated_at": "2026-03-25T21:22:14", "curated_yaml_files": 735, "synergy_cap": 5, "inference": "pmi", "version": "phase-b-merge-v1", "catalog_hash": "432b90659a971abc5c1a2335fac603c798399e556f4b4c14098795e18f398426" }, - "description_fallback_summary": null + "description_fallback_summary": { + "total_themes": 735, + "generic_total": 282, + "generic_with_synergies": 253, + "generic_plain": 29, + "generic_pct": 38.37, + "top_generic_by_frequency": [ + { + "theme": "Adamant", + "popularity_bucket": "Rare", + "synergy_count": 0, + "total_frequency": 0, + "description": "Builds around the Adamant theme and its supporting synergies." + }, + { + "theme": "Adapt", + "popularity_bucket": "Rare", + "synergy_count": 5, + "total_frequency": 0, + "description": "Builds around Adapt leveraging synergies with +1/+1 Counters and Counters Matter." + }, + { + "theme": "Addendum", + "popularity_bucket": "Rare", + "synergy_count": 3, + "total_frequency": 0, + "description": "Builds around Addendum leveraging synergies with Interaction and Spells Matter." + }, + { + "theme": "Afflict", + "popularity_bucket": "Rare", + "synergy_count": 4, + "total_frequency": 0, + "description": "Builds around Afflict leveraging synergies with Zombie Kindred and Burn." + }, + { + "theme": "Afterlife", + "popularity_bucket": "Rare", + "synergy_count": 5, + "total_frequency": 0, + "description": "Builds around Afterlife leveraging synergies with Spirit Kindred and Sacrifice Matters." + }, + { + "theme": "Airbending", + "popularity_bucket": "Rare", + "synergy_count": 0, + "total_frequency": 0, + "description": "Builds around the Airbending theme and its supporting synergies." + }, + { + "theme": "Alliance", + "popularity_bucket": "Rare", + "synergy_count": 5, + "total_frequency": 0, + "description": "Builds around Alliance leveraging synergies with Druid Kindred and Elf Kindred." + }, + { + "theme": "Amass", + "popularity_bucket": "Rare", + "synergy_count": 5, + "total_frequency": 0, + "description": "Builds around Amass leveraging synergies with Army Kindred and Orc Kindred." + }, + { + "theme": "Amplify", + "popularity_bucket": "Rare", + "synergy_count": 5, + "total_frequency": 0, + "description": "Builds around Amplify leveraging synergies with +1/+1 Counters and Counters Matter." + }, + { + "theme": "Annihilator", + "popularity_bucket": "Rare", + "synergy_count": 0, + "total_frequency": 0, + "description": "Builds around the Annihilator theme and its supporting synergies." + }, + { + "theme": "Ascend", + "popularity_bucket": "Rare", + "synergy_count": 5, + "total_frequency": 0, + "description": "Builds around Ascend leveraging synergies with Little Fellas." + }, + { + "theme": "Assist", + "popularity_bucket": "Rare", + "synergy_count": 5, + "total_frequency": 0, + "description": "Builds around Assist leveraging synergies with Big Mana and Interaction." + }, + { + "theme": "Awaken", + "popularity_bucket": "Rare", + "synergy_count": 5, + "total_frequency": 0, + "description": "Builds around Awaken leveraging synergies with Elemental Kindred and Lands Matter." + }, + { + "theme": "Backup", + "popularity_bucket": "Rare", + "synergy_count": 5, + "total_frequency": 0, + "description": "Builds around Backup leveraging synergies with +1/+1 Counters and Blink." + }, + { + "theme": "Banding", + "popularity_bucket": "Rare", + "synergy_count": 5, + "total_frequency": 0, + "description": "Builds around Banding leveraging synergies with First strike and Soldier Kindred." + }, + { + "theme": "Bargain", + "popularity_bucket": "Rare", + "synergy_count": 5, + "total_frequency": 0, + "description": "Builds around Bargain leveraging synergies with Blink and Enter the Battlefield." + }, + { + "theme": "Basic landcycling", + "popularity_bucket": "Rare", + "synergy_count": 5, + "total_frequency": 0, + "description": "Builds around Basic landcycling leveraging synergies with Landcycling and Cycling." + }, + { + "theme": "Battalion", + "popularity_bucket": "Rare", + "synergy_count": 5, + "total_frequency": 0, + "description": "Builds around Battalion leveraging synergies with Human Kindred and Aggro." + }, + { + "theme": "Battle Cry", + "popularity_bucket": "Rare", + "synergy_count": 2, + "total_frequency": 0, + "description": "Builds around Battle Cry leveraging synergies with Aggro and Combat Matters." + }, + { + "theme": "Battles Matter", + "popularity_bucket": "Rare", + "synergy_count": 5, + "total_frequency": 0, + "description": "Builds around Battles Matter leveraging synergies with Transform and Card Draw." + }, + { + "theme": "Behold", + "popularity_bucket": "Rare", + "synergy_count": 3, + "total_frequency": 0, + "description": "Builds around the Behold theme and its supporting synergies." + }, + { + "theme": "Bending", + "popularity_bucket": "Rare", + "synergy_count": 5, + "total_frequency": 0, + "description": "Builds around Bending leveraging synergies with Earthbending and Waterbending." + }, + { + "theme": "Bestow", + "popularity_bucket": "Rare", + "synergy_count": 5, + "total_frequency": 0, + "description": "Builds around Bestow leveraging synergies with Equipment Matters and Auras." + }, + { + "theme": "Blitz", + "popularity_bucket": "Rare", + "synergy_count": 5, + "total_frequency": 0, + "description": "Builds around Blitz leveraging synergies with Midrange and Unconditional Draw." + }, + { + "theme": "Board Wipes", + "popularity_bucket": "Common", + "synergy_count": 5, + "total_frequency": 0, + "description": "Builds around Board Wipes leveraging synergies with Pingers and Interaction." + }, + { + "theme": "Boast", + "popularity_bucket": "Rare", + "synergy_count": 5, + "total_frequency": 0, + "description": "Builds around Boast leveraging synergies with Warrior Kindred and Human Kindred." + }, + { + "theme": "Bolster", + "popularity_bucket": "Rare", + "synergy_count": 5, + "total_frequency": 0, + "description": "Builds around Bolster leveraging synergies with +1/+1 Counters and Combat Tricks." + }, + { + "theme": "Bushido", + "popularity_bucket": "Rare", + "synergy_count": 5, + "total_frequency": 0, + "description": "Builds around Bushido leveraging synergies with Samurai Kindred and Fox Kindred." + }, + { + "theme": "Cantrips", + "popularity_bucket": "Common", + "synergy_count": 5, + "total_frequency": 0, + "description": "Builds around Cantrips leveraging synergies with Clue Token and Investigate." + }, + { + "theme": "Card Draw", + "popularity_bucket": "Very Common", + "synergy_count": 17, + "total_frequency": 0, + "description": "Builds around Card Draw leveraging synergies with Loot and Wheels." + }, + { + "theme": "Card Selection", + "popularity_bucket": "Niche", + "synergy_count": 5, + "total_frequency": 0, + "description": "Builds around Card Selection leveraging synergies with Explore and Map Token." + }, + { + "theme": "Cases Matter", + "popularity_bucket": "Rare", + "synergy_count": 1, + "total_frequency": 0, + "description": "Builds around Cases Matter leveraging synergies with Enchantments Matter." + }, + { + "theme": "Casualty", + "popularity_bucket": "Rare", + "synergy_count": 5, + "total_frequency": 0, + "description": "Builds around Casualty leveraging synergies with Spell Copy and Sacrifice Matters." + }, + { + "theme": "Caves Matter", + "popularity_bucket": "Rare", + "synergy_count": 5, + "total_frequency": 0, + "description": "Builds around Caves Matter leveraging synergies with Discover and Land Types Matter." + }, + { + "theme": "Celebration", + "popularity_bucket": "Rare", + "synergy_count": 1, + "total_frequency": 0, + "description": "Builds around the Celebration theme and its supporting synergies." + }, + { + "theme": "Champion", + "popularity_bucket": "Rare", + "synergy_count": 2, + "total_frequency": 0, + "description": "Builds around Champion leveraging synergies with Aggro and Combat Matters." + }, + { + "theme": "Changeling", + "popularity_bucket": "Rare", + "synergy_count": 5, + "total_frequency": 0, + "description": "Builds around Changeling leveraging synergies with Shapeshifter Kindred and Combat Tricks." + }, + { + "theme": "Channel", + "popularity_bucket": "Rare", + "synergy_count": 5, + "total_frequency": 0, + "description": "Builds around Channel leveraging synergies with Spirit Kindred and Lands Matter." + }, + { + "theme": "Chroma", + "popularity_bucket": "Rare", + "synergy_count": 0, + "total_frequency": 0, + "description": "Builds around the Chroma theme and its supporting synergies." + }, + { + "theme": "Cipher", + "popularity_bucket": "Rare", + "synergy_count": 4, + "total_frequency": 0, + "description": "Builds around Cipher leveraging synergies with Aggro and Combat Matters." + }, + { + "theme": "Clash", + "popularity_bucket": "Rare", + "synergy_count": 5, + "total_frequency": 0, + "description": "Builds around Clash leveraging synergies with Warrior Kindred and Control." + }, + { + "theme": "Cleave", + "popularity_bucket": "Rare", + "synergy_count": 2, + "total_frequency": 0, + "description": "Builds around Cleave leveraging synergies with Spells Matter and Spellslinger." + }, + { + "theme": "Cloak", + "popularity_bucket": "Rare", + "synergy_count": 2, + "total_frequency": 0, + "description": "Builds around the Cloak theme and its supporting synergies." + }, + { + "theme": "Clones", + "popularity_bucket": "Common", + "synergy_count": 5, + "total_frequency": 0, + "description": "Builds around Clones leveraging synergies with Populate and Myriad." + }, + { + "theme": "Cohort", + "popularity_bucket": "Rare", + "synergy_count": 2, + "total_frequency": 0, + "description": "Builds around Cohort leveraging synergies with Ally Kindred." + }, + { + "theme": "Collect evidence", + "popularity_bucket": "Rare", + "synergy_count": 5, + "total_frequency": 0, + "description": "Builds around Collect evidence leveraging synergies with Detective Kindred and Mill." + }, + { + "theme": "Combat Matters", + "popularity_bucket": "Very Common", + "synergy_count": 5, + "total_frequency": 0, + "description": "Builds around Combat Matters leveraging synergies with Aggro and Voltron." + }, + { + "theme": "Combat Tricks", + "popularity_bucket": "Very Common", + "synergy_count": 5, + "total_frequency": 0, + "description": "Builds around Combat Tricks leveraging synergies with Flash and Strive." + }, + { + "theme": "Compleated", + "popularity_bucket": "Rare", + "synergy_count": 0, + "total_frequency": 0, + "description": "Builds around the Compleated theme and its supporting synergies." + }, + { + "theme": "Conditional Draw", + "popularity_bucket": "Common", + "synergy_count": 5, + "total_frequency": 0, + "description": "Builds around Conditional Draw leveraging synergies with Start your engines! and Max speed." + } + ] + } } \ No newline at end of file diff --git a/docker-compose.yml b/docker-compose.yml index 5c34cdf..5b7bf06 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -43,7 +43,6 @@ services: SIMILARITY_CACHE_ENABLED: "1" # 1=use pre-computed similarity cache; 0=real-time calculation SIMILARITY_CACHE_PATH: "card_files/similarity_cache.parquet" # Path to Parquet cache file ENABLE_BATCH_BUILD: "1" # 1=enable Build X and Compare feature; 0=hide build count slider - ENABLE_SMART_LANDS: "1" # 1=enable smart land base analysis (auto land count + profile from CMC/pips); 0=use fixed defaults # LAND_PROFILE: "mid" # Optional: force a land profile (basics|mid|fixing); skips auto-detection # LAND_COUNT: "36" # Optional: force total land count; skips curve calculation diff --git a/dockerhub-docker-compose.yml b/dockerhub-docker-compose.yml index 2a48075..56dfae1 100644 --- a/dockerhub-docker-compose.yml +++ b/dockerhub-docker-compose.yml @@ -45,7 +45,6 @@ services: SIMILARITY_CACHE_ENABLED: "1" # 1=use pre-computed similarity cache; 0=real-time calculation SIMILARITY_CACHE_PATH: "card_files/similarity_cache.parquet" # Path to Parquet cache file ENABLE_BATCH_BUILD: "1" # 1=enable Build X and Compare feature; 0=hide build count slider - ENABLE_SMART_LANDS: "1" # 1=enable smart land base analysis (auto land count + profile from CMC/pips); 0=use fixed defaults # LAND_PROFILE: "mid" # Optional: force a land profile (basics|mid|fixing); skips auto-detection # LAND_COUNT: "36" # Optional: force total land count; skips curve calculation diff --git a/docs/user_guides/land_bases.md b/docs/user_guides/land_bases.md index b8f4d1b..6517875 100644 --- a/docs/user_guides/land_bases.md +++ b/docs/user_guides/land_bases.md @@ -14,7 +14,7 @@ By default every deck gets exactly 35 lands regardless of CMC curve or color den From those three signals it picks a **land count** (33–39), a **basics count**, and an **ETB tapped tolerance**, then passes those targets to every existing land-selection step — no other logic changes. -Enable with `ENABLE_SMART_LANDS=1` (default: on in Docker). +Enable Smart Land Bases per-build via the **Smart Land Bases** checkbox in the Preferences section of the New Deck modal (checked by default). Disable it for a single build by unchecking the box. --- @@ -81,15 +81,14 @@ The **Why:** section explains in plain English what drove the decision — singl --- -## Environment Variable Overrides +## Overrides | Variable | Values | Effect | |----------|--------|--------| -| `ENABLE_SMART_LANDS` | `1` (on), `0` / unset (off) | Master switch. When off, fixed defaults (35 lands, 15 basics) are used. | | `LAND_PROFILE` | `basics`, `mid`, `fixing` | Force a specific profile, skip auto-detection. | | `LAND_COUNT` | integer (e.g. `36`) | Force total land count, skip curve calculation. | -Env overrides are applied **after** the analysis, so they always win over the calculated values. +Env overrides are applied **after** the analysis, so they always win over the calculated values. For headless/CLI builds these are the primary way to control land behaviour. ---