mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-23 19:32:11 +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
|
export default card
|
||||||
|
@ -62,6 +62,10 @@ const card: Card = {
|
|||||||
|
|
||||||
description: {
|
description: {
|
||||||
fr: "Disparu depuis longtemps, il peut être réanimé génétiquement à partir d'anciens fossiles."
|
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: {
|
description: {
|
||||||
fr: "Quand plusieurs de ces Pokémon se réunissent, ils provoquent de gigantesques orages."
|
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: {
|
description: {
|
||||||
fr: "Il paralyse ses proies d'un regard. Si vous en rencontrez un, gardez-vous de le regarder dans les yeux ."
|
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: {
|
description: {
|
||||||
fr: "Sa queue incroyablement puissante est capable de soulever 5 hommes."
|
fr: "Sa queue incroyablement puissante est capable de soulever 5 hommes."
|
||||||
|
},
|
||||||
|
|
||||||
|
variants: {
|
||||||
|
wPromo: true
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -1,6 +1,10 @@
|
|||||||
import { Set } from '../../interfaces'
|
import { Set } from '../../interfaces'
|
||||||
import serie from '../Base'
|
import serie from '../Base'
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @deprecated
|
||||||
|
* Will be removed in V3
|
||||||
|
*/
|
||||||
const wp: Set = {
|
const wp: Set = {
|
||||||
id: "wp",
|
id: "wp",
|
||||||
|
|
||||||
@ -13,7 +17,7 @@ const wp: Set = {
|
|||||||
serie: serie,
|
serie: serie,
|
||||||
|
|
||||||
cardCount: {
|
cardCount: {
|
||||||
official: 53
|
official: 7
|
||||||
},
|
},
|
||||||
|
|
||||||
releaseDate: "1999-09-01"
|
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 {
|
interface variants {
|
||||||
|
/**
|
||||||
|
* Card base version
|
||||||
|
*/
|
||||||
normal?: boolean
|
normal?: boolean
|
||||||
|
/**
|
||||||
|
* Holo Reverse
|
||||||
|
* (colored Background holographic)
|
||||||
|
*/
|
||||||
reverse?: boolean
|
reverse?: boolean
|
||||||
|
/**
|
||||||
|
* Holo Card
|
||||||
|
* (illustration holographic)
|
||||||
|
*/
|
||||||
holo?: boolean
|
holo?: boolean
|
||||||
|
|
||||||
|
/**
|
||||||
|
* can have a first Edition stamp
|
||||||
|
*/
|
||||||
firstEdition?: boolean
|
firstEdition?: boolean
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Can be found in Jumob Format
|
||||||
|
*/
|
||||||
jumbo?: boolean
|
jumbo?: boolean
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Card has a pre-release stamp
|
||||||
|
*/
|
||||||
preRelease?: boolean
|
preRelease?: boolean
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Card has a W stamp
|
||||||
|
*/
|
||||||
|
wPromo?: true
|
||||||
}
|
}
|
||||||
|
|
||||||
export type Types = 'Colorless' | 'Darkness' | 'Dragon' |
|
export type Types = 'Colorless' | 'Darkness' | 'Dragon' |
|
||||||
|
Loading…
x
Reference in New Issue
Block a user