mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-22 10:52:10 +00:00
30 lines
370 B
TypeScript
30 lines
370 B
TypeScript
import { Set } from '../../interfaces'
|
|
import serie from '../Neo'
|
|
|
|
const neo4: Set = {
|
|
id: "neo4",
|
|
|
|
name: {
|
|
en: "Neo Destiny",
|
|
fr: "Neo Destiny",
|
|
de: "Neo Destiny",
|
|
it: "Neo Destiny"
|
|
},
|
|
|
|
serie: serie,
|
|
tcgOnline: "N4",
|
|
|
|
cardCount: {
|
|
official: 105
|
|
},
|
|
|
|
releaseDate: "2002-02-28",
|
|
|
|
abbreviations: {
|
|
official: "N4",
|
|
fr: "NDT"
|
|
}
|
|
}
|
|
|
|
export default neo4
|