import { Card } from '../../../interfaces' import Set from '../FireRed & LeafGreen' const card: Card = { name: { en: "Charmander", fr: "Salamèche", de: "Glumanda" }, illustrator: "Midori Harada", rarity: "Common", category: "Pokemon", set: Set, dexId: [ 4, ], hp: 50, types: [ "Fire", ], stage: "Basic", attacks: [ { cost: [ "Colorless", ], name: { en: "Headbutt", fr: "Coup d'boule", de: "Headbutt" }, damage: 10, }, { cost: [ "Colorless", "Colorless", ], name: { en: "Slash", fr: "Tranche", de: "Slash" }, damage: 20, }, ], weaknesses: [ { type: "Water", value: "×2" }, ], } export default card