mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-23 03:12:10 +00:00
* refactor: Add set/Series translations Signed-off-by: Avior <github@avior.me> * refactor: Done Trainer kits Signed-off-by: Avior <github@avior.me>
25 lines
317 B
TypeScript
25 lines
317 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"
|
|
}
|
|
|
|
export default neo4
|