import { Card } from '../../../interfaces' import Set from '../Expedition Base Set' const card: Card = { name: { en: "Magmar", }, illustrator: "Miki Tanaka", rarity: "Uncommon", category: "Pokemon", set: Set, dexId: [ 126, ], hp: 60, types: [ "Fire", ], stage: "Basic", attacks: [ { cost: [ "Fire", "Colorless", ], name: { en: "Flaming Punch", }, effect: { en: "Flip a coin. If heads, the Defending Pokémon is now Burned.", }, damage: 10, }, { cost: [ "Fire", "Colorless", "Colorless", ], name: { en: "Thrash", }, effect: { en: "Flip a coin. If heads, this attack does 30 damage plus 10 more damage. If tails, Magmar does 10 damage to itself.", }, damage: 30, }, ], weaknesses: [ { type: "Water", value: "×2" }, ], } export default card