mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-24 11:52:16 +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
325 B
TypeScript
25 lines
325 B
TypeScript
import { Set } from '../../interfaces'
|
|
import serie from '../Neo'
|
|
|
|
const neo2: Set = {
|
|
id: "neo2",
|
|
|
|
name: {
|
|
en: "Neo Discovery",
|
|
fr: "Neo Discovery",
|
|
it: "Neo Discovery",
|
|
de: "Neo Entdeckung"
|
|
},
|
|
|
|
serie: serie,
|
|
tcgOnline: "N2",
|
|
|
|
cardCount: {
|
|
official: 75
|
|
},
|
|
|
|
releaseDate: "2001-06-01"
|
|
}
|
|
|
|
export default neo2
|