mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-08-12 08:51:57 +00:00
41 lines
604 B
TypeScript
41 lines
604 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,
|
|
boosters: ["ho-oh"]
|
|
}
|
|
|
|
export default card |