import { Card } from '../../../interfaces' import Set from '../Deoxys' const card: Card = { name: { en: "Grumpig", }, illustrator: "Ken Sugimori", rarity: "Uncommon", category: "Pokemon", set: Set, dexId: [ 326, ], hp: 80, types: [ "Psychic", ], evolveFrom: { en: "Spoink", }, stage: "Stage1", abilities: [ { type: "Poke-BODY", name: { en: "Carefree", }, effect: { en: "Grumpig can't be Confused.", }, }, ], attacks: [ { cost: [ "Psychic", "Colorless", ], name: { en: "Hypnoblast", }, effect: { en: "The Defending Pokémon is now Asleep.", }, damage: 20, }, { cost: [ "Psychic", "Colorless", "Colorless", ], name: { en: "Extra Ball", }, effect: { en: "If the Defending Pokémon is Pokémon-ex, this attack does 50 damage plus 30 more damage.", }, damage: 50, }, ], weaknesses: [ { type: "Psychic", value: "×2" }, ], } export default card