mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-25 04:12:11 +00:00
39 lines
542 B
TypeScript
39 lines
542 B
TypeScript
import { Card } from '../../../interfaces'
|
||
import Set from '../XY trainer Kit (Latios)'
|
||
|
||
const card: Card = {
|
||
set: Set,
|
||
|
||
name: {
|
||
en: "Rhydon",
|
||
fr: "Rhinoféros",
|
||
es: "Rhydon",
|
||
it: "Rhydon",
|
||
pt: "Rhydon",
|
||
de: "Rizeros"
|
||
},
|
||
|
||
rarity: "Uncommon",
|
||
category: "Pokemon",
|
||
hp: 100,
|
||
types: ["Fighting"],
|
||
|
||
evolveFrom: {
|
||
en: "Rhyhorn",
|
||
fr: "Rhinocorne",
|
||
es: "Rhyhorn",
|
||
it: "Rhyhorn",
|
||
pt: "Rhyhorn",
|
||
de: "Rihorn"
|
||
},
|
||
|
||
stage: "Stage1",
|
||
retreat: 4,
|
||
|
||
weaknesses: [{
|
||
type: "Grass",
|
||
value: "×2"
|
||
}]
|
||
}
|
||
|
||
export default card |