import { Card } from '../../../interfaces' import Set from '../Unbroken Bonds' const card: Card = { name: { en: "Rhyhorn", fr: "Rhinocorne", }, illustrator: "sowsow", rarity: "Common", category: "Pokemon", set: Set, dexId: [ 111, ], hp: 80, types: [ "Fightning", ], stage: "Basic", attacks: [ { cost: [ "Fightning", ], name: { en: "Push Down", fr: "Recul", }, 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.", }, damage: 20, }, ], weaknesses: [ { type: "Grass", value: "×2" }, ], retreat: 2, } export default card