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:
57
data/Sword & Shield/Astral Radiance/027.ts
Normal file
57
data/Sword & Shield/Astral Radiance/027.ts
Normal file
@ -0,0 +1,57 @@
|
||||
import { Card } from "../../../interfaces"
|
||||
import Set from "../Astral Radiance"
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
|
||||
name: {
|
||||
en: "Radiant Heatran",
|
||||
fr: "Heatran Radieux",
|
||||
es: "Heatran Radiante",
|
||||
it: "Heatran Lucente",
|
||||
pt: "Heatran Radiante",
|
||||
de: "Strahlendes Heatran"
|
||||
},
|
||||
|
||||
rarity: "Ultra Rare",
|
||||
category: "Pokemon",
|
||||
hp: 160,
|
||||
types: ["Fire"],
|
||||
stage: "Basic",
|
||||
|
||||
attacks: [{
|
||||
cost: ["Fire", "Colorless", "Colorless"],
|
||||
|
||||
name: {
|
||||
en: "Raging Blast",
|
||||
fr: "Explosion Furieuse",
|
||||
es: "Explosión Rabiosa",
|
||||
it: "Furiascoppio",
|
||||
pt: "Explosão Devastadora",
|
||||
de: "Wutexplosion"
|
||||
},
|
||||
|
||||
effect: {
|
||||
en: "This attack does 70 damage for each damage counter on this Pokémon.",
|
||||
fr: "Cette attaque inflige 70 dégâts pour chaque marqueur de dégâts sur ce Pokémon.",
|
||||
es: "Este ataque hace 70 puntos de daño por cada contador de daño en este Pokémon.",
|
||||
it: "Questo attacco infligge 70 danni per ogni segnalino danno presente su questo Pokémon.",
|
||||
pt: "Este ataque causa 70 pontos de dano para cada contador de dano neste Pokémon.",
|
||||
de: "Diese Attacke fügt für jede Schadensmarke auf diesem Pokémon 70 Schadenspunkte zu."
|
||||
},
|
||||
|
||||
damage: "70×"
|
||||
}],
|
||||
|
||||
retreat: 3,
|
||||
regulationMark: "F",
|
||||
|
||||
variants: {
|
||||
normal: true,
|
||||
reverse: true,
|
||||
holo: false,
|
||||
firstEdition: false
|
||||
}
|
||||
}
|
||||
|
||||
export default card
|
Reference in New Issue
Block a user