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: "dp7-102", localId: 102, // Card informations name: { en: "Charmeleon", fr: "Charmeleon", }, hp: 80, type: [ Type.FIRE, ], dexId: 5, image: { low: { en: "https://assets.tcgdex.net/en/dp/dp7/102/low", fr: "https://assets.tcgdex.net/fr/dp/dp7/102/low", }, high: { en: "https://assets.tcgdex.net/en/dp/dp7/102/high", fr: "https://assets.tcgdex.net/fr/dp/dp7/102/high", }, }, evolveFrom: { en: "Charmander", fr: "Salamèche", }, tags: [ Tag.STAGE1, ], illustrator: "Mitsuhiro Arita", attacks: [{ cost: [ Type.COLORLESS, Type.COLORLESS, Type.COLORLESS ], name: { en: "Slash", fr: "Tranche", }, damage: 30 },{ cost: [ Type.FIRE, Type.FIRE, Type.COLORLESS ], name: { en: "Flamethrower", fr: "Lance-flamme", }, text: { en: "Discard a fire Energy attached to Charmeleon.", fr: "Défaussez une Énergie Fire attachée à Reptincel.", }, damage: 50 }], weaknesses: [{ type: Type.WATER, value: "×2" }], retreat: 1, rarity: Rarity.RARE, category: Category.POKEMON, set: { name: "Stormfront", code: "dp7" } } export default card