import { Card } from "../../../interfaces" import Set from "../Wisdom of Sea and Sky" const card: Card = { set: Set, name: { en: "Zubat" }, illustrator: "Shigenori Negishi", rarity: "One Diamond", category: "Pokemon", hp: 50, types: ["Darkness"], description: { en: "It emits ultrasonic waves from its mouth to check\nits surroundings. Even in tight caves, Zubat flies\naround with skill." }, stage: "Basic", attacks: [{ name: { en: "Venomous Fang" }, damage: 10, cost: ["Darkness"], effect: { en: "Your opponent's Active Pokémon is now Poisoned." } }], weaknesses: [{ type: "Fighting", value: "+20" }], retreat: 1 } export default card