import { Card } from '../../../interfaces' import Set from '../Unleashed' const card: Card = { name: { en: "Golbat", fr: "Nosferalto", }, illustrator: "kawayoo", rarity: "Uncommon", category: "Pokemon", set: Set, dexId: [ 42, ], hp: 80, types: [ "Psychic", ], evolveFrom: { en: "Zubat", fr: "Nosferapti", }, stage: "Stage1", attacks: [ { cost: [ "Psychic", ], name: { en: "Mean Look", fr: "Regard noir", }, effect: { en: "The Defending Pokémon can’t retreat during your opponent’s next turn.", fr: "Le Pokémon Défenseur ne peut pas battre en retraite durant le prochain tour de votre adversaire.", }, damage: 20, }, ], weaknesses: [ { type: "Lightning", value: "×2" }, ], resistances: [ { type: "Fighting", value: "-20" }, ], retreat: 0, description: { en: "It can drink more than 10 ounces of blood at once. If it has too much, it gets heavy and flies clumsily." }, variants: { normal: true, reverse: true, holo: false, firstEdition: false } } export default card