import { Card } from '../../../interfaces' import Set from '../Neo Destiny' const card: Card = { name: { en: "Swinub", }, illustrator: "Kagemaru Himeno", rarity: "Common", category: "Pokemon", set: Set, dexId: [ 220, ], hp: 50, types: [ "Water", ], stage: "Basic", attacks: [ { cost: [ "Water", "Colorless", ], name: { en: "Generate Cold", }, effect: { en: "Flip a coin. If heads, the Defending Pokémon is now Paralyzed.", }, damage: 20, }, ], weaknesses: [ { type: "Grass", value: "×2" }, ], resistances: [ { type: "Lightning", value: "-30" }, ], } export default card