import { Card } from '../../../interfaces' import Set from '../Yellow A Alternate' const card: Card = { name: { en: "Beldum", fr: "Terhal", }, illustrator: "Mizue", rarity: "Common", category: "Pokemon", set: Set, dexId: [ 374, ], hp: 60, types: [ "Metal", ], stage: "Basic", attacks: [ { cost: [ "Metal", ], name: { en: "Core Beam", fr: "Faisceau Central", }, effect: { en: "Discard a Metal Energy from this Pokémon.", fr: "Défaussez une Énergie Metal de ce Pokémon.", }, damage: 20, }, ], weaknesses: [ { type: "Fire", value: "×2" }, ], resistances: [ { type: "Psychic", value: "-20" }, ], retreat: 1, } export default card