import Card from '../../../interfaces/Card' import Type from '../../../interfaces/Type' import Tag from '../../../interfaces/Tag' import Rarity from '../../../interfaces/Rarity' import AbilityType from '../../../interfaces/AbilityType' import Category from '../../../interfaces/Category' const card: Card = { // ids id: "sm115-46", localId: 46, // Card informations name: { en: "Chansey", fr: "Leveinard", }, hp: 130, type: [ Type.COLORLESS, ], dexId: 113, image: { low: { en: "https://assets.tcgdex.net/en/sm/sm115/46/low.png", fr: "https://assets.tcgdex.net/fr/sm/sm115/46/low.png", }, high: { en: "https://assets.tcgdex.net/en/sm/sm115/46/high.png", fr: "https://assets.tcgdex.net/fr/sm/sm115/46/high.png", }, }, evolveFrom: {}, tags: [ Tag.BASIC, ], illustrator: { id: 96, name: "sowsow" }, attacks: [{ cost: [ Type.COLORLESS, Type.COLORLESS, Type.COLORLESS ], name: { en: "Double-Edge", fr: "Damoclès", }, text: { en: "This Pokémon does 20 damage to itself.", fr: "Ce Pokémon s’inflige 20 dégâts.", }, damage: 80 }], weaknesses: [{ type: Type.FIGHTING, value: "×2" }], retreat: 2, rarity: Rarity.Uncommon, category: Category.POKEMON, set: { name: "Hidden Fates", code: "sm115" } } export default card