1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-25 04:12:11 +00:00
cards-database/data/Neo/Southern Islands.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 '../Neo'
const si1: Set = {
id: "si1",
name: {
en: "Southern Islands",
},
serie: serie,
cardCount: {
total: 18,
official: 18
},
legal: {
expanded: false,
standard: false
},
releaseDate: "2001-07-31",
variants: {
normal: true,
reverse: true,
holo: false,
firstEdition: true
}
}
export default si1