1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-05 13:09:53 +00:00
TCGdex [Bot] 0475848425
editor: fix Scarlet & Violet variants (#508)
Co-authored-by: Avior <git@avior.me>
2024-07-03 15:53:00 +02:00

74 lines
1.2 KiB
TypeScript
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

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