import { Card } from '../../../interfaces' import Set from '../POP Series 3' const card: Card = { name: { en: "Combusken", }, illustrator: "Mitsuhiro Arita", rarity: "Uncommon", category: "Pokemon", set: Set, dexId: [ 256, ], hp: 70, types: [ "Fire", ], stage: "Stage1", attacks: [ { cost: [ "Colorless", ], name: { en: "Scratch", }, damage: 10, }, { cost: [ "Fire", "Colorless", "Colorless", ], name: { en: "Flamethrower", }, effect: { en: "Discard a R Energy attached to Combusken.", }, damage: 50, }, ], weaknesses: [ { type: "Water", value: "×2" }, ], } export default card