import { Card } from '../../../interfaces' import Set from '../Sandstorm' const card: Card = { name: { en: "Flareon", }, illustrator: "Midori Harada", rarity: "Rare", category: "Pokemon", set: Set, dexId: [ 136, ], hp: 80, types: [ "Fire", ], evolveFrom: { en: "Eevee", }, stage: "Stage1", attacks: [ { cost: [ "Fire", "Colorless", ], name: { en: "Super Singe", }, effect: { en: "Flip a coin. If heads, the Defending Pokémon is now Burned.", }, damage: 20, }, { cost: [ "Fire", "Colorless", "Colorless", "Colorless", ], name: { en: "Flamethrower", }, effect: { en: "Discard a Fire Energy card attached to Flareon.", }, damage: 70, }, ], weaknesses: [ { type: "Water", value: "×2" }, ], } export default card