1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-05-28 02:40:11 +00:00
Florian Bouillon 6d133f5343
Some checks failed
Build Docker image / build (push) Failing after 42s
feat: Add missing german sets (HGSS & COL) (#451)
2023-12-06 01:20:07 +01:00

100 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 '../HeartGold SoulSilver'
const card: Card = {
name: {
en: "Ledian",
fr: "Coxyclaque",
de: "Ledian"
},
illustrator: "Yuka Morii",
rarity: "Rare",
category: "Pokemon",
set: Set,
dexId: [
166,
],
hp: 80,
types: [
"Grass",
],
evolveFrom: {
en: "Ledyba",
fr: "Coxy",
},
stage: "Stage1",
attacks: [
{
cost: [
"Grass",
],
name: {
en: "Quick Draw",
fr: "Pioche rapide",
de: "Schnellzieher"
},
effect: {
en: "Draw 3 cards.",
fr: "Piochez 3 cartes.",
de: "Ziehe 3 Karten."
},
damage: 10,
},
{
cost: [
"Colorless",
"Colorless",
],
name: {
en: "Swift",
fr: "Météores",
de: "Sternschauer"
},
effect: {
en: "This attacks damage isnt affected by Weakness, Resistance, Poké-Powers, Poké-Bodies, or any other effects on the Defending Pokémon.",
fr: "Les dégâts de cette attaque ne sont pas affectés par la Faiblesse, la Résistance, les Poké-Power et les Poké-Body ou tout autre effet en action sur le Pokémon Défenseur.",
de: "Schwäche, Resistenz, Poké-Power, Poké-Body und alle anderen Effekte auf dem Verteidigenden Pokémon haben keine Auswirkungen auf die Schadenspunkte dieses Angriffs."
},
damage: 40,
},
],
weaknesses: [
{
type: "Fire",
value: "×2"
},
],
resistances: [
{
type: "Fighting",
value: "-20"
},
],
retreat: 0,
description: {
en: "The spot patterns on its back grow larger or smaller depending on the number of stars in the night sky."
},
variants: {
normal: true,
reverse: true,
holo: false,
firstEdition: false
}
}
export default card