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: "bw7-19", localId: 19, // Card informations name: { en: "Charmeleon", fr: "Reptincel", }, hp: 90, type: [ Type.FIRE, ], dexId: 5, image: { low: { en: "https://assets.tcgdex.net/en/bw/bw7/19/low", fr: "https://assets.tcgdex.net/fr/bw/bw7/19/low", }, high: { en: "https://assets.tcgdex.net/en/bw/bw7/19/high", fr: "https://assets.tcgdex.net/fr/bw/bw7/19/high", }, }, evolveFrom: { en: "Charmander", fr: "Salamèche", }, tags: [ Tag.STAGE1, ], illustrator: "Masakazu Fukuda", attacks: [{ cost: [ Type.FIRE ], name: { en: "Flare", fr: "Flamboiement", }, damage: 20 },{ cost: [ Type.FIRE, Type.COLORLESS, Type.COLORLESS ], name: { en: "Raging Claws", fr: "Griffes Enragées", }, text: { en: "Does 10 more damage for each damage counter on this Pokémon.", fr: "Inflige 10 dégâts supplémentaires pour chaque marqueur de dégâts placé sur ce Pokémon.", }, damage: 50 }], weaknesses: [{ type: Type.WATER, value: "×2" }], retreat: 2, rarity: Rarity.UNCOMMON, category: Category.POKEMON, set: { name: "Boundaries Crossed", code: "bw7" } } export default card