1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-26 12:52:13 +00:00
cards-database/data/Pop/POP Series 7.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 pop7: Set = {
id: "pop7",
name: {
en: "POP Series 7",
},
serie: serie,
cardCount: {
total: 17,
official: 17
},
legal: {
expanded: false,
standard: false
},
releaseDate: "2008-03-01",
variants: {
normal: true,
reverse: true,
holo: false,
firstEdition: false
}
}
export default pop7