mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-05-01 15:12:10 +00:00
21 lines
362 B
TypeScript
21 lines
362 B
TypeScript
import { Card } from "../../../interfaces"
|
|
import Set from "../Crown Zenith"
|
|
|
|
const card: Card = {
|
|
set: Set,
|
|
|
|
name: {
|
|
en: "Metal Energy",
|
|
fr: "Énergie Métal",
|
|
es: "Energía Metálica",
|
|
it: "Energia Metallo",
|
|
pt: "Energia de Metal",
|
|
de: "Metall-Energie"
|
|
},
|
|
|
|
rarity: "Ultra Rare",
|
|
category: "Energy",
|
|
energyType: "Normal"
|
|
}
|
|
|
|
export default card |