mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-23 03:12:10 +00:00
75 lines
1.0 KiB
TypeScript
75 lines
1.0 KiB
TypeScript
import { Card } from '../../../interfaces'
|
|
import Set from '../Arceus'
|
|
|
|
const card: Card = {
|
|
name: {
|
|
en: "Luxray",
|
|
},
|
|
illustrator: "kawayoo",
|
|
rarity: "Rare",
|
|
category: "Pokemon",
|
|
|
|
set: Set,
|
|
dexId: [
|
|
405,
|
|
],
|
|
hp: 120,
|
|
types: [
|
|
"Lightning",
|
|
],
|
|
evolveFrom: {
|
|
en: "Luxio",
|
|
},
|
|
stage: "Stage2",
|
|
|
|
|
|
attacks: [
|
|
{
|
|
cost: [
|
|
"Lightning",
|
|
],
|
|
name: {
|
|
en: "Flash",
|
|
},
|
|
effect: {
|
|
en: "If the Defending Pokémon tries to attack during your opponent's next turn, your opponent flips a coin. If tails, that attack does nothing.",
|
|
},
|
|
damage: 30,
|
|
|
|
},
|
|
{
|
|
cost: [
|
|
"Lightning",
|
|
"Colorless",
|
|
"Colorless",
|
|
],
|
|
name: {
|
|
en: "Gadget Bolt",
|
|
},
|
|
effect: {
|
|
en: "If Luxray has a Pokémon Tool card attached to it, you may do 100 damage instead of 60 to the Defending Pokémon. If you do, discard that Pokémon Tool card.",
|
|
},
|
|
damage: 60,
|
|
|
|
},
|
|
],
|
|
weaknesses: [
|
|
{
|
|
type: "Fighting",
|
|
value: "+30"
|
|
},
|
|
],
|
|
resistances: [
|
|
{
|
|
type: "Metal",
|
|
value: "-20"
|
|
},
|
|
],
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
export default card
|