import { Card } from '../../../interfaces' import Set from '../Celestial Storm' const card: Card = { name: { en: "Beldum", fr: "Terhal", }, illustrator: "Hasuno", rarity: "Common", category: "Pokemon", set: Set, dexId: [ 374, ], hp: 70, types: [ "Metal", ], stage: "Basic", attacks: [ { cost: [ "Colorless", "Colorless", ], name: { en: "Single Smash", fr: "Simplécrasement", }, effect: { en: "Flip a coin. If tails, this attack does nothing.", fr: "Lancez une pièce. Si c’est pile, cette attaque ne fait rien.", }, damage: 50, }, ], weaknesses: [ { type: "Fire", value: "×2" }, ], resistances: [ { type: "Psychic", value: "-20" }, ], retreat: 3, } export default card