import { Card } from '../../../interfaces' import Set from '../Neo Revelation' const card: Card = { name: { en: "Swinub", }, illustrator: "Miki Tanaka", rarity: "Common", category: "Pokemon", set: Set, dexId: [ 220, ], hp: 40, types: [ "Fighting", ], stage: "Basic", attacks: [ { cost: [ "Colorless", ], name: { en: "Tackle", }, damage: 10, }, { cost: [ "Fighting", "Colorless", ], name: { en: "Take Down", }, effect: { en: "Swinub does 10 damage to itself.", }, damage: 30, }, ], weaknesses: [ { type: "Grass", value: "×2" }, ], resistances: [ { type: "Lightning", value: "-30" }, ], } export default card