import { Card } from '../../../interfaces' import Set from '../Emerald' const card: Card = { name: { en: "Grumpig", }, illustrator: "Atsuko Nishida", rarity: "Uncommon", category: "Pokemon", set: Set, dexId: [ 326, ], hp: 70, types: [ "Psychic", ], evolveFrom: { en: "Spoink", }, stage: "Stage1", attacks: [ { cost: [ "Colorless", ], name: { en: "Snap Tail", }, effect: { en: "Choose 1 of your opponent's Pokémon. This attack does 10 damage to that Pokémon. (Don't apply Weakness and Resistance for Benched Pokémon.)", }, damage: 10, }, { cost: [ "Psychic", "Colorless", ], name: { en: "Psypunch", }, damage: 40, }, ], weaknesses: [ { type: "Psychic", value: "×2" }, ], } export default card