forked from tcgdex/cards-database
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path010.ts
More file actions
89 lines (74 loc) · 1.7 KB
/
Copy path010.ts
File metadata and controls
89 lines (74 loc) · 1.7 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
import { Card } from "../../../interfaces"
import Set from "../Phantasmal Flames"
const card: Card = {
set: Set,
name: {
en: "Lokix",
fr: "Gambex",
es: "Lokix",
'es-mx': "Lokix",
de: "Lextremo",
it: "Lokix",
pt: "Lokix"
},
rarity: "Uncommon",
category: "Pokemon",
dexId: [920],
hp: 120,
types: ["Grass"],
stage: "Stage1",
attacks: [{
cost: ["Grass"],
name: {
en: "Low Kick",
fr: "Balayage",
es: "Patada Baja",
'es-mx': "Patada Baja",
de: "Fußkick",
it: "Colpo Basso",
pt: "Rasteira"
},
damage: 30
}, {
cost: ["Colorless", "Colorless", "Colorless"],
name: {
en: "Jumping Shot",
fr: "Tir Bondissant",
es: "Disparo Saltarín",
'es-mx': "Disparo con Salto",
de: "Springender Schuss",
it: "Saltocolpo",
pt: "Salto com Disparo"
},
effect: {
en: "Shuffle this Pokémon and all attached cards into your deck.",
fr: "Mélangez avec votre deck ce Pokémon et toutes les cartes qui lui sont attachées.",
es: "Pon este Pokémon y todas las cartas unidas a él en tu baraja, y baraja todas las cartas.",
'es-mx': "Baraja este Pokémon y todas las cartas unidas a él en tu mazo.",
de: "Mische dieses Pokémon und alle angelegten Karten in dein Deck.",
it: "Rimischia questo Pokémon e tutte le carte a esso assegnate nel tuo mazzo.",
pt: "Embaralhe este Pokémon e todas as cartas ligadas a ele no seu baralho."
},
damage: 150
}],
retreat: 1,
regulationMark: "I",
illustrator: "Taiga Kasai",
variants: [
{
type: "normal",
thirdParty: {
cardmarket: 857585,
tcgplayer: 662176
}
},
{
type: "reverse",
thirdParty: {
cardmarket: 857585,
tcgplayer: 662176
}
}
],
}
export default card