mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-25 04:12:11 +00:00
87 lines
2.0 KiB
TypeScript
87 lines
2.0 KiB
TypeScript
import { Card } from "../../../interfaces"
|
|
import Set from "../Astral Radiance"
|
|
|
|
const card: Card = {
|
|
set: Set,
|
|
|
|
name: {
|
|
en: "Kleavor",
|
|
fr: "Hachécateur",
|
|
es: "Kleavor",
|
|
it: "Kleavor",
|
|
pt: "Kleavor",
|
|
de: "Axantor"
|
|
},
|
|
|
|
rarity: "Rare",
|
|
category: "Pokemon",
|
|
hp: 140,
|
|
types: ["Fighting"],
|
|
|
|
evolveFrom: {
|
|
en: "Scyther",
|
|
fr: "Insécateur",
|
|
es: "Scyther",
|
|
it: "Scyther",
|
|
pt: "Scyther",
|
|
de: "Sichlor"
|
|
},
|
|
|
|
stage: "Stage1",
|
|
|
|
attacks: [{
|
|
cost: ["Colorless", "Colorless"],
|
|
|
|
name: {
|
|
en: "Timber Cleave",
|
|
fr: "Découpe Bois",
|
|
es: "Cortamadera",
|
|
it: "Fendente Legnoso",
|
|
pt: "Cutelo de Madeira",
|
|
de: "Baumspalter"
|
|
},
|
|
|
|
effect: {
|
|
en: "Flip 2 coins. If both of them are heads, your opponent's Active Pokémon is Knocked Out.",
|
|
fr: "Lancez 2 pièces. Si vous obtenez 2 côtés face, le Pokémon Actif de votre adversaire est mis K.O.",
|
|
es: "Lanza 2 monedas. Si ambas son cara, el Pokémon Activo de tu rival queda Fuera de Combate.",
|
|
it: "Lancia due volte una moneta. Se esce entrambe le volte testa, il Pokémon attivo del tuo avversario viene messo KO.",
|
|
pt: "Jogue 2 moedas. Se as duas saírem cara, o Pokémon Ativo do seu oponente será Nocauteado.",
|
|
de: "Wirf 2 Münzen. Zeigen beide Münzen Kopf, ist das Aktive Pokémon deines Gegners kampfunfähig."
|
|
}
|
|
}, {
|
|
cost: ["Fighting", "Fighting"],
|
|
|
|
name: {
|
|
en: "Berserker Tackle",
|
|
fr: "Charge Folle",
|
|
es: "Placaje Locura",
|
|
it: "Assalto Brado",
|
|
pt: "Investida Frenética",
|
|
de: "Berserkerwut"
|
|
},
|
|
|
|
effect: {
|
|
en: "This Pokémon also does 30 damage to itself.",
|
|
fr: "Ce Pokémon s'inflige aussi 30 dégâts.",
|
|
es: "Este Pokémon también se hace 30 puntos de daño a sí mismo.",
|
|
it: "Questo Pokémon infligge anche 30 danni a se stesso.",
|
|
pt: "Este Pokémon também causa 30 pontos de dano a si mesmo.",
|
|
de: "Dieses Pokémon fügt auch sich selbst 30 Schadenspunkte zu."
|
|
},
|
|
|
|
damage: 120
|
|
}],
|
|
|
|
retreat: 2,
|
|
regulationMark: "F",
|
|
|
|
variants: {
|
|
normal: false,
|
|
reverse: false,
|
|
holo: true,
|
|
firstEdition: false
|
|
}
|
|
}
|
|
|
|
export default card |