mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-22 10:52:10 +00:00
31 lines
391 B
TypeScript
31 lines
391 B
TypeScript
import { Set } from '../../interfaces'
|
|
import serie from '../Neo'
|
|
|
|
const neo1: Set = {
|
|
id: "neo1",
|
|
|
|
name: {
|
|
en: "Neo Genesis",
|
|
fr: "Neo Genesis",
|
|
es: "Neo Genesis",
|
|
it: "Neo Genesis",
|
|
de: "Neo Genesis"
|
|
},
|
|
|
|
serie: serie,
|
|
tcgOnline: "N1",
|
|
|
|
cardCount: {
|
|
official: 111
|
|
},
|
|
|
|
releaseDate: "2000-12-16",
|
|
|
|
abbreviations: {
|
|
official: "N1",
|
|
fr: "NGS"
|
|
}
|
|
}
|
|
|
|
export default neo1
|