import { Card } from '../../../interfaces' import Set from '../Neo Genesis' const card: Card = { name: { en: "Skiploom", }, illustrator: "Atsuko Nishida", rarity: "Uncommon", category: "Pokemon", set: Set, dexId: [ 188, ], hp: 60, types: [ "Grass", ], evolveFrom: { en: "Hoppip", }, stage: "Stage1", attacks: [ { cost: [ "Grass", ], name: { en: "Poisonpowder", }, effect: { en: "The Defending Pokémon is now Poisoned.", }, damage: 20, }, { cost: [ "Grass", ], name: { en: "Stun Spore", }, effect: { en: "Flip a coin. If heads, the Defending Pokémon is now Paralyzed.", }, damage: 10, }, ], weaknesses: [ { type: "Fire", value: "×2" }, ], resistances: [ { type: "Fighting", value: "-30" }, ], } export default card