import { Card } from '../../../interfaces' import Set from '../Furious Fists' const card: Card = { name: { en: "Shroomish", fr: "Balignon", }, illustrator: "Kyoko Umemoto", rarity: "Common", category: "Pokemon", set: Set, dexId: [ 285, ], hp: 60, types: [ "Grass", ], stage: "Basic", attacks: [ { cost: [ "Colorless", ], name: { en: "Tackle", fr: "Charge", }, damage: 10, }, ], weaknesses: [ { type: "Fire", value: "×2" }, ], retreat: 1, } export default card