import { Card } from '../../../interfaces' import Set from '../Lost Thunder' const card: Card = { name: { en: "Hoppip", fr: "Granivol", es: "Hoppip", it: "Hoppip", pt: "Hoppip", de: "Hoppspross" }, illustrator: "kawayoo", rarity: "Common", category: "Pokemon", set: Set, dexId: [ 187, ], hp: 40, types: [ "Grass", ], stage: "Basic", attacks: [ { cost: [ "Grass", ], name: { en: "Tackle", fr: "Charge", es: "Placaje", it: "Azione", pt: "Investida", de: "Tackle" }, damage: 20, }, ], weaknesses: [ { type: "Lightning", value: "×2" }, ], resistances: [ { type: "Fighting", value: "-20" }, ], retreat: 1, } export default card