mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-25 04:12:11 +00:00
77 lines
2.0 KiB
TypeScript
77 lines
2.0 KiB
TypeScript
import { Card } from '../../../interfaces'
|
||
import Set from '../Deoxys'
|
||
|
||
const card: Card = {
|
||
name: {
|
||
en: "Ludicolo",
|
||
fr: "Ludicolo",
|
||
de: "Kappalores"
|
||
},
|
||
illustrator: "Ken Sugimori",
|
||
rarity: "Rare",
|
||
category: "Pokemon",
|
||
|
||
set: Set,
|
||
dexId: [
|
||
272,
|
||
],
|
||
hp: 100,
|
||
types: [
|
||
"Water",
|
||
],
|
||
evolveFrom: {
|
||
en: "Lombre",
|
||
},
|
||
stage: "Stage2",
|
||
|
||
abilities: [
|
||
{
|
||
type: "Poke-POWER",
|
||
name: {
|
||
en: "Happy Dance",
|
||
fr: "Danse de bonheur",
|
||
de: "Happy Dance"
|
||
},
|
||
effect: {
|
||
en: "Once during your turn (before your attack), you may remove 1 damage counter from each of your Pokémon. You can't use more than 1 Happy Dance Poké-Power each turn. This power can't be used if Ludicolo is affected by a Special Condition.",
|
||
fr: "Une seule fois lors de votre tour (avant votre attaque), vous pouvez retirer 1 marqueur de dégât à chacun de vos Pokémon. Vous ne pouvez pas utiliser plus d'1 Poké-Power Danse de bonheur par tour. Ce pouvoir ne peut pas être utilisé si Ludicolo est affecté par un État Spécial.",
|
||
de: "Once during your turn (bafore your attack), you may remove 1 damage counter from each of your Pokémon. You can't use more than 1 Happy Dance Poke-Power each turn. This power can't be used if Ludicolo is affected by a Special Condition."
|
||
},
|
||
},
|
||
],
|
||
attacks: [
|
||
{
|
||
cost: [
|
||
"Colorless",
|
||
"Colorless",
|
||
"Colorless",
|
||
],
|
||
name: {
|
||
en: "Water Punch",
|
||
fr: "Poing d'O",
|
||
de: "Water Punch"
|
||
},
|
||
effect: {
|
||
en: "Flip a coin for each Water Energy attached to Ludicolo. This attack does 40 damage plus 20 more damage for each heads.",
|
||
fr: "Lancez une pièce pour chaque Énergie attachée à Ludicolo. Cette attaque inflige 40 dégâts plus 20 dégâts supplémentaires multipliés par le nombre de faces.",
|
||
de: "Flip a coin for each Energy attached to Ludicolo. This attack does 40 damage plus 20 more damage for each heads."
|
||
},
|
||
damage: "40+",
|
||
|
||
},
|
||
],
|
||
weaknesses: [
|
||
{
|
||
type: "Lightning",
|
||
value: "×2"
|
||
},
|
||
],
|
||
|
||
|
||
|
||
|
||
|
||
}
|
||
|
||
export default card
|