The search bar supports searching across all card fields, specific fields, logical operators, grouping, exact matching, and negation.
You can preload the search from the URL by adding ?q=... (or ?search=...) to the page address.
For example, deckbuilder.html?q=rarity:Rare.
The deck builder will use that query when the page loads.
Searching for a word searches the card name, rules text, card type, and set name.
| Query | Description |
|---|---|
Fireball | Finds cards containing "Fireball". |
Hero | Finds cards containing "Hero". |
"Draw 2 cards" | Searches for the entire phrase. |
Search only a specific field using field:value.
| Field | Alias | Description |
|---|---|---|
name | - | Card name. |
text | - | Rules text. |
type | t | Card type. |
set | s | Set name. |
rarity | r | Card rarity. |
id | - | Card ID. |
name:Benji
text:damage
type:Character
t:Hero
set:Base
s:BS26
rarity:Rare
r:Common
id:BS26-001
Use single quotes to require an exact match instead of a partial match.
| Query | Meaning |
|---|---|
rarity:Rare |
Matches "Rare", "Rare Foil", etc. |
rarity:'Rare' |
Matches only exactly "Rare". |
name:'Benji' |
Card name must be exactly "Benji". |
Double quotes keep multiple words together as one search term.
"Draw 2 cards"
name:"Dark Mage"
text:"Deal 3 damage"
Exclude cards using NOT or a leading -.
| Query | Description |
|---|---|
NOT rarity:Common |
Exclude Common cards. |
-rarity:Common |
Same as above. |
Hero -text:Flying |
Hero cards without "Flying". |
Both conditions must match.
Hero AND Rare
type:Character AND rarity:Rare
Hero Rare
Adjacent terms automatically imply AND.
Either condition may match.
Rare OR Legendary
type:Hero OR type:Villain
Use parentheses to group expressions.
(Hero OR Villain) AND Rare
(type:Character OR type:Item)
AND
NOT rarity:Common
Operators are evaluated in this order:
( )NOTANDORExample:
Hero OR Villain AND Rare
is interpreted as:
Hero OR (Villain AND Rare)
Hero
Hero Rare
Hero AND Rare
Hero OR Villain
(Hero OR Villain) Rare
name:Benji
name:'Benji'
text:"Deal 2 damage"
set:BS26
rarity:Rare
rarity:'Rare'
NOT rarity:Common
-rarity:Common
(type:Character OR type:Item) AND rarity:Rare