1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-05-29 10:59:54 +00:00

80 lines
1.1 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 '../Unbroken Bonds'
const card: Card = {
name: {
en: "Wigglytuff",
fr: "Grodoudou",
},
illustrator: "miki kudo",
rarity: "Rare",
category: "Pokemon",
set: Set,
dexId: [
40,
],
hp: 110,
types: [
"Fairy",
],
evolveFrom: {
en: "Jigglypuff",
fr: "Rondoudou",
},
stage: "Stage1",
attacks: [
{
cost: [
"Colorless",
],
name: {
en: "Orb Polish",
fr: "Orbe Lustré",
},
effect: {
en: "Put 3 Energy cards from your discard pile into your hand.",
fr: "Ajoutez 3 cartes Énergie de votre pile de défausse à votre main.",
},
},
{
cost: [
"Colorless",
"Colorless",
"Colorless",
],
name: {
en: "Sleepy Ball",
fr: "Boule Dodo",
},
effect: {
en: "Your opponent's Active Pokémon is now Asleep.",
fr: "Le Pokémon Actif de votre adversaire est maintenant Endormi.",
},
damage: 80,
},
],
weaknesses: [
{
type: "Metal",
value: "×2"
},
],
resistances: [
{
type: "Darkness",
value: "-20"
},
],
retreat: 1,
}
export default card