mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-22 02:42:09 +00:00
* refactor: Add set/Series translations Signed-off-by: Avior <github@avior.me> * refactor: Done Trainer kits Signed-off-by: Avior <github@avior.me>
23 lines
284 B
TypeScript
23 lines
284 B
TypeScript
import { Set } from '../../interfaces'
|
|
import serie from '../Base'
|
|
|
|
const wp: Set = {
|
|
id: "wp",
|
|
|
|
name: {
|
|
en: "W Promotional",
|
|
fr: "W Promotional",
|
|
it: "Carte Promo Wizards"
|
|
},
|
|
|
|
serie: serie,
|
|
|
|
cardCount: {
|
|
official: 53
|
|
},
|
|
|
|
releaseDate: "1999-09-01"
|
|
}
|
|
|
|
export default wp
|