import { Card } from '../../../interfaces' import Set from '../Dark Explorers' const card: Card = { name: { en: "Herdier", fr: "Ponchien", es: "Herdier", it: "Herdier", pt: "Herdier", de: "Terribark" }, illustrator: "Naoyo Kimura", rarity: "Uncommon", category: "Pokemon", set: Set, dexId: [ 507, ], hp: 80, types: [ "Colorless", ], evolveFrom: { en: "Lillipup", }, stage: "Stage1", attacks: [ { cost: [ "Colorless", ], name: { en: "Roar", }, effect: { en: "Your opponent switches the Defending Pokémon with 1 of his or her Benched Pokémon.", }, }, { cost: [ "Colorless", "Colorless", ], name: { en: "Tackle", }, damage: 30, }, ], weaknesses: [ { type: "Fighting", value: "×2" }, ], retreat: 2 } export default card