import { Card } from '../../../interfaces' import Set from '../Flashfire' const card: Card = { name: { en: "Torkoal", fr: "Chartor", }, illustrator: "Akira Komayama", rarity: "Uncommon", category: "Pokemon", set: Set, dexId: [ 324, ], hp: 100, types: [ "Fire", ], stage: "Basic", attacks: [ { cost: [ "Fire", ], name: { en: "Live Coal", fr: "Charbon Mutant", }, damage: 20, }, { cost: [ "Fire", "Fire", "Colorless", ], name: { en: "Flamethrower", fr: "Lance-Flammes", }, effect: { en: "Flip a coin. If tails, discard an Energy attached to this Pokémon.", fr: "Lancez une pièce. Si c’est pile, défaussez une Énergie attachée à ce Pokémon.", }, damage: 80, }, ], weaknesses: [ { type: "Water", value: "×2" }, ], retreat: 2, } export default card