Each card in our catalog stores metadata properties extracted from the card, specific to the game.
This metadata is stored inside the item data returned from our APIs. You can read more about our item structure in Item Structure .
For Lorcana cards, we store the following metadata fields:
Extra clarification notes for card text.
Ability details for the card.
Effect details related to the card.
The card’s set/code identifier.
Primary ink color for the card.
All ink colors associated with the card.
Ink cost to play the card.
Lore value the card can gain.
Cost to move to a location, when applicable.
Keyword abilities associated with the card.
Whether the card can be placed into the inkwell.
Willpower value shown on the card.
Strength value shown on the card.
Story grouping associated with the card.
Maximum allowed copies in a deck.
Subtype labels for the card.
The card’s type classification.
Maleficent
Mickey Mouse
Stitch
Elsa
{
// additional item properties omitted
"urn" : "urn:managem:lorcana:set/the-first-chapter/card/113" ,
"metadata" : [
{
"name" : "Clarifications"
},
{
"name" : "Abilities" ,
"detail" : [
{
"name" : "DRAGON FIRE" ,
"type" : "triggered" ,
"effect" : "When you play this character, you may banish chosen character." ,
"fullText" : "DRAGON FIRE When you play this character, \n you may banish chosen character."
}
]
},
{
"name" : "Effects"
},
{
"name" : "Code" ,
"value" : "1P"
},
{
"name" : "Color" ,
"value" : "Ruby"
},
{
"name" : "Colors"
},
{
"name" : "Cost" ,
"value" : 9
},
{
"name" : "Lore" ,
"value" : 2
},
{
"name" : "Move Cost"
},
{
"name" : "KeyworldAbilities"
},
{
"name" : "Inkwell" ,
"value" : "Yes"
},
{
"name" : "Willpower" ,
"value" : 5
},
{
"name" : "Strength" ,
"value" : 7
},
{
"name" : "Story" ,
"value" : "Sleeping Beauty"
},
{
"name" : "MaxCopiesInDeck" ,
"value" : 4
},
{
"name" : "Subtypes" ,
"detail" : [
"Storyborn" ,
"Villain" ,
"Dragon"
]
},
{
"name" : "Type" ,
"value" : "Character"
}
]
}