1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-11 23:55:12 +00:00
Files
cards-database/data/Pokémon TCG Pocket/Genetic Apex/156.ts

61 lines
1.6 KiB
TypeScript

import { Card } from "../../../interfaces"
import Set from "../Genetic Apex"
const card: Card = {
set: Set,
name: {
en: "Rhyhorn",
fr: "Rhinocorne",
es: "Rhyhorn",
it: "Rhyhorn",
de: "Rihorn",
'pt-br': "Rhyhorn",
ko: "뿔카노"
},
illustrator: "Midori Harada",
category: "Pokemon",
hp: 80,
types: ["Fighting"],
stage: "Basic",
attacks: [{
cost: ["Fighting", "Fighting", "Colorless"],
name: {
en: "Tackle",
fr: "Charge",
es: "Placaje",
it: "Azione",
de: "Tackle",
'pt-br': "Investida",
ko: "몸통박치기"
},
damage: "60"
}],
weaknesses: [{
type: "Psychic",
value: "+20"
}],
retreat: 3,
rarity: "One Diamond",
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산산조각 낸다."
},
boosters: ["mewtwo"]
}
export default card