import { Card } from "../../../interfaces" import Set from "../Space-Time Smackdown" const card: Card = { set: Set, name: { en: "Swinub" }, illustrator: "Eri Yamaki", rarity: "One Diamond", category: "Pokemon", hp: 60, types: ["Water"], description: { en: "It rubs its snout on the ground to find and dig up food. It sometimes discovers hot springs." }, stage: "Basic", attacks: [{ name: { en: "Headbutt" }, damage: 40, cost: ["Water", "Colorless"] }], weaknesses: [{ type: "Metal", value: "+20" }], retreat: 2 } export default card