mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-23 03:12:10 +00:00
91 lines
1.7 KiB
TypeScript
91 lines
1.7 KiB
TypeScript
import { Card } from '../../../interfaces'
|
||
import Set from '../Crystal Guardians'
|
||
|
||
const card: Card = {
|
||
name: {
|
||
en: "Ludicolo δ",
|
||
fr: "Ludicolo δ",
|
||
de: "Kappalores"
|
||
},
|
||
illustrator: "Masakazu Fukuda",
|
||
rarity: "Rare",
|
||
category: "Pokemon",
|
||
|
||
set: Set,
|
||
dexId: [
|
||
272,
|
||
],
|
||
hp: 100,
|
||
types: [
|
||
"Fire",
|
||
],
|
||
evolveFrom: {
|
||
en: "Lombre",
|
||
},
|
||
stage: "Stage2",
|
||
|
||
abilities: [
|
||
{
|
||
type: "Poke-BODY",
|
||
name: {
|
||
en: "Overzealous",
|
||
fr: "Excès de zèle",
|
||
de: "Übereifrig"
|
||
},
|
||
effect: {
|
||
en: "If your opponent has any Pokémon-ex in play, each of Ludicolo's attacks does 30 more damage to the Defending Pokémon.",
|
||
fr: "Si votre adversaire possède des Pokémon-ex en jeu, chacune des attaques de Ludicolo inflige 30 dégâts supplémentaires au Pokémon Défenseur.",
|
||
de: "Wenn dein Gegner mindestens 1 Pokémon-ex im Spiel hat, fügt jeder Angriff von Kappalores dem Verteidigenden Pokémon 30 zusätzliche Schadenspunkte zu."
|
||
},
|
||
},
|
||
],
|
||
attacks: [
|
||
{
|
||
cost: [
|
||
"Fire",
|
||
"Colorless",
|
||
],
|
||
name: {
|
||
en: "Knock Off",
|
||
fr: "Sabotage",
|
||
de: "Abschlag"
|
||
},
|
||
effect: {
|
||
en: "Choose 1 card from your opponent's hand without looking and discard it.",
|
||
fr: "Choisissez sans regarder 1 carte de la main de votre adversaire et défaussez-la.",
|
||
de: "Wähle 1 Karte von der Hand deines Gegners (ohne sie vorher anzusehen). Dein Gegner legt diese Karte auf seinen Ablagestapel."
|
||
},
|
||
damage: 30,
|
||
|
||
},
|
||
{
|
||
cost: [
|
||
"Fire",
|
||
"Colorless",
|
||
"Colorless",
|
||
],
|
||
name: {
|
||
en: "Fire Punch",
|
||
fr: "Poing de feu",
|
||
de: "Feuerschlag"
|
||
},
|
||
|
||
damage: 60,
|
||
|
||
},
|
||
],
|
||
weaknesses: [
|
||
{
|
||
type: "Lightning",
|
||
value: "×2"
|
||
},
|
||
],
|
||
|
||
|
||
|
||
|
||
|
||
}
|
||
|
||
export default card
|