import { Card } from '../../../interfaces' import Set from '../Power Keepers' const card: Card = { name: { en: "Charmander", }, illustrator: "Sachiko Adachi", rarity: "Common", category: "Pokemon", set: Set, dexId: [ 4, ], hp: 50, types: [ "Fire", ], stage: "Basic", attacks: [ { cost: [ "Fire", ], name: { en: "Smokescreen", }, effect: { en: "If the Defending Pokémon tries to attack during your opponent's next turn, your opponent flips a coin. If tails, that attack does nothing.", }, damage: 10, }, ], weaknesses: [ { type: "Water", value: "×2" }, ], } export default card