import { Card } from '../../../interfaces' import Set from '../Ruby & Sapphire' const card: Card = { name: { en: "Makuhita", }, illustrator: "Kagemaru Himeno", rarity: "Common", category: "Pokemon", set: Set, dexId: [ 296, ], hp: 50, types: [ "Fighting", ], stage: "Basic", attacks: [ { cost: [ "Colorless", ], name: { en: "Fling", }, effect: { en: "Your opponent switches the Defending Pokémon with 1 of his or her Benched Pokémon.", }, }, { cost: [ "Fighting", "Colorless", ], name: { en: "Low Kick", }, damage: 30, }, ], weaknesses: [ { type: "Psychic", value: "×2" }, ], } export default card