1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-07-30 03:29:51 +00:00

Finished Complete Rework of the Database

This commit is contained in:
2021-02-24 16:56:26 +01:00
parent 8f9e953656
commit 9a1ae318f1
26038 changed files with 814437 additions and 1155588 deletions

81
data/XY/Flashfire/34.ts Normal file
View File

@ -0,0 +1,81 @@
import { Card } from '../../../interfaces'
import Set from '../Flashfire'
const card: Card = {
name: {
en: "Luxray",
fr: "Luxray",
},
illustrator: "Hitoshi Ariga",
rarity: "Rare",
category: "Pokemon",
set: Set,
dexId: [
405,
],
hp: 140,
types: [
"Lightning",
],
evolveFrom: {
en: "Luxio",
fr: "Luxio",
},
stage: "Stage2",
attacks: [
{
cost: [
"Lightning",
"Colorless",
],
name: {
en: "Fang Snipe",
fr: "Croc Ciblé",
},
effect: {
en: "Your opponent reveals his or her hand. Discard a Trainer card you find there.",
fr: "Votre adversaire montre sa main. Défaussez une carte Dresseur que vous y trouvez.",
},
damage: 40,
},
{
cost: [
"Lightning",
"Lightning",
"Colorless",
],
name: {
en: "Wild Charge",
fr: "Éclair Fou",
},
effect: {
en: "This Pokémon does 30 damage to itself.",
fr: "Ce Pokémon s'inflige 30 dégâts.",
},
damage: 120,
},
],
weaknesses: [
{
type: "Fightning",
value: "×2"
},
],
resistances: [
{
type: "Metal",
value: "-20"
},
],
retreat: 1,
}
export default card