1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-25 12:22:14 +00:00

80 lines
1.1 KiB
TypeScript

import { Card } from '../../../interfaces'
import Set from '../Supreme Victors'
const card: Card = {
name: {
en: "Rhyhorn",
fr: "Rhinocorne",
de: "Rihorn"
},
illustrator: "Tomokazu Komiya",
rarity: "Common",
category: "Pokemon",
set: Set,
dexId: [
111,
],
hp: 70,
types: [
"Fighting",
],
stage: "Basic",
attacks: [
{
cost: [
"Colorless",
"Colorless",
],
name: {
en: "Stomp",
fr: "Écrasement",
de: "Stampfer"
},
effect: {
en: "Flip a coin. If heads, this attack does 10 damage plus 20 more damage.",
fr: "Lancez une pièce. Si c'est face, cette attaque inflige 10 dégâts plus 20 dégâts supplémentaires.",
de: "Wirf 1 Münze. Bei \"Kopf\" fügt dieser Angriff 10 Schadenspunkte plus 20 weitere Schadenspunkte zu."
},
damage: "10+",
},
{
cost: [
"Fighting",
"Fighting",
"Colorless",
],
name: {
en: "Horn Drill",
fr: "Empal'korne",
de: "Hornbohrer"
},
damage: 50,
},
],
weaknesses: [
{
type: "Water",
value: "+10"
},
],
resistances: [
{
type: "Lightning",
value: "-20"
},
],
retreat: 2,
}
export default card