mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-06-05 13:09:53 +00:00
74 lines
1.2 KiB
TypeScript
74 lines
1.2 KiB
TypeScript
import { Card } from "../../../interfaces"
|
||
import Set from "../Scarlet & Violet"
|
||
|
||
const card: Card = {
|
||
set: Set,
|
||
|
||
name: {
|
||
en: "Klawf",
|
||
fr: "Craparoi",
|
||
es: "Klawf",
|
||
it: "Klawf",
|
||
pt: "Klawf",
|
||
de: "Klibbe"
|
||
},
|
||
|
||
rarity: "Rare",
|
||
category: "Pokemon",
|
||
hp: 130,
|
||
types: ["Fighting"],
|
||
stage: "Basic",
|
||
|
||
attacks: [{
|
||
cost: ["Fighting", "Fighting"],
|
||
|
||
name: {
|
||
en: "Vise Grip",
|
||
fr: "Force Poigne",
|
||
es: "Agarre",
|
||
it: "Presa",
|
||
pt: "Agarramento Compressor",
|
||
de: "Klammer"
|
||
},
|
||
|
||
damage: 50
|
||
}, {
|
||
cost: ["Fighting", "Fighting", "Fighting"],
|
||
|
||
name: {
|
||
en: "Adrenaline Hammer",
|
||
fr: "Marteau Adrénaline",
|
||
es: "Martillo Adrenalina",
|
||
it: "Martello Adrenalinico",
|
||
pt: "Martelo de Adrenalina",
|
||
de: "Adrenalinhammer"
|
||
},
|
||
|
||
effect: {
|
||
en: "This Pokémon is now Confused.",
|
||
fr: "Ce Pokémon est maintenant Confus.",
|
||
es: "Este Pokémon pasa a estar Confundido.",
|
||
it: "Questo Pokémon viene confuso.",
|
||
pt: "Este Pokémon agora está Confuso.",
|
||
de: "Dieses Pokémon ist jetzt verwirrt."
|
||
},
|
||
|
||
damage: 130
|
||
}],
|
||
|
||
retreat: 3,
|
||
regulationMark: "G",
|
||
illustrator: "nagimiso",
|
||
|
||
weaknesses: [{
|
||
type: "Grass",
|
||
value: "×2"
|
||
}],
|
||
|
||
variants: {
|
||
reverse: false,
|
||
normal: false
|
||
}
|
||
}
|
||
|
||
export default card |