import { Card } from "../../../interfaces" import Set from "../Shining Revelry" const card: Card = { set: Set, name: { en: "Pawmi" }, illustrator: "Saboteri", rarity: "One Diamond", category: "Pokemon", hp: 60, types: ["Lightning"], description: { en: "It has underdeveloped electric sacs on its cheeks. These sacs can produce electricity only if Pawmi rubs them furiously with the pads on its forepaws." }, stage: "Basic", attacks: [{ name: { en: "Punch" }, damage: 20, cost: ["Lightning"] }], weaknesses: [{ type: "Fighting", value: "+20" }], retreat: 1 } export default card