1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-22 02:42:09 +00:00
cards-database/data/EX/Dragon.ts
Florian Bouillon 2f5f52b51c
refactor: Add Sets/Series translations (#172)
* refactor: Add set/Series translations

Signed-off-by: Avior <github@avior.me>

* refactor: Done Trainer kits

Signed-off-by: Avior <github@avior.me>
2021-11-16 12:44:58 +01:00

25 lines
300 B
TypeScript

import { Set } from '../../interfaces'
import serie from '../EX'
const ex3: Set = {
id: "ex3",
name: {
en: "Dragon",
fr: "EX Dragon",
de: "EX Drache",
it: "EX Drago"
},
serie: serie,
tcgOnline: "DR",
cardCount: {
official: 97
},
releaseDate: "2003-11-24"
}
export default ex3