import { Card } from '../../../interfaces' import Set from '../Lost Thunder' const card: Card = { name: { en: "Hoppip", fr: "Granivol", }, illustrator: "Mizue", rarity: "Common", category: "Pokemon", set: Set, dexId: [ 187, ], hp: 30, types: [ "Grass", ], stage: "Basic", attacks: [ { cost: [ "Colorless", ], name: { en: "Multiply", fr: "Multiplication", }, effect: { en: "Search your deck for Hoppip and put it onto your Bench. Then, shuffle your deck.", fr: "Cherchez Granivol dans votre deck et placez-le sur votre Banc. Mélangez ensuite votre deck.", }, }, ], weaknesses: [ { type: "Lightning", value: "×2" }, ], resistances: [ { type: "Fighting", value: "-20" }, ], retreat: 1, } export default card