import { Card } from '../../../interfaces' import Set from '../Rebel Clash' const card: Card = { name: { en: "Hatenna", }, illustrator: "Mina Nakai", rarity: "Common", category: "Pokemon", set: Set, attacks: [ { cost: [ "Colorless", ], name: { en: "Find a Friend", }, effect: { en: "Search your deck for a Pokémon, reveal it, and put it into your hand. Then, shuffle your deck.", }, }, { cost: [ "Colorless", "Colorless", ], name: { en: "Psyshot", }, damage: 20, }, ], weaknesses: [ { type: "Darkness", value: "×2" }, ], resistances: [ { type: "Fightning", value: "-30" }, ], retreat: 1, } export default card