import { Card } from '../../../interfaces' import Set from '../BREAKthrough' const card: Card = { name: { en: "Hoothoot", fr: "Hoothoot", }, illustrator: "Miki Tanaka", rarity: "Common", category: "Pokemon", set: Set, dexId: [ 163, ], hp: 60, types: [ "Colorless", ], stage: "Basic", attacks: [ { cost: [ "Colorless", "Colorless", ], name: { en: "Proclaim the Night", fr: "Proclamation Nocturne", }, effect: { en: "Your opponent can’t play any Item cards from his or her hand during his or her next turn.", fr: "Votre adversaire ne peut pas jouer de cartes Objet de sa main pendant son prochain tour.", }, }, ], weaknesses: [ { type: "Lightning", value: "×2" }, ], resistances: [ { type: "Fighting", value: "-20" }, ], retreat: 1, } export default card