import { Card } from '../../../interfaces' import Set from '../Neo Destiny' const card: Card = { name: { en: "Dark Wigglytuff", }, illustrator: "Miki Tanaka", rarity: "Uncommon", category: "Pokemon", set: Set, dexId: [ 40, ], hp: 60, types: [ "Colorless", ], evolveFrom: { en: "Jigglypuff", }, stage: "Stage1", attacks: [ { cost: [ "Colorless", "Colorless", ], name: { en: "Dark Song", }, effect: { en: "Flip a coin. If heads, the Defending Pokémon is now Asleep. If tails, the Defending Pokémon is now Confused.", }, }, { cost: [ "Colorless", "Colorless", "Colorless", ], name: { en: "Slap Awake", }, effect: { en: "If the Defending Pokémon is Asleep or Confused, this attack does 20 damage plus 20 more damage. Then, the Defending Pokémon is no longer Asleep or Confused.", }, damage: 20, }, ], weaknesses: [ { type: "Fighting", value: "×2" }, ], resistances: [ { type: "Psychic", value: "-30" }, ], } export default card