import { Card } from "../../../interfaces" import Set from "../Space-Time Smackdown" const card: Card = { set: Set, name: { en: "Buizel" }, illustrator: "OKUBO", rarity: "One Diamond", category: "Pokemon", hp: 60, types: ["Water"], description: { en: "It spins its two tails like a screw to propel itself through water. The tails also slice clinging seaweed." }, stage: "Basic", attacks: [{ name: { en: "Water Gun" }, damage: 20, cost: ["Water"] }], weaknesses: [{ type: "Lightning", value: "+20" }], retreat: 1 } export default card