mirror of
https://github.com/Cockatrice/Cockatrice.git
synced 2026-06-10 16:24:45 -07:00
* [VDS] Add ability to search by deck contents * add deck search syntax help * fix build failure
1.5 KiB
1.5 KiB
Deck Search Syntax Help
The search bar recognizes a set of special commands.
In this list of examples below, each entry has an explanation and can be clicked to test the query. Note that all
searches are case insensitive.
- Filename:
- [red deck wins](#red deck wins) (Any deck filename containing the words red, deck, and wins)
- ["red deck wins"](#%22red deck wins%22) (Any deck filename containing the exact phrase "red deck wins")
- Deck Contents (Uses [card search expressions](#cardSearchSyntaxHelp)):
- [[plains]] (Any deck that contains at least one card with "plains" in its name)
- [[t:legendary]] (Any deck that contains at least one legendary)
- [[t:legendary]]>5 (Any card that contains at least 5 legendaries)
- [[]]:100 (Any deck that contains exactly 100 cards)
- Negate:
- [soldier -aggro](#soldier -aggro) (Any deck filename that contains "soldier", but not "aggro")
- Branching:
- [t:aggro OR o:control](#t:aggro OR o:control) (Any deck filename that contains either aggro or control)
- Grouping:
- red -([[]]:100 or aggro) (Any deck that has red in its filename but is not 100 cards or has aggro in its filename)