1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-25 12:22:14 +00:00

79 lines
1.1 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 '../Skyridge'
const card: Card = {
name: {
en: "Flareon",
},
illustrator: "Kyoko Umemoto",
rarity: "Rare",
category: "Pokemon",
set: Set,
dexId: [
136,
],
hp: 70,
types: [
"Fire",
],
evolveFrom: {
en: "Eevee",
},
stage: "Stage1",
abilities: [
{
type: "Poke-BODY",
name: {
en: "Self Healing",
},
effect: {
en: "Whenever you attach a Fire Energy card from your hand to Flareon, remove all Special Conditions affecting Flareon.",
},
},
],
attacks: [
{
cost: [
"Fire",
],
name: {
en: "Singe",
},
effect: {
en: "The Defending Pokémon is now Burned.",
},
},
{
cost: [
"Colorless",
"Colorless",
"Colorless",
],
name: {
en: "Burn Booster",
},
effect: {
en: "Discard an Energy card attached to Flareon in order to use this attack. If the discarded card is a Energy card, this attack does 40 damage plus 10 more damage.",
},
damage: 40,
},
],
weaknesses: [
{
type: "Water",
value: "×2"
},
],
}
export default card