1
0
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:
Florian Bouillon 2021-11-22 14:52:58 +01:00 committed by GitHub
parent 227637fd97
commit d7d600c0d7
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
9 changed files with 58 additions and 7 deletions

View File

@ -58,10 +58,9 @@ const card: Card = {
},
],
variants: {
wPromo: true
}
}
export default card

View File

@ -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
}
}

View File

@ -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
}
}

View File

@ -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
}
}

View File

@ -72,6 +72,10 @@ const card: Card = {
description: {
fr: "Sa queue incroyablement puissante est capable de soulever 5 hommes."
},
variants: {
wPromo: true
}
}

View File

@ -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"

View File

@ -56,7 +56,9 @@ const card: Card = {
},
],
variants: {
wPromo: true
}

View File

@ -53,7 +53,9 @@ const card: Card = {
},
],
variants: {
wPromo: true
}

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' |