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

48 lines
748 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<br />conflict or turmoil. In recent times, they've hardly<br />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