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: "neo3-2", localId: 2, // Card informations name: { en: "Blissey", }, hp: 120, type: [ Type.COLORLESS, ], dexId: 242, image: { low: { en: "https://assets.tcgdex.net/en/neo/neo3/2/low", }, high: { en: "https://assets.tcgdex.net/en/neo/neo3/2/high", }, }, evolveFrom: { en: "Chansey", }, tags: [ Tag.STAGE1, ], illustrator: "Yuka Morii", abilities: [{ id: 706, type: AbilityType.POKEPOWER, name: { en: "Softboiled", }, text: { en: "When you play Blissey from your hand, you may flip a coin. If heads, remove 8 damage counters from Blissey. If tails, remove 4 damage counters from Blissey. Either way, if Blissey has fewer damage counters than that, remove all of them.", } }], attacks: [{ cost: [ Type.COLORLESS, Type.COLORLESS, Type.COLORLESS, Type.COLORLESS ], name: { en: "Body Slam", }, text: { en: "Flip a coin. If heads, the Defending Pokémon is now Paralyzed.", }, damage: 30 }], weaknesses: [{ type: Type.FIGHTING, value: "×2" }], resistances: [{ type: Type.PSYCHIC, value: "-30" }], rarity: Rarity.RARE, category: Category.POKEMON, set: { name: "Neo Revelation", code: "neo3" } } export default card