import { Card } from "../../../interfaces" import Set from "../Shining Revelry" const card: Card = { set: Set, name: { en: "Bibarel ex" }, illustrator: "PLANETA CG Works", rarity: "Two Star", category: "Pokemon", hp: 160, types: ["Colorless"], evolveFrom: { en: "Bidoof" }, stage: "Stage1", suffix: "EX", attacks: [{ name: { en: "Carefree Press" }, damage: 100, cost: ["Colorless", "Colorless", "Colorless", "Colorless"], effect: { en: "Heal 30 damage from this Pokémon." } }], weaknesses: [{ type: "Fighting", value: "+20" }], retreat: 3 } export default card