mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-22 19:02:10 +00:00
86 lines
1.4 KiB
TypeScript
86 lines
1.4 KiB
TypeScript
import { Card } from '../../../interfaces'
|
|
import Set from '../Supreme Victors'
|
|
|
|
const card: Card = {
|
|
name: {
|
|
en: "Rhydon",
|
|
fr: "Rhinoféros",
|
|
de: "Rizeros"
|
|
},
|
|
illustrator: "Masakazu Fukuda",
|
|
rarity: "Uncommon",
|
|
category: "Pokemon",
|
|
|
|
set: Set,
|
|
dexId: [
|
|
112,
|
|
],
|
|
hp: 90,
|
|
types: [
|
|
"Fighting",
|
|
],
|
|
evolveFrom: {
|
|
en: "Rhyhorn",
|
|
fr: "Rhinocorne",
|
|
},
|
|
stage: "Stage1",
|
|
|
|
|
|
attacks: [
|
|
{
|
|
cost: [
|
|
"Fighting",
|
|
],
|
|
name: {
|
|
en: "Fury Attack",
|
|
fr: "Furie",
|
|
de: "Furienschlag"
|
|
},
|
|
effect: {
|
|
en: "Flip 3 coins. This attack does 20 damage times the number of heads.",
|
|
fr: "Lancez 3 pièces. Cette attaque inflige 20 dégâts multipliés par le nombre de faces.",
|
|
de: "Wirf 3 Münzen. Dieser Angriff fügt 20 Schadenspunkte mal der Anzahl \"Kopf\" zu."
|
|
},
|
|
damage: "20x",
|
|
|
|
},
|
|
{
|
|
cost: [
|
|
"Fighting",
|
|
"Fighting",
|
|
"Colorless",
|
|
],
|
|
name: {
|
|
en: "Rock Tumble",
|
|
fr: "Roule-pierre",
|
|
de: "Rollende Felsen"
|
|
},
|
|
effect: {
|
|
en: "This attack's damage isn't affected by Resistance.",
|
|
fr: "Les dégâts de cette attaque ne sont pas affectés par la Résistance.",
|
|
de: "Der Schaden dieses Angriffs wird durch Resistenz nicht verändert."
|
|
},
|
|
damage: 60,
|
|
|
|
},
|
|
],
|
|
weaknesses: [
|
|
{
|
|
type: "Water",
|
|
value: "+20"
|
|
},
|
|
],
|
|
resistances: [
|
|
{
|
|
type: "Lightning",
|
|
value: "-20"
|
|
},
|
|
],
|
|
retreat: 3,
|
|
|
|
|
|
|
|
}
|
|
|
|
export default card
|