import { Card } from '../../../interfaces' import Set from '../Team Rocket Returns' const card: Card = { name: { en: "Swinub", de: "Quiekel" }, illustrator: "Tomokazu Komiya", rarity: "Common", category: "Pokemon", set: Set, dexId: [ 220, ], hp: 50, types: [ "Fighting", ], stage: "Basic", attacks: [ { cost: [ "Colorless", ], name: { en: "Tackle", de: "Tackle" }, damage: 10, }, { cost: [ "Colorless", "Colorless", ], name: { en: "Rest", de: "Rest" }, effect: { en: "Remove all Special Conditions and all damage counters from Swinub. Swinub is now Asleep.", de: "Remove all Special Conditions and all damage counters from Swinub. Swinub is now Asleep." }, }, ], weaknesses: [ { type: "Grass", value: "×2" }, ], } export default card