import { Card } from '../../../interfaces' import Set from '../Deoxys' const card: Card = { name: { en: "Barboach", }, illustrator: "Miki Tanaka", rarity: "Common", category: "Pokemon", set: Set, dexId: [ 339, ], hp: 50, types: [ "Water", ], stage: "Basic", attacks: [ { cost: [ "Colorless", ], name: { en: "Amnesia", }, effect: { en: "Choose 1 of the Defending Pokémon's attacks. That Pokémon can't use that attack during your opponent's next turn.", }, }, { cost: [ "Fighting", ], name: { en: "Tackle", }, damage: 10, }, ], weaknesses: [ { type: "Grass", value: "×2" }, ], } export default card