Legend of the Five Rings

Card Search Engine

Find all cards matching every specification below

The fields below will take simple strings or regular expressions such as those in Perl. Matching is not case-sensitive by default. Here are some examples.

From Format


With Title Matching

With Traits Matching

With Abilities Matching

With Body Matching


With Attributes Matching
ForceChiHonorGoldPers. HonorFocus


With Card Category
All Dynasty Fate
Holding Follower
Event Item
Region Action
Personality Kiho
Spell
Sensei


Examples

In each case, the text between the two "/" characters is the text you have typed in the form below.

body =~ /honor/
will match cards with the string "honor" or "dishonor" or "honorable" in the card text, and also cards with the string "Honor" in it, since case is ignored
traits =~ /Shugenja/
will match cards with trait text of either "Shugenja" or "shugenja". It will not match cards which have the phrase "shugenja" in the text of some action.
abilities =~/\sHonor\s/
will match cards with an action which contains either the string "Honor" or "honor" only when preceded and followed by a 'space' character (blank or newline or tab).
force =~ /[0-5]/
will match cards which have a force value containing one of the characters 0,1,2,3,4,5. This will match against force values of "10", "11", etc. as well as against "0", "1", "2".
Usually this is good enough.
force =~ /^[0-5]$/
will match cards for which the entire value consists of one of the characters "0", "1", "2", "3", "4", "5".

This site is maintained by Jay Gischer