mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-25 04:12:11 +00:00
26 lines
350 B
TypeScript
26 lines
350 B
TypeScript
import { Set } from '../../interfaces'
|
|
import serie from '../EX'
|
|
|
|
const ex7: Set = {
|
|
id: "ex7",
|
|
name: {
|
|
en: "Team Rocket Returns",
|
|
fr: "Team Rocket Returns"
|
|
},
|
|
serie: serie,
|
|
|
|
tcgOnline: "RR",
|
|
|
|
cardCount: {
|
|
total: 111,
|
|
official: 109
|
|
},
|
|
legal: {
|
|
expanded: false,
|
|
standard: false
|
|
},
|
|
releaseDate: "2004-11-01"
|
|
}
|
|
|
|
export default ex7
|