1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-22 02:42:09 +00:00

22 lines
413 B
TypeScript

import { Card } from "../../../interfaces"
import Set from "../Shrouded Fable"
const card: Card = {
set: Set,
name: {
en: "Basic Metal Energy",
fr: "Énergie Metal de base",
es: "Energía Metal Básica",
it: "Energia base Metal",
pt: "Energia Metal Básica",
de: "Basis-Metal-Energie"
},
rarity: "Hyper rare",
category: "Energy",
types: ["Metal"],
energyType: "Normal"
}
export default card