mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-22 19:02:10 +00:00
27 lines
331 B
TypeScript
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
|