PowerAction work started.

This commit is contained in:
2024-08-19 13:13:54 -04:00
parent fab77a0dbb
commit a9a9b6a8ac
4 changed files with 6 additions and 6 deletions
+2 -2
View File
@@ -216,7 +216,7 @@ public class PowersParser {
powerEntry.bladeTrails = Boolean.parseBoolean(lineValues[1].trim()); powerEntry.bladeTrails = Boolean.parseBoolean(lineValues[1].trim());
break; break;
case "EFFECTPREREQ": case "EFFECTPREREQ":
effectDescription effectPreReq = new effectDescription(); EffectDescription effectPreReq = new EffectDescription();
arguments = lineValues[1].trim().split("\\s+"); arguments = lineValues[1].trim().split("\\s+");
effectPreReq.effect_id = arguments[9]; effectPreReq.effect_id = arguments[9];
effectPreReq.level = Integer.parseInt(arguments[1]); effectPreReq.level = Integer.parseInt(arguments[1]);
@@ -260,7 +260,7 @@ public class PowersParser {
powerEntry.casterPulseParticle = Integer.parseInt(lineValues[1].trim()); powerEntry.casterPulseParticle = Integer.parseInt(lineValues[1].trim());
break; break;
case "TARGETEFFECTPREREQS_ORED": case "TARGETEFFECTPREREQS_ORED":
effectDescription preReq = new effectDescription(); EffectDescription preReq = new EffectDescription();
arguments = lineValues[1].trim().split("\\s+"); arguments = lineValues[1].trim().split("\\s+");
preReq.effect_id = arguments[0]; preReq.effect_id = arguments[0];
preReq.level = Integer.parseInt(arguments[1]); preReq.level = Integer.parseInt(arguments[1]);
@@ -8,7 +8,7 @@
package engine.wpak.data; package engine.wpak.data;
public class effectDescription { public class EffectDescription {
public String effect_id; public String effect_id;
public int level; public int level;
public String message; public String message;
+1 -1
View File
@@ -13,6 +13,6 @@ import java.util.ArrayList;
public class PowerActionEntry { public class PowerActionEntry {
public String action_id; public String action_id;
public String action_type; public String action_type;
public ArrayList<effectDescription> effects; public ArrayList<EffectDescription> effects;
} }
+2 -2
View File
@@ -50,7 +50,7 @@ public class PowerEntry {
public String category; public String category;
public boolean canCastWhileMoving = false; public boolean canCastWhileMoving = false;
public boolean bladeTrails = false; public boolean bladeTrails = false;
public ArrayList<effectDescription> effectPreReqs = new ArrayList<>(); public ArrayList<EffectDescription> effectPreReqs = new ArrayList<>();
public EquipmentPreReq equipmentPreReq; public EquipmentPreReq equipmentPreReq;
public EnumSet<mbEnums.MonsterType> monsterRestricts = EnumSet.noneOf(mbEnums.MonsterType.class); public EnumSet<mbEnums.MonsterType> monsterRestricts = EnumSet.noneOf(mbEnums.MonsterType.class);
public EnumSet<mbEnums.MonsterType> monsterPrereqs = EnumSet.noneOf(mbEnums.MonsterType.class); public EnumSet<mbEnums.MonsterType> monsterPrereqs = EnumSet.noneOf(mbEnums.MonsterType.class);
@@ -62,7 +62,7 @@ public class PowerEntry {
public int maxPlayerTargets; public int maxPlayerTargets;
public boolean isAdminPower = false; public boolean isAdminPower = false;
public int casterPulseParticle; public int casterPulseParticle;
public ArrayList<effectDescription> targetEffectPrereqs = new ArrayList<>(); public ArrayList<EffectDescription> targetEffectPrereqs = new ArrayList<>();
public boolean canCastWhileFlying = false; public boolean canCastWhileFlying = false;
public boolean isProjectile = false; public boolean isProjectile = false;
public HashMap<String, Float> conditions = new HashMap<>(); public HashMap<String, Float> conditions = new HashMap<>();