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: "xy12-70", localId: 70, // Card informations name: { en: "Chansey", fr: "Leveinard", }, hp: 120, type: [ Type.COLORLESS, ], dexId: 113, image: { low: { en: "https://assets.tcgdex.net/en/xy/xy12/70/low", fr: "https://assets.tcgdex.net/fr/xy/xy12/70/low", }, high: { en: "https://assets.tcgdex.net/en/xy/xy12/70/high", fr: "https://assets.tcgdex.net/fr/xy/xy12/70/high", }, }, evolveFrom: {}, tags: [ Tag.BASIC, ], illustrator: "Ken Sugimori", attacks: [{ cost: [ Type.COLORLESS, Type.COLORLESS ], name: { en: "Scrunch", fr: "Compresse", }, text: { en: "Flip a coin. If heads, prevent all damage done to this Pokémon by attacks during your opponent's next turn.", fr: "Lancez une pièce. Si c'est face, évitez tous les dégâts infligés à ce Pokémon par des attaques pendant le prochain tour de votre adversaire.", }, },{ cost: [ Type.COLORLESS, Type.COLORLESS, Type.COLORLESS, Type.COLORLESS ], name: { en: "Double-Edge", fr: "Damoclès", }, text: { en: "This Pokémon does 80 damage to itself.", fr: "Ce Pokémon s’inflige 80 dégâts.", }, damage: 80 }], weaknesses: [{ type: Type.FIGHTING, value: "×2" }], retreat: 3, rarity: Rarity.RARE, category: Category.POKEMON, set: { name: "Evolutions", code: "xy12" } } export default card