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