mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-22 10:52:10 +00:00
24 lines
359 B
TypeScript
24 lines
359 B
TypeScript
import { Serie } from '../interfaces'
|
|
|
|
const set: Serie = {
|
|
id: "sm",
|
|
name: {
|
|
en: "Sun & Moon",
|
|
fr: "Soleil et Lune",
|
|
es: "Sol y Luna",
|
|
it: "Sole e Luna",
|
|
de: "Sonne & Mond",
|
|
pt: "Sol e Lua"
|
|
},
|
|
|
|
energies: [
|
|
'Darkness', 'Dragon',
|
|
'Fairy', 'Fighting',
|
|
'Fire', 'Grass',
|
|
'Lightning', 'Metal',
|
|
'Psychic', 'Water'
|
|
]
|
|
}
|
|
|
|
export default set
|