1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-16 17:39:18 +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,82 @@
import { Card } from '../../../interfaces'
import Set from '../Hidden Fates'
const card: Card = {
name: {
en: "Wigglytuff-GX",
fr: "Grodoudou-GX",
},
illustrator: "5ban Graphics",
rarity: "Rare",
category: "Pokemon",
set: Set,
dexId: [
40,
],
hp: 210,
types: [
"Fairy",
],
evolveFrom: {
en: "Jigglypuff",
fr: "Rondoudou",
},
suffix: "GX",
attacks: [
{
cost: [
"Fairy",
"Fairy",
"Colorless",
],
name: {
en: "Rolling Rush",
fr: "Ruée-Boulée",
},
effect: {
en: "Flip a coin until you get tails. This attack does 30 more damage for each heads.",
fr: "Lancez une pièce jusquà ce que vous obteniez un côté pile. Cette attaque inflige 30 dégâts supplémentaires pour chaque côté face.",
},
damage: 100,
},
{
cost: [
"Fairy",
"Fairy",
"Colorless",
],
name: {
en: "Lovely Star-GX",
fr: "Belle Étoile-GX",
},
effect: {
en: "Heal all damage from this Pokémon. (You can't use more than 1 GX attack in a game.)",
fr: "Soignez tous les dégâts de ce Pokémon. (Vous ne pouvez utiliser quune attaque GX par partie.)",
},
damage: 130,
},
],
weaknesses: [
{
type: "Metal",
value: "×2"
},
],
resistances: [
{
type: "Darkness",
value: "-20"
},
],
retreat: 2,
}
export default card