1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-25 12:22:14 +00:00

81 lines
1001 B
TypeScript
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

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