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
401 B
TypeScript
25 lines
401 B
TypeScript
import { Set } from '../../interfaces'
|
|
import serie from '../EX'
|
|
|
|
const exu: Set = {
|
|
id: "exu",
|
|
|
|
name: {
|
|
en: "Unseen Forces Unown Collection",
|
|
fr: "EX Forces Cachées Collection Zarbi",
|
|
es: "EX Fuerzas Ocultas Unown",
|
|
it: "EX Forze Segrete Unown",
|
|
de: "EX Verborgene Mächte Icognito"
|
|
},
|
|
|
|
serie: serie,
|
|
|
|
cardCount: {
|
|
official: 28
|
|
},
|
|
|
|
releaseDate: "2005-08-22"
|
|
}
|
|
|
|
export default exu
|