1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-27 05:12:11 +00:00
Florian Bouillon dc0dcff103
Added Sun & Moon for other languages
Signed-off-by: Avior <florian.bouillon@delta-wings.net>
2021-06-30 14:12:31 +02:00

103 lines
3.4 KiB
TypeScript
Raw Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

import { Card } from '../../../interfaces'
import Set from '../Ultra Prism'
const card: Card = {
name: {
en: "Luxray",
fr: "Luxray",
es: "Luxray",
it: "Luxray",
pt: "Luxray",
de: "Luxtra"
},
illustrator: "Akira Komayama",
rarity: "Rare",
category: "Pokemon",
set: Set,
dexId: [
405,
],
hp: 150,
types: [
"Lightning",
],
evolveFrom: {
en: "Luxio",
fr: "Luxio",
},
stage: "Stage2",
abilities: [
{
type: "Ability",
name: {
en: "Intimidating Fang",
fr: "Croc Intimidant",
es: "Colmillo Intimidatorio",
it: "Spaventazanna",
pt: "Presa Intimidadora",
de: "Hammerhauer"
},
effect: {
en: "As long as this Pokémon is your Active Pokémon, your opponents Active Pokémons attacks do 30 less damage (before applying Weakness and Resistance).",
fr: "Tant que ce Pokémon est votre Pokémon Actif, les attaques du Pokémon Actif de votre adversaire infligent 30 dégâts de moins (avant application de la Faiblesse et de la Résistance).",
es: "Mientras este Pokémon sea tu Pokémon Activo, los ataques del Pokémon Activo de tu rival hacen 30 puntos de daño menos (antes de aplicar Debilidad y Resistencia).",
it: "Fintanto che questo Pokémon è il tuo Pokémon attivo, gli attacchi del Pokémon attivo del tuo avversario infliggono 30 danni in meno, prima di aver applicato debolezza e resistenza.",
pt: "Enquanto este Pokémon for o seu Pokémon Ativo, os ataques do Pokémon Ativo do seu oponente causarão 30 pontos de dano a menos (antes de aplicar Fraqueza e Resistência).",
de: "Solang dieses Pokémon dein Aktives Pokémon ist, fügen die Attacken des Aktiven Pokémon deines Gegners 30 Schadenspunkte weniger zu (bevor Schwäche und Resistenz verrechnet werden)."
},
},
],
attacks: [
{
cost: [
"Lightning",
"Lightning",
"Colorless",
],
name: {
en: "Volt Bolt",
fr: "Flèche Survoltée",
es: "Flecha Eléctrica",
it: "Lampovolt",
pt: "Raio de Energia",
de: "Strombolzen"
},
effect: {
en: "Discard all Lightning Energy from this Pokémon. This attack does 150 damage to 1 of your opponents Pokémon. (Dont apply Weakness and Resistance for Benched Pokémon.)",
fr: "Défaussez toute lÉnergie Lightning de ce Pokémon. Cette attaque inflige 150 dégâts à lun des Pokémon de votre adversaire. (Nappliquez ni la Faiblesse ni la Résistance aux Pokémon de Banc.)",
es: "Descarta todas las Energías Lightning de este Pokémon. Este ataque hace 150 puntos de daño a 1 de los Pokémon de tu rival. (No apliques Debilidad y Resistencia a los Pokémon en Banca).",
it: "Scarta tutte le Energie Lightning assegnate a questo Pokémon. Questo attacco infligge 150 danni a uno dei Pokémon del tuo avversario. Ricorda che non puoi applicare debolezza e resistenza ai Pokémon in panchina.",
pt: "Descarte todas as Energias Lightning deste Pokémon. Este ataque causa 150 pontos de dano a 1 dos Pokémon do seu oponente (não aplique Fraqueza e Resistência aos Pokémon no Banco).",
de: "Lege alle Lightning-Energien von diesem Pokémon auf deinen Ablagestapel. Diese Attacke fügt 1 Pokémon deines Gegners 150 Schadenspunkte zu. (Wende Schwäche und Resistenz bei Pokémon auf der Bank nicht an.)"
},
},
],
weaknesses: [
{
type: "Fighting",
value: "×2"
},
],
resistances: [
{
type: "Metal",
value: "-20"
},
],
retreat: 0
}
export default card