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

91 lines
3.0 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 '../Evolving Skies'
const card: Card = {
set: Set,
variants: {
normal: false,
reverse: true,
holo: true,
firstEdition: false
},
name: {
en: "Ludicolo",
fr: "Ludicolo",
es: "Ludicolo",
it: "Ludicolo",
pt: "Ludicolo",
de: "Kappalores"
},
rarity: "Rare",
category: "Pokemon",
hp: 140,
types: ["Water"],
stage: "Stage2",
illustrator: "sowsow",
abilities: [{
type: "Ability",
name: {
en: "Enthusiastic Dance",
fr: "Danse Enthousiaste",
es: "Danza Entusiasta",
it: "Danza Entusiasmante",
pt: "Enthusiastic Dance",
de: "Ausgelassener Tanz"
},
effect: {
en: "When you play this Pokémon from your hand to evolve 1 of your Pokémon during your turn, you may use this Ability. During this turn, your Basic Pokémon's attacks do 100 more damage to your opponent's Active Pokémon (before applying Weakness and Resistance).",
fr: "Lorsque vous jouez ce Pokémon de votre main pour faire évoluer l'un de vos Pokémon pendant votre tour, vous pouvez utiliser ce talent. Pendant ce tour, les attaques de vos Pokémon de base infligent 100 dégâts supplémentaires au Pokémon Actif de votre adversaire (avant application de la Faiblesse et de la Résistance).",
es: "Cuando juegas este Pokémon de tu mano para hacer evolucionar a 1 de tus Pokémon durante tu turno, puedes usar esta habilidad. Durante este turno, los ataques de tus Pokémon Básicos hacen 100 puntos de daño más al Pokémon Activo de tu rival (antes de aplicar Debilidad y Resistencia).",
it: "Quando giochi questo Pokémon dalla tua mano per far evolvere uno dei tuoi Pokémon durante il tuo turno, puoi usare questa abilità. Durante questo turno, gli attacchi dei tuoi Pokémon Base infliggono 100 danni in più al Pokémon attivo del tuo avversario, prima di aver applicato debolezza e resistenza.",
pt: "When you play this Pokémon from your hand to evolve 1 of your Pokémon during your turn, you may use this Ability. During this turn, your Basic Pokémon's attacks do 100 more damage to your opponent's Active Pokémon (before applying Weakness and Resistance).",
de: "Wenn du dieses Pokémon während deines Zuges aus deiner Hand spielst, um 1 deiner Pokémon zu entwickeln, kannst du diese Fähigkeit einsetzen. Während dieses Zuges fügen die Attacken deiner Basis-Pokémon dem Aktiven Pokémon deines Gegners 100 Schadenspunkte mehr zu (bevor Schwäche und Resistenz verrechnet werden)."
}
}],
attacks: [{
name: {
en: "Wave Splash",
fr: "Grosse Vague",
es: "Chapoteo Ondulante",
it: "Schizzi d'Onda",
pt: "Wave Splash",
de: "Wellenplatscher"
},
damage: 120,
cost: ["Water", "Colorless"]
}],
weaknesses: [{
type: "Lightning",
value: "×2"
}],
retreat: 2,
evolveFrom: {
en: "Lombre",
fr: "Lombre",
es: "Lombre",
it: "Lombre",
pt: "Lombre",
de: "Lombrero"
},
description: {
en: "If it hears festive music, it begins moving in rhythm in order to amplify its power."
},
dexId: [272],
regulationMark: "E"
}
export default card