import { Card } from '../../../interfaces' import Set from '../Fossil' const card: Card = { name: { en: "Magmar", }, illustrator: "Mitsuhiro Arita", rarity: "Uncommon", category: "Pokemon", set: Set, dexId: [ 126, ], hp: 70, types: [ "Fire", ], evolveFrom: { en: "Magby", }, 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, }, { cost: [ "Fire", "Fire", ], name: { en: "Smog", }, effect: { en: "Flip a coin. If heads, the Defending Pokémon is now Poisoned.", }, }, ], weaknesses: [ { type: "Water", value: "×2" }, ], } export default card