import { Card } from '../../../interfaces' import Set from '../Team Up' const card: Card = { name: { en: "Charmander", fr: "Salamèche", }, illustrator: "Atsuko Nishida", rarity: "Common", category: "Pokemon", set: Set, dexId: [ 4, ], hp: 70, types: [ "Fire", ], stage: "Basic", attacks: [ { cost: [ "Fire", ], name: { en: "Ember", fr: "Flammèche", }, effect: { en: "Discard an Energy from this Pokémon.", fr: "Défaussez une Énergie de ce Pokémon.", }, damage: 30, }, ], weaknesses: [ { type: "Water", value: "×2" }, ], retreat: 1, } export default card