mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-22 10:52:10 +00:00
23 lines
294 B
TypeScript
23 lines
294 B
TypeScript
import { Set } from '../../interfaces'
|
|
import serie from '../EX'
|
|
|
|
const ex4: Set = {
|
|
id: "ex4",
|
|
|
|
name: {
|
|
en: "Team Magma vs Team Aqua",
|
|
fr: "Team Magma vs Team Aqua"
|
|
},
|
|
|
|
serie: serie,
|
|
tcgOnline: "MA",
|
|
|
|
cardCount: {
|
|
official: 95
|
|
},
|
|
|
|
releaseDate: "2004-03-01"
|
|
}
|
|
|
|
export default ex4
|