1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-05-17 22:09:54 +00:00
Khaleeq Ahmad a597759d9d
fix: Pocket card data fixes (#659)
Co-authored-by: Khaleeq Ahmad <1710642+khaleeqahmad@users.noreply.github.com>
2025-02-19 21:52:42 +01:00

49 lines
773 B
TypeScript

import { Card } from "../../../interfaces"
import Set from "../Space-Time Smackdown"
const card: Card = {
set: Set,
name: {
en: "Rhyperior"
},
illustrator: "Naoki Saito",
rarity: "Three Diamond",
category: "Pokemon",
hp: 160,
types: ["Fighting"],
evolveFrom: {
en: "Rhydon"
},
description: {
en: "It can load up to three projectiles per arm into the holes in its hands. What launches out of those holes could be either rocks or Roggenrola."
},
stage: "Stage2",
attacks: [{
name: {
en: "Mountain Swing"
},
damage: 150,
cost: ["Fighting", "Fighting", "Fighting", "Colorless"],
effect: {
en: "Discard the top 3 cards of your deck."
}
}],
weaknesses: [{
type: "Grass",
value: "+20"
}],
retreat: 4
}
export default card