mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-05-20 23:29:55 +00:00
41 lines
601 B
TypeScript
41 lines
601 B
TypeScript
import { Card } from "../../../interfaces"
|
|
import Set from "../Genetic Apex"
|
|
|
|
const card: Card = {
|
|
set: Set,
|
|
|
|
name: {
|
|
en: "Rhyhorn"
|
|
},
|
|
|
|
illustrator: "Midori Harada",
|
|
category: "Pokemon",
|
|
hp: 80,
|
|
types: ["Fighting"],
|
|
stage: "Basic",
|
|
|
|
attacks: [{
|
|
cost: ["Fighting", "Fighting", "Colorless"],
|
|
|
|
name: {
|
|
en: "Tackle"
|
|
},
|
|
|
|
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.",
|
|
}
|
|
}
|
|
|
|
export default card
|