Skip to content

Commit

Permalink
ucu: simplify confusing fireball triggers
Browse files Browse the repository at this point in the history
  • Loading branch information
quisquous committed Nov 8, 2017
1 parent ebdb93e commit 092455a
Showing 1 changed file with 5 additions and 13 deletions.
18 changes: 5 additions & 13 deletions ui/raidboss/data/triggers/unending_coil_ultimate.js
Original file line number Diff line number Diff line change
Expand Up @@ -180,8 +180,6 @@
infoText: function(data) {
if (data.fireball1)
return;
if (data.iceDebuff)
return 'fire in (stack!)';
return 'fire in';
},
tts: function(data) {
Expand All @@ -197,8 +195,6 @@
infoText: function(data) {
if (data.fireball2)
return;
if (data.fireDebuff)
return 'fire out; you in';
if (!data.iceDebuff)
return 'fire out';
},
Expand All @@ -211,7 +207,7 @@
if (data.fireball2)
return;
if (data.iceDebuff)
return 'fire out (be in fire!)';
return 'Fire out: Be in it';
},
tts: function(data) {
if (data.fireball2)
Expand All @@ -228,8 +224,6 @@
infoText: function(data) {
if (data.fireball3)
return;
if (data.iceDebuff)
return 'fire in (stack in!)';
if (!data.fireDebuff)
return 'fire in';
},
Expand All @@ -239,13 +233,13 @@
// If you were the person with fire tether #2, then you could
// have fire debuff here and need to no stack.
if (data.fireDebuff)
return 'fire in; YOU OUT!';
return 'Fire in: AVOID!';
},
tts: function(data) {
if (data.fireball3)
return;
if (data.fireDebuff)
return 'fire in; you out';
return 'avoid fire in';
return 'fire in'
},
run: function(data) { data.fireball3 = true; },
Expand All @@ -256,8 +250,6 @@
infoText: function(data) {
if (data.fireball4)
return;
if (data.iceDebuff)
return 'fire in (stack!)';
if (!data.fireDebuff)
return 'fire in';
},
Expand All @@ -266,13 +258,13 @@
return;
// Not sure this is possible.
if (data.fireDebuff)
return 'fire in; YOU OUT!';
return 'Fire in: AVOID!';
},
tts: function(data) {
if (data.fireball4)
return;
if (data.fireDebuff)
return 'fire in; you out';
return 'avoid fire in';
return 'fire in';
},
run: function(data) { data.fireball4 = true; },
Expand Down

0 comments on commit 092455a

Please sign in to comment.