feat: init client

This commit is contained in:
2025-08-12 18:38:22 +02:00
commit a145da0d2d
24 changed files with 713 additions and 0 deletions

19
models/card_variant.go Normal file
View File

@@ -0,0 +1,19 @@
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"`
}