1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-14 16:39:18 +00:00

feat: Add W Promotional variant (#183)

Signed-off-by: Avior <github@avior.me>
This commit is contained in:
2021-11-22 14:52:58 +01:00
committed by GitHub
parent 227637fd97
commit d7d600c0d7
9 changed files with 58 additions and 7 deletions

28
interfaces.d.ts vendored
View File

@ -13,12 +13,40 @@ export interface Serie {
}
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
}
export type Types = 'Colorless' | 'Darkness' | 'Dragon' |