import { Card } from '../../../interfaces' import Set from '../Power Keepers' const card: Card = { name: { en: "Blaziken", }, illustrator: "Masakazu Fukuda", rarity: "Rare", category: "Pokemon", set: Set, dexId: [ 257, ], hp: 100, types: [ "Fire", ], evolveFrom: { en: "Combusken", }, stage: "Stage2", abilities: [ { type: "Poke-POWER", name: { en: "Firestarter", }, effect: { en: "Once during your turn (before your attack), you may attach a Fire Energy card from your discard pile to 1 of your Benched Pokémon. This power can't be used if Blaziken is affected by a Special Condition.", }, }, ], attacks: [ { cost: [ "Fire", "Colorless", "Colorless", ], name: { en: "Fire Stream", }, effect: { en: "Discard a Fire Energy card attached to Blaziken. This attack does 10 damage to each of your opponent's Benched Pokémon. (Don't apply Weakness and Resistance for Benched Pokémon.)", }, damage: 50, }, ], weaknesses: [ { type: "Water", value: "×2" }, ], } export default card