import { Card } from "../../../interfaces" import Set from "../Eevee Grove" const card: Card = { set: Set, name: { en: "Barboach" }, illustrator: "Tomokazu Komiya", rarity: "One Diamond", category: "Pokemon", hp: 70, types: ["Fighting"], description: { en: "Its two whiskers provide a sensitive radar. Even in\nmuddy waters, it can detect its prey's location." }, stage: "Basic", attacks: [{ name: { en: "Mud Shot" }, damage: 30, cost: ["Fighting", "Colorless"] }], weaknesses: [{ type: "Grass", value: "+20" }], retreat: 2 } export default card