import { Card } from "../../../interfaces" import Set from "../Wisdom of Sea and Sky" const card: Card = { set: Set, name: { en: "Klink" }, illustrator: "Akira Komayama", rarity: "One Diamond", category: "Pokemon", hp: 60, types: ["Metal"], description: { en: "The two minigears that compose this Pokémon\nare closer than twins. They mesh well only with\neach other." }, stage: "Basic", attacks: [{ name: { en: "Vise Grip" }, damage: 20, cost: ["Metal"] }], weaknesses: [{ type: "Fire", value: "+20" }], retreat: 1 } export default card