1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-25 12:22:14 +00:00
Florian Bouillon 2e18aa4aac
Sword & Shield Fixes (#84)
* some fixes

Signed-off-by: Avior <github@avior.me>

* Some more changes

Signed-off-by: Avior <github@avior.me>

* u

Signed-off-by: Avior <github@avior.me>

* continuing update

Signed-off-by: Avior <github@avior.me>

* Finished ?

Signed-off-by: Avior <github@avior.me>

* Removed files that were not meant to be

* Remoed even more files
2021-10-26 10:40:03 +02:00

98 lines
1.7 KiB
TypeScript
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

import { Card } from '../../../interfaces'
import Set from '../Chilling Reign'
const card: Card = {
set: Set,
name: {
en: "Ledian",
fr: "Coxyclaque",
es: "Ledian",
it: "Ledian",
pt: "Ledian",
de: "Ledian"
},
illustrator: "Sekio",
rarity: "Uncommon",
category: "Pokemon",
hp: 90,
types: ["Grass"],
evolveFrom: {
en: "Ledyba",
fr: "Coxy",
es: "Ledyba",
it: "Ledyba",
pt: "Ledyba",
de: "Ledyba"
},
attacks: [{
name: {
en: "Rapid Draw",
fr: "Pioche Rapide",
es: "Robo Rápido",
it: "Pescalesto",
pt: "Retirada Rápida",
de: "Schnellzieher"
},
effect: {
en: "Draw 2 cards.",
fr: "Piochez 2 cartes.",
es: "Roba 2 cartas.",
it: "Pesca due carte.",
pt: "Compre 2 cartas.",
de: "Ziehe 2 Karten."
},
damage: 20,
cost: ["Colorless"]
}, {
name: {
en: "Air Slash",
fr: "Lame d'Air",
es: "Tajo Aéreo",
it: "Eterelama",
pt: "Golpe de Ar",
de: "Luftschnitt"
},
effect: {
en: "Discard an Energy from this Pokémon.",
fr: "Défaussez une Énergie de ce Pokémon.",
es: "Descarta 1 Energía de este Pokémon.",
it: "Scarta un'Energia da questo Pokémon.",
pt: "Descarte 1 Energia deste Pokémon.",
de: "Lege 1 Energie von diesem Pokémon auf deinen Ablagestapel."
},
damage: 100,
cost: ["Colorless", "Colorless", "Colorless"]
}],
weaknesses: [{
type: "Fire",
value: "×2"
}],
retreat: 1,
regulationMark: "E",
variants: {
normal: true,
reverse: true,
holo: false,
firstEdition: false
},
stage: "Stage1",
description: {
en: "It flies through the night sky, sprinkling sparkly dust. According to some, if that dust sticks to you, good things will happen to you."
}
}
export default card