1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-23 11:22:10 +00:00
Florian Bouillon 0ce5e62460
Added some XY translations (#63)
Signed-off-by: Avior <florian.bouillon@delta-wings.net>
2021-08-22 22:18:16 +00:00

30 lines
453 B
TypeScript

import { Card } from '../../../interfaces'
import Set from '../Evolutions'
const card: Card = {
name: {
en: "Metal Energy",
fr: "Énergie Métal",
es: "Energía Metálica",
it: "Energia Metallo",
pt: "Energia de Metal",
de: "Metall-Energie"
},
illustrator: undefined,
rarity: "Common",
category: "Energy",
set: Set,
stage: "Basic",
energyType: "Normal",
effect: {
es: "",
it: "",
pt: "",
de: ""
}
}
export default card