mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-06-16 09:29:19 +00:00
feat: Add Space-Time Smackdown (#648)
This commit is contained in:
44
data/Pokémon TCG Pocket/Space-Time Smackdown/081.ts
Normal file
44
data/Pokémon TCG Pocket/Space-Time Smackdown/081.ts
Normal file
@ -0,0 +1,44 @@
|
||||
import { Card } from "../../../interfaces"
|
||||
import Set from "../Space-Time Smackdown"
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
|
||||
name: {
|
||||
en: "Rhydon"
|
||||
},
|
||||
|
||||
illustrator: "Oswaldo KATO",
|
||||
rarity: "Two Diamond",
|
||||
category: "Pokemon",
|
||||
hp: 110,
|
||||
types: ["Fighting"],
|
||||
|
||||
evolveFrom: {
|
||||
en: "Rhyhorn"
|
||||
},
|
||||
|
||||
description: {
|
||||
en: "It begins walking on its hind legs after evolution.<br />It can punch holes through boulders with its horn."
|
||||
},
|
||||
|
||||
stage: "Stage1",
|
||||
|
||||
attacks: [{
|
||||
name: {
|
||||
en: "Wrack Down"
|
||||
},
|
||||
|
||||
damage: 70,
|
||||
cost: ["Fighting", "Fighting", "Colorless"]
|
||||
}],
|
||||
|
||||
weaknesses: [{
|
||||
type: "Grass",
|
||||
value: "+20"
|
||||
}],
|
||||
|
||||
retreat: 3
|
||||
}
|
||||
|
||||
export default card
|
Reference in New Issue
Block a user