import { Card } from '../../../interfaces' import Set from '../HeartGold SoulSilver' const card: Card = { name: { en: "Skiploom", fr: "Floravol", }, illustrator: "sui", rarity: "Uncommon", category: "Pokemon", set: Set, dexId: [ 188, ], hp: 60, types: [ "Grass", ], evolveFrom: { en: "Hoppip", fr: "Granivol", }, stage: "Stage1", attacks: [ { cost: [ "Grass", ], name: { en: "Knock Away", fr: "Asticotage", }, effect: { en: "Flip a coin. If heads, this attack does 20 damage plus 10 more damage.", fr: "Lancez une pièce. Si c’est face, cette attaque inflige 20 dégâts plus 10 dégâts supplémentaires.", }, damage: "20+", }, ], weaknesses: [ { type: "Fire", value: "×2" }, ], resistances: [ { type: "Fighting", value: "-20" }, ], retreat: 0, description: { en: "The bloom on top of its head opens and closes as the temperature fluctuates up and down." }, variants: { normal: true, reverse: true, holo: false, firstEdition: false } } export default card