import { Card } from '../../../interfaces' import Set from '../Sandstorm' const card: Card = { name: { en: "Breloom", }, illustrator: "Atsuko Nishida", rarity: "Uncommon", category: "Pokemon", set: Set, dexId: [ 286, ], hp: 70, types: [ "Grass", ], evolveFrom: { en: "Shroomish", }, stage: "Stage1", attacks: [ { cost: [ "Colorless", ], name: { en: "Super Poison Breath", }, effect: { en: "Each Defending Pokémon is now Poisoned.", }, }, { cost: [ "Fighting", "Colorless", "Colorless", ], name: { en: "Sky Uppercut", }, effect: { en: "This attack's damage is not affected by Resistance.", }, damage: 50, }, ], weaknesses: [ { type: "Fire", value: "×2" }, ], } export default card