You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
description: 'An arena where you can prove your worth.',
41
+
image: liangTiao.image,
42
+
icon: liangTiao.icon,
43
+
screenEffect: 'rain',
44
+
music: 'Liangtiao',
45
+
ambience: 'Market',
46
+
position: {
47
+
x: liangTiao.position.x+50,
48
+
y: liangTiao.position.y+350,
49
+
},
50
+
size: 'tiny',
51
+
unlocks: [],
52
+
buildings: [
53
+
{
54
+
kind: 'healer',
55
+
},
56
+
{
57
+
kind: 'custom',
58
+
condition: '1',
59
+
name: 'Arena',
60
+
icon: liangTiao.icon,
61
+
position: 'middle',
62
+
eventSteps: [
63
+
{
64
+
kind: 'text',
65
+
text: 'The arena stands before you, a place where you can prove a worth far beyond your realm.',
66
+
},
67
+
{
68
+
kind: 'choice',
69
+
choices: [
70
+
{
71
+
text: `Attempt a promotion to 'Core Formation'`,
72
+
showCondition: 'realm == qiCondensation',
73
+
children: [
74
+
{
75
+
kind: 'text',
76
+
text: "As you approach the arena, you see a sign that reads 'Promotion to Core Formation'. Entering it, you find yourself face-to-face with a dangerous collection of beasts. If you overcome them, you can earn yourself a promotion.",
77
+
},
78
+
{
79
+
kind: 'combat',
80
+
enemies: getPromotionEnemies('coreFormation'),
81
+
victory: [
82
+
{
83
+
kind: 'text',
84
+
text: 'Elation floods through you as the last of the beasts fall.',
85
+
},
86
+
{
87
+
kind: 'overridePlayerRealm',
88
+
realm: 'coreFormation',
89
+
},
90
+
{
91
+
kind: 'exit',
92
+
},
93
+
],
94
+
defeat: [
95
+
{
96
+
kind: 'text',
97
+
text: 'You were defeated in the arena. You leave with your head hanging low.',
98
+
},
99
+
{
100
+
kind: 'exit',
101
+
},
102
+
],
103
+
},
104
+
],
105
+
},
106
+
{
107
+
text: `Attempt a promotion to 'Qi Condensation'`,
108
+
showCondition: 'realm == meridianOpening',
109
+
children: [
110
+
{
111
+
kind: 'text',
112
+
text: "As you approach the arena, you see a sign that reads 'Promotion to Qi Condensation'. Entering it, you find yourself face-to-face with a dangerous collection of beasts. If you overcome them, you can earn yourself a promotion.",
113
+
},
114
+
{
115
+
kind: 'combat',
116
+
enemies: getPromotionEnemies('qiCondensation'),
117
+
victory: [
118
+
{
119
+
kind: 'text',
120
+
text: 'Elation floods through you as the last of the beasts fall.',
121
+
},
122
+
{
123
+
kind: 'overridePlayerRealm',
124
+
realm: 'qiCondensation',
125
+
},
126
+
{
127
+
kind: 'exit',
128
+
},
129
+
],
130
+
defeat: [
131
+
{
132
+
kind: 'text',
133
+
text: 'You were defeated in the arena. You leave with your head hanging low.',
134
+
},
135
+
{
136
+
kind: 'exit',
137
+
},
138
+
],
139
+
},
140
+
],
141
+
},
142
+
{
143
+
text: `Attempt a promotion to 'Meridian Opening'`,
144
+
showCondition: 'realm == bodyForging',
145
+
children: [
146
+
{
147
+
kind: 'text',
148
+
text: "As you approach the arena, you see a sign that reads 'Promotion to Meridian Opening'. Entering it, you find yourself face-to-face with a dangerous collection of beasts. If you overcome them, you can earn yourself a promotion.",
149
+
},
150
+
{
151
+
kind: 'combat',
152
+
enemies: getPromotionEnemies('meridianOpening'),
153
+
victory: [
154
+
{
155
+
kind: 'text',
156
+
text: 'Elation floods through you as the last of the beasts fall.',
157
+
},
158
+
{
159
+
kind: 'overridePlayerRealm',
160
+
realm: 'meridianOpening',
161
+
},
162
+
{
163
+
kind: 'exit',
164
+
},
165
+
],
166
+
defeat: [
167
+
{
168
+
kind: 'text',
169
+
text: 'You were defeated in the arena. You leave with your head hanging low.',
170
+
},
171
+
{
172
+
kind: 'exit',
173
+
},
174
+
],
175
+
},
176
+
],
177
+
},
178
+
{
179
+
text: `Attempt a promotion to 'Body Forging'`,
180
+
showCondition: 'realm == mundane',
181
+
children: [
182
+
{
183
+
kind: 'text',
184
+
text: "As you approach the arena, you see a sign that reads 'Promotion to Body Forging'. Entering it, you find yourself face-to-face with a dangerous collection of beasts. If you overcome them, you can earn yourself a promotion.",
185
+
},
186
+
{
187
+
kind: 'combat',
188
+
enemies: getPromotionEnemies('bodyForging'),
189
+
victory: [
190
+
{
191
+
kind: 'text',
192
+
text: 'Elation floods through you as the last of the beasts fall.',
193
+
},
194
+
{
195
+
kind: 'overridePlayerRealm',
196
+
realm: 'bodyForging',
197
+
},
198
+
{
199
+
kind: 'exit',
200
+
},
201
+
],
202
+
defeat: [
203
+
{
204
+
kind: 'text',
205
+
text: 'You were defeated in the arena. You leave with your head hanging low.',
0 commit comments