import { Card } from '../../../interfaces' import Set from '../Sandstorm' const card: Card = { name: { en: "Shroomish", fr: "Balignon" }, illustrator: "Ken Sugimori", rarity: "Common", category: "Pokemon", set: Set, dexId: [ 285, ], hp: 40, types: [ "Grass", ], stage: "Basic", attacks: [ { cost: [ "Colorless", ], name: { en: "Growth Spurt", fr: "Jaillissement" }, effect: { en: "Attach a Grass Energy card from your hand to Shroomish.", fr: "Attachez à Balignon une carte Énergie de votre main." }, }, { cost: [ "Grass", "Colorless", ], name: { en: "Poisonpowder", fr: "Poudre Toxik" }, effect: { en: "The Defending Pokémon is now Poisoned.", fr: "Le Pokémon Défenseur est maintenant Empoisonné." }, damage: 10, }, ], weaknesses: [ { type: "Fire", value: "×2" }, ], resistances: [ { type: "Water", value: "-30" }, ], } export default card