1
+ import { Treasure } from '../../../../aer-types/types'
2
+
3
+ export const treasures : Treasure [ ] = [
4
+ {
5
+ id : 'AurensRustedAutomaton' ,
6
+ name : "Auren's Rusted Automaton" ,
7
+ expansion : 'TDPromo' ,
8
+ level : 1 ,
9
+ subtype : 'Spell' ,
10
+ effect : `
11
+ <p>
12
+ <b>Cast:</b> Deal 1 damage.<br/>
13
+ If you've defeated a minion from the nemesis
14
+ deck this turn, you may destroy this and gain
15
+ a relic that costs up to 5 <span class="aether">Æ</span> from the supply.
16
+ </p>
17
+ ` ,
18
+ } ,
19
+ {
20
+ id : 'BaylisBurningAura' ,
21
+ name : "Bayli's Burning Aura" ,
22
+ expansion : 'TDPromo' ,
23
+ level : 1 ,
24
+ subtype : 'Spell' ,
25
+ effect : `
26
+ <p>
27
+ <b>Cast:</b> Prep a spell from your hand.
28
+ </p>
29
+ ` ,
30
+ } ,
31
+ {
32
+ id : 'DoriansSpatialDistortion' ,
33
+ name : "Dorian's Spatial Distortion" ,
34
+ expansion : 'TDPromo' ,
35
+ level : 1 ,
36
+ subtype : 'Spell' ,
37
+ effect : `
38
+ <p>
39
+ While prepped, you may Develop a
40
+ card in the supply or Develop zone
41
+ that does not have a Develop cost
42
+ for half of that card's cost rounded up.
43
+ <b>Cast:</b> Deal 1 damage.
44
+ </p>
45
+ ` ,
46
+ } ,
47
+ {
48
+ id : 'KirisPhoenixClaw' ,
49
+ name : "Kiri's Phoenix Claw" ,
50
+ expansion : 'TDPromo' ,
51
+ level : 1 ,
52
+ subtype : 'Spell' ,
53
+ effect : `
54
+ <p>
55
+ <b>Cast:</b> Deal 1 damage.<br/>
56
+ You may discard three gems in hand
57
+ to destroy this and gain a spell from
58
+ the supply that costs 4 <span class="aether">Æ</span> or less.
59
+ </p>
60
+ ` ,
61
+ } ,
62
+ {
63
+ id : 'OnasDestroyedGeode' ,
64
+ name : "Ona's Destroyed Geode" ,
65
+ expansion : 'TDPromo' ,
66
+ level : 1 ,
67
+ subtype : 'Gem' ,
68
+ effect : `
69
+ <p>
70
+ Gain 1 <span class="aether">Æ</span>.<br/>
71
+ The next time you use your ability
72
+ this turn, gain a spell from the
73
+ supply that costs 5 <span class="aether">Æ</span> or less.
74
+ </p>
75
+ ` ,
76
+ } ,
77
+ {
78
+ id : 'Doublefang' ,
79
+ name : 'Doublefang' ,
80
+ expansion : 'TDPromo' ,
81
+ level : 2 ,
82
+ effect : `
83
+ <p>
84
+ At the start of the game, set this
85
+ next to a supply pile whose cards
86
+ have no Develop cost. Those
87
+ cards can be Developed for
88
+ half of their cost rounded up.
89
+ </p>
90
+ ` ,
91
+ } ,
92
+ {
93
+ id : 'LookingGlass' ,
94
+ name : 'Looking Glass' ,
95
+ expansion : 'TDPromo' ,
96
+ level : 2 ,
97
+ effect : `
98
+ <p>
99
+ When a player focuses a breach,
100
+ reveal the top card of the turn
101
+ order deck. You may place the
102
+ revealed card on the bottom.
103
+ </p>
104
+ ` ,
105
+ } ,
106
+ {
107
+ id : 'StormOrb' ,
108
+ name : 'Storm Orb' ,
109
+ expansion : 'TDPromo' ,
110
+ level : 3 ,
111
+ effect : `
112
+ <p>
113
+ At the end of your turn, if you
114
+ have no closed breaches, place
115
+ 5 elemental tokens distributed
116
+ among any number of enemies.
117
+ Then, destroy this treasure.
118
+ </p>
119
+ ` ,
120
+ } ,
121
+ {
122
+ id : 'FleshGauntlets' ,
123
+ name : 'Flesh Gauntlets' ,
124
+ expansion : 'TDPromo' ,
125
+ level : 3 ,
126
+ effect : `
127
+ <p>
128
+ At the start of your turn, gain 2 charges.<br/>
129
+ After you finish resolving
130
+ your ability, suffer 1 damage.<br/>
131
+ At the end of your turn, lose all of your charges.
132
+ </p>
133
+ ` ,
134
+ } ,
135
+ {
136
+ id : 'InfinityBracer' ,
137
+ name : 'Infinity Bracer' ,
138
+ expansion : 'TDPromo' ,
139
+ level : 3 ,
140
+ effect : `
141
+ <p>
142
+ At the start of your first turn of the
143
+ game, you may prep any number
144
+ of spells in hand to your opened
145
+ or closed breaches. Draw a card
146
+ for each spell prepped this way.
147
+ </p>
148
+ ` ,
149
+ } ,
150
+ ]
0 commit comments