import { Card } from "../../../interfaces" import Set from "../Extradimensional Crisis" const card: Card = { set: Set, name: { en: "Lillipup" }, illustrator: "Mizue", rarity: "One Diamond", category: "Pokemon", hp: 60, types: ["Colorless"], description: { en: "This Pokémon is courageous but also cautious.\nIt uses the soft fur covering its face to collect\ninformation about its surroundings." }, stage: "Basic", attacks: [{ name: { en: "Tackle" }, damage: 20, cost: ["Colorless"] }], weaknesses: [{ type: "Fighting", value: "+20" }], retreat: 1 } export default card