More PowerEntry work.

This commit is contained in:
2024-08-19 06:01:52 -04:00
parent 84a124bb52
commit a11797c5e4
2 changed files with 4 additions and 0 deletions
+3
View File
@@ -189,6 +189,9 @@ public class PowersParser {
equipmentPreReq.skill = arguments[1].trim();
equipmentPreReq.level = Integer.parseInt(arguments[2].trim());
break;
case "CANCASTWHILEMOVING":
powerEntry.canCastWhileMoving = Boolean.parseBoolean(lineValues[1].trim());
break;
case "SOUNDS": // Values not parsed
case "APPLYEFFECTOTHER":
case "FIZZLEOTHER":
+1
View File
@@ -46,4 +46,5 @@ public class PowerEntry {
public String slopeType;
public mbEnums.CompoundCurveType curve;
public String category;
public boolean canCastWhileMoving = false;
}