1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-23 19:32:11 +00:00
Florian Bouillon ef2d099e6e
Fixed ! (#22)
Signed-off-by: Avior <florian.bouillon@delta-wings.net>
2021-05-26 14:51:02 +02:00

66 lines
987 B
TypeScript

import { Card } from '../../../interfaces'
import Set from '../Neo Destiny'
const card: Card = {
name: {
en: "Light Togetic",
},
illustrator: "Naoyo Kimura",
rarity: "Rare",
category: "Pokemon",
set: Set,
dexId: [
176,
],
hp: 60,
types: [
"Colorless",
],
evolveFrom: {
en: "Togepi",
},
stage: "Stage1",
abilities: [
{
type: "Poke-POWER",
name: {
en: "Gift",
},
effect: {
en: "When you play Light Togetic from your hand, your opponent may search his or her deck for a Pokémon Tool card, show that card to you, and put it into his or her hand. Either way, you may do the same, and then each player who searched shuffles his or her deck.",
},
},
],
attacks: [
{
cost: [
"Colorless",
"Colorless",
],
name: {
en: "Sweet Kiss",
},
effect: {
en: "Your opponent may draw a card.",
},
damage: 30,
},
],
resistances: [
{
type: "Fighting",
value: "-30"
},
],
}
export default card