import { Card } from '../../../interfaces' import Set from '../Hidden Legends' const card: Card = { name: { en: "Beldum", fr: "Terhal", de: "Tanhel" }, illustrator: "Ken Sugimori", rarity: "Uncommon", category: "Pokemon", set: Set, dexId: [ 374, ], hp: 50, types: [ "Metal", ], stage: "Basic", abilities: [ { type: "Poke-BODY", name: { en: "Levitate", fr: "Lévitation", de: "Levitate" }, effect: { en: "If Beldum has any Energy attached to it, Beldum's Retreat Cost is 0.", fr: "Si Terhal possède des Énergies, son Coût de Retraite est de 0.", de: "If Beldum has any Energy attached to it, Beldum's Retreat Cost is 0." }, }, ], attacks: [ { cost: [ "Colorless", ], name: { en: "Tackle", fr: "Charge", de: "Tackle" }, damage: 10, }, ], weaknesses: [ { type: "Fighting", value: "×2" }, ], resistances: [ { type: "Grass", value: "-30" }, ], } export default card