import { Card } from '../../../interfaces' import Set from '../Skyridge' const card: Card = { name: { en: "Zubat", }, illustrator: "Hisao Nakamura", rarity: "Common", category: "Pokemon", set: Set, dexId: [ 41, ], hp: 40, types: [ "Grass", ], stage: "Basic", attacks: [ { cost: [ "Colorless", ], name: { en: "Sound Waves", }, effect: { en: "Flip a coin. If heads, the Defending Pokémon is now Confused.", }, }, { cost: [ "Grass", ], name: { en: "Flitter", }, effect: { en: "Choose 1 of your opponent's Pokémon. This attack does 10 damage to that Pokémon. Don't apply Weakness and Resistance. (Any other effects that would happen after applying Weakness and Resistance still happen.)", }, damage: 10, }, ], weaknesses: [ { type: "Lightning", value: "×2" }, ], resistances: [ { type: "Fighting", value: "-30" }, ], } export default card