import { Card } from '../../../interfaces' import Set from '../Gym Heroes' const card: Card = { name: { en: "Brock's Rhyhorn", }, illustrator: "Ken Sugimori", rarity: "Rare Holo", category: "Pokemon", set: Set, dexId: [ 111, ], hp: 60, types: [ "Fighting", ], stage: "Basic", attacks: [ { cost: [ "Colorless", "Colorless", ], name: { en: "Horn Toss", }, effect: { en: "If your opponent has any Benched Pokémon, he or she chooses 1 of them and switches it with the Defending Pokémon. (Do the damage before switching the Pokémon.)", }, damage: 20, }, { cost: [ "Fighting", "Fighting", "Colorless", ], name: { en: "Take Down", }, effect: { en: "Brock's Rhyhorn does 10 damage to itself.", }, damage: 40, }, ], weaknesses: [ { type: "Grass", value: "×2" }, ], resistances: [ { type: "Lightning", value: "-30" }, ], } export default card