1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-25 12:22:14 +00:00
cards-database/data/POP/POP Series 2.ts
Florian Bouillon 46220745ce
Pop serie do not report any sets (#27)
* rename to another name
* renamed
* Renamed references
2021-06-02 12:13:12 +02:00

34 lines
390 B
TypeScript

import { Set } from '../../interfaces'
import serie from '../POP'
const pop2: Set = {
id: "pop2",
name: {
en: "POP Series 2",
},
serie: serie,
cardCount: {
total: 17,
official: 17
},
legal: {
expanded: false,
standard: false
},
releaseDate: "2005-08-01",
variants: {
normal: true,
reverse: true,
holo: false,
firstEdition: false
}
}
export default pop2