mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-23 11:22:10 +00:00
27 lines
334 B
TypeScript
27 lines
334 B
TypeScript
import { Set } from '../../interfaces'
|
|
import serie from '../Base'
|
|
|
|
const base2: Set = {
|
|
id: "base2",
|
|
|
|
name: {
|
|
en: "Jungle",
|
|
fr: "Jungle",
|
|
de: "Dschungel",
|
|
it: "Jungle",
|
|
es: "Jungla",
|
|
pt: "Selva"
|
|
},
|
|
|
|
serie: serie,
|
|
tcgOnline: "JU",
|
|
|
|
cardCount: {
|
|
official: 64
|
|
},
|
|
|
|
releaseDate: "1999-06-16"
|
|
}
|
|
|
|
export default base2
|