More poweraction parsing work.

This commit is contained in:
2024-08-20 17:08:59 -04:00
parent 9d89f5d7f4
commit 5b8934c922
2 changed files with 5 additions and 1 deletions
+3
View File
@@ -221,6 +221,9 @@ public class PowerActionParser {
powerActionEntry.levelCap = Integer.parseInt(arguments[0]);
powerActionEntry.levelCurve = mbEnums.CompoundCurveType.valueOf(arguments[1]);
break;
case "CLEARAGGRO":
powerActionEntry.clearAggro = Boolean.parseBoolean(lineValues[1].trim());
break;
case "WEAROFFEFFECTOTHER": // Keys not parsed go here.
case "WEAROFFEFFECTSELF":
break;
+2 -1
View File
@@ -39,6 +39,7 @@ public class PowerActionEntry {
public mbEnums.DamageType damageType;
public boolean applyEffectBlank = false;
public boolean wearOffEffectBlank = false;
public boolean removeAll;
public boolean removeAll = false;
public boolean clearAggro = false;
}