import { Card } from "../../../interfaces" import Set from "../Genetic Apex" const card: Card = { set: Set, name: { en: "Zubat" }, illustrator: "match", category: "Pokemon", hp: 50, types: ["Darkness"], stage: "Basic", attacks: [{ cost: ["Colorless"], name: { en: "Glide" }, damage: "10" }], weaknesses: [{ type: "Fighting", value: "+20" }], retreat: 1, rarity: "One Diamond", description: { en: "It emits ultrasonic waves from its mouth to check its surroundings. Even in tight caves, Zubat flies around with skill.", } } export default card