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 5.ts
Florian Bouillon f8744ee6dd
Made Variants mandatory
Signed-off-by: Avior <florian.bouillon@delta-wings.net>
2021-05-02 17:04:19 +02:00

34 lines
390 B
TypeScript

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