import { Card } from '../../../interfaces' import Set from '../Unleashed' const card: Card = { name: { en: "Magmar", fr: "Magmar", }, illustrator: "Hajime Kusajima", rarity: "Common", category: "Pokemon", set: Set, dexId: [ 126, ], hp: 70, types: [ "Fire", ], stage: "Basic", attacks: [ { cost: [ "Fire", ], name: { en: "Live Coal", fr: "Charbon mutant", }, damage: 10, }, { cost: [ "Fire", "Colorless", ], name: { en: "Magma Punch", fr: "Poing magma", }, damage: 20, }, ], weaknesses: [ { type: "Water", value: "×2" }, ], retreat: 1, description: { en: "It dislikes cold places, so it blows scorching flames to make the environment suitable for itself." }, variants: { normal: true, reverse: true, holo: false, firstEdition: false } } export default card