forked from tcgdex/cards-database
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path020.ts
More file actions
73 lines (62 loc) · 1.96 KB
/
Copy path020.ts
File metadata and controls
73 lines (62 loc) · 1.96 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
import { Card } from "../../../interfaces"
import Set from "../Phantasmal Flames"
const card: Card = {
set: Set,
name: {
en: "Ceruledge",
fr: "Malvalame",
es: "Ceruledge",
'es-mx': "Ceruledge",
de: "Azugladis",
it: "Ceruledge",
pt: "Ceruledge"
},
rarity: "Uncommon",
category: "Pokemon",
dexId: [937],
hp: 140,
types: ["Fire"],
stage: "Stage1",
attacks: [{
cost: ["Fire"],
name: {
en: "Infernal Slash",
fr: "Tranche Infernale",
es: "Tajo Infernal",
'es-mx': "Cuchillada Infernal",
de: "Infernalischer Schlitzer",
it: "Lacerazione Infernale",
pt: "Talho Infernal"
},
effect: {
en: "Discard 4 Basic {R} Energy cards from your hand. If you can't discard 4 cards in this way, this attack does nothing.",
fr: "Défaussez 4 cartes Énergie {R} de base de votre main. Si vous ne pouvez pas défausser 4 cartes de cette façon, cette attaque ne fait rien.",
es: "Descarta 4 cartas de Energía {R} Básica de tu mano. Si no puedes descartar 4 cartas de esta manera, este ataque no hace nada.",
'es-mx': "Descarta 4 cartas de Energía {R} Básica de tu mano. Si no puedes descartar 4 cartas de esta manera, este ataque no hace nada.",
de: "Lege 4 Basis-{R}-Energiekarten aus deiner Hand auf deinen Ablagestapel. Wenn du auf diese Weise nicht 4 Karten auf deinen Ablagestapel legen kannst, hat diese Attacke keine Auswirkungen.",
it: "Scarta quattro carte Energia base {R} che hai in mano. Se non puoi scartare quattro carte in questo modo, questo attacco non ha effetto.",
pt: "Descarte 4 cartas de Energia {R} Básica da sua mão. Se você não puder descartar 4 cartas desta forma, este ataque não fará nada."
},
damage: 220
}],
retreat: 2,
regulationMark: "I",
illustrator: "Gemi",
variants: [
{
type: "normal",
thirdParty: {
cardmarket: 857595,
tcgplayer: 662141
}
},
{
type: "reverse",
thirdParty: {
cardmarket: 857595,
tcgplayer: 662141
}
}
],
}
export default card