← Back to search

Feelings Query Language

Search for Mood Swings cards using a powerful query language.

Basics

A query is one or more keyword:value pairs separated by spaces. Multiple pairs are AND'd together.

A bare word without a keyword is treated as a name search: love is the same as name:love.

Operators

OperatorMeaningExample
:Inclusive / partial matchc:wh matches White
=Exact matchc=white matches only White, not multicolor
> <Numeric comparisondval>4
>= or =>Greater than or equaldval>=6
<= or =<Less than or equalcn<=10

OR and Negation

Use or between groups: c:white or c:blue

Negate a filter with -: -c:red excludes red cards.

Values

Special Values

Card Keywords

KeywordAliasesDescription
namenCard name
idCard or printing ID
colorcCard color (White, Blue, Black, Red, Green, None/Colorless). Accepts WUBRG shorthand.
dicedPrimary dice notation
dice_valuedvalSum of primary dice pips (numeric)
secondary_dicedd, 2diceSecondary dice notation
secondary_dice_value2val, 2dval, ddvalSum of secondary dice pips (numeric)
rulestRules text (HTML stripped for search)
rulingsrulRulings text

Printing Keywords

Using a printing keyword causes results to filter at the printing level.

KeywordAliasesDescription
framefrFrame color
reminderremReminder icon glyph (try rem:!)
rarityrCard rarity (Common, Uncommon, Rare, Mythic Rare)
dicecolordcPhysical die color
collectornumbercnCollector number (numeric)
setSet code or edition name
treatmenttrPrint treatment (Standard, Foil, etc.)
artistaArtist name

Formatting Results

KeywordValuesDescription
sortAny field nameSort results. Prefix with - for reverse: sort:-dice_value
ascards, printings, text, textprintingsControl result display format

Color Shorthand (WUBRG)

Colors can be specified using single-letter shorthand familiar to Magic: The Gathering players:

LetterColor
WWhite
UBlue
BBlack
RRed
GGreen

Combine letters for multicolor: c:wu finds cards that are both White and Blue.

Partial Matching

The : operator does prefix matching on color and rarity fields, so abbreviations work:

For color specifically, prefer WUBRG shorthand over abbreviations (e.g. c:u instead of c:bl).

Examples