import { Card } from "../../../interfaces" import Set from "../Genetic Apex" const card: Card = { set: Set, name: { en: "Magmar" }, illustrator: "Ryuta Fuse", category: "Pokemon", hp: 80, types: ["Fire"], stage: "Basic", attacks: [{ cost: ["Fire", "Fire"], name: { en: "Magma Punch" }, damage: "50" }], weaknesses: [{ type: "Water", value: "+20" }], retreat: 2, rarity: "One Diamond", description: { en: "Magmar dispatches its prey with fire. But it regrets this habit once it realizes that it has burned its intended prey to a charred crisp.", } } export default card