import { Card } from '../../../interfaces' import Set from '../Crystal Guardians' const card: Card = { name: { en: "Charmeleon δ", fr: "Reptincel δ ESPÈCES DELTA" }, illustrator: "Mitsuhiro Arita", rarity: "Uncommon", category: "Pokemon", set: Set, dexId: [ 5, ], hp: 70, types: [ "Lightning", ], evolveFrom: { en: "Charmander", }, stage: "Stage1", attacks: [ { cost: [ "Colorless", "Colorless", ], name: { en: "Slash", fr: "Tranche" }, damage: 20, }, { cost: [ "Lightning", "Colorless", "Colorless", ], name: { en: "Thunder Jolt", fr: "Secousse tonnerre" }, effect: { en: "Flip a coin. If tails, Charmeleon does 10 damage to itself.", fr: "Lancez une pièce. Si c'est pile, Reptincel s'inflige 10 dégâts." }, damage: 50, }, ], weaknesses: [ { type: "Water", value: "×2" }, ], } export default card