import { Card } from '../../../interfaces' import Set from '../Promos' const card: Card = { name: { en: "Braixen", }, illustrator: "kirisAki", rarity: "Uncommon", category: "Pokemon", set: Set, dexId: [ 654, ], hp: 80, types: [ "Fire", ], stage: "Stage1", attacks: [ { cost: [ "Fire", ], name: { en: "Destructive Flame", }, effect: { en: "Flip a coin. If heads, discard an Energy attached to your opponent's Active Pokémon.", }, damage: 20, }, { cost: [ "Colorless", "Colorless", ], name: { en: "Crackling Ribbon", }, damage: 30, }, ], weaknesses: [ { type: "Water", value: "×2" }, ], } export default card