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: "ex6-19", localId: 19, // Card informations name: { en: "Chansey", }, hp: 90, type: [ Type.COLORLESS, ], dexId: 113, image: { low: { en: "https://assets.tcgdex.net/en/ex/ex6/19/low", }, high: { en: "https://assets.tcgdex.net/en/ex/ex6/19/high", }, }, evolveFrom: {}, tags: [ Tag.BASIC, ], illustrator: "Miki Tanaka", attacks: [{ cost: [ Type.COLORLESS ], name: { en: "Sing", }, text: { en: "The Defending Pokémon is now Asleep.", }, },{ cost: [ Type.COLORLESS, Type.COLORLESS, Type.COLORLESS ], name: { en: "Egg Surprise", }, text: { en: "Flip a coin. If heads, Chansey does 50 damage to the Defending Pokémon. If tails, remove 5 damage counters from Chansey. (All if there are less than 5.)", }, }], weaknesses: [{ type: Type.FIGHTING, value: "×2" }], rarity: Rarity.RARE, category: Category.POKEMON, set: { name: "FireRed & LeafGreen", code: "ex6" } } export default card