import { Card } from "../../../interfaces" import Set from "../Wisdom of Sea and Sky" const card: Card = { set: Set, name: { en: "Quagsire" }, illustrator: "Kagemaru Himeno", rarity: "Two Diamond", category: "Pokemon", hp: 130, types: ["Water"], evolveFrom: { en: "Wooper" }, description: { en: "It has an easygoing nature. It doesn't care if it\nbumps its head on boats and boulders\nwhile swimming." }, stage: "Stage1", attacks: [{ name: { en: "Surf" }, damage: 80, cost: ["Water", "Water", "Colorless"] }], weaknesses: [{ type: "Lightning", value: "+20" }], retreat: 3 } export default card