import { Card } from '../../../interfaces' import Set from '../Deoxys' const card: Card = { name: { en: "Zubat", }, illustrator: "Sachiko Adachi", rarity: "Common", category: "Pokemon", set: Set, dexId: [ 41, ], hp: 50, types: [ "Grass", ], stage: "Basic", abilities: [ { type: "Poke-BODY", name: { en: "Self-control", }, effect: { en: "Zubat can't be Paralyzed.", }, }, ], attacks: [ { cost: [ "Colorless", ], name: { en: "Bite", }, damage: 10, }, ], weaknesses: [ { type: "Psychic", value: "×2" }, ], } export default card