import { Card } from '../../../interfaces' import Set from '../Lost Thunder' const card: Card = { name: { en: "Jumpluff", fr: "Cotovol", }, illustrator: "Masakazu Fukuda", rarity: "Rare", category: "Pokemon", set: Set, dexId: [ 189, ], hp: 70, types: [ "Grass", ], evolveFrom: { en: "Skiploom", fr: "Floravol", }, stage: "Stage2", attacks: [ { cost: [ "Grass", ], name: { en: "Lost March", fr: "Marche Perdue", }, effect: { en: "This attack does 20 damage for each of your Pokémon, except ◇ (Prism Star) Pokémon, in the Lost Zone.", fr: "Cette attaque inflige 20 dégâts pour chacun de vos Pokémon dans la Zone Perdue, à l’exception des Pokémon  (Prisme Étoile).", }, damage: 20, }, ], weaknesses: [ { type: "Lightning", value: "×2" }, ], resistances: [ { type: "Fighting", value: "-20" }, ], } export default card