1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-05 13:09:53 +00:00

52 lines
794 B
TypeScript

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