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:
GaboGG 2026-07-21 14:07:17 -04:00
parent 0ee31b7266
commit 0d57fead61
3 changed files with 6 additions and 6 deletions

View file

@ -681,8 +681,8 @@ const BUFF_PRIORITY = [
{ icon: 'spark_of_life', spell: 'Spark of Life', minTurns: 1 },
{ icon: 'regen', spell: 'Regen', minTurns: 2 },
{ icon: 'absorb', spell: 'Absorb', minTurns: 2 },
// Shadow Veil excluded from auto-buff rotation — expensive and drains MP
// from Cure. Cast manually when MP is plentiful.
// Shadow Veil: icon key = lowercased spell name without spaces
{ icon: 'shadowveil', spell: 'Shadow Veil', minTurns: 3 },
];
// Known important monster names (bosses, legendaries, ultimates)

View file

@ -681,8 +681,8 @@ const BUFF_PRIORITY = [
{ icon: 'spark_of_life', spell: 'Spark of Life', minTurns: 1 },
{ icon: 'regen', spell: 'Regen', minTurns: 2 },
{ icon: 'absorb', spell: 'Absorb', minTurns: 2 },
// Shadow Veil excluded from auto-buff rotation — expensive and drains MP
// from Cure. Cast manually when MP is plentiful.
// Shadow Veil: icon key = lowercased spell name without spaces
{ icon: 'shadowveil', spell: 'Shadow Veil', minTurns: 3 },
];
// Known important monster names (bosses, legendaries, ultimates)

View file

@ -37,8 +37,8 @@ const BUFF_PRIORITY = [
{ icon: 'spark_of_life', spell: 'Spark of Life', minTurns: 1 },
{ icon: 'regen', spell: 'Regen', minTurns: 2 },
{ icon: 'absorb', spell: 'Absorb', minTurns: 2 },
// Shadow Veil excluded from auto-buff rotation — expensive and drains MP
// from Cure. Cast manually when MP is plentiful.
// Shadow Veil: icon key = lowercased spell name without spaces
{ icon: 'shadowveil', spell: 'Shadow Veil', minTurns: 3 },
];
// Known important monster names (bosses, legendaries, ultimates)