v2.5.0: added a new buff indicator for wand-based buffs

This commit is contained in:
Evan Debenham
2024-09-03 14:20:36 -04:00
parent a6434c3697
commit df0d1ddeb6
5 changed files with 3 additions and 2 deletions
Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.7 KiB

After

Width:  |  Height:  |  Size: 1.7 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 3.7 KiB

After

Width:  |  Height:  |  Size: 3.7 KiB

@@ -55,7 +55,7 @@ public class ScrollEmpower extends Buff {
@Override @Override
public int icon() { public int icon() {
return BuffIndicator.UPGRADE; return BuffIndicator.WAND;
} }
@Override @Override
@@ -34,7 +34,7 @@ public class WandEmpower extends Buff {
@Override @Override
public int icon() { public int icon() {
return BuffIndicator.UPGRADE; return BuffIndicator.WAND;
} }
@Override @Override
@@ -121,6 +121,7 @@ public class BuffIndicator extends Component {
public static final int DUEL_COMBO = 69; public static final int DUEL_COMBO = 69;
public static final int DAZE = 70; public static final int DAZE = 70;
public static final int DISGUISE = 71; public static final int DISGUISE = 71;
public static final int WAND = 72;
public static final int SIZE_SMALL = 7; public static final int SIZE_SMALL = 7;
public static final int SIZE_LARGE = 16; public static final int SIZE_LARGE = 16;