mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-30 23:02:09 +00:00
61 lines
880 B
TypeScript
61 lines
880 B
TypeScript
import { Card } from "../../../interfaces"
|
|
import Set from "../Brilliant Stars"
|
|
|
|
const card: Card = {
|
|
dexId: [599],
|
|
set: Set,
|
|
|
|
name: {
|
|
en: "Klink",
|
|
fr: "Tic",
|
|
es: "Klink",
|
|
it: "Klink",
|
|
pt: "Klink",
|
|
de: "Klikk"
|
|
},
|
|
|
|
rarity: "Common",
|
|
category: "Pokemon",
|
|
hp: 50,
|
|
types: ["Metal"],
|
|
stage: "Basic",
|
|
|
|
attacks: [{
|
|
cost: ["Metal"],
|
|
|
|
name: {
|
|
en: "Vise Grip",
|
|
fr: "Force Poigne",
|
|
es: "Agarre",
|
|
it: "Presa",
|
|
pt: "Agarramento Compressor",
|
|
de: "Klammer"
|
|
},
|
|
|
|
damage: 10
|
|
}, {
|
|
cost: ["Metal", "Colorless"],
|
|
|
|
name: {
|
|
en: "Spinning Attack",
|
|
fr: "Attaque Tournante",
|
|
es: "Ataque Giratorio",
|
|
it: "Attacco Rotante",
|
|
pt: "Ataque Giratório",
|
|
de: "Rundumangriff"
|
|
},
|
|
|
|
damage: 20
|
|
}],
|
|
|
|
retreat: 1,
|
|
regulationMark: "F",
|
|
variants: {
|
|
normal: true,
|
|
reverse: true,
|
|
holo: false,
|
|
firstEdition: false
|
|
}
|
|
}
|
|
|
|
export default card |