import { Card } from '../../../interfaces' import Set from '../Dark Explorers' const card: Card = { name: { en: "Klink", }, illustrator: "Midori Harada", rarity: "Common", category: "Pokemon", set: Set, dexId: [ 599, ], hp: 60, types: [ "Metal", ], stage: "Basic", attacks: [ { cost: [ "Colorless", "Colorless", ], name: { en: "Smash Turn", }, effect: { en: "Switch this Pokémon with 1 of your Benched Pokémon.", }, damage: 20, }, ], weaknesses: [ { type: "Fire", value: "×2" }, ], resistances: [ { type: "Psychic", value: "-20" }, ], } export default card