import { Card } from '../../../interfaces' import Set from '../Emerald' const card: Card = { name: { en: "Grumpig", }, illustrator: "Kagemaru Himeno", rarity: "Uncommon", category: "Pokemon", set: Set, dexId: [ 326, ], hp: 80, types: [ "Psychic", ], evolveFrom: { en: "Spoink", }, stage: "Stage1", attacks: [ { cost: [ "Psychic", ], name: { en: "Psyshock", }, effect: { en: "Flip a coin. If heads, the Defending Pokémon is now Paralyzed.", }, damage: 20, }, { cost: [ "Colorless", "Colorless", "Colorless", ], name: { en: "Teleport Blast", }, effect: { en: "After your attack, you may switch Grumpig with 1 of your Benched Pokémon.", }, damage: 40, }, ], weaknesses: [ { type: "Psychic", value: "×2" }, ], } export default card