forked from tcgdex/cards-database
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path010.ts
More file actions
60 lines (48 loc) · 793 Bytes
/
Copy path010.ts
File metadata and controls
60 lines (48 loc) · 793 Bytes
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
import { Card } from "../../../interfaces"
import Set from "../Chaos Rising"
const card: Card = {
set: Set,
name: {
en: "Ho-Oh"
},
illustrator: "Takumi Wada",
rarity: "Rare",
category: "Pokemon",
dexId: [250],
hp: 130,
types: ["Fire"],
stage: "Basic",
attacks: [{
name: {
en: "Revival Flame"
},
cost: ["Fire"],
effect: {
en: "Put up to 3 Basic Pokémon from your discard pile onto your Bench."
}
}, {
name: {
en: "Bright Wing"
},
cost: ["Fire", "Fire", "Fire"],
damage: 130,
effect: {
en: "Discard an Energy from this Pokémon."
}
}],
weaknesses: [{
type: "Water",
value: "×2"
}],
retreat: 2,
regulationMark: "J",
variants: [
{
type: "normal",
thirdParty: {
tcgplayer: 693500
}
}
],
}
export default card