import { Card } from '../../../interfaces' import Set from '../Team Rocket' const card: Card = { name: { en: "Dark Charmeleon", }, illustrator: "Kagemaru Himeno", rarity: "Uncommon", category: "Pokemon", set: Set, dexId: [ 5, ], hp: 50, types: [ "Fire", ], evolveFrom: { en: "Charmander", }, stage: "Stage1", attacks: [ { cost: [ "Colorless", "Colorless", ], name: { en: "Tail Slap", }, damage: 20, }, { cost: [ "Fire", "Fire", "Fire", ], name: { en: "Fireball", }, effect: { en: "Use this attack only if there are any Energy cards attached to Dark Charmeleon. Flip a coin. If heads, discard 1 of those Energy cards. If tails, this attack does nothing (not even damage).", }, }, ], weaknesses: [ { type: "Water", value: "×2" }, ], } export default card