1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-25 12:22:14 +00:00
Florian Bouillon ef2d099e6e
Fixed ! (#22)
Signed-off-by: Avior <florian.bouillon@delta-wings.net>
2021-05-26 14:51:02 +02:00

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