import { Card } from "../../../interfaces" import Set from "../Genetic Apex" const card: Card = { set: Set, name: { en: "Jigglypuff" }, illustrator: "Mizue", category: "Pokemon", hp: 60, types: ["Colorless"], stage: "Basic", attacks: [{ cost: ["Colorless", "Colorless"], name: { en: "Pound" }, damage: "30" }], weaknesses: [{ type: "Fighting", value: "+20" }], retreat: 1, rarity: "One Diamond", description: { en: "When its huge eyes waver, it sings a mysteriously soothing melody that lulls its enemies to sleep.", } } export default card