mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-06-01 20:09:55 +00:00
60 lines
1.6 KiB
TypeScript
60 lines
1.6 KiB
TypeScript
import { Card } from "../../../interfaces"
|
|
import Set from "../Space-Time Smackdown"
|
|
|
|
const card: Card = {
|
|
set: Set,
|
|
|
|
name: {
|
|
en: "Rhyhorn",
|
|
fr: "Rhinocorne",
|
|
es: "Rhyhorn",
|
|
it: "Rhyhorn",
|
|
de: "Rihorn",
|
|
'pt-br': "Rhyhorn",
|
|
ko: "뿔카노"
|
|
},
|
|
|
|
illustrator: "otumami",
|
|
rarity: "One Diamond",
|
|
category: "Pokemon",
|
|
hp: 80,
|
|
types: ["Fighting"],
|
|
|
|
description: {
|
|
en: "Strong, but not too bright, this Pokémon can shatter even a skyscraper with its charging tackles.",
|
|
fr: "Costaud, mais pas très intelligent, ce Pokémon est capable\nde détruire un immeuble entier en fonçant dessus.",
|
|
es: "Su inteligencia es limitada, aunque posee una\nfuerza tan considerable que le permite incluso\nderribar rascacielos con solo embestirlos.",
|
|
it: "È molto forte, benché non particolarmente brillante.\nSe si scaglia contro un grattacielo può raderlo al suolo.",
|
|
de: "Dieses Pokémon ist zwar nicht besonders klug,\naber dafür so stark, dass es durch Rammen sogar\nHochhäuser zum Einsturz bringen kann.",
|
|
'pt-br': "Forte, mas não muito brilhante, este Pokémon\npode estilhaçar até mesmo um arranha-céu\ncom suas investidas poderosas.",
|
|
ko: "머리는 나쁘지만 힘이 세서\n고층 빌딩도 몸통박치기로\n산산조각 낸다."
|
|
},
|
|
|
|
stage: "Basic",
|
|
|
|
attacks: [{
|
|
name: {
|
|
en: "Horn Attack",
|
|
fr: "Koud'Korne",
|
|
es: "Cornada",
|
|
it: "Incornata",
|
|
de: "Hornattacke",
|
|
'pt-br': "Ataque de Chifre",
|
|
ko: "뿔찌르기"
|
|
},
|
|
|
|
damage: 40,
|
|
cost: ["Fighting", "Colorless"]
|
|
}],
|
|
|
|
weaknesses: [{
|
|
type: "Grass",
|
|
value: "+20"
|
|
}],
|
|
|
|
retreat: 3,
|
|
boosters: ["palkia"]
|
|
}
|
|
|
|
export default card
|