import { Card } from '../../../interfaces' import Set from '../Crystal Guardians' const card: Card = { name: { en: "Torchic", fr: "Poussifeu" }, illustrator: "Sachiko Adachi", rarity: "Common", category: "Pokemon", set: Set, dexId: [ 255, ], hp: 50, types: [ "Fire", ], stage: "Basic", attacks: [ { cost: [ "Colorless", ], name: { en: "Claw", fr: "Mâchoire" }, effect: { en: "Flip a coin. If tails, this attack does nothing.", fr: "Lancez une pièce. Si c'est pile, cette attaque est sans effet." }, damage: 20, }, ], weaknesses: [ { type: "Water", value: "×2" }, ], } export default card