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-44", localId: 44, // Card informations name: { en: "Jigglypuff", }, hp: 50, type: [ Type.COLORLESS, ], dexId: 39, image: { low: { en: "https://assets.tcgdex.net/en/neo/neo4/44/low", }, high: { en: "https://assets.tcgdex.net/en/neo/neo4/44/high", }, }, evolveFrom: {}, tags: [ Tag.BASIC, ], illustrator: "Yuka Morii", attacks: [{ cost: [ Type.COLORLESS, Type.COLORLESS ], name: { en: "Expand", }, text: { en: "All damage done to Jigglypuff during your opponent's next turn is reduced by 10 (after applying Weakness and Resistance).", }, damage: 10 }], 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