mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-06-01 12:09:53 +00:00
63 lines
1.4 KiB
TypeScript
63 lines
1.4 KiB
TypeScript
import { Card } from "../../../interfaces"
|
|
import Set from "../Shining Revelry"
|
|
|
|
const card: Card = {
|
|
set: Set,
|
|
|
|
name: {
|
|
en: "Lucario ex",
|
|
fr: "Lucario-ex",
|
|
es: "Lucario ex",
|
|
it: "Lucario-ex",
|
|
de: "Lucario-ex",
|
|
'pt-br': "Lucario ex",
|
|
ko: "루카리오 ex"
|
|
},
|
|
|
|
illustrator: "PLANETA CG Works",
|
|
rarity: "Four Diamond",
|
|
category: "Pokemon",
|
|
hp: 150,
|
|
types: ["Fighting"],
|
|
|
|
evolveFrom: {
|
|
en: "Riolu"
|
|
},
|
|
|
|
stage: "Stage1",
|
|
suffix: "EX",
|
|
|
|
attacks: [{
|
|
name: {
|
|
en: "Aura Sphere",
|
|
fr: "Aurasphère",
|
|
es: "Esfera Aural",
|
|
it: "Sferapulsar",
|
|
de: "Aurasphäre",
|
|
'pt-br': "Aura Esférica",
|
|
ko: "파동탄"
|
|
},
|
|
|
|
damage: 100,
|
|
cost: ["Fighting", "Fighting", "Fighting"],
|
|
|
|
effect: {
|
|
en: "This attack also does 30 damage to 1 of your opponent's Benched Pokémon.",
|
|
fr: "Cette attaque inflige aussi 30 dégâts à un des Pokémon de Banc de votre adversaire.",
|
|
es: "Este ataque también hace 30 puntos de daño a 1 de los Pokémon en Banca de tu rival.",
|
|
it: "Questo attacco infligge anche 30 danni a uno dei Pokémon nella panchina del tuo avversario.",
|
|
de: "Diese Attacke fügt auch 1 Pokémon auf der Bank deines Gegners 30 Schadenspunkte zu.",
|
|
'pt-br': "Este ataque também causa 30 pontos de dano a 1 dos Pokémon no Banco do seu oponente.",
|
|
ko: "상대의 벤치 포켓몬 1마리에게도 30데미지를 준다."
|
|
}
|
|
}],
|
|
|
|
weaknesses: [{
|
|
type: "Psychic",
|
|
value: "+20"
|
|
}],
|
|
|
|
retreat: 2
|
|
}
|
|
|
|
export default card |