examples
dynamic
- change font size
- color picker
- compare random function performance
- counter (using innerHTML)
- counter (using a data attribute)
- counter (using a variable)
- deck filter
- weather report
- met museum search
- plus/minus
- track last button clicked
progressive enhancement
deck filter
Loading cards...
html
<div class="deck-wrapper" data-r="deck deckError filter">Loading cards...</div>
<div data-r="controls"></div>
<script data-template="card" type="text/html">
<div class="card" data-land="__IS_LAND__">
<img src="/images/magic-cards/__UUID__.jpg" alt="The __NAME__ card from Magic: The Gathering" />
</div>
</script> javascript
export const b = { init: "init" };
let data;
let url = "/versions/8/0/0/examples/dynamic/deck-filter/data.json";
export async function init() {
data = await b.getData(url);
if (data) {
b.trigger("deck controls");
} else {
b.trigger("deckError");
}
}
function cardIsLand(card) {
return card.oracleCard.types[0] === "Land";
}
function cardName(card) {
return card.oracleCard.name;
}
export function controls(_, __, el) {
const subs = { __PREPEND__: "Hightlight Cards", __SEND__: "filter" };
el.replaceChildren(b.switch(subs));
}
export function deck(_, __, el) {
el.replaceChildren(
...sortedCards().map((card) => {
const subs = {
__IS_LAND__: cardIsLand(card),
__NAME__: cardName(card),
__UUID__: uuid(card),
};
return b.render("card", subs);
}),
);
}
export function deckError(_, __, el) {
el.innerHTML = "Error: Could not load remote files";
}
export function filter(_, sender, el) {
sender.setAria("checked", !sender.ariaAsBool("checked"));
el.setProp("filtered", sender.ariaAsBool("checked"));
}
function sortedCards() {
return data
.cards
.map((content) => content.card)
.sort((a, b) => {
return a.oracleCard.name.localeCompare(
b.oracleCard.name,
);
});
}
function uuid(card) {
return card.uid;
}styles
.card {
border-radius: 0.3rem;
img {
border-radius: 0.3rem;
}
}
.deck-wrapper {
display: grid;
grid-template-columns: repeat(5, 1fr);
gap: 0.4rem;
}
[data-filtered=true] [data-land=false] {
opacity: 0.24;
}data.json
{
"id": 20001948,
"name": "Yuriko-v5 - Ninjas",
"createdAt": "2026-02-15T16:52:11.847491Z",
"updatedAt": "2026-03-11T01:35:11.069407Z",
"deckFormat": 3,
"edhBracket": null,
"game": null,
"description": "{\"ops\":[]}",
"viewCount": 26,
"featured": "https://storage.googleapis.com/archidekt-card-images/cmm/f43fe61f-513e-4308-8194-99f73c6fa972_art_crop.jpg",
"customFeatured": "",
"private": false,
"unlisted": true,
"theorycrafted": true,
"points": 0,
"userInput": 0,
"owner": {
"id": 901978,
"username": "TheIdOfAlan",
"avatar": "https://storage.googleapis.com/topdekt-user/avatars/default/avatar_colorless.svg",
"frame": null,
"ckAffiliate": "",
"tcgAffiliate": "",
"referrerEnum": null
},
"commentRoot": 20044271,
"editors": null,
"parentFolder": 1400379,
"bookmarked": false,
"categories": [
{
"id": 244022391,
"name": "Enchantment",
"isPremier": false,
"includedInDeck": true,
"includedInPrice": true
},
{
"id": 244022390,
"name": "Drain",
"isPremier": false,
"includedInDeck": true,
"includedInPrice": true
},
{
"id": 244022389,
"name": "Blink",
"isPremier": false,
"includedInDeck": true,
"includedInPrice": true
},
{
"id": 244022388,
"name": "Landfall",
"isPremier": false,
"includedInDeck": true,
"includedInPrice": true
},
{
"id": 244022387,
"name": "Sorcery",
"isPremier": false,
"includedInDeck": true,
"includedInPrice": true
},
{
"id": 244022386,
"name": "Sac Outlet",
"isPremier": false,
"includedInDeck": true,
"includedInPrice": true
},
{
"id": 244022385,
"name": "Pump",
"isPremier": false,
"includedInDeck": true,
"includedInPrice": true
},
{
"id": 244022384,
"name": "Mill",
"isPremier": false,
"includedInDeck": true,
"includedInPrice": true
},
{
"id": 244022383,
"name": "Creature",
"isPremier": false,
"includedInDeck": true,
"includedInPrice": true
},
{
"id": 244022382,
"name": "Discard",
"isPremier": false,
"includedInDeck": true,
"includedInPrice": true
},
{
"id": 244022381,
"name": "Artifact",
"isPremier": false,
"includedInDeck": true,
"includedInPrice": true
},
{
"id": 244022380,
"name": "Infect",
"isPremier": false,
"includedInDeck": true,
"includedInPrice": true
},
{
"id": 244022379,
"name": "Proliferate",
"isPremier": false,
"includedInDeck": true,
"includedInPrice": true
},
{
"id": 244022378,
"name": "Untap",
"isPremier": false,
"includedInDeck": true,
"includedInPrice": true
},
{
"id": 244022377,
"name": "Anthem",
"isPremier": false,
"includedInDeck": true,
"includedInPrice": true
},
{
"id": 244022376,
"name": "Lifegain",
"isPremier": false,
"includedInDeck": true,
"includedInPrice": true
},
{
"id": 244022375,
"name": "Land",
"isPremier": false,
"includedInDeck": true,
"includedInPrice": true
},
{
"id": 244022374,
"name": "Tokens",
"isPremier": false,
"includedInDeck": true,
"includedInPrice": true
},
{
"id": 244022373,
"name": "Ramp",
"isPremier": false,
"includedInDeck": true,
"includedInPrice": true
},
{
"id": 244022372,
"name": "Draw",
"isPremier": false,
"includedInDeck": true,
"includedInPrice": true
},
{
"id": 244022371,
"name": "Evasion",
"isPremier": false,
"includedInDeck": true,
"includedInPrice": true
},
{
"id": 244022370,
"name": "Removal",
"isPremier": false,
"includedInDeck": true,
"includedInPrice": true
},
{
"id": 244022369,
"name": "Bounce",
"isPremier": false,
"includedInDeck": true,
"includedInPrice": true
},
{
"id": 244022368,
"name": "Stax",
"isPremier": false,
"includedInDeck": true,
"includedInPrice": true
},
{
"id": 244022367,
"name": "Tutor",
"isPremier": false,
"includedInDeck": true,
"includedInPrice": true
},
{
"id": 244022366,
"name": "Finisher",
"isPremier": false,
"includedInDeck": true,
"includedInPrice": true
},
{
"id": 244022365,
"name": "Counters",
"isPremier": false,
"includedInDeck": true,
"includedInPrice": true
},
{
"id": 244022364,
"name": "Recursion",
"isPremier": false,
"includedInDeck": true,
"includedInPrice": true
},
{
"id": 244022363,
"name": "Copy",
"isPremier": false,
"includedInDeck": true,
"includedInPrice": true
},
{
"id": 244022362,
"name": "Clones",
"isPremier": false,
"includedInDeck": true,
"includedInPrice": true
},
{
"id": 244022361,
"name": "Burn",
"isPremier": false,
"includedInDeck": true,
"includedInPrice": true
},
{
"id": 244022360,
"name": "Theft",
"isPremier": false,
"includedInDeck": true,
"includedInPrice": true
},
{
"id": 244022359,
"name": "Protection",
"isPremier": false,
"includedInDeck": true,
"includedInPrice": true
},
{
"id": 244022358,
"name": "Commander",
"isPremier": true,
"includedInDeck": true,
"includedInPrice": true
},
{
"id": 244022357,
"name": "Maybeboard",
"isPremier": false,
"includedInDeck": false,
"includedInPrice": false
},
{
"id": 244022356,
"name": "Sideboard",
"isPremier": false,
"includedInDeck": true,
"includedInPrice": true
},
{
"id": 244022355,
"name": "Holding",
"isPremier": false,
"includedInDeck": true,
"includedInPrice": true
},
{
"id": 244022354,
"name": "Pingers",
"isPremier": false,
"includedInDeck": true,
"includedInPrice": true
}
],
"deckTags": [],
"playgroupDeckUrl": null,
"cardPackage": null,
"cards": [
{
"id": 2865155925,
"categories": [
"Land"
],
"companion": false,
"flippedDefault": false,
"label": ",#656565",
"modifier": "Normal",
"quantity": 1,
"customCmc": null,
"removedCategories": null,
"createdAt": "2026-02-22T03:14:40.088472Z",
"updatedAt": "2026-02-22T03:14:40.088492Z",
"deletedAt": null,
"notes": null,
"card": {
"id": 144491,
"artist": "Shahab Alizadeh",
"tcgProductId": 631195,
"ckFoilId": 315018,
"ckNormalId": 314917,
"cmEd": null,
"scgSku": "SGL-MTG-FIC-415-ENN",
"scgFoilSku": null,
"collectorNumber": "415",
"multiverseid": 0,
"mtgoFoilId": 0,
"mtgoNormalId": 140571,
"uid": "b8cd0293-d140-4f80-804c-019957c1f49a",
"displayName": null,
"releasedAt": "2025-06-13",
"contentWarning": false,
"edition": {
"editioncode": "fic",
"editionname": "Final Fantasy Commander",
"editiondate": "2025-06-13",
"editiontype": "commander",
"mtgoCode": null
},
"flavor": "\"Make your way out of town through the mines! I'll try to buy you some time.\"\n-—Old man from Narshe",
"games": [],
"options": [
"Normal",
"Foil"
],
"scryfallImageHash": "1748705656",
"oracleCard": {
"id": 13614,
"cmc": 0,
"colorIdentity": [],
"colors": [],
"edhrecRank": 19,
"faces": [],
"layout": "normal",
"uid": "f29dc596-2121-4421-8463-15f6c2e8b9b3",
"legalities": {
"alchemy": "legal",
"legacy": "legal",
"oldschool": "not_legal",
"modern": "legal",
"vintage": "legal",
"oathbreaker": "legal",
"1v1": "legal",
"historicbrawl": "legal",
"premodern": "not_legal",
"historic": "legal",
"commander": "legal",
"paupercommander": "not_legal",
"gladiator": "legal",
"explorer": null,
"brawl": "legal",
"penny": "not_legal",
"pioneer": "legal",
"duel": "legal",
"pauper": "not_legal",
"standard": "legal",
"future": "legal",
"predh": "not_legal",
"timeless": "legal",
"canlander": "legal"
},
"manaCost": "",
"manaProduction": {
"W": null,
"U": null,
"B": null,
"R": null,
"G": null,
"C": 1
},
"name": "Rogue's Passage",
"power": "",
"salt": 0.35,
"subTypes": [],
"superTypes": [],
"keywords": [],
"text": "{T}: Add {C}.\n{4}, {T}: Target creature can't be blocked this turn.",
"tokens": [],
"toughness": "",
"types": [
"Land"
],
"loyalty": null,
"canlanderPoints": null,
"isPDHCommander": false,
"defaultCategory": null,
"gameChanger": false,
"extraTurns": false,
"tutor": false,
"massLandDenial": false,
"twoCardComboSingelton": false,
"twoCardComboIds": [],
"atomicCombos": [],
"potentialCombos": [],
"lang": "en"
},
"owned": 0,
"pinnedStatus": 0,
"prices": {
"ck": 0.79,
"ckfoil": 7.99,
"cm": 0.38,
"cmfoil": 0.0,
"mtgo": 0.06,
"mtgofoil": 0.0,
"tcg": 0.41,
"tcgfoil": 0.0,
"scg": 0.75,
"scgfoil": 0.0,
"mp": 0.39,
"mpfoil": 7.55,
"tcgLand": 18.0,
"tcgLandFoil": 0.0
},
"rarity": "uncommon",
"globalCategories": []
}
},
{
"id": 2845321644,
"categories": [
"Land"
],
"companion": false,
"flippedDefault": false,
"label": ",#656565",
"modifier": "Normal",
"quantity": 11,
"customCmc": null,
"removedCategories": null,
"createdAt": "2026-02-15T16:52:13.490053Z",
"updatedAt": "2026-02-22T03:14:50.478517Z",
"deletedAt": null,
"notes": null,
"card": {
"id": 138347,
"artist": "Adam Paquette",
"tcgProductId": 589316,
"ckFoilId": 256807,
"ckNormalId": 256296,
"cmEd": "",
"scgSku": "SGL-MTG-FDN-285-ENN",
"scgFoilSku": "SGL-MTG-FDN-285-ENF",
"collectorNumber": "285",
"multiverseid": 677804,
"mtgoFoilId": 0,
"mtgoNormalId": 133862,
"uid": "6f534ddc-f610-45cd-84dc-bb6df6c5a84f",
"displayName": null,
"releasedAt": "2024-11-15",
"contentWarning": false,
"edition": {
"editioncode": "fdn",
"editionname": "Foundations",
"editiondate": "2024-11-15",
"editiontype": "core",
"mtgoCode": "fdn"
},
"flavor": "",
"games": [],
"options": [
"Normal",
"Foil"
],
"scryfallImageHash": "1730489662",
"oracleCard": {
"id": 8373,
"cmc": 0,
"colorIdentity": [
"Blue"
],
"colors": [],
"edhrecRank": null,
"faces": [],
"layout": "normal",
"uid": "b2c6aa39-2d2a-459c-a555-fb48ba993373",
"legalities": {
"alchemy": "legal",
"legacy": "legal",
"oldschool": "not_legal",
"modern": "legal",
"vintage": "legal",
"oathbreaker": "legal",
"1v1": "legal",
"historicbrawl": "legal",
"premodern": "legal",
"historic": "legal",
"commander": "legal",
"paupercommander": "legal",
"gladiator": "legal",
"explorer": null,
"brawl": "legal",
"penny": "legal",
"pioneer": "legal",
"duel": "legal",
"pauper": "legal",
"standard": "legal",
"future": "legal",
"predh": "legal",
"timeless": "legal",
"canlander": "legal"
},
"manaCost": "",
"manaProduction": {
"W": null,
"U": 1,
"B": null,
"R": null,
"G": null,
"C": null
},
"name": "Island",
"power": "",
"salt": 0.92,
"subTypes": [
"Island"
],
"superTypes": [
"Basic"
],
"keywords": [],
"text": "({T}: Add {U}.)",
"tokens": [],
"toughness": "",
"types": [
"Land"
],
"loyalty": null,
"canlanderPoints": null,
"isPDHCommander": false,
"defaultCategory": null,
"gameChanger": false,
"extraTurns": false,
"tutor": false,
"massLandDenial": false,
"twoCardComboSingelton": false,
"twoCardComboIds": [],
"atomicCombos": [],
"potentialCombos": [],
"lang": "en"
},
"owned": 0,
"pinnedStatus": 0,
"prices": {
"ck": 0.69,
"ckfoil": 0.99,
"cm": 0.27,
"cmfoil": 0.3,
"mtgo": 0.03,
"mtgofoil": 0.0,
"tcg": 0.32,
"tcgfoil": 0.7,
"scg": 0.99,
"scgfoil": 0.99,
"mp": 0.15,
"mpfoil": 0.29,
"tcgLand": 57.0,
"tcgLandFoil": 0.0
},
"rarity": "common",
"globalCategories": []
}
},
{
"id": 2867484936,
"categories": [
"Removal"
],
"companion": false,
"flippedDefault": false,
"label": ",#656565",
"modifier": "Normal",
"quantity": 1,
"customCmc": null,
"removedCategories": null,
"createdAt": "2026-02-22T22:14:44.396877Z",
"updatedAt": "2026-02-22T22:14:44.396910Z",
"deletedAt": null,
"notes": null,
"card": {
"id": 138626,
"artist": "Craig J Spearing",
"tcgProductId": 591076,
"ckFoilId": 0,
"ckNormalId": 305727,
"cmEd": "",
"scgSku": "SGL-MTG-FDN-669-ENN",
"scgFoilSku": null,
"collectorNumber": "669",
"multiverseid": 680808,
"mtgoFoilId": 0,
"mtgoNormalId": 134674,
"uid": "7b36fba7-71f7-4b7f-bde5-b3a9752ad21c",
"displayName": null,
"releasedAt": "2024-11-15",
"contentWarning": false,
"edition": {
"editioncode": "fdn",
"editionname": "Foundations",
"editiondate": "2024-11-15",
"editiontype": "core",
"mtgoCode": "fdn"
},
"flavor": "",
"games": [],
"options": [
"Normal"
],
"scryfallImageHash": "1730491131",
"oracleCard": {
"id": 1277,
"cmc": 1,
"colorIdentity": [],
"colors": [],
"edhrecRank": 258,
"faces": [],
"layout": "normal",
"uid": "f5f4dd28-f4ae-4d39-b9b8-6ebfd63c93fe",
"legalities": {
"alchemy": "legal",
"legacy": "legal",
"oldschool": "not_legal",
"modern": "legal",
"vintage": "legal",
"oathbreaker": "legal",
"1v1": "legal",
"historicbrawl": "legal",
"premodern": "not_legal",
"historic": "legal",
"commander": "legal",
"paupercommander": "not_legal",
"gladiator": "legal",
"explorer": null,
"brawl": "legal",
"penny": "legal",
"pioneer": "legal",
"duel": "legal",
"pauper": "not_legal",
"standard": "legal",
"future": "legal",
"predh": "legal",
"timeless": "legal",
"canlander": "legal"
},
"manaCost": "{1}",
"manaProduction": {
"W": null,
"U": null,
"B": null,
"R": null,
"G": null,
"C": null
},
"name": "Basilisk Collar",
"power": "",
"salt": 0.44,
"subTypes": [
"Equipment"
],
"superTypes": [],
"keywords": [
"Equip"
],
"text": "Equipped creature has deathtouch and lifelink. (Any amount of damage it deals to a creature is enough to destroy it. Damage dealt by this creature also causes you to gain that much life.)\nEquip {2} ({2}: Attach to target creature you control. Equip only as a sorcery.)",
"tokens": [],
"toughness": "",
"types": [
"Artifact"
],
"loyalty": null,
"canlanderPoints": null,
"isPDHCommander": false,
"defaultCategory": "Removal",
"gameChanger": false,
"extraTurns": false,
"tutor": false,
"massLandDenial": false,
"twoCardComboSingelton": false,
"twoCardComboIds": [],
"atomicCombos": [],
"potentialCombos": [],
"lang": "en"
},
"owned": 0,
"pinnedStatus": 0,
"prices": {
"ck": 5.49,
"ckfoil": 0.0,
"cm": 3.4,
"cmfoil": 0.0,
"mtgo": 0.02,
"mtgofoil": 0.0,
"tcg": 3.32,
"tcgfoil": 0.0,
"scg": 4.25,
"scgfoil": 0.0,
"mp": 3.5,
"mpfoil": 0.0,
"tcgLand": 112.0,
"tcgLandFoil": 0.0
},
"rarity": "rare",
"globalCategories": []
}
},
{
"id": 2845321478,
"categories": [
"Land"
],
"companion": false,
"flippedDefault": null,
"label": ",#656565",
"modifier": "Foil",
"quantity": 1,
"customCmc": null,
"removedCategories": null,
"createdAt": "2026-02-15T16:52:12.186493Z",
"updatedAt": "2026-02-15T16:52:12.186522Z",
"deletedAt": null,
"notes": null,
"card": {
"id": 148522,
"artist": "Néstor Ossandón Leal",
"tcgProductId": 668657,
"ckFoilId": 0,
"ckNormalId": 0,
"cmEd": null,
"scgSku": null,
"scgFoilSku": null,
"collectorNumber": "17",
"multiverseid": 0,
"mtgoFoilId": 0,
"mtgoNormalId": 0,
"uid": "ffcf7acb-23e4-4658-a5fd-0ae585602dca",
"displayName": null,
"releasedAt": "2025-12-12",
"contentWarning": false,
"edition": {
"editioncode": "pw25",
"editionname": "Wizards Play Network 2025",
"editiondate": "2025-01-01",
"editiontype": "promo",
"mtgoCode": null
},
"flavor": "",
"games": [],
"options": [
"Foil"
],
"scryfallImageHash": "1765895204",
"oracleCard": {
"id": 2993,
"cmc": 0,
"colorIdentity": [],
"colors": [],
"edhrecRank": 2,
"faces": [],
"layout": "normal",
"uid": "0895c9b7-ae7d-4bb3-af17-3b75deb50a25",
"legalities": {
"alchemy": "legal",
"legacy": "legal",
"oldschool": "not_legal",
"modern": "legal",
"vintage": "legal",
"oathbreaker": "legal",
"1v1": "legal",
"historicbrawl": "legal",
"premodern": "not_legal",
"historic": "legal",
"commander": "legal",
"paupercommander": "legal",
"gladiator": "legal",
"explorer": null,
"brawl": "legal",
"penny": "not_legal",
"pioneer": "legal",
"duel": "legal",
"pauper": "legal",
"standard": "not_legal",
"future": "not_legal",
"predh": "not_legal",
"timeless": "legal",
"canlander": "legal"
},
"manaCost": "",
"manaProduction": {
"W": 1,
"U": 1,
"B": 1,
"R": 1,
"G": 1,
"C": null
},
"name": "Command Tower",
"power": "",
"salt": 0.38,
"subTypes": [],
"superTypes": [],
"keywords": [],
"text": "{T}: Add one mana of any color in your commander's color identity.",
"tokens": [],
"toughness": "",
"types": [
"Land"
],
"loyalty": null,
"canlanderPoints": null,
"isPDHCommander": false,
"defaultCategory": null,
"gameChanger": false,
"extraTurns": false,
"tutor": false,
"massLandDenial": false,
"twoCardComboSingelton": false,
"twoCardComboIds": [],
"atomicCombos": [],
"potentialCombos": [],
"lang": "en"
},
"owned": 0,
"pinnedStatus": 0,
"prices": {
"ck": 0.0,
"ckfoil": 8.99,
"cm": 0.0,
"cmfoil": 0.0,
"mtgo": 0.0,
"mtgofoil": 0.0,
"tcg": 0.0,
"tcgfoil": 6.9,
"scg": 0.0,
"scgfoil": 0.0,
"mp": 0.0,
"mpfoil": 17.35,
"tcgLand": 0.0,
"tcgLandFoil": 233.0
},
"rarity": "rare",
"globalCategories": []
}
},
{
"id": 2845321482,
"categories": [
"Draw"
],
"companion": false,
"flippedDefault": null,
"label": ",#656565",
"modifier": "Normal",
"quantity": 1,
"customCmc": null,
"removedCategories": null,
"createdAt": "2026-02-15T16:52:12.202676Z",
"updatedAt": "2026-02-15T16:52:12.202698Z",
"deletedAt": null,
"notes": null,
"card": {
"id": 131025,
"artist": "Leon Tukker",
"tcgProductId": 544203,
"ckFoilId": 294561,
"ckNormalId": 293850,
"cmEd": "",
"scgSku": "SGL-MTG-OTJ-054-ENN",
"scgFoilSku": "SGL-MTG-OTJ-054-ENF",
"collectorNumber": "54",
"multiverseid": 654995,
"mtgoFoilId": 0,
"mtgoNormalId": 124019,
"uid": "166814af-a444-4a62-937e-7491673d9387",
"displayName": null,
"releasedAt": "2024-04-19",
"contentWarning": false,
"edition": {
"editioncode": "otj",
"editionname": "Outlaws of Thunder Junction",
"editiondate": "2024-04-19",
"editiontype": "expansion",
"mtgoCode": "otj"
},
"flavor": "",
"games": [],
"options": [
"Normal",
"Foil"
],
"scryfallImageHash": "1712355445",
"oracleCard": {
"id": 39564,
"cmc": 2,
"colorIdentity": [
"Blue"
],
"colors": [
"Blue"
],
"edhrecRank": 2059,
"faces": [],
"layout": "normal",
"uid": "7a75d565-b0a7-46bf-94a0-c9255c8abd6d",
"legalities": {
"alchemy": "not_legal",
"legacy": "legal",
"oldschool": "not_legal",
"modern": "legal",
"vintage": "legal",
"oathbreaker": "legal",
"1v1": "legal",
"historicbrawl": "legal",
"premodern": "not_legal",
"historic": "legal",
"commander": "legal",
"paupercommander": "not_legal",
"gladiator": "legal",
"explorer": null,
"brawl": "legal",
"penny": "legal",
"pioneer": "legal",
"duel": "legal",
"pauper": "not_legal",
"standard": "legal",
"future": "legal",
"predh": "not_legal",
"timeless": "legal",
"canlander": "legal"
},
"manaCost": "{1}{U}",
"manaProduction": {
"W": null,
"U": null,
"B": null,
"R": null,
"G": null,
"C": null
},
"name": "The Key to the Vault",
"power": "",
"salt": 0.23,
"subTypes": [
"Equipment"
],
"superTypes": [
"Legendary"
],
"keywords": [
"Equip"
],
"text": "Whenever equipped creature deals combat damage to a player, look at that many cards from the top of your library. You may exile a nonland card from among them. Put the rest on the bottom of your library in a random order. You may cast the exiled card without paying its mana cost.\nEquip {2}{U}",
"tokens": [],
"toughness": "",
"types": [
"Artifact"
],
"loyalty": null,
"canlanderPoints": null,
"isPDHCommander": false,
"defaultCategory": "Draw",
"gameChanger": false,
"extraTurns": false,
"tutor": false,
"massLandDenial": false,
"twoCardComboSingelton": false,
"twoCardComboIds": [],
"atomicCombos": [],
"potentialCombos": [],
"lang": "en"
},
"owned": 0,
"pinnedStatus": 0,
"prices": {
"ck": 0.79,
"ckfoil": 0.79,
"cm": 0.54,
"cmfoil": 0.44,
"mtgo": 0.02,
"mtgofoil": 0.0,
"tcg": 1.22,
"tcgfoil": 0.43,
"scg": 0.49,
"scgfoil": 0.99,
"mp": 0.19,
"mpfoil": 0.36,
"tcgLand": 18.0,
"tcgLandFoil": 18.0
},
"rarity": "rare",
"globalCategories": []
}
},
{
"id": 2845321486,
"categories": [
"Land"
],
"companion": false,
"flippedDefault": null,
"label": ",#656565",
"modifier": "Normal",
"quantity": 1,
"customCmc": null,
"removedCategories": null,
"createdAt": "2026-02-15T16:52:12.238722Z",
"updatedAt": "2026-02-15T16:52:12.238751Z",
"deletedAt": null,
"notes": null,
"card": {
"id": 120348,
"artist": "Daarken",
"tcgProductId": 496239,
"ckFoilId": 0,
"ckNormalId": 277781,
"cmEd": "",
"scgSku": "SGL-MTG-PWSB-ZNR_260-ENN",
"scgFoilSku": null,
"collectorNumber": "ZNR-260",
"multiverseid": 0,
"mtgoFoilId": 0,
"mtgoNormalId": 0,
"uid": "3616a2f7-d852-4606-898b-76799c647b40",
"displayName": null,
"releasedAt": "2020-09-26",
"contentWarning": false,
"edition": {
"editioncode": "plst",
"editionname": "The List",
"editiondate": "2020-09-26",
"editiontype": "masters",
"mtgoCode": null
},
"flavor": "",
"games": [],
"options": [
"Normal"
],
"scryfallImageHash": "1684198441",
"oracleCard": {
"id": 21728,
"cmc": 0,
"colorIdentity": [
"Blue",
"Black"
],
"colors": [],
"edhrecRank": 716,
"faces": [
{
"colors": [],
"flavor": "\"Just when the river seems most peaceful, suddenly you round a bend and hurtle down a waterfall.\"\n—Zahr Gada, Halimar expedition leader",
"manaCost": "",
"name": "Clearwater Pathway",
"power": "",
"subTypes": [],
"superTypes": [],
"text": "{T}: Add {U}.",
"toughness": "",
"types": [
"Land"
],
"loyalty": null
},
{
"colors": [],
"flavor": "\"Here, at least, the danger is usually in plain sight.\"\n—Zahr Gada, Halimar expedition leader",
"manaCost": "",
"name": "Murkwater Pathway",
"power": "",
"subTypes": [],
"superTypes": [],
"text": "{T}: Add {B}.",
"toughness": "",
"types": [
"Land"
],
"loyalty": null
}
],
"layout": "modal_dfc",
"uid": "144119bc-7fd1-45c5-9e29-f742e7c255ac",
"legalities": {
"alchemy": "not_legal",
"legacy": "legal",
"oldschool": "not_legal",
"modern": "legal",
"vintage": "legal",
"oathbreaker": "legal",
"1v1": "legal",
"historicbrawl": "legal",
"premodern": "not_legal",
"historic": "legal",
"commander": "legal",
"paupercommander": "not_legal",
"gladiator": "legal",
"explorer": null,
"brawl": "not_legal",
"penny": "not_legal",
"pioneer": "legal",
"duel": "legal",
"pauper": "not_legal",
"standard": "not_legal",
"future": "not_legal",
"predh": "not_legal",
"timeless": "legal",
"canlander": "legal"
},
"manaCost": "",
"manaProduction": {
"W": null,
"U": 1,
"B": 1,
"R": null,
"G": null,
"C": null
},
"name": "Clearwater Pathway // Murkwater Pathway",
"power": "",
"salt": 0.11,
"subTypes": [],
"superTypes": [],
"keywords": [],
"text": "",
"tokens": [],
"toughness": "",
"types": [
"Land"
],
"loyalty": null,
"canlanderPoints": null,
"isPDHCommander": false,
"defaultCategory": null,
"gameChanger": false,
"extraTurns": false,
"tutor": false,
"massLandDenial": false,
"twoCardComboSingelton": false,
"twoCardComboIds": [],
"atomicCombos": [],
"potentialCombos": [],
"lang": "en"
},
"owned": 0,
"pinnedStatus": 0,
"prices": {
"ck": 7.99,
"ckfoil": 0.0,
"cm": 0.0,
"cmfoil": 0.0,
"mtgo": 0.0,
"mtgofoil": 0.0,
"tcg": 4.87,
"tcgfoil": 0.0,
"scg": 5.99,
"scgfoil": 0.0,
"mp": 6.24,
"mpfoil": 0.0,
"tcgLand": 184.0,
"tcgLandFoil": 0.0
},
"rarity": "rare",
"globalCategories": []
}
},
{
"id": 2845321489,
"categories": [
"Land"
],
"companion": false,
"flippedDefault": null,
"label": ",#656565",
"modifier": "Normal",
"quantity": 1,
"customCmc": null,
"removedCategories": null,
"createdAt": "2026-02-15T16:52:12.266270Z",
"updatedAt": "2026-02-15T16:52:12.266290Z",
"deletedAt": null,
"notes": null,
"card": {
"id": 136837,
"artist": "Marco Gorlei",
"tcgProductId": 576518,
"ckFoilId": 302396,
"ckNormalId": 301504,
"cmEd": "",
"scgSku": "SGL-MTG-DSK-260-ENN",
"scgFoilSku": "SGL-MTG-DSK-260-ENF",
"collectorNumber": "260",
"multiverseid": 673665,
"mtgoFoilId": 0,
"mtgoNormalId": 130651,
"uid": "83f510b7-4cbd-4883-9c26-c8824bc668ac",
"displayName": null,
"releasedAt": "2024-09-27",
"contentWarning": false,
"edition": {
"editioncode": "dsk",
"editionname": "Duskmourn: House of Horror",
"editiondate": "2024-09-27",
"editiontype": "expansion",
"mtgoCode": "dsk"
},
"flavor": "Here, the Floodpits languish like a corpse, the clear waters choked by the filthy hands of the bog.",
"games": [],
"options": [
"Normal",
"Foil"
],
"scryfallImageHash": "1726286844",
"oracleCard": {
"id": 42603,
"cmc": 0,
"colorIdentity": [
"Blue",
"Black"
],
"colors": [],
"edhrecRank": 690,
"faces": [],
"layout": "normal",
"uid": "d71bda4c-3dee-4398-8fd0-f77d8743b887",
"legalities": {
"alchemy": "legal",
"legacy": "legal",
"oldschool": "not_legal",
"modern": "legal",
"vintage": "legal",
"oathbreaker": "legal",
"1v1": "legal",
"historicbrawl": "legal",
"premodern": "not_legal",
"historic": "legal",
"commander": "legal",
"paupercommander": "not_legal",
"gladiator": "legal",
"explorer": null,
"brawl": "legal",
"penny": "not_legal",
"pioneer": "legal",
"duel": "legal",
"pauper": "not_legal",
"standard": "legal",
"future": "legal",
"predh": "not_legal",
"timeless": "legal",
"canlander": "legal"
},
"manaCost": "",
"manaProduction": {
"W": null,
"U": 1,
"B": 1,
"R": null,
"G": null,
"C": null
},
"name": "Gloomlake Verge",
"power": "",
"salt": 0.09,
"subTypes": [],
"superTypes": [],
"keywords": [],
"text": "{T}: Add {U}.\n{T}: Add {B}. Activate only if you control an Island or a Swamp.",
"tokens": [],
"toughness": "",
"types": [
"Land"
],
"loyalty": null,
"canlanderPoints": null,
"isPDHCommander": false,
"defaultCategory": null,
"gameChanger": false,
"extraTurns": false,
"tutor": false,
"massLandDenial": false,
"twoCardComboSingelton": false,
"twoCardComboIds": [],
"atomicCombos": [],
"potentialCombos": [],
"lang": "en"
},
"owned": 0,
"pinnedStatus": 0,
"prices": {
"ck": 20.99,
"ckfoil": 19.99,
"cm": 10.82,
"cmfoil": 11.0,
"mtgo": 0.76,
"mtgofoil": 0.0,
"tcg": 15.5,
"tcgfoil": 19.77,
"scg": 17.99,
"scgfoil": 19.99,
"mp": 14.58,
"mpfoil": 17.65,
"tcgLand": 525.0,
"tcgLandFoil": 0.0
},
"rarity": "rare",
"globalCategories": []
}
},
{
"id": 2845321490,
"categories": [
"Anthem"
],
"companion": false,
"flippedDefault": null,
"label": ",#656565",
"modifier": "Normal",
"quantity": 1,
"customCmc": null,
"removedCategories": null,
"createdAt": "2026-02-15T16:52:12.274438Z",
"updatedAt": "2026-02-15T16:52:12.274458Z",
"deletedAt": null,
"notes": null,
"card": {
"id": 78662,
"artist": "Dmitry Burmak",
"tcgProductId": 191628,
"ckFoilId": 225355,
"ckNormalId": 225080,
"cmEd": "",
"scgSku": "SGL-MTG-MH1-110-ENN",
"scgFoilSku": "SGL-MTG-MH1-110-ENF",
"collectorNumber": "110",
"multiverseid": 464059,
"mtgoFoilId": 0,
"mtgoNormalId": 72592,
"uid": "b07b3736-25e7-46f2-bea5-543ec13995b1",
"displayName": null,
"releasedAt": "2019-06-14",
"contentWarning": false,
"edition": {
"editioncode": "mh1",
"editionname": "Modern Horizons",
"editiondate": "2019-06-14",
"editiontype": "draft_innovation",
"mtgoCode": "mh1"
},
"flavor": "\"I just felt a drip. It must be about to rain.\"\n—Stoneway Market vendor, last words",
"games": [],
"options": [
"Normal",
"Foil"
],
"scryfallImageHash": "1562201750",
"oracleCard": {
"id": 19839,
"cmc": 3,
"colorIdentity": [
"Black"
],
"colors": [
"Black"
],
"edhrecRank": 10507,
"faces": [],
"layout": "normal",
"uid": "edb7bd88-971a-4fcc-9d76-d73f21a4926a",
"legalities": {
"alchemy": "not_legal",
"legacy": "legal",
"oldschool": "not_legal",
"modern": "legal",
"vintage": "legal",
"oathbreaker": "legal",
"1v1": "legal",
"historicbrawl": "legal",
"premodern": "not_legal",
"historic": "legal",
"commander": "legal",
"paupercommander": "not_legal",
"gladiator": "legal",
"explorer": null,
"brawl": "not_legal",
"penny": "not_legal",
"pioneer": "not_legal",
"duel": "legal",
"pauper": "not_legal",
"standard": "not_legal",
"future": "not_legal",
"predh": "not_legal",
"timeless": "legal",
"canlander": "legal"
},
"manaCost": "{2}{B}",
"manaProduction": {
"W": null,
"U": null,
"B": null,
"R": null,
"G": null,
"C": null
},
"name": "Throatseeker",
"power": "3",
"salt": 0.36,
"subTypes": [
"Vampire",
"Ninja"
],
"superTypes": [],
"keywords": [],
"text": "Unblocked attacking Ninjas you control have lifelink.",
"tokens": [],
"toughness": "2",
"types": [
"Creature"
],
"loyalty": null,
"canlanderPoints": null,
"isPDHCommander": true,
"defaultCategory": "Anthem",
"gameChanger": false,
"extraTurns": false,
"tutor": false,
"massLandDenial": false,
"twoCardComboSingelton": false,
"twoCardComboIds": [],
"atomicCombos": [],
"potentialCombos": [],
"lang": "en"
},
"owned": 0,
"pinnedStatus": 0,
"prices": {
"ck": 0.39,
"ckfoil": 2.99,
"cm": 0.2,
"cmfoil": 1.38,
"mtgo": 0.03,
"mtgofoil": 0.0,
"tcg": 0.3,
"tcgfoil": 2.28,
"scg": 0.29,
"scgfoil": 0.75,
"mp": 0.15,
"mpfoil": 2.8,
"tcgLand": 14.0,
"tcgLandFoil": 0.0
},
"rarity": "uncommon",
"globalCategories": []
}
},
{
"id": 2845321493,
"categories": [
"Protection"
],
"companion": false,
"flippedDefault": null,
"label": ",#656565",
"modifier": "Normal",
"quantity": 1,
"customCmc": null,
"removedCategories": null,
"createdAt": "2026-02-15T16:52:12.293417Z",
"updatedAt": "2026-02-15T16:52:12.293443Z",
"deletedAt": null,
"notes": null,
"card": {
"id": 45694,
"artist": "Franz Vohwinkel",
"tcgProductId": 72074,
"ckFoilId": 0,
"ckNormalId": 192016,
"cmEd": "",
"scgSku": "SGL-MTG-C13-240-ENN",
"scgFoilSku": null,
"collectorNumber": "240",
"multiverseid": 376286,
"mtgoFoilId": 51431,
"mtgoNormalId": 51430,
"uid": "97c8e1ed-b3ab-4a08-9336-e513f23d45b3",
"displayName": null,
"releasedAt": "2013-11-01",
"contentWarning": false,
"edition": {
"editioncode": "c13",
"editionname": "Commander 2013",
"editiondate": "2013-11-01",
"editiontype": "commander",
"mtgoCode": "c13"
},
"flavor": "Lord Rondor arrived for battle with sixty war elephants, ten catapults, and two hundred of his finest archers. Then he saw the battlefield . . .",
"games": [],
"options": [
"Normal"
],
"scryfallImageHash": "1562927147",
"oracleCard": {
"id": 3274,
"cmc": 3,
"colorIdentity": [],
"colors": [],
"edhrecRank": 1440,
"faces": [],
"layout": "normal",
"uid": "2296370c-fe34-4df6-92a5-260f1634bede",
"legalities": {
"alchemy": "not_legal",
"legacy": "legal",
"oldschool": "not_legal",
"modern": "not_legal",
"vintage": "legal",
"oathbreaker": "legal",
"1v1": "legal",
"historicbrawl": "not_legal",
"premodern": "legal",
"historic": "not_legal",
"commander": "legal",
"paupercommander": "not_legal",
"gladiator": "not_legal",
"explorer": null,
"brawl": "not_legal",
"penny": "not_legal",
"pioneer": "not_legal",
"duel": "legal",
"pauper": "not_legal",
"standard": "not_legal",
"future": "not_legal",
"predh": "legal",
"timeless": "not_legal",
"canlander": "legal"
},
"manaCost": "{3}",
"manaProduction": {
"W": null,
"U": null,
"B": null,
"R": null,
"G": null,
"C": null
},
"name": "Crawlspace",
"power": "",
"salt": 0.77,
"subTypes": [],
"superTypes": [],
"keywords": [],
"text": "No more than two creatures can attack you each combat.",
"tokens": [],
"toughness": "",
"types": [
"Artifact"
],
"loyalty": null,
"canlanderPoints": null,
"isPDHCommander": false,
"defaultCategory": "Protection",
"gameChanger": false,
"extraTurns": false,
"tutor": false,
"massLandDenial": false,
"twoCardComboSingelton": false,
"twoCardComboIds": [],
"atomicCombos": [],
"potentialCombos": [],
"lang": "en"
},
"owned": 0,
"pinnedStatus": 0,
"prices": {
"ck": 14.99,
"ckfoil": 0.0,
"cm": 4.86,
"cmfoil": 2.5,
"mtgo": 1.46,
"mtgofoil": 0.0,
"tcg": 10.92,
"tcgfoil": 0.0,
"scg": 11.99,
"scgfoil": 0.0,
"mp": 9.29,
"mpfoil": 0.0,
"tcgLand": 534.0,
"tcgLandFoil": 0.0
},
"rarity": "rare",
"globalCategories": []
}
},
{
"id": 2845321495,
"categories": [
"Evasion"
],
"companion": false,
"flippedDefault": null,
"label": ",#656565",
"modifier": "Foil",
"quantity": 1,
"customCmc": null,
"removedCategories": null,
"createdAt": "2026-02-15T16:52:12.302578Z",
"updatedAt": "2026-02-15T16:52:12.302621Z",
"deletedAt": null,
"notes": null,
"card": {
"id": 147728,
"artist": "Ayuko",
"tcgProductId": 656785,
"ckFoilId": 314131,
"ckNormalId": 313963,
"cmEd": null,
"scgSku": null,
"scgFoilSku": null,
"collectorNumber": "468",
"multiverseid": 0,
"mtgoFoilId": 0,
"mtgoNormalId": 0,
"uid": "b62cd4af-7d7a-4b0b-b2d6-2086281c7b21",
"displayName": null,
"releasedAt": "2025-12-05",
"contentWarning": false,
"edition": {
"editioncode": "fic",
"editionname": "Final Fantasy Commander",
"editiondate": "2025-06-13",
"editiontype": "commander",
"mtgoCode": null
},
"flavor": "\"Rikku-approved item coming up!\"",
"games": [],
"options": [
"Foil"
],
"scryfallImageHash": "1765358582",
"oracleCard": {
"id": 46428,
"cmc": 3,
"colorIdentity": [
"Blue"
],
"colors": [
"Blue"
],
"edhrecRank": 5021,
"faces": [],
"layout": "normal",
"uid": "81ba75af-eddc-4344-befb-419ebfb855a3",
"legalities": {
"alchemy": "not_legal",
"legacy": "legal",
"oldschool": "not_legal",
"modern": "not_legal",
"vintage": "legal",
"oathbreaker": "legal",
"1v1": "legal",
"historicbrawl": "legal",
"premodern": "not_legal",
"historic": "legal",
"commander": "legal",
"paupercommander": "not_legal",
"gladiator": "legal",
"explorer": null,
"brawl": "not_legal",
"penny": "not_legal",
"pioneer": "not_legal",
"duel": "legal",
"pauper": "not_legal",
"standard": "not_legal",
"future": "not_legal",
"predh": "not_legal",
"timeless": "legal",
"canlander": "legal"
},
"manaCost": "{2}{U}",
"manaProduction": {
"W": null,
"U": null,
"B": null,
"R": null,
"G": null,
"C": null
},
"name": "Rikku, Resourceful Guardian",
"power": "2",
"salt": 0.36,
"subTypes": [
"Human",
"Artificer"
],
"superTypes": [
"Legendary"
],
"keywords": [],
"text": "Whenever you put one or more counters on a creature, until end of turn, that creature can't be blocked by creatures your opponents control.\nSteal — {1}, {T}: Move a counter from target creature an opponent controls onto target creature you control. Activate only as a sorcery.",
"tokens": [],
"toughness": "3",
"types": [
"Creature"
],
"loyalty": null,
"canlanderPoints": null,
"isPDHCommander": false,
"defaultCategory": "Evasion",
"gameChanger": false,
"extraTurns": false,
"tutor": false,
"massLandDenial": false,
"twoCardComboSingelton": false,
"twoCardComboIds": [],
"atomicCombos": [],
"potentialCombos": [],
"lang": "en"
},
"owned": 0,
"pinnedStatus": 0,
"prices": {
"ck": 0.0,
"ckfoil": 69.99,
"cm": 0.0,
"cmfoil": 31.0,
"mtgo": 0.0,
"mtgofoil": 0.0,
"tcg": 0.0,
"tcgfoil": 52.03,
"scg": 0.0,
"scgfoil": 0.0,
"mp": 0.0,
"mpfoil": 51.52,
"tcgLand": 0.0,
"tcgLandFoil": 2186.0
},
"rarity": "rare",
"globalCategories": []
}
}
],
"customCards": []
}