import { Card } from "../../../interfaces" import Set from "../Space-Time Smackdown" const card: Card = { set: Set, name: { en: "Buneary" }, illustrator: "Narumi Sato", rarity: "One Diamond", category: "Pokemon", hp: 60, types: ["Colorless"], description: { en: "If both of Buneary's ears are rolled up, something is wrong with its body or mind. It's a sure sign the Pokémon is in need of care." }, stage: "Basic", attacks: [{ name: { en: "Splash" }, damage: 10, cost: ["Colorless"] }], weaknesses: [{ type: "Fighting", value: "+20" }], retreat: 1 } export default card