1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-22 19:02:10 +00:00
2021-11-22 15:51:59 +01:00

24 lines
305 B
TypeScript

import { Serie } from '../interfaces'
const set: Serie = {
id: "xy",
name: {
en: "XY",
fr: "XY",
es: "XY",
it: "XY",
de: "XY",
pt: "XY"
},
energies: [
'Darkness', 'Dragon',
'Fairy', 'Fighting',
'Fire', 'Grass',
'Lightning', 'Metal',
'Psychic', 'Water'
]
}
export default set