import { Card } from '../../../interfaces' import Set from '../Plasma Storm' const card: Card = { name: { en: "Golbat", fr: "Nosferalto", es: "Golbat", it: "Golbat", pt: "Golbat", de: "Golbat" }, illustrator: "Kyoko Umemoto", rarity: "Uncommon", category: "Pokemon", set: Set, dexId: [ 42, ], hp: 80, types: [ "Psychic", ], evolveFrom: { en: "Zubat", fr: "Nosferapti", }, stage: "Stage1", attacks: [ { cost: [ "Psychic", "Colorless", ], name: { en: "Spiral Drain", fr: "Spirale Épuisante", }, effect: { en: "Heal 20 damage from this Pokémon.", fr: "Soignez 20 dégâts à ce Pokémon.", }, damage: 20, }, ], weaknesses: [ { type: "Lightning", value: "×2" }, ], resistances: [ { type: "Fighting", value: "-20" }, ], retreat: 1, } export default card