mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-06-18 18:29:19 +00:00
72 lines
2.5 KiB
TypeScript
72 lines
2.5 KiB
TypeScript
import { Card } from "../../../interfaces"
|
|
import Set from "../Space-Time Smackdown"
|
|
|
|
const card: Card = {
|
|
set: Set,
|
|
|
|
name: {
|
|
en: "Luxray",
|
|
fr: "Luxray",
|
|
es: "Luxray",
|
|
it: "Luxray",
|
|
de: "Luxtra",
|
|
'pt-br': "Luxray",
|
|
ko: "렌트라"
|
|
},
|
|
|
|
illustrator: "Hitoshi Ariga",
|
|
rarity: "Three Diamond",
|
|
category: "Pokemon",
|
|
hp: 130,
|
|
types: ["Lightning"],
|
|
|
|
evolveFrom: {
|
|
en: "Luxio"
|
|
},
|
|
|
|
description: {
|
|
en: "It can see clearly through walls to track down its prey and seek its lost young.",
|
|
fr: "Il est capable de voir à travers les murs pour chasser\ndes proies ou retrouver ses petits s'ils s'égarent.",
|
|
es: "Puede ver claramente a través de las paredes para\nbuscar a las presas huidas o a sus crías si se pierden.",
|
|
it: "La sua capacità di vedere attraverso le pareti\nè utile non solo quando incalza la preda in fuga,\nma anche per trovare i suoi cuccioli smarriti.",
|
|
de: "Es kann durch Wände sehen und spürt auf diese\nWeise Beute und verloren gegangene Junge auf.",
|
|
'pt-br': "Pode ver claramente através de paredes para rastrear\nsuas presas e procurar seus jovens perdidos.",
|
|
ko: "벽 저편까지 볼 수 있는 힘으로\n도망친 먹이를 쫓는 것 이외에도\n미아가 된 아이를 찾기도 한다."
|
|
},
|
|
|
|
stage: "Stage2",
|
|
|
|
attacks: [{
|
|
name: {
|
|
en: "Volt Bolt",
|
|
fr: "Flèche Survoltée",
|
|
es: "Flecha Eléctrica",
|
|
it: "Lampovolt",
|
|
de: "Strombolzen",
|
|
'pt-br': "Raio de Energia",
|
|
ko: "볼티지애로"
|
|
},
|
|
|
|
cost: ["Lightning", "Lightning", "Lightning"],
|
|
|
|
effect: {
|
|
en: "Discard all {L} Energy from this Pokémon. This attack does 120 damage to 1 of your opponent's Pokémon.",
|
|
fr: "Défaussez toutes les Énergies {L} de ce Pokémon. Cette attaque inflige 120 dégâts à l'un des Pokémon de votre adversaire.",
|
|
es: "Descarta todas las Energías {L} de este Pokémon. Este ataque hace 120 puntos de daño a 1 de los Pokémon de tu rival.",
|
|
it: "Rimuovi tutte le Energie {L} da questo Pokémon. Questo attacco infligge 120 danni a uno dei Pokémon del tuo avversario.",
|
|
de: "Lege alle {L}-Energien von diesem Pokémon ab. Diese Attacke fügt 1 Pokémon deines Gegners 120 Schadenspunkte zu.",
|
|
'pt-br': "Descarte todas as Energias {L} deste Pokémon. Este ataque causa 120 pontos de dano a 1 dos Pokémon do seu oponente.",
|
|
ko: "이 포켓몬에서 {L}에너지를 모두 트래쉬하고 상대의 포켓몬 1마리에게 120데미지를 준다."
|
|
}
|
|
}],
|
|
|
|
weaknesses: [{
|
|
type: "Fighting",
|
|
value: "+20"
|
|
}],
|
|
|
|
retreat: 0
|
|
}
|
|
|
|
export default card
|