import { Card } from '../../../interfaces' import Set from '../Triumphant' const card: Card = { name: { en: "Swinub", fr: "Marcacrin", }, illustrator: "Kagemaru Himeno", rarity: "Common", category: "Pokemon", set: Set, dexId: [ 220, ], hp: 60, types: [ "Water", ], stage: "Basic", attacks: [ { cost: [ "Water", ], name: { en: "Headbutt", fr: "Coup d’boule", }, damage: 10, }, { cost: [ "Colorless", "Colorless", ], name: { en: "Ice Ball", fr: "Ball’glace", }, damage: 20, }, ], weaknesses: [ { type: "Metal", value: "×2" }, ], retreat: 2, description: { en: "It rubs its snout on the ground to find and dig up food. It sometimes discovers hot springs." }, variants: { normal: true, reverse: true, holo: false, firstEdition: false } } export default card