v2.0.0: monk energy icon is now brightened when monastic vigor is active

This commit is contained in:
Evan Debenham
2023-03-03 13:25:20 -05:00
parent 36edb9c87d
commit 972b3e6794

View File

@@ -72,6 +72,8 @@ public class MonkEnergy extends Buff implements ActionIndicator.Action {
public void tintIcon(Image icon) {
if (cooldown > 0){
icon.hardlight(0.33f, 0.33f, 1f);
} else if (abilitiesEmpowered(Dungeon.hero)) {
icon.tint(0.6f, 1f, 0.2f, 0.33f);
} else {
icon.resetColor();
}