import { Card } from '../../../interfaces' import Set from '../HeartGold SoulSilver' const card: Card = { name: { en: "Hoothoot", fr: "Hoothoot", }, illustrator: "Suwama Chiaki", rarity: "Common", category: "Pokemon", set: Set, dexId: [ 163, ], hp: 50, types: [ "Colorless", ], stage: "Basic", attacks: [ { cost: [ "Colorless", ], name: { en: "Hypnosis", fr: "Hypnose", }, effect: { en: "The Defending Pokémon is now Asleep.", fr: "Le Pokémon Défenseur est maintenant Endormi.", }, }, { cost: [ "Colorless", "Colorless", ], name: { en: "Tackle", fr: "Charge", }, damage: 20, }, ], weaknesses: [ { type: "Lightning", value: "×2" }, ], resistances: [ { type: "Fighting", value: "-20" }, ], retreat: 1, description: { en: "It always stands on one foot. It changes feet so fast, the movement can rarely be seen." }, variants: { normal: true, reverse: true, holo: false, firstEdition: false } } export default card