mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-27 13:22:15 +00:00
72 lines
1.6 KiB
TypeScript
72 lines
1.6 KiB
TypeScript
import { Card } from "../../../interfaces"
|
|
import Set from "../Astral Radiance"
|
|
|
|
const card: Card = {
|
|
set: Set,
|
|
|
|
name: {
|
|
en: "Kleavor V",
|
|
fr: "Hachécateur V",
|
|
es: "Kleavor V",
|
|
it: "Kleavor V",
|
|
pt: "Kleavor V",
|
|
de: "Axantor V"
|
|
},
|
|
|
|
rarity: "Holo Rare V",
|
|
category: "Pokemon",
|
|
hp: 210,
|
|
types: ["Fighting"],
|
|
stage: "Basic",
|
|
suffix: "V",
|
|
|
|
attacks: [{
|
|
cost: ["Fighting"],
|
|
|
|
name: {
|
|
en: "Cut",
|
|
fr: "Coupe",
|
|
es: "Corte",
|
|
it: "Taglio",
|
|
pt: "Cortar",
|
|
de: "Zerschneider"
|
|
},
|
|
|
|
damage: 40
|
|
}, {
|
|
cost: ["Fighting", "Fighting", "Colorless"],
|
|
|
|
name: {
|
|
en: "Axe Slash",
|
|
fr: "Hache Tranchante",
|
|
es: "Tajo Hacha",
|
|
it: "Lacerascure",
|
|
pt: "Machadada",
|
|
de: "Axthieb"
|
|
},
|
|
|
|
effect: {
|
|
en: "Discard an Energy from this Pokémon. If you do, discard an Energy from your opponent's Active Pokémon.",
|
|
fr: "Défaussez une Énergie de ce Pokémon. Dans ce cas, défaussez une Énergie du Pokémon Actif de votre adversaire.",
|
|
es: "Descarta 1 Energía de este Pokémon. Si lo haces, descarta 1 Energía del Pokémon Activo de tu rival.",
|
|
it: "Scarta un'Energia da questo Pokémon. Se lo fai, scarta un'Energia dal Pokémon attivo del tuo avversario.",
|
|
pt: "Descarte 1 Energia deste Pokémon. Se fizer isto, descarte 1 Energia do Pokémon Ativo do seu oponente.",
|
|
de: "Lege 1 Energie von diesem Pokémon auf deinen Ablagestapel. Wenn du das machst, lege 1 Energie vom Aktiven Pokémon deines Gegners auf seinen Ablagestapel."
|
|
},
|
|
|
|
damage: 150
|
|
}],
|
|
|
|
retreat: 2,
|
|
regulationMark: "F",
|
|
|
|
variants: {
|
|
normal: false,
|
|
reverse: false,
|
|
holo: true,
|
|
firstEdition: false
|
|
}
|
|
}
|
|
|
|
export default card
|