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
333 B
TypeScript
25 lines
333 B
TypeScript
import { Set } from '../../interfaces'
|
|
import serie from '../EX'
|
|
|
|
const ex11: Set = {
|
|
id: "ex11",
|
|
|
|
name: {
|
|
en: "Delta Species",
|
|
fr: "EX Espèces Delta",
|
|
it: "EX Specie Delta",
|
|
de: "EX Delta Species"
|
|
},
|
|
|
|
serie: serie,
|
|
tcgOnline: "DS",
|
|
|
|
cardCount: {
|
|
official: 113
|
|
},
|
|
|
|
releaseDate: "2005-10-31"
|
|
}
|
|
|
|
export default ex11
|