import { Card } from '../../../interfaces' import Set from '../Rebel Clash' const card: Card = { name: { en: "Stunky", }, illustrator: "Shigenori Negishi", rarity: "Common", category: "Pokemon", set: Set, attacks: [ { cost: [ "Colorless", "Colorless", ], name: { en: "Poison Gas", }, effect: { en: "Your opponent’s Active Pokémon is now Poisoned.", }, damage: 10, }, ], weaknesses: [ { type: "Fighting", value: "×2" }, ], retreat: 2, } export default card