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: "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.png", fr: "https://assets.tcgdex.net/fr/bw/bw7/19/low.png", }, high: { en: "https://assets.tcgdex.net/en/bw/bw7/19/high.png", fr: "https://assets.tcgdex.net/fr/bw/bw7/19/high.png", }, }, evolveFrom: { en: "Charmander", fr: "Salamèche", }, tags: [ Tag.STAGE1, ], illustrator: { id: 8, name: "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