import { Card } from '../../../interfaces' import Set from '../Dark Explorers' const card: Card = { name: { en: "Klang", }, illustrator: "Shin Nagasawa", rarity: "Uncommon", category: "Pokemon", set: Set, dexId: [ 600, ], hp: 80, types: [ "Metal", ], evolveFrom: { en: "Klink", }, stage: "Stage1", attacks: [ { cost: [ "Colorless", "Colorless", ], name: { en: "Charge Beam", }, effect: { en: "Flip a coin. If heads, attach an Energy card from your discard pile to this Pokémon.", }, damage: 20, }, { cost: [ "Metal", "Colorless", "Colorless", ], name: { en: "Vice Grip", }, damage: 50, }, ], weaknesses: [ { type: "Fire", value: "×2" }, ], resistances: [ { type: "Psychic", value: "-20" }, ], } export default card