import { Card } from '../../../interfaces' import Set from '../Rebel Clash' const card: Card = { name: { en: "Skuntank", }, illustrator: "sowsow", rarity: "Uncommon", category: "Pokemon", set: Set, evolveFrom: { en: "Stunky", }, attacks: [ { cost: [ "Colorless", "Colorless", ], name: { en: "Slash", }, damage: 50, }, { cost: [ "Darkness", "Colorless", "Colorless", ], name: { en: "Poison Ring", }, effect: { en: "Your opponent’s Active Pokémon is now Poisoned. During your opponent's next turn, the Defending Pokémon can’t retreat.", }, damage: 80, }, ], weaknesses: [ { type: "Fighting", value: "×2" }, ], retreat: 3, } export default card