1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-25 04:12:11 +00:00
Florian Bouillon 1a98a6022b
Fixed GX being with a dash while it isn't on the card (#58)
Signed-off-by: Avior <florian.bouillon@delta-wings.net>
2021-08-16 11:05:52 +02:00

83 lines
1.3 KiB
TypeScript
Raw Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

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 '../Hidden Fates'
const card: Card = {
name: {
en: "Wigglytuff GX",
fr: "Grodoudou-GX",
},
illustrator: "5ban Graphics",
rarity: "Ultra 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 cant 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