import { Card } from '../../../interfaces' import Set from '../Base Set 2' const card: Card = { name: { en: "Drowzee", }, illustrator: "Ken Sugimori", rarity: "Common", category: "Pokemon", set: Set, dexId: [ 96, ], hp: 50, types: [ "Psychic", ], stage: "Basic", attacks: [ { cost: [ "Colorless", ], name: { en: "Pound", }, damage: 10, }, { cost: [ "Psychic", "Psychic", ], name: { en: "Confuse Ray", }, effect: { en: "Flip a coin. If heads, the Defending Pokémon is now Confused.", }, damage: 10, }, ], weaknesses: [ { type: "Psychic", value: "×2" }, ], } export default card