Skip to content

Commit 092455a

Browse files
committed
ucu: simplify confusing fireball triggers
1 parent ebdb93e commit 092455a

File tree

1 file changed

+5
-13
lines changed

1 file changed

+5
-13
lines changed

ui/raidboss/data/triggers/unending_coil_ultimate.js

Lines changed: 5 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -180,8 +180,6 @@
180180
infoText: function(data) {
181181
if (data.fireball1)
182182
return;
183-
if (data.iceDebuff)
184-
return 'fire in (stack!)';
185183
return 'fire in';
186184
},
187185
tts: function(data) {
@@ -197,8 +195,6 @@
197195
infoText: function(data) {
198196
if (data.fireball2)
199197
return;
200-
if (data.fireDebuff)
201-
return 'fire out; you in';
202198
if (!data.iceDebuff)
203199
return 'fire out';
204200
},
@@ -211,7 +207,7 @@
211207
if (data.fireball2)
212208
return;
213209
if (data.iceDebuff)
214-
return 'fire out (be in fire!)';
210+
return 'Fire out: Be in it';
215211
},
216212
tts: function(data) {
217213
if (data.fireball2)
@@ -228,8 +224,6 @@
228224
infoText: function(data) {
229225
if (data.fireball3)
230226
return;
231-
if (data.iceDebuff)
232-
return 'fire in (stack in!)';
233227
if (!data.fireDebuff)
234228
return 'fire in';
235229
},
@@ -239,13 +233,13 @@
239233
// If you were the person with fire tether #2, then you could
240234
// have fire debuff here and need to no stack.
241235
if (data.fireDebuff)
242-
return 'fire in; YOU OUT!';
236+
return 'Fire in: AVOID!';
243237
},
244238
tts: function(data) {
245239
if (data.fireball3)
246240
return;
247241
if (data.fireDebuff)
248-
return 'fire in; you out';
242+
return 'avoid fire in';
249243
return 'fire in'
250244
},
251245
run: function(data) { data.fireball3 = true; },
@@ -256,8 +250,6 @@
256250
infoText: function(data) {
257251
if (data.fireball4)
258252
return;
259-
if (data.iceDebuff)
260-
return 'fire in (stack!)';
261253
if (!data.fireDebuff)
262254
return 'fire in';
263255
},
@@ -266,13 +258,13 @@
266258
return;
267259
// Not sure this is possible.
268260
if (data.fireDebuff)
269-
return 'fire in; YOU OUT!';
261+
return 'Fire in: AVOID!';
270262
},
271263
tts: function(data) {
272264
if (data.fireball4)
273265
return;
274266
if (data.fireDebuff)
275-
return 'fire in; you out';
267+
return 'avoid fire in';
276268
return 'fire in';
277269
},
278270
run: function(data) { data.fireball4 = true; },

0 commit comments

Comments
 (0)