import { Card } from '../../../interfaces' import Set from '../FireRed & LeafGreen' const card: Card = { name: { en: "Drowzee", }, illustrator: "Yukiko Baba", rarity: "Uncommon", category: "Pokemon", set: Set, dexId: [ 96, ], hp: 50, types: [ "Psychic", ], stage: "Basic", attacks: [ { cost: [ "Colorless", ], name: { en: "Hypnosis", }, effect: { en: "The Defending Pokémon is now Asleep.", }, }, { cost: [ "Psychic", ], name: { en: "Ambush", }, effect: { en: "Flip a coin. If heads, this attack does 10 damage plus 10 more damage.", }, damage: 10, }, ], weaknesses: [ { type: "Psychic", value: "×2" }, ], } export default card