import { Card } from '../../../interfaces' import Set from '../Hidden Legends' const card: Card = { name: { en: "Beldum", }, illustrator: "Ken Sugimori", rarity: "Uncommon", category: "Pokemon", set: Set, dexId: [ 374, ], hp: 50, types: [ "Metal", ], stage: "Basic", abilities: [ { type: "Poke-BODY", name: { en: "Levitate", }, effect: { en: "If Beldum has any Energy attached to it, Beldum's Retreat Cost is 0.", }, }, ], attacks: [ { cost: [ "Colorless", ], name: { en: "Tackle", }, damage: 10, }, ], weaknesses: [ { type: "Fighting", value: "×2" }, ], resistances: [ { type: "Grass", value: "-30" }, ], } export default card