import { Card } from '../../../interfaces' import Set from '../Hidden Legends' const card: Card = { name: { en: "Golbat", }, illustrator: "Midori Harada", rarity: "Uncommon", category: "Pokemon", set: Set, dexId: [ 42, ], hp: 70, types: [ "Grass", ], evolveFrom: { en: "Zubat", }, stage: "Stage1", attacks: [ { cost: [ "Colorless", ], name: { en: "Supersonic", }, effect: { en: "The Defending Pokémon is now Confused.", }, }, { cost: [ "Grass", "Colorless", ], name: { en: "Sharp Fang", }, damage: 20, }, ], weaknesses: [ { type: "Psychic", value: "×2" }, ], } export default card