import { Card } from '../../../interfaces' import Set from '../Champion\'s Path' const card: Card = { name: { en: "Liepard", }, illustrator: "Hasuno", rarity: "Uncommon", category: "Pokemon", set: Set, hp: 100, types: [ "Darkness", ], evolveFrom: { en: "Purrloin", }, abilities: [ { type: "Ability", name: { en: "Limber", }, effect: { en: "This Pokémon can’t be Paralyzed.", }, }, ], attacks: [ { cost: [ "Darkness", "Colorless", "Colorless", ], name: { en: "Slashing Claw", }, damage: 90, }, ], weaknesses: [ { type: "Grass", value: "×2" }, ], retreat: 1, } export default card