mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-06-17 18:09:19 +00:00
feat: Add Astral Radiance (#305)
This commit is contained in:
71
data/Sword & Shield/Astral Radiance/078.ts
Normal file
71
data/Sword & Shield/Astral Radiance/078.ts
Normal file
@ -0,0 +1,71 @@
|
||||
import { Card } from "../../../interfaces"
|
||||
import Set from "../Astral Radiance"
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
|
||||
name: {
|
||||
en: "Lucario V",
|
||||
fr: "Lucario V",
|
||||
es: "Lucario V",
|
||||
it: "Lucario V",
|
||||
pt: "Lucario V",
|
||||
de: "Lucario V"
|
||||
},
|
||||
|
||||
rarity: "Ultra Rare",
|
||||
category: "Pokemon",
|
||||
hp: 210,
|
||||
types: ["Fighting"],
|
||||
stage: "Basic",
|
||||
suffix: "V",
|
||||
|
||||
attacks: [{
|
||||
cost: ["Colorless", "Colorless"],
|
||||
|
||||
name: {
|
||||
en: "Crushing Punch",
|
||||
fr: "Poing Dévastateur",
|
||||
es: "Puñetazo Devastador",
|
||||
it: "Pugno Spaccatutto",
|
||||
pt: "Soco Esmagador",
|
||||
de: "Schmetterhieb"
|
||||
},
|
||||
|
||||
effect: {
|
||||
en: "Discard a Special Energy from your opponent's Active Pokémon.",
|
||||
fr: "Défaussez une Énergie spéciale du Pokémon Actif de votre adversaire.",
|
||||
es: "Descarta 1 Energía Especial del Pokémon Activo de tu rival.",
|
||||
it: "Scarta un'Energia speciale dal Pokémon attivo del tuo avversario.",
|
||||
pt: "Descarte 1 Energia Especial do Pokémon Ativo do seu oponente.",
|
||||
de: "Lege 1 Spezial-Energie vom Aktiven Pokémon deines Gegners auf seinen Ablagestapel."
|
||||
},
|
||||
|
||||
damage: 50
|
||||
}, {
|
||||
cost: ["Fighting", "Colorless", "Colorless"],
|
||||
|
||||
name: {
|
||||
en: "Cyclone Kick",
|
||||
fr: "Pied Cyclone",
|
||||
es: "Patada Ciclón",
|
||||
it: "Calciovento",
|
||||
pt: "Chute Ciclone",
|
||||
de: "Wirbeltritt"
|
||||
},
|
||||
|
||||
damage: 120
|
||||
}],
|
||||
|
||||
retreat: 2,
|
||||
regulationMark: "F",
|
||||
|
||||
variants: {
|
||||
normal: false,
|
||||
reverse: true,
|
||||
holo: true,
|
||||
firstEdition: false
|
||||
}
|
||||
}
|
||||
|
||||
export default card
|
Reference in New Issue
Block a user