1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-25 12:22:14 +00:00
Florian Bouillon dc0dcff103
Added Sun & Moon for other languages
Signed-off-by: Avior <florian.bouillon@delta-wings.net>
2021-06-30 14:12:31 +02:00

93 lines
2.3 KiB
TypeScript
Raw Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

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 '../Celestial Storm'
const card: Card = {
name: {
en: "Ludicolo",
fr: "Ludicolo",
es: "Ludicolo",
it: "Ludicolo",
pt: "Ludicolo",
de: "Kappalores"
},
illustrator: "Atsuko Nishida",
rarity: "Rare",
category: "Pokemon",
set: Set,
dexId: [
272,
],
hp: 140,
types: [
"Water",
],
evolveFrom: {
en: "Lombre",
fr: "Lombre",
},
stage: "Stage2",
abilities: [
{
type: "Ability",
name: {
en: "Swing Dance",
fr: "Danse Qui Balance",
es: "Baila el Swing",
it: "Roteodanza",
pt: "Dançar no Ritmo",
de: "Schwungvoller Tanz"
},
effect: {
en: "Once during your turn (before your attack), you may draw a card.",
fr: "Une seule fois pendant votre tour (avant votre attaque), vous pouvez piocher une carte.",
es: "Una vez durante tu turno (antes de tu ataque), puedes robar 1 carta.",
it: "Una sola volta durante il tuo turno, prima di attaccare, puoi pescare una carta.",
pt: "Uma vez durante a sua vez de jogar (antes de atacar), você pode comprar 1 carta.",
de: "Einmal während deines Zuges (bevor du angreifst) kannst du 1 Karte ziehen."
},
},
],
attacks: [
{
cost: [
"Water",
"Colorless",
"Colorless",
],
name: {
en: "Circular Steps",
fr: "Pas Circulaires",
es: "Pasos Circulares",
it: "Passi Circolari",
pt: "Passos Circulares",
de: "Umkreisende Tanzschritte"
},
effect: {
en: "This attack does 10 more damage for each other Pokémon in play (both yours and your opponents).",
fr: "Cette attaque inflige 10 dégâts supplémentaires pour chacun des autres Pokémon en jeu (les vôtres et ceux de votre adversaire).",
es: "Este ataque hace 10 puntos de daño más por cada uno de los otros Pokémon en juego (tanto tuyos como de tu rival).",
it: "Questo attacco infligge 10 danni in più per ogni altro Pokémon in gioco, sia tuo che del tuo avversario.",
pt: "Este ataque causa 10 pontos de dano a mais para cada um dos outros Pokémon em jogo (seus e do seu oponente).",
de: "Diese Attacke fügt 10 Schadenspunkte mehr mal der Anzahl der anderen Pokémon im Spiel (deiner und der deines Gegners) zu."
},
damage: "70+",
},
],
weaknesses: [
{
type: "Lightning",
value: "×2"
},
],
retreat: 2,
}
export default card