mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-06-17 09:59:19 +00:00
feat: Add Astral Radiance (#305)
This commit is contained in:
80
data/Sword & Shield/Astral Radiance/038.ts
Normal file
80
data/Sword & Shield/Astral Radiance/038.ts
Normal file
@ -0,0 +1,80 @@
|
||||
import { Card } from "../../../interfaces"
|
||||
import Set from "../Astral Radiance"
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
|
||||
name: {
|
||||
en: "Glaceon",
|
||||
fr: "Givrali",
|
||||
es: "Glaceon",
|
||||
it: "Glaceon",
|
||||
pt: "Glaceon",
|
||||
de: "Glaziola"
|
||||
},
|
||||
|
||||
rarity: "Rare",
|
||||
category: "Pokemon",
|
||||
hp: 110,
|
||||
types: ["Water"],
|
||||
|
||||
evolveFrom: {
|
||||
en: "Eevee",
|
||||
fr: "Évoli",
|
||||
es: "Eevee",
|
||||
it: "Eevee",
|
||||
pt: "Eevee",
|
||||
de: "Evoli"
|
||||
},
|
||||
|
||||
stage: "Stage1",
|
||||
|
||||
attacks: [{
|
||||
cost: ["Water"],
|
||||
|
||||
name: {
|
||||
en: "Frost Wall",
|
||||
fr: "Mur de Givre",
|
||||
es: "Muro Gélido",
|
||||
it: "Murogelo",
|
||||
pt: "Muro Congelado",
|
||||
de: "Frostwand"
|
||||
},
|
||||
|
||||
effect: {
|
||||
en: "During your opponent's next turn, prevent all damage done to this Pokémon by attacks from Evolution Pokémon.",
|
||||
fr: "Pendant le prochain tour de votre adversaire, évitez tous les dégâts infligés à ce Pokémon par des attaques de Pokémon Évolutifs.",
|
||||
es: "Durante el próximo turno de tu rival, evita todo el daño infligido a este Pokémon por ataques de Pokémon Evolución.",
|
||||
it: "Durante il prossimo turno del tuo avversario, previeni tutti i danni inflitti a questo Pokémon dagli attacchi dei Pokémon Evoluzione.",
|
||||
pt: "Durante o próximo turno do seu oponente, previna todo o dano causado a este Pokémon por ataques de Pokémon de Evolução.",
|
||||
de: "Verhindere während des nächsten Zuges deines Gegners allen Schaden, der diesem Pokémon durch Attacken von Entwicklungs-Pokémon zugefügt wird."
|
||||
},
|
||||
|
||||
damage: 30
|
||||
}, {
|
||||
cost: ["Water", "Water", "Colorless"],
|
||||
|
||||
name: {
|
||||
en: "Ice Blast",
|
||||
fr: "Explosion Glacée",
|
||||
es: "Ráfaga de Hielo",
|
||||
it: "Ghiaccioscoppio",
|
||||
pt: "Rajada de Gelo",
|
||||
de: "Eis-Blaster"
|
||||
},
|
||||
|
||||
damage: 120
|
||||
}],
|
||||
|
||||
retreat: 1,
|
||||
regulationMark: "F",
|
||||
|
||||
variants: {
|
||||
normal: true,
|
||||
reverse: true,
|
||||
holo: false,
|
||||
firstEdition: false
|
||||
}
|
||||
}
|
||||
|
||||
export default card
|
Reference in New Issue
Block a user