import { Card } from '../../../interfaces' import Set from '../Rebel Clash' const card: Card = { name: { en: "Hatenna", fr: "Bibichut" }, illustrator: "Mina Nakai", rarity: "Common", category: "Pokemon", set: Set, attacks: [ { cost: [ "Colorless", ], name: { en: "Find a Friend", fr: "Trouver un Ami" }, effect: { en: "Search your deck for a Pokémon, reveal it, and put it into your hand. Then, shuffle your deck.", fr: "Cherchez dans votre deck un Pokémon, montrez-le, puis ajoutez-le à votre main. Mélangez ensuite votre deck." }, }, { cost: [ "Colorless", "Colorless", ], name: { en: "Psyshot", fr: "Piqûre Psy" }, damage: 20, }, ], weaknesses: [ { type: "Darkness", value: "×2" }, ], resistances: [ { type: "Fighting", value: "-30" }, ], retreat: 1, hp: 60, types: ["Psychic"], regulationMark: "D" } export default card