import { Card } from '../../../interfaces' import Set from '../POP Series 6' const card: Card = { name: { en: "Chimchar", }, illustrator: "Kagemaru Himeno", rarity: "Common", category: "Pokemon", set: Set, dexId: [ 390, ], hp: 50, types: [ "Fire", ], stage: "Basic", attacks: [ { name: { en: "Scratch", }, damage: 10, }, { cost: [ "Fire", "Colorless", ], name: { en: "Ember", }, effect: { en: "Flip a coin. If tails, discard a Fire Energy attached to Chimchar.", }, damage: 30, }, ], weaknesses: [ { type: "Water", value: "+10" }, ], description: { en: "It agilely scales cliffs to live atop craggy mountains. Its fire is put out when it sleeps." }, retreat: 1, variants: { normal: true, reverse: false, holo: true, firstEdition: false } } export default card