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: "neo1-82", localId: 82, // Card informations name: { en: "Wooper", }, hp: 50, type: [ Type.WATER, ], dexId: 194, image: { low: { en: "https://assets.tcgdex.net/en/neo/neo1/82/low", }, high: { en: "https://assets.tcgdex.net/en/neo/neo1/82/high", }, }, evolveFrom: {}, tags: [ Tag.BASIC, ], illustrator: "Miki Tanaka", attacks: [{ cost: [ Type.WATER ], name: { en: "Amnesia", }, text: { en: "Choose 1 of the Defending Pokémon's attacks. That Pokémon can't use that attack during your opponent's next turn.", }, },{ cost: [ Type.COLORLESS, Type.COLORLESS ], name: { en: "Slam", }, text: { en: "Flip 2 coins. This attack does 20 damage times the number of heads.", }, damage: 20 }], weaknesses: [{ type: Type.GRASS, value: "×2" }], resistances: [{ type: Type.LIGHTNING, value: "-30" }], rarity: Rarity.COMMON, category: Category.POKEMON, set: { name: "Neo Genesis", code: "neo1" } } export default card