mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-22 19:02:10 +00:00
25 lines
318 B
TypeScript
25 lines
318 B
TypeScript
import { Set } from '../../interfaces'
|
|
import serie from '../Neo'
|
|
|
|
const neo4: Set = {
|
|
id: "neo4",
|
|
name: {
|
|
en: "Neo Destiny",
|
|
},
|
|
serie: serie,
|
|
|
|
tcgOnline: "N4",
|
|
|
|
cardCount: {
|
|
total: 113,
|
|
official: 105
|
|
},
|
|
legal: {
|
|
expanded: false,
|
|
standard: false
|
|
},
|
|
releaseDate: "2002-02-28"
|
|
}
|
|
|
|
export default neo4
|