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: "ex10-20", localId: 20, // Card informations name: { en: "Chansey", }, hp: 90, type: [ Type.COLORLESS, ], dexId: 113, image: { low: { en: "https://assets.tcgdex.net/en/ex/ex10/20/low", }, high: { en: "https://assets.tcgdex.net/en/ex/ex10/20/high", }, }, evolveFrom: {}, tags: [ Tag.BASIC, ], illustrator: "Yukiko Baba", attacks: [{ cost: [ Type.COLORLESS ], name: { en: "Hyper Healing", }, text: { en: "Remove 1 damage counter and all Special Conditions from each of your Active Pokémon.", }, },{ cost: [ Type.COLORLESS, Type.COLORLESS ], name: { en: "Double Tackle", }, text: { en: "Does 20 damage to each Defending Pokémon.", }, }], weaknesses: [{ type: Type.FIGHTING, value: "×2" }], rarity: Rarity.RARE, category: Category.POKEMON, set: { name: "Unseen Forces", code: "ex10" } } export default card