import { Card } from '../../../interfaces' import Set from '../BREAKthrough' const card: Card = { name: { en: "Swinub", fr: "Marcacrin", }, illustrator: "Atsuko Nishida", rarity: "Common", category: "Pokemon", set: Set, dexId: [ 220, ], hp: 60, types: [ "Fighting", ], stage: "Basic", attacks: [ { cost: [ "Colorless", ], name: { en: "Powder Snow", fr: "Poudreuse", }, effect: { en: "Your opponent’s Active Pokémon is now Asleep.", fr: "Le Pokémon Actif de votre adversaire est maintenant Endormi.", }, }, { cost: [ "Fighting", "Fighting", "Colorless", ], name: { en: "Mud-Slap", fr: "Coud'Boue", }, damage: 40, }, ], weaknesses: [ { type: "Grass", value: "×2" }, ], retreat: 1, } export default card