import { Card } from '../../../interfaces' import Set from '../Mysterious Treasures' const card: Card = { name: { en: "Barboach", }, illustrator: "Ken Sugimori", rarity: "Common", category: "Pokemon", set: Set, dexId: [ 339, ], hp: 50, types: [ "Water", ], stage: "Basic", attacks: [ { cost: [ "Fighting", ], name: { en: "Mud Spit", }, effect: { en: "Flip a coin. If heads, this attack does 10 damage to each of your opponent's Pokémon. (Don't apply Weakness and Resistance for Benched Pokémon.)", }, }, ], weaknesses: [ { type: "Grass", value: "+10" }, ], resistances: [ { type: "Lightning", value: "-20" }, ], } export default card