import { Card } from '../../../interfaces' import Set from '../Neo Discovery' const card: Card = { name: { en: "Hoppip", }, illustrator: "Kagemaru Himeno", rarity: "Common", category: "Pokemon", set: Set, dexId: [ 187, ], hp: 30, types: [ "Grass", ], stage: "Basic", attacks: [ { cost: [ "Grass", ], name: { en: "Rolling Tackle", }, damage: 20, }, ], weaknesses: [ { type: "Fire", value: "×2" }, ], resistances: [ { type: "Fighting", value: "-30" }, ], } export default card