import { Card } from '../../../interfaces' import Set from '../Darkness Ablaze' const card: Card = { name: { en: "Fletchinder", fr: "Braisillon" }, illustrator: "Mitsuhiro Arita", rarity: "Uncommon", category: "Pokemon", set: Set, hp: 70, types: [ "Fire", ], evolveFrom: { en: "Fletchling", fr: "Passerouge" }, attacks: [ { cost: [ "Colorless", ], name: { en: "Searing Flame", fr: "Flammes Calcinantes" }, effect: { en: "Your opponent’s Active Pokémon is now Burned.", fr: "Le Pokémon Actif de votre adversaire est maintenant Brûlé." }, damage: 20, }, ], weaknesses: [ { type: "Lightning", value: "×2" }, ], resistances: [ { type: "Fighting", value: "-30" }, ], retreat: 1, } export default card