import { Card } from '../../../interfaces' import Set from '../Rebel Clash' const card: Card = { name: { en: "Trubbish", }, illustrator: "HYOGONOSUKE", rarity: "Common", category: "Pokemon", set: Set, attacks: [ { cost: [ "Colorless", "Colorless", ], name: { en: "Venoshock", }, effect: { en: "If your opponent’s Active Pokémon is Poisoned, this attack does 50 more damage.", }, damage: "20+", }, ], weaknesses: [ { type: "Fighting", value: "×2" }, ], retreat: 1, } export default card