mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-22 19:02:10 +00:00
23 lines
299 B
TypeScript
23 lines
299 B
TypeScript
import { Serie } from '../interfaces'
|
|
|
|
const set: Serie = {
|
|
id: "pl",
|
|
name: {
|
|
en: "Platinum",
|
|
fr: "Platine",
|
|
es: "Platino",
|
|
it: "Platino",
|
|
de: "Platin"
|
|
},
|
|
|
|
energies: [
|
|
'Darkness',
|
|
'Fighting',
|
|
'Fire', 'Grass',
|
|
'Lightning', 'Metal',
|
|
'Psychic', 'Water'
|
|
]
|
|
}
|
|
|
|
export default set
|