1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-26 12:52:13 +00:00

81 lines
1.2 KiB
TypeScript
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

import { Card } from '../../../interfaces'
import Set from '../Delta Species'
const card: Card = {
name: {
en: "Flareon ex",
},
illustrator: "Ryo Ueda",
rarity: "Rare",
category: "Pokemon",
set: Set,
dexId: [
136,
],
hp: 110,
types: [
"Fire",
],
evolveFrom: {
en: "Eevee",
},
suffix: "EX",
abilities: [
{
type: "Poke-POWER",
name: {
en: "Evolutionary Flame",
},
effect: {
en: "Once during your turn, when you play Flareon ex from your hand to evolve 1 of your Pokémon, you may choose 1 of the Defending Pokémon. That Pokémon is now Burned and Confused.",
},
},
],
attacks: [
{
cost: [
"Fire",
"Colorless",
],
name: {
en: "Flame Screen",
},
effect: {
en: "During your opponent's next turn, any damage done to Flareon ex by attacks is reduced by 20 (after applying Weakness and Resistance).",
},
damage: 30,
},
{
cost: [
"Fire",
"Colorless",
"Colorless",
],
name: {
en: "Heat Tackle",
},
effect: {
en: "Flareon ex does 10 damage to itself.",
},
damage: 70,
},
],
weaknesses: [
{
type: "Water",
value: "×2"
},
],
}
export default card