import { Card } from '../../../interfaces' import Set from '../Sandstorm' const card: Card = { name: { en: "Shroomish", }, illustrator: "Ken Sugimori", rarity: "Common", category: "Pokemon", set: Set, dexId: [ 285, ], hp: 40, types: [ "Grass", ], stage: "Basic", attacks: [ { cost: [ "Colorless", ], name: { en: "Growth Spurt", }, effect: { en: "Attach a Grass Energy card from your hand to Shroomish.", }, }, { cost: [ "Grass", "Colorless", ], name: { en: "Poisonpowder", }, effect: { en: "The Defending Pokémon is now Poisoned.", }, damage: 10, }, ], weaknesses: [ { type: "Fire", value: "×2" }, ], resistances: [ { type: "Water", value: "-30" }, ], } export default card