-
-
Notifications
You must be signed in to change notification settings - Fork 222
Expand file tree
/
Copy path041.ts
More file actions
66 lines (55 loc) · 1.36 KB
/
Copy path041.ts
File metadata and controls
66 lines (55 loc) · 1.36 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
import { Card } from "../../../interfaces"
import Set from "../MEP Black Star Promos"
const card: Card = {
set: Set,
name: {
en: "Chimchar",
fr: "Ouisticram",
de: "Panflam",
it: "Chimchar",
es: "Chimchar",
pt: "Chimchar",
'es-mx': "Chimchar"
},
illustrator: "Saboteri",
rarity: "None",
category: "Pokemon",
hp: 60,
types: ["Fire"],
stage: "Basic",
dexId: [390],
attacks: [{
cost: ["Colorless", "Colorless"],
name: {
en: "Fury Swipes",
fr: "Combo-Griffe",
de: "Kratzfurie",
it: "Sfuriate",
es: "Golpes Furia",
pt: "Golpes de Fúria",
'es-mx': "Garras Furiosas"
},
damage: "20×",
effect: {
en: "Flip 3 coins. This attack does 20 damage for each heads.",
fr: "Lancez 3 pièces. Cette attaque inflige 20 dégâts pour chaque côté face.",
de: "Wirf 3 Münzen. Diese Attacke fügt 20 Schadenspunkte pro Kopf zu.",
it: "Lancia tre volte una moneta. Questo attacco infligge 20 danni ogni volta che esce testa.",
es: "Lanza 3 monedas. Este ataque hace 20 puntos de daño por cada cara.",
pt: "Jogue 3 moedas. Este ataque causa 20 pontos de dano para cada cara.",
'es-mx': "Lanza 3 monedas. Este ataque hace 20 puntos de daño por cada cara."
}
}],
retreat: 1,
regulationMark: "J",
thirdParty: {
cardmarket: 875190,
tcgplayer: 684465
},
variants: [
{
type: "holo"
}
]
}
export default card