PowerAction work started.

This commit is contained in:
2024-08-19 15:18:19 -04:00
parent b72c8e8ce3
commit 85ee1faf4a
2 changed files with 2 additions and 4 deletions
+1 -2
View File
@@ -190,8 +190,7 @@ public class PowersParser {
break;
case "CURVE":
arguments = lineValues[1].trim().split("\\s+");
powerEntry.slopeType = arguments[0];
powerEntry.curve = mbEnums.CompoundCurveType.valueOf(arguments[1]);
powerEntry.curves.put(arguments[0], mbEnums.CompoundCurveType.valueOf(arguments[1]));
break;
case "EQPREREQ":
EquipmentPreReq equipmentPreReq = new EquipmentPreReq();
+1 -2
View File
@@ -45,8 +45,7 @@ public class PowerEntry {
public int loopAnimID;
public String grantOverrideVar;
public ArrayList<String> description = new ArrayList<>();
public String slopeType;
public mbEnums.CompoundCurveType curve;
public HashMap<String, mbEnums.CompoundCurveType> curves;
public String category;
public boolean canCastWhileMoving = false;
public boolean bladeTrails = false;