mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-23 19:32:11 +00:00
73 lines
1019 B
TypeScript
73 lines
1019 B
TypeScript
import { Card } from '../../../interfaces'
|
||
import Set from '../Emerald'
|
||
|
||
const card: Card = {
|
||
name: {
|
||
en: "Rhydon",
|
||
fr: "Rhinoferos",
|
||
de: "Rizeros"
|
||
},
|
||
illustrator: "Kouki Saitou",
|
||
rarity: "Rare",
|
||
category: "Pokemon",
|
||
|
||
set: Set,
|
||
dexId: [
|
||
112,
|
||
],
|
||
hp: 90,
|
||
types: [
|
||
"Fighting",
|
||
],
|
||
evolveFrom: {
|
||
en: "Rhyhorn",
|
||
},
|
||
stage: "Stage1",
|
||
|
||
|
||
attacks: [
|
||
{
|
||
cost: [
|
||
"Fighting",
|
||
"Colorless",
|
||
],
|
||
name: {
|
||
en: "Horn Attack",
|
||
fr: "Koud'korne",
|
||
de: "Horn Attack"
|
||
},
|
||
|
||
damage: 30,
|
||
|
||
},
|
||
{
|
||
cost: ["Colorless", "Colorless", "Colorless", "Colorless"],
|
||
name: {
|
||
en: "Rock Tumble",
|
||
fr: "Roule-pierre",
|
||
de: "Rock Tumble"
|
||
},
|
||
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: "This attack's damage isn't affected by Resistance."
|
||
},
|
||
damage: 60,
|
||
|
||
},
|
||
],
|
||
weaknesses: [
|
||
{
|
||
type: "Water",
|
||
value: "×2"
|
||
},
|
||
],
|
||
|
||
|
||
|
||
|
||
|
||
}
|
||
|
||
export default card
|