import { Card } from "../../../interfaces" import Set from "../Celestial Guardians" const card: Card = { set: Set, name: { en: "Bruxish" }, illustrator: "Masakazu Fukuda", rarity: "One Diamond", category: "Pokemon", hp: 80, types: ["Water"], description: { en: "It grinds its teeth with great force to stimulate its brain. It fires the psychic energy created by this process from the protuberance on its head." }, stage: "Basic", attacks: [{ name: { en: "Wave Splash" }, damage: 50, cost: ["Water", "Colorless"] }], weaknesses: [{ type: "Lightning", value: "+20" }], retreat: 1 } export default card