import { Card } from '../../../interfaces' import Set from '../Ruby & Sapphire' const card: Card = { name: { en: "Magmar ex", }, illustrator: "Hikaru Koike", rarity: "Rare", category: "Pokemon", set: Set, dexId: [ 126, ], hp: 90, types: [ "Fire", ], suffix: "EX", 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", "Colorless", ], name: { en: "Super Singe", }, effect: { en: "The Defending Pokémon is now Burned.", }, damage: 40, }, ], weaknesses: [ { type: "Water", value: "×2" }, ], } export default card