mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-22 19:02:10 +00:00
29 lines
338 B
TypeScript
29 lines
338 B
TypeScript
import { Set } from '../../interfaces'
|
|
import serie from '../Platinum'
|
|
|
|
const pl4: Set = {
|
|
id: "pl4",
|
|
|
|
name: {
|
|
en: "Arceus",
|
|
es: "Arceus",
|
|
it: "Arceus",
|
|
de: "Arceus"
|
|
},
|
|
|
|
serie: serie,
|
|
tcgOnline: "AR",
|
|
|
|
cardCount: {
|
|
official: 99
|
|
},
|
|
|
|
releaseDate: "2009-11-04",
|
|
|
|
abbreviations: {
|
|
official: "AR"
|
|
}
|
|
}
|
|
|
|
export default pl4
|