import { Card } from '../../../interfaces' import Set from '../Unbroken Bonds' const card: Card = { name: { en: "Rhyhorn", fr: "Rhinocorne", es: "Rhyhorn", it: "Rhyhorn", pt: "Rhyhorn", de: "Rihorn" }, illustrator: "sowsow", rarity: "Common", category: "Pokemon", set: Set, dexId: [ 111, ], hp: 80, types: [ "Fighting", ], stage: "Basic", attacks: [ { cost: [ "Fighting", ], name: { en: "Push Down", fr: "Recul", es: "Oprimir", it: "Spintonare", pt: "Rebaixar", de: "Runterdrücken" }, effect: { en: "Your opponent switches their Active Pokémon with 1 of their Benched Pokémon.", fr: "Votre adversaire échange son Pokémon Actif avec l’un de ses Pokémon de Banc.", es: "Tu rival cambia su Pokémon Activo por 1 de sus Pokémon en Banca.", it: "Il tuo avversario scambia il suo Pokémon attivo con uno della sua panchina.", pt: "Seu oponente troca o próprio Pokémon Ativo por 1 dos Pokémon no Banco dele(a).", de: "Dein Gegner tauscht sein Aktives Pokémon gegen 1 Pokémon auf seiner Bank aus." }, damage: 20, }, ], weaknesses: [ { type: "Grass", value: "×2" }, ], retreat: 2, } export default card