import { Card } from "../../../interfaces" import Set from "../Mythical Island" const card: Card = { set: Set, name: { en: "Liepard" }, illustrator: "GIDORA", category: "Pokemon", hp: 90, types: ["Darkness"], evolveFrom: { en: "Purrloin" }, description: { en: "Don't be fooled by its gorgeous fur and elegant figure. This is a moody and vicious Pokémon." }, stage: "Stage1", attacks: [{ name: { en: "Slash" }, damage: 40, cost: ["Darkness"] }], weaknesses: [{ type: "Grass", value: "+20" }], retreat: 1, rarity: "One Diamond" } export default card