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: "ex1-96", localId: 96, // Card informations name: { en: "Chansey ex", }, hp: 120, type: [ Type.COLORLESS, ], dexId: 113, image: { low: { en: "https://assets.tcgdex.net/en/ex/ex1/96/low", }, high: { en: "https://assets.tcgdex.net/en/ex/ex1/96/high", }, }, evolveFrom: {}, tags: [ Tag.EX, ], illustrator: "Ryo Ueda", attacks: [{ cost: [ Type.COLORLESS, Type.COLORLESS ], name: { en: "Healing Egg", }, text: { en: "Remove 2 damage counters (1 if there is only 1) from each of your Pokémon. Remove no damage counters from Chansey ex.", }, },{ cost: [ Type.COLORLESS, Type.COLORLESS, Type.COLORLESS ], name: { en: "Double-edge", }, text: { en: "Chansey ex does 60 damage to itself.", }, damage: 80 }], weaknesses: [{ type: Type.FIGHTING, value: "×2" }], rarity: Rarity.RARE, category: Category.POKEMON, set: { name: "Ruby & Sapphire", code: "ex1" } } export default card