More powerAction work.

This commit is contained in:
2024-08-18 16:01:31 -04:00
parent 3a27f2f4c8
commit a3d3c32b07
2 changed files with 2 additions and 0 deletions
+1
View File
@@ -133,6 +133,7 @@ public class PowersParser {
powerAction.curve = mbEnums.CompoundCurveType.valueOf(arguments[5]); powerAction.curve = mbEnums.CompoundCurveType.valueOf(arguments[5]);
powerAction.stackingPriority = Integer.parseInt(arguments[6]); powerAction.stackingPriority = Integer.parseInt(arguments[6]);
powerAction.categoryToPower = mbEnums.CategoryToPowerType.valueOf(arguments[7]); powerAction.categoryToPower = mbEnums.CategoryToPowerType.valueOf(arguments[7]);
powerEntry.actions.add(powerAction);
break; break;
default: default:
+1
View File
@@ -33,4 +33,5 @@ public class PowerEntry {
public int initAmin; public int initAmin;
public int releaseAnim; public int releaseAnim;
public mbEnums.TargetSelectType targetSelect; public mbEnums.TargetSelectType targetSelect;
public ArrayList<PowerAction> actions = new ArrayList<>();
} }