mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-22 19:02:10 +00:00
31 lines
373 B
TypeScript
31 lines
373 B
TypeScript
import { Set } from '../../interfaces'
|
|
import serie from '../Platinum'
|
|
|
|
const pl1: Set = {
|
|
id: "pl1",
|
|
|
|
name: {
|
|
en: "Platinum",
|
|
fr: "Platine",
|
|
es: "Platino",
|
|
it: "Platino",
|
|
de: "Platin"
|
|
},
|
|
|
|
serie: serie,
|
|
tcgOnline: "PL",
|
|
|
|
cardCount: {
|
|
official: 127
|
|
},
|
|
|
|
releaseDate: "2009-02-11",
|
|
|
|
abbreviations: {
|
|
official: "PL",
|
|
fr: "PLA"
|
|
}
|
|
}
|
|
|
|
export default pl1
|