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:
66
data/Sword & Shield/Astral Radiance/070.ts
Normal file
66
data/Sword & Shield/Astral Radiance/070.ts
Normal file
@ -0,0 +1,66 @@
|
||||
import { Card } from "../../../interfaces"
|
||||
import Set from "../Astral Radiance"
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
|
||||
name: {
|
||||
en: "Hisuian Growlithe",
|
||||
fr: "Caninos de Hisui",
|
||||
es: "Growlithe de Hisui",
|
||||
it: "Growlithe di Hisui",
|
||||
pt: "Growlithe de Hisui",
|
||||
de: "Hisui-Fukano"
|
||||
},
|
||||
|
||||
rarity: "Common",
|
||||
category: "Pokemon",
|
||||
hp: 80,
|
||||
types: ["Fighting"],
|
||||
stage: "Basic",
|
||||
|
||||
attacks: [{
|
||||
name: {
|
||||
en: "Defensive Posture",
|
||||
fr: "Posture de Défense",
|
||||
es: "Postura Defensiva",
|
||||
it: "Posizione Difensiva",
|
||||
pt: "Pose Defensiva",
|
||||
de: "Defensive Haltung"
|
||||
},
|
||||
|
||||
effect: {
|
||||
en: "Flip a coin. If heads, during your opponent's next turn, prevent all damage done to this Pokémon by attacks.",
|
||||
fr: "Lancez une pièce. Si c'est face, pendant le prochain tour de votre adversaire, évitez tous les dégâts infligés à ce Pokémon par des attaques.",
|
||||
es: "Lanza 1 moneda. Si sale cara, durante el próximo turno de tu rival, evita todo el daño infligido a este Pokémon por ataques.",
|
||||
it: "Lancia una moneta. Se esce testa, durante il prossimo turno del tuo avversario, previeni tutti i danni inflitti a questo Pokémon da qualsiasi attacco.",
|
||||
pt: "Jogue 1 moeda. Se sair cara, durante o próximo turno do seu oponente, previna todo o dano causado a este Pokémon por ataques.",
|
||||
de: "Wirf 1 Münze. Verhindere bei Kopf während des nächsten Zuges deines Gegners allen Schaden, der diesem Pokémon durch Attacken zugefügt wird."
|
||||
}
|
||||
}, {
|
||||
cost: ["Fighting", "Colorless"],
|
||||
|
||||
name: {
|
||||
en: "Bite",
|
||||
fr: "Morsure",
|
||||
es: "Mordisco",
|
||||
it: "Morso",
|
||||
pt: "Mordida",
|
||||
de: "Biss"
|
||||
},
|
||||
|
||||
damage: 30
|
||||
}],
|
||||
|
||||
retreat: 2,
|
||||
regulationMark: "F",
|
||||
|
||||
variants: {
|
||||
normal: true,
|
||||
reverse: true,
|
||||
holo: false,
|
||||
firstEdition: false
|
||||
}
|
||||
}
|
||||
|
||||
export default card
|
Reference in New Issue
Block a user