mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-22 10:52:10 +00:00
feat: Add W Promotional variant (#183)
Signed-off-by: Avior <github@avior.me>
This commit is contained in:
parent
227637fd97
commit
d7d600c0d7
@ -58,10 +58,9 @@ const card: Card = {
|
||||
},
|
||||
],
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
variants: {
|
||||
wPromo: true
|
||||
}
|
||||
}
|
||||
|
||||
export default card
|
||||
|
@ -62,6 +62,10 @@ const card: Card = {
|
||||
|
||||
description: {
|
||||
fr: "Disparu depuis longtemps, il peut être réanimé génétiquement à partir d'anciens fossiles."
|
||||
},
|
||||
|
||||
variants: {
|
||||
wPromo: true
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -56,6 +56,10 @@ const card: Card = {
|
||||
|
||||
description: {
|
||||
fr: "Quand plusieurs de ces Pokémon se réunissent, ils provoquent de gigantesques orages."
|
||||
},
|
||||
|
||||
variants: {
|
||||
wPromo: true
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -72,6 +72,10 @@ const card: Card = {
|
||||
|
||||
description: {
|
||||
fr: "Il paralyse ses proies d'un regard. Si vous en rencontrez un, gardez-vous de le regarder dans les yeux ."
|
||||
},
|
||||
|
||||
variants: {
|
||||
wPromo: true
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -72,6 +72,10 @@ const card: Card = {
|
||||
|
||||
description: {
|
||||
fr: "Sa queue incroyablement puissante est capable de soulever 5 hommes."
|
||||
},
|
||||
|
||||
variants: {
|
||||
wPromo: true
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -1,6 +1,10 @@
|
||||
import { Set } from '../../interfaces'
|
||||
import serie from '../Base'
|
||||
|
||||
/**
|
||||
* @deprecated
|
||||
* Will be removed in V3
|
||||
*/
|
||||
const wp: Set = {
|
||||
id: "wp",
|
||||
|
||||
@ -13,7 +17,7 @@ const wp: Set = {
|
||||
serie: serie,
|
||||
|
||||
cardCount: {
|
||||
official: 53
|
||||
official: 7
|
||||
},
|
||||
|
||||
releaseDate: "1999-09-01"
|
||||
|
@ -56,7 +56,9 @@ const card: Card = {
|
||||
},
|
||||
],
|
||||
|
||||
|
||||
variants: {
|
||||
wPromo: true
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
@ -53,7 +53,9 @@ const card: Card = {
|
||||
},
|
||||
],
|
||||
|
||||
|
||||
variants: {
|
||||
wPromo: true
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
28
interfaces.d.ts
vendored
28
interfaces.d.ts
vendored
@ -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' |
|
||||
|
Loading…
x
Reference in New Issue
Block a user