import { Card } from '../../../interfaces' import Set from '../Neo Revelation' const card: Card = { name: { en: "Piloswine", }, illustrator: "Atsuko Nishida", rarity: "Uncommon", category: "Pokemon", set: Set, dexId: [ 221, ], hp: 90, types: [ "Fighting", ], evolveFrom: { en: "Swinub", }, stage: "Stage1", attacks: [ { cost: [ "Colorless", "Colorless", ], name: { en: "Nap", }, effect: { en: "Remove 3 damage counters from Piloswine. If it has fewer damage counters than that, remove all of them.", }, }, { cost: [ "Fighting", "Fighting", "Colorless", "Colorless", ], name: { en: "High-Speed Charge", }, effect: { en: "Piloswine does 30 damage to itself. Piloswine can't use this attack during your next turn.", }, damage: 80, }, ], weaknesses: [ { type: "Grass", value: "×2" }, ], resistances: [ { type: "Lightning", value: "-30" }, ], } export default card