import { Card } from '../../../interfaces' import Set from '../Jungle' const card: Card = { name: { en: "Rhyhorn", }, illustrator: "Mitsuhiro Arita", rarity: "Common", category: "Pokemon", set: Set, dexId: [ 111, ], hp: 70, types: [ "Fighting", ], stage: "Basic", attacks: [ { cost: [ "Colorless", ], name: { en: "Leer", }, effect: { en: "Flip a coin. If heads, the Defending Pokémon can't attack Rhyhorn during your opponent's next turn. (Benching either Pokémon ends this effect.)", }, }, { cost: [ "Fighting", "Colorless", "Colorless", ], name: { en: "Horn Attack", }, damage: 30, }, ], weaknesses: [ { type: "Grass", value: "×2" }, ], resistances: [ { type: "Lightning", value: "-30" }, ], } export default card