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

53 lines
797 B
TypeScript

import { Card } from "../../../interfaces"
import Set from "../Space-Time Smackdown"
const card: Card = {
set: Set,
name: {
en: "Giratina"
},
illustrator: "AKIRA EGAWA",
rarity: "Three Diamond",
category: "Pokemon",
hp: 120,
types: ["Psychic"],
description: {
en: "This Pokémon is said to live in a world on the reverse side of ours, where common knowledge is 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