import { Card } from "../../../interfaces" import Set from "../Genetic Apex" const card: Card = { set: Set, name: { en: "Golbat" }, illustrator: "Tomokazu Komiya", category: "Pokemon", hp: 70, types: ["Darkness"], stage: "Stage1", evolveFrom: { en: "Zubat" }, attacks: [{ cost: ["Colorless"], name: { en: "Wing Attack" }, damage: "40" }], weaknesses: [{ type: "Fighting", value: "+20" }], retreat: 1, rarity: "One Star", description: { en: "It loves to drink other creatures' blood. It's said that if it finds others of its kind going hungry, it sometimes shares the blood it's gathered.", } } export default card