1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-23 19:32:11 +00:00

80 lines
1.3 KiB
TypeScript
Raw Permalink 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 '../Emerald'
const card: Card = {
name: {
en: "Grumpig",
fr: "Groret",
de: "Groink"
},
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",
fr: "Choc psy",
de: "Psyshock"
},
effect: {
en: "Flip a coin. If heads, the Defending Pokémon is now Paralyzed.",
fr: "Lancez une pièce. Si c'est face, le Pokémon Défenseur est maintenant Paralysé.",
de: "Flip a coin. If heads, the Defending Pokémon is now Paralyzed."
},
damage: 20,
},
{
cost: [
"Colorless",
"Colorless",
"Colorless",
],
name: {
en: "Teleport Blast",
fr: "Téléportation instantanée",
de: "Teleport Blast"
},
effect: {
en: "After your attack, you may switch Grumpig with 1 of your Benched Pokémon.",
fr: "Après votre attaque, vous pouvez échanger Groret avec 1 des Pokémon de votre Banc.",
de: "After your attack, you may switch Grumpig with 1 of your Benched Pokémon."
},
damage: 40,
},
],
weaknesses: [
{
type: "Psychic",
value: "×2"
},
],
}
export default card