1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-23 04:19:18 +00:00

Finished Complete Rework of the Database

This commit is contained in:
2021-02-24 16:56:26 +01:00
parent 8f9e953656
commit 9a1ae318f1
26038 changed files with 814437 additions and 1155588 deletions

View File

@ -0,0 +1,75 @@
import { Card } from '../../../interfaces'
import Set from '../Plasma Storm'
const card: Card = {
name: {
en: "Togekiss",
fr: "Togekiss",
},
illustrator: "Shin Nagasawa",
rarity: "Rare",
category: "Pokemon",
set: Set,
dexId: [
468,
],
hp: 140,
types: [
"Colorless",
],
evolveFrom: {
en: "Togetic",
fr: "Togetic",
},
stage: "Stage2",
abilities: [
{
type: "Ability",
name: {
en: "Bright Veil",
fr: "Voile Lumineux",
},
effect: {
en: "As long as this Pokémon is your Active Pokémon, whenever your opponent plays an Item card from his or her hand, prevent all effects of that card done to your Pokémon.",
fr: "Tant que ce Pokémon est votre Pokémon Actif, chaque fois que votre adversaire joue une carte Objet de sa main, évitez tous les effets que la carte Objet peut infliger à vos Pokémon.",
},
},
],
attacks: [
{
cost: [
"Colorless",
],
name: {
en: "Return",
fr: "Retour",
},
effect: {
en: "Draw cards until you have 6 cards in your hand.",
fr: "Piochez des cartes jusqu'à ce que vous ayez 6 cartes en main.",
},
damage: 30,
},
],
weaknesses: [
{
type: "Lightning",
value: "×2"
},
],
resistances: [
{
type: "Fightning",
value: "-20"
},
],
retreat: 1,
}
export default card