import { Card } from '../../../interfaces' import Set from '../Legendary Treasures' const card: Card = { name: { en: "Trubbish", }, illustrator: "kawayoo", rarity: "Common", category: "Pokemon", set: Set, dexId: [ 568, ], hp: 70, types: [ "Psychic", ], stage: "Basic", attacks: [ { cost: [ "Colorless", "Colorless", ], name: { en: "Pound", }, damage: 20, }, { cost: [ "Psychic", "Colorless", "Colorless", ], name: { en: "Poison Gas", }, effect: { en: "The Defending Pokémon is now Poisoned.", }, damage: 30, }, ], weaknesses: [ { type: "Psychic", value: "×2" }, ], retreat: 2 } export default card