1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-05-20 23:29:55 +00:00

82 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 '../Crimson Invasion'
const card: Card = {
name: {
en: "Wigglytuff",
fr: "Grodoudou",
},
illustrator: "0313",
rarity: "Rare",
category: "Pokemon",
set: Set,
dexId: [
40,
],
hp: 120,
types: [
"Fairy",
],
evolveFrom: {
en: "Jigglypuff",
fr: "Rondoudou",
},
stage: "Stage1",
attacks: [
{
cost: [
"Colorless",
"Colorless",
],
name: {
en: "Hypnoblast",
fr: "Hypnoblast",
},
effect: {
en: "Your opponent's Active Pokémon is now Asleep.",
fr: "Le Pokémon Actif de votre adversaire est maintenant Endormi.",
},
damage: 30,
},
{
cost: [
"Fairy",
"Colorless",
"Colorless",
],
name: {
en: "Punishing Slap",
fr: "Frappe Éprouvante",
},
effect: {
en: "If any of your opponent's Pokémon have any Darkness Energy attached to them, this attack does 60 more damage.",
fr: "Si de lÉnergie Darkness est attachée à lun des Pokémon de votre adversaire, cette attaque inflige 60 dégâts supplémentaires.",
},
damage: 60,
},
],
weaknesses: [
{
type: "Metal",
value: "×2"
},
],
resistances: [
{
type: "Darkness",
value: "-20"
},
],
retreat: 2,
}
export default card