More PowerEntry parsing work.

This commit is contained in:
2024-08-19 08:29:07 -04:00
parent 187ef18ac2
commit 41a9c19001
2 changed files with 4 additions and 0 deletions
+3
View File
@@ -254,6 +254,9 @@ public class PowersParser {
case "ISADMINPOWER":
powerEntry.isAdminPower = Boolean.parseBoolean(lineValues[1].trim());
break;
case "ISPROJECTILE":
powerEntry.isProjectile = Boolean.parseBoolean(lineValues[1].trim());
break;
case "CASTERSPULSEPARTICLE":
powerEntry.casterPulseParticle = Integer.parseInt(lineValues[1].trim());
break;
+1
View File
@@ -63,5 +63,6 @@ public class PowerEntry {
public int casterPulseParticle;
public ArrayList<EffectPreReq> targetEffectPrereqs = new ArrayList<>();
public boolean canCastWhileFlying = false;
public boolean isProjectile = false;
}