mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-23 19:32:11 +00:00
30 lines
434 B
TypeScript
30 lines
434 B
TypeScript
import Set from '@tcgdex/sdk/interfaces/Set'
|
|
|
|
const set: Set = {
|
|
name: {
|
|
en: "Neo Destiny"
|
|
},
|
|
code: "neo4",
|
|
expansionCode: "neo",
|
|
tcgoCode: "N4",
|
|
|
|
cardCount: {
|
|
total: 113,
|
|
official: 105
|
|
},
|
|
|
|
releaseDate: "2002-02-28",
|
|
|
|
legal: {
|
|
standard: false,
|
|
expanded: false,
|
|
},
|
|
|
|
images: {
|
|
symbol: "https://assets.tcgdex.net/univ/neo/neo4/symbol",
|
|
logo: "https://assets.tcgdex.net/en/neo/neo4/logo"
|
|
}
|
|
}
|
|
|
|
export default set
|