20 lines
524 B
Go
20 lines
524 B
Go
package models
|
|
|
|
// CardVariant represents the possible variants of a card.
|
|
type CardVariant struct {
|
|
// Normal it's a basic card.
|
|
Normal bool `json:"normal"`
|
|
|
|
// Reverse the card have some shine behind colored content.
|
|
Reverse bool `json:"reverse"`
|
|
|
|
// Holo the card picture have some shine to it.
|
|
Holo bool `json:"holo"`
|
|
|
|
// FirstEdition the card contains a First Edition Stamp (only Base serie).
|
|
FirstEdition bool `json:"firstEdition"`
|
|
|
|
// WPromo The card has a wPromo stamp on it.
|
|
WPromo bool `json:"wPromo"`
|
|
}
|