More PowerEntry parsing work.
This commit is contained in:
@@ -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;
|
||||
|
||||
@@ -63,5 +63,6 @@ public class PowerEntry {
|
||||
public int casterPulseParticle;
|
||||
public ArrayList<EffectPreReq> targetEffectPrereqs = new ArrayList<>();
|
||||
public boolean canCastWhileFlying = false;
|
||||
public boolean isProjectile = false;
|
||||
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user