import { Card } from '../../../interfaces' import Set from '../Hidden Legends' const card: Card = { name: { en: "Rhyhorn", }, illustrator: "Atsuko Nishida", rarity: "Common", category: "Pokemon", set: Set, dexId: [ 111, ], hp: 60, types: [ "Fighting", ], stage: "Basic", attacks: [ { cost: [ "Colorless", ], name: { en: "Double Stab", }, effect: { en: "Flip 2 coins. This attack does 10 damage times the number of heads.", }, damage: 10, }, { cost: [ "Fighting", "Colorless", "Colorless", ], name: { en: "Take Down", }, effect: { en: "Rhyhorn does 10 damage to itself.", }, damage: 50, }, ], weaknesses: [ { type: "Water", value: "×2" }, ], } export default card