mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-06-05 21:09:54 +00:00
65 lines
1.6 KiB
TypeScript
65 lines
1.6 KiB
TypeScript
import { Card } from "../../../interfaces"
|
|
import Set from "../Genetic Apex"
|
|
|
|
const card: Card = {
|
|
set: Set,
|
|
|
|
name: {
|
|
en: "Rhydon",
|
|
fr: "Rhinoféros",
|
|
es: "Rhydon",
|
|
it: "Rhydon",
|
|
de: "Rizeros",
|
|
'pt-br': "Rhydon",
|
|
ko: "코뿌리"
|
|
},
|
|
|
|
illustrator: "Masakazu Fukuda",
|
|
category: "Pokemon",
|
|
hp: 120,
|
|
types: ["Fighting"],
|
|
stage: "Stage1",
|
|
|
|
evolveFrom: {
|
|
en: "Rhyhorn"
|
|
},
|
|
|
|
attacks: [{
|
|
cost: ["Fighting", "Fighting", "Fighting", "Colorless"],
|
|
|
|
name: {
|
|
en: "Horn Drill",
|
|
fr: "Empal'Korne",
|
|
es: "Perforador",
|
|
it: "Perforcorno",
|
|
de: "Hornbohrer",
|
|
'pt-br': "Chifre Broca",
|
|
ko: "뿔드릴"
|
|
},
|
|
|
|
damage: "100"
|
|
}],
|
|
|
|
weaknesses: [{
|
|
type: "Psychic",
|
|
value: "+20"
|
|
}],
|
|
|
|
retreat: 4,
|
|
rarity: "Two Diamond",
|
|
|
|
description: {
|
|
en: "It begins walking on its hind legs after evolution. It can punch holes through boulders with its horn.",
|
|
fr: "L'évolution a permis à ce Pokémon de marcher\nsur ses pattes postérieures. Il peut faire des trous\ndans les rochers en utilisant sa corne.",
|
|
es: "Cuando evoluciona, comienza a andar\ncon las patas traseras. Es capaz de\nhoradar rocas con el cuerno que tiene.",
|
|
it: "Dopo l'evoluzione inizia a muoversi sulle zampe\nposteriori. Con il corno può perforare la roccia.",
|
|
de: "Nach seiner Entwicklung geht es aufrecht auf\nseinen Hinterbeinen. Mit seinem Horn kann es\nLöcher in Felsen bohren.",
|
|
'pt-br': "Após evoluir, começa a andar com\nsuas pernas traseiras. Consegue furar\nrochedos com seu chifre.",
|
|
ko: "진화하여 뒷다리만으로\n서게 되었다. 뿔로 찌르면\n암석에도 구멍이 뚫리고 만다."
|
|
},
|
|
|
|
boosters: ["mewtwo"]
|
|
}
|
|
|
|
export default card
|