zalcano: add damage counter

Adds a panel which tracks damage dealt to Zalcano's health and shield
to make it easier prioritising what to focus on at a low level.

Co-authored-by: Adam <Adam@sigterm.info>
This commit is contained in:
dekvall
2020-11-03 21:12:03 +01:00
committed by Adam
parent 70a2e41db0
commit e6169ab79b
3 changed files with 178 additions and 2 deletions

View File

@@ -185,7 +185,14 @@ public enum VarPlayer
/**
* 0 = 2 buttons, 1 = 1 button
*/
MOUSE_BUTTONS(170);
MOUSE_BUTTONS(170),
/**
* Zalcano's form
* -1 : Player is outside or Zalcano is dead i.e. there's no healthbar to show
* Anything else : The {@link NpcID} of the current form
*/
ZALCANO_FORM(1683);
private final int id;
}