import { Card } from '../../../interfaces' import Set from '../Deoxys' const card: Card = { name: { en: "Zubat", fr: "Nosferapti", de: "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", fr: "Sang-froid", de: "Self-control" }, effect: { en: "Zubat can't be Paralyzed.", fr: "Nosferapti ne peut pas être Paralysé.", de: "Zubat can't be Paralyzed." }, }, ], attacks: [ { cost: [ "Colorless", ], name: { en: "Bite", fr: "Morsure", de: "Bite" }, damage: 10, }, ], weaknesses: [ { type: "Psychic", value: "×2" }, ], } export default card