import { Card } from '../../../interfaces' import Set from '../Neo Revelation' const card: Card = { name: { en: "Skiploom", }, illustrator: "Mitsuhiro Arita", rarity: "Common", category: "Pokemon", set: Set, dexId: [ 188, ], hp: 60, types: [ "Grass", ], evolveFrom: { en: "Hoppip", }, stage: "Stage1", attacks: [ { cost: [ "Colorless", ], name: { en: "Hop", }, damage: 20, }, { cost: [ "Grass", ], name: { en: "Mysterious Powder", }, effect: { en: "Flip a coin. If heads, the Defending Pokémon is now Confused.", }, damage: 10, }, ], weaknesses: [ { type: "Fire", value: "×2" }, ], resistances: [ { type: "Fighting", value: "-30" }, ], } export default card