1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-24 11:52:16 +00:00

95 lines
1.6 KiB
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",
fr: "Groret",
de: "Groink"
},
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",
fr: "Insouciance",
de: "Carefree"
},
effect: {
en: "Grumpig can't be Confused.",
fr: "Groret ne peut pas être Confus.",
de: "Grumpig can´t be Confused."
},
},
],
attacks: [
{
cost: [
"Psychic",
"Colorless",
],
name: {
en: "Hypnoblast",
fr: "Hypnoblast",
de: "Hypnoblast"
},
effect: {
en: "The Defending Pokémon is now Asleep.",
fr: "Le Pokémon Défenseur est maintenant Endormi.",
de: "The Defending Pokémon is now Asleep."
},
damage: 20,
},
{
cost: [
"Psychic",
"Colorless",
"Colorless",
],
name: {
en: "Extra Ball",
fr: "Boule supplémentaire",
de: "Extra Ball"
},
effect: {
en: "If the Defending Pokémon is Pokémon-ex, this attack does 50 damage plus 30 more damage.",
fr: "Si le Pokémon Défenseur est un Pokémon-ex, cette attaque inflige 50 dégâts plus 30 dégâts supplémentaires.",
de: "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