mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-06-17 01:49:19 +00:00
feat: Add Astral Radiance (#305)
This commit is contained in:
71
data/Sword & Shield/Astral Radiance/087.ts
Normal file
71
data/Sword & Shield/Astral Radiance/087.ts
Normal file
@ -0,0 +1,71 @@
|
||||
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: "Ultra Rare",
|
||||
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
|
Reference in New Issue
Block a user