import Card from '@tcgdex/sdk/interfaces/Card' import Type from '@tcgdex/sdk/interfaces/Type' import Tag from '@tcgdex/sdk/interfaces/Tag' import Rarity from '@tcgdex/sdk/interfaces/Rarity' import AbilityType from '@tcgdex/sdk/interfaces/AbilityType' import Category from '@tcgdex/sdk/interfaces/Category' const card: Card = { // ids id: "neo4-40", localId: 40, // Card informations name: { en: "Dark Wigglytuff", }, hp: 60, type: [ Type.COLORLESS, ], dexId: 40, image: { low: { en: "https://assets.tcgdex.net/en/neo/neo4/40/low", }, high: { en: "https://assets.tcgdex.net/en/neo/neo4/40/high", }, }, evolveFrom: { en: "Jigglypuff", }, tags: [ Tag.STAGE1, ], illustrator: "Miki Tanaka", attacks: [{ cost: [ Type.COLORLESS, Type.COLORLESS ], name: { en: "Dark Song", }, text: { en: "Flip a coin. If heads, the Defending Pokémon is now Asleep. If tails, the Defending Pokémon is now Confused.", }, },{ cost: [ Type.COLORLESS, Type.COLORLESS, Type.COLORLESS ], name: { en: "Slap Awake", }, text: { 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: Type.FIGHTING, value: "×2" }], resistances: [{ type: Type.PSYCHIC, value: "-30" }], rarity: Rarity.UNCOMMON, category: Category.POKEMON, set: { name: "Neo Destiny", code: "neo4" } } export default card