mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-06-16 17:39:18 +00:00
feat: Add Space-Time Smackdown (#648)
This commit is contained in:
52
data/Pokémon TCG Pocket/Space-Time Smackdown/167.ts
Normal file
52
data/Pokémon TCG Pocket/Space-Time Smackdown/167.ts
Normal file
@ -0,0 +1,52 @@
|
||||
import { Card } from "../../../interfaces"
|
||||
import Set from "../Space-Time Smackdown"
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
|
||||
name: {
|
||||
en: "Giratina"
|
||||
},
|
||||
|
||||
illustrator: "Rond",
|
||||
rarity: "One Star",
|
||||
category: "Pokemon",
|
||||
hp: 120,
|
||||
types: ["Psychic"],
|
||||
|
||||
description: {
|
||||
en: "This Pokémon is said to live in a world on the<br />reverse side of ours, where common knowledge is<br />distorted and strange."
|
||||
},
|
||||
|
||||
stage: "Basic",
|
||||
|
||||
abilities: [{
|
||||
type: "Ability",
|
||||
|
||||
name: {
|
||||
en: "Levitate"
|
||||
},
|
||||
|
||||
effect: {
|
||||
en: "If this Pokémon has any Energy attached, it has no Retreat Cost."
|
||||
}
|
||||
}],
|
||||
|
||||
attacks: [{
|
||||
name: {
|
||||
en: "Spooky Shot"
|
||||
},
|
||||
|
||||
damage: 70,
|
||||
cost: ["Psychic", "Psychic", "Colorless"]
|
||||
}],
|
||||
|
||||
weaknesses: [{
|
||||
type: "Darkness",
|
||||
value: "+20"
|
||||
}],
|
||||
|
||||
retreat: 3
|
||||
}
|
||||
|
||||
export default card
|
Reference in New Issue
Block a user