mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-05-03 08:02:10 +00:00
28 lines
466 B
TypeScript
28 lines
466 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",
|
|
|
|
variants: {
|
|
normal: false,
|
|
reverse: false
|
|
}
|
|
}
|
|
|
|
export default card
|