Skip to content

Commit

Permalink
feat: Prepare to have datas changed
Browse files Browse the repository at this point in the history
Signed-off-by: Avior <[email protected]>
  • Loading branch information
Aviortheking committed May 7, 2024
1 parent df154e6 commit 7945582
Showing 1 changed file with 3 additions and 38 deletions.
41 changes: 3 additions & 38 deletions interfaces.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -12,42 +12,7 @@ export interface Serie {
energies?: Array<Types>
}

interface variants {
/**
* Card base version
*/
normal?: boolean
/**
* Holo Reverse
* (colored Background holographic)
*/
reverse?: boolean
/**
* Holo Card
* (illustration holographic)
*/
holo?: boolean

/**
* can have a first Edition stamp
*/
firstEdition?: boolean

/**
* Can be found in Jumob Format
*/
jumbo?: boolean

/**
* Card has a pre-release stamp
*/
preRelease?: boolean

/**
* Card has a W stamp
*/
wPromo?: true
}
type Variants = 'Standard' | 'Parallel Foil' | 'Standard Foil' | 'First Edition' | 'Jumbo' | 'Pre-Release' | 'W-Promo'

export type Types = 'Colorless' | 'Darkness' | 'Dragon' |
'Fairy' | 'Fighting' | 'Fire' |
Expand Down Expand Up @@ -133,9 +98,9 @@ export interface Card {
category: 'Pokemon' | 'Trainer' | 'Energy'

/**
* Card Variants (Override Set Variants)
* Card Variants
*/
variants?: variants
variants?: Array<Variants>

/**
* Card Set
Expand Down

0 comments on commit 7945582

Please sign in to comment.