Shadow Veil fix: use correct icon key 'shadowveil', minTurns=3
Shadow Veil buff icon is stored as 'shadowveil' (from img src filename, no underscore). Priority list now uses the correct key. minTurns=3 prevents recasting while still active. Also moved to last priority position — only cast when MP is plentiful.
This commit is contained in:
parent
0ee31b7266
commit
0d57fead61
3 changed files with 6 additions and 6 deletions
|
|
@ -681,8 +681,8 @@ const BUFF_PRIORITY = [
|
||||||
{ icon: 'spark_of_life', spell: 'Spark of Life', minTurns: 1 },
|
{ icon: 'spark_of_life', spell: 'Spark of Life', minTurns: 1 },
|
||||||
{ icon: 'regen', spell: 'Regen', minTurns: 2 },
|
{ icon: 'regen', spell: 'Regen', minTurns: 2 },
|
||||||
{ icon: 'absorb', spell: 'Absorb', minTurns: 2 },
|
{ icon: 'absorb', spell: 'Absorb', minTurns: 2 },
|
||||||
// Shadow Veil excluded from auto-buff rotation — expensive and drains MP
|
// Shadow Veil: icon key = lowercased spell name without spaces
|
||||||
// from Cure. Cast manually when MP is plentiful.
|
{ icon: 'shadowveil', spell: 'Shadow Veil', minTurns: 3 },
|
||||||
];
|
];
|
||||||
|
|
||||||
// Known important monster names (bosses, legendaries, ultimates)
|
// Known important monster names (bosses, legendaries, ultimates)
|
||||||
|
|
|
||||||
|
|
@ -681,8 +681,8 @@ const BUFF_PRIORITY = [
|
||||||
{ icon: 'spark_of_life', spell: 'Spark of Life', minTurns: 1 },
|
{ icon: 'spark_of_life', spell: 'Spark of Life', minTurns: 1 },
|
||||||
{ icon: 'regen', spell: 'Regen', minTurns: 2 },
|
{ icon: 'regen', spell: 'Regen', minTurns: 2 },
|
||||||
{ icon: 'absorb', spell: 'Absorb', minTurns: 2 },
|
{ icon: 'absorb', spell: 'Absorb', minTurns: 2 },
|
||||||
// Shadow Veil excluded from auto-buff rotation — expensive and drains MP
|
// Shadow Veil: icon key = lowercased spell name without spaces
|
||||||
// from Cure. Cast manually when MP is plentiful.
|
{ icon: 'shadowveil', spell: 'Shadow Veil', minTurns: 3 },
|
||||||
];
|
];
|
||||||
|
|
||||||
// Known important monster names (bosses, legendaries, ultimates)
|
// Known important monster names (bosses, legendaries, ultimates)
|
||||||
|
|
|
||||||
|
|
@ -37,8 +37,8 @@ const BUFF_PRIORITY = [
|
||||||
{ icon: 'spark_of_life', spell: 'Spark of Life', minTurns: 1 },
|
{ icon: 'spark_of_life', spell: 'Spark of Life', minTurns: 1 },
|
||||||
{ icon: 'regen', spell: 'Regen', minTurns: 2 },
|
{ icon: 'regen', spell: 'Regen', minTurns: 2 },
|
||||||
{ icon: 'absorb', spell: 'Absorb', minTurns: 2 },
|
{ icon: 'absorb', spell: 'Absorb', minTurns: 2 },
|
||||||
// Shadow Veil excluded from auto-buff rotation — expensive and drains MP
|
// Shadow Veil: icon key = lowercased spell name without spaces
|
||||||
// from Cure. Cast manually when MP is plentiful.
|
{ icon: 'shadowveil', spell: 'Shadow Veil', minTurns: 3 },
|
||||||
];
|
];
|
||||||
|
|
||||||
// Known important monster names (bosses, legendaries, ultimates)
|
// Known important monster names (bosses, legendaries, ultimates)
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue