|
|
|
@ -105,7 +105,7 @@ public class PowersParser {
@@ -105,7 +105,7 @@ public class PowersParser {
|
|
|
|
|
PowerEntry power = new PowerEntry(); |
|
|
|
|
power.power_type = mbEnums.PowerType.valueOf(iterator.next()); |
|
|
|
|
power.icon = Integer.parseInt(iterator.next()); |
|
|
|
|
power.powerBase = iterator.next().replaceAll("\"", ""); |
|
|
|
|
power.focusLine = iterator.next().replaceAll("\"", ""); |
|
|
|
|
powerEntry.powers.add(power); |
|
|
|
|
|
|
|
|
|
String nextValue = iterator.next(); |
|
|
|
@ -116,7 +116,7 @@ public class PowersParser {
@@ -116,7 +116,7 @@ public class PowersParser {
|
|
|
|
|
power = new PowerEntry(); |
|
|
|
|
power.power_type = mbEnums.PowerType.valueOf(nextValue); |
|
|
|
|
power.icon = Integer.parseInt(iterator.next()); |
|
|
|
|
power.powerBase = iterator.next().replaceAll("\"", ""); |
|
|
|
|
power.focusLine = iterator.next().replaceAll("\"", ""); |
|
|
|
|
powerEntry.powers.add(power); |
|
|
|
|
powerEntry.target_type = mbEnums.PowerTargetType.valueOf(iterator.next()); |
|
|
|
|
} else |
|
|
|
@ -153,9 +153,9 @@ public class PowersParser {
@@ -153,9 +153,9 @@ public class PowersParser {
|
|
|
|
|
ActionEntry actionEntry; |
|
|
|
|
List<String> arguments; |
|
|
|
|
Matcher argumentMatcher; |
|
|
|
|
if(power.powerBase.equalsIgnoreCase("none")) |
|
|
|
|
if (power.focusLine.equalsIgnoreCase("none")) |
|
|
|
|
continue; |
|
|
|
|
String loggerString = "PARSING: " + power.powerBase + " KEY: " + key; |
|
|
|
|
String loggerString = "PARSING: " + power.focusLine + " KEY: " + key; |
|
|
|
|
try { |
|
|
|
|
switch (key) { |
|
|
|
|
case "ACTION": |
|
|
|
|