forked from tcgdex/cards-database
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path006.ts
More file actions
87 lines (74 loc) · 1.98 KB
/
Copy path006.ts
File metadata and controls
87 lines (74 loc) · 1.98 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
import { Card } from "../../../interfaces"
import Set from "../Chaos Rising"
const card: Card = {
set: Set,
variants: [
{
type: "normal",
thirdParty: {
cardmarket: 886398,
tcgplayer: 693537
}
},
],
name: {
en: "Quilladin",
fr: "Boguérisse",
es: "Quilladin",
'es-mx': "Quilladin",
de: "Igastarnish",
it: "Quilladin",
pt: "Quilladin"
},
illustrator: "Hideki Ishikawa",
rarity: "Common",
category: "Pokemon",
dexId: [651],
hp: 100,
types: ["Grass"],
evolveFrom: {
en: "Chespin"
},
stage: "Stage1",
attacks: [{
name: {
en: "Leafy Charge",
fr: "Charge Arborée",
es: "Recarga Hojarasca",
'es-mx': "Carga Frondosa",
de: "Blätterladung",
it: "Fogliacarica",
pt: "Carga Folhosa"
},
cost: ["Grass"],
damage: 20,
effect: {
en: "Search your deck for a Basic {G} Energy card and attach it to this Pokémon. Then, shuffle your deck.",
fr: "Cherchez dans votre deck une carte Énergie {G} de base, puis attachez-la à ce Pokémon. Mélangez ensuite votre deck.",
es: "Busca en tu baraja 1 carta de Energía {G} Básica y únela a este Pokémon. Después, baraja las cartas de tu baraja.",
'es-mx': "Busca en tu mazo 1 carta de Energía {G} Básica y únela a este Pokémon. Después, baraja tu mazo.",
de: "Durchsuche dein Deck nach 1 Basis-{G}-Energiekarte und lege sie an dieses Pokémon an. Mische anschließend dein Deck.",
it: "Cerca nel tuo mazzo una carta Energia base {G} e assegnala a questo Pokémon. Poi rimischia il tuo mazzo.",
pt: "Procure por uma carta de Energia {G} Básica no seu baralho e ligue-a a este Pokémon. Em seguida, embaralhe o seu baralho."
}
}, {
name: {
en: "Vine Whip",
fr: "Fouet Lianes",
es: "Látigo Cepa",
'es-mx': "Látigo Cepa",
de: "Rankenhieb",
it: "Frustata",
pt: "Chicote de Vinha"
},
cost: ["Grass", "Grass", "Colorless"],
damage: 80
}],
weaknesses: [{
type: "Fire",
value: "×2"
}],
retreat: 3,
regulationMark: "J",
}
export default card