import { Card } from "../../../interfaces" import Set from "../Celestial Guardians" const card: Card = { set: Set, name: { en: "Bewear" }, illustrator: "kirisAki", rarity: "Three Diamond", category: "Pokemon", hp: 130, types: ["Colorless"], evolveFrom: { en: "Stufful" }, description: { en: "Once it accepts you as a friend, it tries to show its affection with a hug. Letting it do that is dangerous—it could easily shatter your bones." }, stage: "Stage1", attacks: [{ name: { en: "Tantrum" }, damage: 130, cost: ["Colorless", "Colorless", "Colorless", "Colorless"], effect: { en: "This Pokémon is now Confused." } }], weaknesses: [{ type: "Fighting", value: "+20" }], retreat: 3 } export default card