mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-22 02:42:09 +00:00
76 lines
2.2 KiB
TypeScript
76 lines
2.2 KiB
TypeScript
import { Card } from "../../../interfaces"
|
|
import Set from "../Prismatic Evolutions"
|
|
|
|
const card: Card = {
|
|
set: Set,
|
|
|
|
name: {
|
|
en: "Flareon",
|
|
fr: "Pyroli",
|
|
es: "Flareon",
|
|
pt: "Flareon",
|
|
it: "Flareon",
|
|
de: "Flamara"
|
|
},
|
|
|
|
rarity: "Rare",
|
|
category: "Pokemon",
|
|
hp: 130,
|
|
types: ["Fire"],
|
|
stage: "Stage1",
|
|
|
|
attacks: [{
|
|
cost: ["Fire"],
|
|
|
|
name: {
|
|
en: "Destructive Flame",
|
|
fr: "Flamme Destructrice",
|
|
es: "Llama Destructiva",
|
|
pt: "Chama Destruidora",
|
|
it: "Devastofiamma",
|
|
de: "Verzehrende Flamme"
|
|
},
|
|
|
|
effect: {
|
|
en: "Flip a coin. If heads, discard an Energy from your opponent's Active Pokémon.",
|
|
fr: "Lancez une pièce. Si c'est face, défaussez une Énergie du Pokémon Actif de votre adversaire.",
|
|
es: "Lanza 1 moneda. Si sale cara, descarta 1 Energía del Pokémon Activo de tu rival.",
|
|
pt: "Jogue uma moeda. Se sair cara, descarte uma Energia do Pokémon Ativo do seu oponente.",
|
|
it: "Lancia una moneta. Se esce testa, scarta un'Energia dal Pokémon attivo del tuo avversario.",
|
|
de: "Wirf 1 Münze. Lege bei Kopf 1 Energie vom Aktiven Pokémon deines Gegners auf seinen Ablagestapel."
|
|
},
|
|
|
|
damage: 30
|
|
}, {
|
|
cost: ["Fire", "Colorless", "Colorless"],
|
|
|
|
name: {
|
|
en: "Fighting Blaze",
|
|
fr: "Brasier Combatif",
|
|
es: "Llamarada Luchadora",
|
|
pt: "Luta Labareda",
|
|
it: "Fiammata Combattente",
|
|
de: "Feuerfäuste"
|
|
},
|
|
|
|
effect: {
|
|
en: "If your opponent's Active Pokémon is a Pokémon ex or Pokémon V, this attack does 90 more damage.",
|
|
fr: "Si le Pokémon Actif de votre adversaire est un Pokémon-ex ou un Pokémon-V, cette attaque inflige 90 dégâts supplémentaires.",
|
|
es: "Si el Pokémon Activo de tu rival es un Pokémon ex o un Pokémon V, este ataque hace 90 puntos de daño más.",
|
|
pt: "Se o Pokémon Ativo do seu oponente for um Pokémon ex ou um Pokémon V, este ataque causará 90 pontos de dano a mais.",
|
|
it: "Se il Pokémon attivo del tuo avversario è un Pokémon-ex o un Pokémon-V, questo attacco infligge 90 danni in più.",
|
|
de: "Wenn das Aktive Pokémon deines Gegners ein Pokémon-ex oder Pokémon-V ist, fügt diese Attacke 90 Schadenspunkte mehr zu."
|
|
},
|
|
|
|
damage: "90+"
|
|
}],
|
|
|
|
retreat: 2,
|
|
regulationMark: "G",
|
|
variants: {
|
|
holo: true,
|
|
normal: false
|
|
}
|
|
}
|
|
|
|
export default card |