import { Card } from '../../../interfaces' import Set from '../Expedition Base Set' const card: Card = { name: { en: "Gloom", }, illustrator: "Yuichi Sawayama", rarity: "Uncommon", category: "Pokemon", set: Set, dexId: [ 44, ], hp: 70, types: [ "Grass", ], evolveFrom: { en: "Oddish", }, stage: "Stage1", attacks: [ { cost: [ "Grass", "Colorless", ], name: { en: "Razor Leaf", }, damage: 20, }, { cost: [ "Grass", "Colorless", "Colorless", ], name: { en: "Foul Odor", }, effect: { en: "Both the Defending Pokémon and Gloom are now Confused (after doing damage).", }, damage: 30, }, ], weaknesses: [ { type: "Psychic", value: "×2" }, ], } export default card