mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-23 03:12:10 +00:00
26 lines
320 B
TypeScript
26 lines
320 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"
|
|
}
|
|
|
|
export default pl1
|