mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-30 23:02:09 +00:00
89 lines
2.5 KiB
TypeScript
89 lines
2.5 KiB
TypeScript
import { Card } from "../../../interfaces"
|
||
import Set from "../Brilliant Stars"
|
||
|
||
const card: Card = {
|
||
dexId: [405],
|
||
set: Set,
|
||
|
||
name: {
|
||
en: "Luxray",
|
||
fr: "Luxray",
|
||
es: "Luxray",
|
||
it: "Luxray",
|
||
pt: "Luxray",
|
||
de: "Luxtra"
|
||
},
|
||
|
||
rarity: "Rare",
|
||
category: "Pokemon",
|
||
hp: 150,
|
||
types: ["Lightning"],
|
||
|
||
evolveFrom: {
|
||
en: "Luxio",
|
||
fr: "Luxio",
|
||
es: "Luxio",
|
||
it: "Luxio",
|
||
pt: "Luxio",
|
||
de: "Luxio"
|
||
},
|
||
|
||
stage: "Stage2",
|
||
|
||
attacks: [{
|
||
cost: ["Lightning"],
|
||
|
||
name: {
|
||
en: "Energy Crush",
|
||
fr: "Écras'Énergie",
|
||
es: "Comprimir Energía",
|
||
it: "Sgretolenergia",
|
||
pt: "Esmagamento de Energia",
|
||
de: "Zermalmende Energie"
|
||
},
|
||
|
||
effect: {
|
||
en: "This attack does 50 damage for each Energy attached to all of your opponent's Pokémon.",
|
||
fr: "Cette attaque inflige 50 dégâts pour chaque Énergie attachée à tous les Pokémon de votre adversaire.",
|
||
es: "Este ataque hace 50 puntos de daño por cada Energía unida a todos los Pokémon de tu rival.",
|
||
it: "Questo attacco infligge 50 danni per ogni Energia assegnata ai Pokémon del tuo avversario.",
|
||
pt: "Este ataque causa 50 pontos de dano para cada Energia ligada a todos os Pokémon do seu oponente.",
|
||
de: "Diese Attacke fügt für jede an alle Pokémon deines Gegners angelegte Energie 50 Schadenspunkte zu."
|
||
},
|
||
|
||
damage: "50×"
|
||
}, {
|
||
cost: ["Lightning"],
|
||
|
||
name: {
|
||
en: "Flash Impact",
|
||
fr: "Impact-Flash",
|
||
es: "Impacto Resplandor",
|
||
it: "Impattoflash",
|
||
pt: "Impacto Lampejante",
|
||
de: "Blitzeinschlag"
|
||
},
|
||
|
||
effect: {
|
||
en: "This attack also does 30 damage to 1 of your Benched Pokémon. (Don't apply Weakness and Resistance for Benched Pokémon.)",
|
||
fr: "Cette attaque inflige aussi 30 dégâts à l'un de vos Pokémon de Banc. (N'appliquez ni la Faiblesse ni la Résistance aux Pokémon de Banc.)",
|
||
es: "Este ataque también hace 30 puntos de daño a 1 de tus Pokémon en Banca. (No apliques Debilidad y Resistencia a los Pokémon en Banca).",
|
||
it: "Questo attacco infligge anche 30 danni a uno dei tuoi Pokémon in panchina. Non applicare debolezza e resistenza ai Pokémon in panchina.",
|
||
pt: "Este ataque também causa 30 pontos de dano a 1 dos seus Pokémon no Banco (não aplique Fraqueza e Resistência aos Pokémon no Banco).",
|
||
de: "Diese Attacke fügt auch 1 Pokémon auf deiner Bank 30 Schadenspunkte zu. (Wende Schwäche und Resistenz bei Pokémon auf der Bank nicht an.)"
|
||
},
|
||
|
||
damage: 110
|
||
}],
|
||
|
||
retreat: 1,
|
||
regulationMark: "F",
|
||
variants: {
|
||
normal: true,
|
||
reverse: true,
|
||
holo: false,
|
||
firstEdition: false
|
||
}
|
||
}
|
||
|
||
export default card |