1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-05 21:09:54 +00:00

44 lines
652 B
TypeScript

import { Card } from "../../../interfaces"
import Set from "../Space-Time Smackdown"
const card: Card = {
set: Set,
name: {
en: "Rhydon"
},
illustrator: "Oswaldo KATO",
rarity: "Two Diamond",
category: "Pokemon",
hp: 110,
types: ["Fighting"],
evolveFrom: {
en: "Rhyhorn"
},
description: {
en: "It begins walking on its hind legs after evolution.<br />It can punch holes through boulders with its horn."
},
stage: "Stage1",
attacks: [{
name: {
en: "Wrack Down"
},
damage: 70,
cost: ["Fighting", "Fighting", "Colorless"]
}],
weaknesses: [{
type: "Grass",
value: "+20"
}],
retreat: 3
}
export default card