mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-22 10:52:10 +00:00
27 lines
319 B
TypeScript
27 lines
319 B
TypeScript
import { Set } from '../../interfaces'
|
|
import serie from '../POP'
|
|
|
|
const pop5: Set = {
|
|
id: "pop5",
|
|
|
|
name: {
|
|
en: "POP Series 5",
|
|
it: "POP Serie 5",
|
|
de: "POP Serie 5",
|
|
},
|
|
|
|
serie: serie,
|
|
|
|
cardCount: {
|
|
official: 17
|
|
},
|
|
|
|
releaseDate: "2007-03-01",
|
|
|
|
abbreviations: {
|
|
official: "P5"
|
|
}
|
|
}
|
|
|
|
export default pop5
|