import { Card } from '../../../interfaces' import Set from '../Ancient Origins' const card: Card = { name: { en: "Gloom", fr: "Ortide", }, illustrator: "Masakazu Fukuda", rarity: "Uncommon", category: "Pokemon", set: Set, dexId: [ 44, ], hp: 80, types: [ "Grass", ], evolveFrom: { en: "Oddish", fr: "Mystherbe", }, stage: "Stage1", attacks: [ { cost: [ "Grass", "Colorless", ], name: { en: "Drool", fr: "Gluant", }, damage: 30, }, ], weaknesses: [ { type: "Fire", value: "×2" }, ], retreat: 1, } export default card