1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-22 03:49: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,76 @@
import { Card } from '../../../interfaces'
import Set from '../Triumphant'
const card: Card = {
name: {
en: "Grumpig",
fr: "Groret",
},
illustrator: "Yukiko Baba",
rarity: "Rare",
category: "Pokemon",
set: Set,
dexId: [
326,
],
hp: 90,
types: [
"Psychic",
],
evolveFrom: {
en: "Spoink",
fr: "Spoink",
},
stage: "Stage1",
attacks: [
{
cost: [
"Psychic",
"Colorless",
],
name: {
en: "Psychic Lock",
fr: "Verrou psy",
},
effect: {
en: "Your opponent can't use any Poké-Powers on his or her Pokémon on his or her next turn.",
fr: "Votre adversaire ne peut utiliser aucun Poké-Power sur ses Pokémon lors de son prochain tour.",
},
damage: 20,
},
{
cost: [
"Psychic",
"Colorless",
"Colorless",
],
name: {
en: "Bench Manipulation",
fr: "Manipulation de Banc",
},
effect: {
en: "Your opponent flips a coin for each of his or her Benched Pokémon. This attack does 40 damage times the number of tails. This attack's damage isn't affected by Weakness or Resistance.",
fr: "Votre adversaire lance une pièce pour chacun de ses Pokémon de Banc. Cette attaque inflige 40 dégâts multipliés par le nombre de côtés pile. Les dégâts infligés par cette attaque ne sont pas affectés par la Faiblesse ou la Résistance.",
},
damage: 40,
},
],
weaknesses: [
{
type: "Psychic",
value: "×2"
},
],
retreat: 2,
}
export default card