mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-22 02:42:09 +00:00
* refactor: Add set/Series translations Signed-off-by: Avior <github@avior.me> * refactor: Done Trainer kits Signed-off-by: Avior <github@avior.me>
25 lines
300 B
TypeScript
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
|