mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-22 19:02:10 +00:00
30 lines
373 B
TypeScript
30 lines
373 B
TypeScript
import { Set } from '../../interfaces'
|
|
import serie from '../Base'
|
|
|
|
const base5: Set = {
|
|
id: "base5",
|
|
|
|
name: {
|
|
en: "Team Rocket",
|
|
fr: "Team Rocket",
|
|
it: "Team Rocket",
|
|
de: "Team Rocket"
|
|
},
|
|
|
|
serie: serie,
|
|
tcgOnline: "TR",
|
|
|
|
cardCount: {
|
|
official: 82
|
|
},
|
|
|
|
releaseDate: "2000-04-24",
|
|
|
|
abbreviations: {
|
|
official: "RO",
|
|
fr: "ROC"
|
|
}
|
|
}
|
|
|
|
export default base5
|