mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-06-18 10:19:18 +00:00
feat: Add Space-Time Smackdown (#648)
This commit is contained in:
48
data/Pokémon TCG Pocket/Space-Time Smackdown/169.ts
Normal file
48
data/Pokémon TCG Pocket/Space-Time Smackdown/169.ts
Normal file
@ -0,0 +1,48 @@
|
||||
import { Card } from "../../../interfaces"
|
||||
import Set from "../Space-Time Smackdown"
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
|
||||
name: {
|
||||
en: "Rhyperior"
|
||||
},
|
||||
|
||||
illustrator: "Taiga Kayama",
|
||||
rarity: "One Star",
|
||||
category: "Pokemon",
|
||||
hp: 160,
|
||||
types: ["Fighting"],
|
||||
|
||||
evolveFrom: {
|
||||
en: "Rhydon"
|
||||
},
|
||||
|
||||
description: {
|
||||
en: "It can load up to three projectiles per arm into<br />the holes in its hands. What launches out of those<br />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
|
Reference in New Issue
Block a user