1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-23 03:12:10 +00:00

80 lines
1.3 KiB
TypeScript
Raw Permalink Blame History

This file contains ambiguous Unicode characters

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 '../Rising Rivals'
const card: Card = {
name: {
en: "Luxray GL",
fr: "Luxray Niv. 48",
de: "Luxtra GL"
},
illustrator: "Kouki Saitou",
rarity: "Rare Holo",
category: "Pokemon",
set: Set,
dexId: [
405,
],
hp: 80,
types: [
"Lightning",
],
stage: "Basic",
attacks: [
{
cost: [
"Colorless",
"Colorless",
],
name: {
en: "Bite",
fr: "Morsure",
de: "Biss"
},
damage: 30,
},
{
cost: [
"Lightning",
"Colorless",
"Colorless",
],
name: {
en: "Trash Bolt",
fr: "Éclair saccageant",
de: "Abfallblitz"
},
effect: {
en: "Discard an Energy card from your hand. (If you can't discard a card from your hand, this attack does nothing.)",
fr: "Défaussez une carte Énergie de votre main. (Si vous ne pouvez pas défausser de carte de votre main, cette attaque est sans effet).",
de: "Lege 1 Energiekarte von deiner Hand auf deinen Ablagestapel. (Wenn du das nicht machen kannst, hat dieser Angriff keine Auswirkungen.)"
},
damage: 70,
},
],
weaknesses: [
{
type: "Fighting",
value: "×2"
},
],
resistances: [
{
type: "Metal",
value: "-20"
},
],
retreat: 1,
}
export default card