-
-
Notifications
You must be signed in to change notification settings - Fork 222
Expand file tree
/
Copy path022.ts
More file actions
77 lines (65 loc) · 1.75 KB
/
Copy path022.ts
File metadata and controls
77 lines (65 loc) · 1.75 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
import { Card } from "../../../interfaces"
import Set from "../MEP Black Star Promos"
const card: Card = {
set: Set,
name: {
en: "Charcadet",
fr: "Charbambin",
de: "Knarbon",
it: "Charcadet",
es: "Charcadet",
pt: "Charcadet"
},
illustrator: "Teeziro",
rarity: "None",
category: "Pokemon",
hp: 70,
types: ["Fire"],
stage: "Basic",
dexId: [935],
attacks: [{
cost: ["Fire"],
name: {
en: "Gather Strength",
fr: "Pouvoir Collecté",
de: "Kraftsammler",
it: "Radunaforze",
es: "Reunir Fuerzas",
pt: "Reunir Força"
},
effect: {
en: "Search your deck for up to 2 Basic Energy cards, reveal them, and put them into your hand. Then, shuffle your deck.",
fr: "Cherchez dans votre deck jusqu'à 2 cartes Énergie de base, montrez-les, puis ajoutez-les à votre main. Mélangez ensuite votre deck.",
de: "Durchsuche dein Deck nach bis zu 2 Basis-Energiekarten, zeige sie deinem Gegner und nimm sie auf deine Hand. Mische anschließend dein Deck.",
it: "Cerca nel tuo mazzo fino a due carte Energia base, mostrale e aggiungile alle carte che hai in mano. Poi rimischia il tuo mazzo.",
es: "Busca en tu baraja hasta 2 cartas de Energía Básica, enséñalas y ponlas en tu mano. Después, baraja las cartas de tu baraja.",
pt: "Procure por até 2 cartas de Energia Básica no seu baralho, revele-as e coloque-as na sua mão. Em seguida, embaralhe o seu baralho."
}
}, {
cost: ["Fire"],
name: {
en: "Chop",
fr: "Coup Tranchant",
de: "Hacker",
it: "Ceffone",
es: "Cortar",
pt: "Cortar"
},
damage: 10
}],
retreat: 2,
regulationMark: "I",
thirdParty: {
tcgplayer: 666538
},
variants: [
{
type: "holo"
},
{
type: "holo",
stamp: ["pokemon-center"]
}
]
}
export default card