import { Card } from '../../../interfaces' import Set from '../Neo Destiny' const card: Card = { name: { en: "Light Piloswine", }, illustrator: "Yukiko Baba", rarity: "Rare", category: "Pokemon", set: Set, dexId: [ 221, ], hp: 90, types: [ "Water", ], evolveFrom: { en: "Swinub", }, stage: "Stage1", attacks: [ { cost: [ "Colorless", "Colorless", "Colorless", ], name: { en: "Knock Over", }, effect: { en: "If there is a Stadium card in play, you may discard it.", }, damage: 30, }, ], weaknesses: [ { type: "Grass", value: "×2" }, ], resistances: [ { type: "Lightning", value: "-30" }, ], } export default card