What is this?

This is a tool to calculate the optimal target for a Dragoon's "Dragon Sight" ability in Final Fantasy XIV

Does it account for...

Generally, yes. Specifically it accounts for these commonly asked things:

How it works

This is the methodology used by the script for each tether window

  1. Get all of the non-tick, non-pet direct damage inside the 20 second window for each player
  2. Walk through each debuff and tick event.
    • While inside the window, keep a list of every debuff application we see. Remove debuffs that fade
    • For every tick, add it only if there's been an application of that debuff inside the window
    • For Stormblood wildfire, take 25% of the non-pet damage done inside the tether window, if tether was only up for some part of it
  3. Take out the 5% bonus to the player that actually receieved the tether

After doing all of that, the result is an accurate representation of the total amount of damage that would have been buffed by the Left Eye buff, if that player were its target.

Who made this?

I am Platinum Xephera on the Ultros server. I made this because, while the methodology is fairly straightforward, it is incredibly tedious to do by hand with FFLogs. Doing it across many pulls, for every tether usage, is just way too much work compared to the bonus given. Many dragoons didn't bother, I know I didn't, and I thought more would if there was a tool that did the tedious stuff for them. I hope the 135256 analyzed reports have been useful.

If you notice any issues, feel free to @ me in the dragoon channels in the balance, or open issues and pull requests on the GitHub repo for this site.

Changes

I've made some errors in the past with this calculation which have necessitated some corrections. Note that viewing a stored report calculated on an older method than the current one will automatically recalculate and update the results. If you're looking at a report here, it's using the most up to date version.

On March 11, 2018, I fixed an error that caused wildfire damage to not add correctly if it was only partially within the window. That was addressed in commit 0a5f34b.

On March 31, 2018, I added support for ground effect AoEs (Shadow Flare, Doton, and Salted Earth), which were unintentionally being ignored, as well as Radiant Shield damage, which was intentionally overlooked since it was a minor contribution. This was addressed in commit 406c790.

On June 10, 2018, I fixed an error caused by Dragon Sight being used pre-pull. This was addressed in commit f689fcd.

On October 7, 2018, I fixed an error caused when wildfire expired on a target without dealing damage. This was addressed in commit fe731ab

On July 21, 2019, I added Shadowbringers support. Stormblood logs will still use the old logic and should produce the same results as before. Flamethrower damage was also not included in the damage totals previously, as it functions like a ground effect aoe but was not included in the special handling for those; as a result, even in Stormblood logs, machinists may see a few extra thousand damage. In Shadowbringers, wildfire functions conveniently like a normal dot, where all snapshotting takes place when the debuff is placed, and this behavior is accounted for properly now. This is addressed in c2ea0b1.

On January 24, 2022, I added support for Summoner's Slipstream ability (now sourced from the player, rather than garuda-egi) and updated the about page. This is addressed in 2dde983.

On August 25, 2022, I moved this site to its own domain to prepare for heroku removing their free tier, which is where this was previously running.