1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-24 11:52:16 +00:00

22 lines
358 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"
},
rarity: "Common",
category: "Energy",
set: Set,
energyType: "Normal",
}
export default card