1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-17 09:59:19 +00:00

Finished Complete Rework of the Database

This commit is contained in:
2021-02-24 16:56:26 +01:00
parent 8f9e953656
commit 9a1ae318f1
26038 changed files with 814437 additions and 1155588 deletions

View File

@ -0,0 +1,71 @@
import { Card } from '../../../interfaces'
import Set from '../Legends Awakened'
const card: Card = {
name: {
en: "Grumpig",
fr: "Groret",
},
illustrator: "Masakazu Fukuda",
rarity: "Uncommon",
category: "Pokemon",
set: Set,
dexId: [
326,
],
hp: 90,
types: [
"Psychic",
],
evolveFrom: {
en: "Spoink",
fr: "Spoink",
},
stage: "Stage1",
attacks: [
{
name: {
en: "Magical Step",
fr: "Pas magique",
},
effect: {
en: "The Defending Pokémon is now Confused. Put 6 damage counters instead of 3 on the Confused Pokémon.",
fr: "Le Pokémon Défenseur est maintenant Confus. Placez sur le Pokémon Confus 6 marqueurs de dégât au lieu de 3.",
},
},
{
cost: [
"Psychic",
"Colorless",
],
name: {
en: "Grind",
fr: "Écrase",
},
effect: {
en: "Does 20 damage times the amount of Energy attached to Grumpig.",
fr: "Inflige 20 dégâts multipliés par le nombre d'Énergies attachées à Groret.",
},
damage: 20,
},
],
weaknesses: [
{
type: "Psychic",
value: "+20"
},
],
retreat: 2,
}
export default card