1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-10 15:19:55 +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

68 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: "Illustration 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",
variants: {
normal: false,
reverse: false
}
}
export default card