mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-05-17 22:09:54 +00:00
49 lines
739 B
TypeScript
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
|