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>
26 lines
361 B
TypeScript
26 lines
361 B
TypeScript
import { Set } from '../../interfaces'
|
|
import serie from '../EX'
|
|
|
|
const ex1: Set = {
|
|
id: "ex1",
|
|
|
|
name: {
|
|
en: "Ruby & Sapphire",
|
|
fr: "EX Rubis & Saphir",
|
|
es: "Rubí & Zafiro",
|
|
it: "EX Rubino & Zaffiro",
|
|
de: "EX Rubin & Saphir"
|
|
},
|
|
|
|
serie: serie,
|
|
tcgOnline: "RS",
|
|
|
|
cardCount: {
|
|
official: 109
|
|
},
|
|
|
|
releaseDate: "2003-07-01"
|
|
}
|
|
|
|
export default ex1
|