import { Card } from "../../../interfaces" import Set from "../Celestial Guardians" const card: Card = { set: Set, name: { en: "Dewpider" }, illustrator: "Atsuko Nishida", rarity: "One Diamond", category: "Pokemon", hp: 60, types: ["Water"], description: { en: "It forms a water bubble at the rear of its body and then covers its head with it. Meeting another Dewpider means comparing water-bubble sizes." }, stage: "Basic", attacks: [{ name: { en: "Hook" }, damage: 30, cost: ["Water", "Colorless"] }], weaknesses: [{ type: "Lightning", value: "+20" }], retreat: 1 } export default card