import { Card } from '../../../interfaces' import Set from '../BREAKthrough' const card: Card = { name: { en: "Cacnea", fr: "Cacnea", }, illustrator: "Yuka Morii", rarity: "Common", category: "Pokemon", set: Set, dexId: [ 331, ], hp: 60, types: [ "Grass", ], stage: "Basic", attacks: [ { cost: [ "Colorless", ], name: { en: "Swagger", fr: "Vantardise", }, effect: { en: "Flip a coin. If heads, discard an Energy attached to your opponent’s Active Pokémon.", fr: "Lancez une pièce. Si c'est face, défaussez une Énergie attachée au Pokémon Actif de votre adversaire.", }, damage: 10, }, ], weaknesses: [ { type: "Fire", value: "×2" }, ], retreat: 1, } export default card