forked from tcgdex/cards-database
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path017.ts
More file actions
94 lines (81 loc) · 1.68 KB
/
Copy path017.ts
File metadata and controls
94 lines (81 loc) · 1.68 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
90
91
92
93
94
import { Card } from "../../../interfaces"
import Set from "../Phantasmal Flames"
const card: Card = {
set: Set,
name: {
en: "Reshiram",
fr: "Reshiram",
es: "Reshiram",
'es-mx': "Reshiram",
de: "Reshiram",
it: "Reshiram",
pt: "Reshiram"
},
rarity: "Rare",
category: "Pokemon",
dexId: [643],
hp: 130,
types: ["Fire"],
stage: "Basic",
attacks: [{
cost: ["Fire"],
name: {
en: "Combustion",
fr: "Fournaise",
es: "Combustión",
'es-mx': "Combustión",
de: "Glühen",
it: "Fuoco Continuo",
pt: "Combustão"
},
damage: 30
}, {
cost: ["Fire", "Fire", "Fire", "Fire"],
name: {
en: "Burning Flare",
fr: "Flamboiement Brûlant",
es: "Fulgor Ígneo",
'es-mx': "Llama Ardiente",
de: "Einäschernde Fackel",
it: "Fiammata Ardente",
pt: "Labareda Abrasadora"
},
effect: {
en: "This Pokémon also does 60 damage to itself.",
fr: "Ce Pokémon s'inflige aussi 60 dégâts.",
es: "Este Pokémon también se hace 60 puntos de daño a sí mismo.",
'es-mx': "Este Pokémon también se hace 60 puntos de daño a sí mismo.",
de: "Dieses Pokémon fügt auch sich selbst 60 Schadenspunkte zu.",
it: "Questo Pokémon infligge anche 60 danni a se stesso.",
pt: "Este Pokémon também causa 60 pontos de dano a si mesmo."
},
damage: 240
}],
retreat: 2,
regulationMark: "I",
illustrator: "AKIRA EGAWA",
variants: [
{
type: "holo",
thirdParty: {
cardmarket: 857592,
tcgplayer: 662219
}
},
{
type: "reverse",
thirdParty: {
cardmarket: 857592,
tcgplayer: 662219
}
},
{
type: "holo",
stamp: ["set-logo"],
thirdParty: {
cardmarket: 858504
}
}
],
}
export default card