1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-08-03 21:02:02 +00:00
Files
cards-database/data/Pokémon TCG Pocket/Wisdom of Sea and Sky/126.ts

40 lines
582 B
TypeScript

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