1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-22 19:02:10 +00:00
cards-database/data/Base/W Promotional.ts
Florian Bouillon d7d600c0d7
feat: Add W Promotional variant (#183)
Signed-off-by: Avior <github@avior.me>
2021-11-22 14:52:58 +01:00

27 lines
331 B
TypeScript

import { Set } from '../../interfaces'
import serie from '../Base'
/**
* @deprecated
* Will be removed in V3
*/
const wp: Set = {
id: "wp",
name: {
en: "W Promotional",
fr: "W Promotional",
it: "Carte Promo Wizards"
},
serie: serie,
cardCount: {
official: 7
},
releaseDate: "1999-09-01"
}
export default wp