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

49 lines
739 B
TypeScript

import { Card } from "../../../interfaces"
import Set from "../Space-Time Smackdown"
const card: Card = {
set: Set,
name: {
en: "Togekiss"
},
illustrator: "kawayoo",
rarity: "Three Diamond",
category: "Pokemon",
hp: 140,
types: ["Psychic"],
evolveFrom: {
en: "Togetic"
},
description: {
en: "These Pokémon are never seen anywhere near conflict or turmoil. In recent times, they've hardly been seen at all."
},
stage: "Stage2",
attacks: [{
name: {
en: "Overdrive Smash"
},
damage: 60,
cost: ["Psychic", "Psychic"],
effect: {
en: "During your next turn, this Pokémon's attack does +60 damage."
}
}],
weaknesses: [{
type: "Metal",
value: "+20"
}],
retreat: 1
}
export default card