1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-23 19:32:11 +00:00

73 lines
1019 B
TypeScript
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

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