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