import { Card } from '../../../interfaces' import Set from '../Hidden Legends' const card: Card = { name: { en: "Rhyhorn", fr: "Rhinocorne", de: "Rihorn" }, illustrator: "Atsuko Nishida", rarity: "Common", category: "Pokemon", set: Set, dexId: [ 111, ], hp: 60, types: [ "Fighting", ], stage: "Basic", attacks: [ { cost: [ "Colorless", ], name: { en: "Double Stab", fr: "Coup double", de: "Double Stab" }, effect: { en: "Flip 2 coins. This attack does 10 damage times the number of heads.", fr: "Lancez 2 pièces. Cette attaque inflige 10 dégâts multipliés par le nombre de faces.", de: "Flip 2 coins. This attack does 10 damage times the number of heads." }, damage: "10x", }, { cost: [ "Fighting", "Colorless", "Colorless", ], name: { en: "Take Down", fr: "Bélier", de: "Take Down" }, effect: { en: "Rhyhorn does 10 damage to itself.", fr: "Rhinocorne s'inflige 10 dégâts.", de: "Rhyhorn does 10 damage to itself." }, damage: 50, }, ], weaknesses: [ { type: "Water", value: "×2" }, ], } export default card