mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-30 06:42:10 +00:00
81 lines
1002 B
TypeScript
81 lines
1002 B
TypeScript
import { Card } from '../../../interfaces'
|
||
import Set from '../Unbroken Bonds'
|
||
|
||
const card: Card = {
|
||
name: {
|
||
en: "Rhyhorn",
|
||
fr: "Rhinocorne",
|
||
es: "Rhyhorn",
|
||
it: "Rhyhorn",
|
||
pt: "Rhyhorn",
|
||
de: "Rihorn"
|
||
},
|
||
illustrator: "otumami",
|
||
rarity: "Common",
|
||
category: "Pokemon",
|
||
|
||
set: Set,
|
||
dexId: [
|
||
111,
|
||
],
|
||
hp: 90,
|
||
types: [
|
||
"Fighting",
|
||
],
|
||
|
||
stage: "Basic",
|
||
|
||
|
||
attacks: [
|
||
{
|
||
cost: [
|
||
"Colorless",
|
||
"Colorless",
|
||
],
|
||
name: {
|
||
en: "Horn Attack",
|
||
fr: "Koud’Korne",
|
||
es: "Cornada",
|
||
it: "Incornata",
|
||
pt: "Ataque de Chifre",
|
||
de: "Hornattacke"
|
||
},
|
||
|
||
damage: 30,
|
||
|
||
},
|
||
{
|
||
cost: [
|
||
"Fighting",
|
||
"Colorless",
|
||
"Colorless",
|
||
"Colorless",
|
||
],
|
||
name: {
|
||
en: "Boulder Crush",
|
||
fr: "Rocher Écrasant",
|
||
es: "Alud de Rocas",
|
||
it: "Macignata",
|
||
pt: "Rocha Esmagadora",
|
||
de: "Felsenquetscher"
|
||
},
|
||
|
||
damage: 80,
|
||
|
||
},
|
||
],
|
||
weaknesses: [
|
||
{
|
||
type: "Grass",
|
||
value: "×2"
|
||
},
|
||
],
|
||
|
||
retreat: 4,
|
||
|
||
|
||
|
||
}
|
||
|
||
export default card
|