mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-24 03:42:13 +00:00
71 lines
942 B
TypeScript
71 lines
942 B
TypeScript
import { Card } from '../../../interfaces'
|
||
import Set from '../DP Black Star Promos'
|
||
|
||
const card: Card = {
|
||
name: {
|
||
en: "Rhyperior",
|
||
},
|
||
illustrator: "Ryo Ueda",
|
||
rarity: "Common",
|
||
category: "Pokemon",
|
||
|
||
set: Set,
|
||
dexId: [
|
||
464,
|
||
],
|
||
hp: 170,
|
||
types: [
|
||
"Fighting",
|
||
],
|
||
|
||
stage: "LEVEL-UP",
|
||
|
||
|
||
attacks: [
|
||
{
|
||
|
||
name: {
|
||
en: "Hard Crush",
|
||
},
|
||
effect: {
|
||
en: "Discard the top 5 cards of your deck. This attack does 50 damage for each Energy card you discarded.",
|
||
},
|
||
damage: 50,
|
||
|
||
},
|
||
{
|
||
cost: [
|
||
"Fighting",
|
||
"Fighting",
|
||
"Colorless",
|
||
],
|
||
name: {
|
||
en: "Upthrow",
|
||
},
|
||
effect: {
|
||
en: "Search your discard pile for all Fighting Energy cards, show them to your opponent, and shuffle them into your deck.",
|
||
},
|
||
damage: 60,
|
||
|
||
},
|
||
],
|
||
weaknesses: [
|
||
{
|
||
type: "Water",
|
||
value: "×2"
|
||
},
|
||
],
|
||
resistances: [
|
||
{
|
||
type: "Lightning",
|
||
value: "-20"
|
||
},
|
||
],
|
||
|
||
|
||
|
||
|
||
}
|
||
|
||
export default card
|