import { Card } from '../../../interfaces' import Set from '../Ruby & Sapphire' const card: Card = { name: { en: "Poochyena", fr: "Medhyena", de: "Fiffyen" }, illustrator: "Naoyo Kimura", rarity: "Common", category: "Pokemon", set: Set, dexId: [ 261, ], hp: 50, types: [ "Darkness", ], stage: "Basic", attacks: [ { cost: [ "Darkness", ], name: { en: "Shadow Bind", fr: "Étreinte d'ombre", de: "Shadow Bind" }, effect: { en: "The Defending Pokémon can't retreat until the end of your opponent's next turn.", fr: "Le Pokémon Défenseur ne peut pas battre en retraite tant que le prochain tour de votre adversaire n'est pas terminé.", de: "The Defending Pokémon can't retreat until the end of your opponent's next turn." }, damage: 10, }, ], weaknesses: [ { type: "Fighting", value: "×2" }, ], resistances: [ { type: "Psychic", value: "-30" }, ], } export default card