|
|
|
@ -152,7 +152,11 @@ public class PowersParser {
@@ -152,7 +152,11 @@ public class PowersParser {
|
|
|
|
|
switch (key) { |
|
|
|
|
case "ACTION": |
|
|
|
|
powerAction = new PowerAction(); |
|
|
|
|
arguments = lineValues[1].trim().split(" "); |
|
|
|
|
arguments = lineValues[1].trim().split("\\s+"); |
|
|
|
|
|
|
|
|
|
if (powerEntry.power_id.equals("HNT-050")) |
|
|
|
|
Logger.error("debug"); |
|
|
|
|
|
|
|
|
|
powerAction.effect_id = arguments[0]; |
|
|
|
|
powerAction.minTrains = Integer.parseInt(arguments[1]); |
|
|
|
|
powerAction.maxTrains = Integer.parseInt(arguments[2]); |
|
|
|
@ -167,7 +171,7 @@ public class PowersParser {
@@ -167,7 +171,7 @@ public class PowersParser {
|
|
|
|
|
powerEntry.maxLevel = Integer.parseInt(lineValues[1].trim()); |
|
|
|
|
break; |
|
|
|
|
case "HateValue": |
|
|
|
|
arguments = lineValues[1].trim().split(" "); |
|
|
|
|
arguments = lineValues[1].trim().split("\\s+"); |
|
|
|
|
powerEntry.hateValue = Integer.parseInt(arguments[0]); |
|
|
|
|
|
|
|
|
|
// Not all entries have a curve. Defaults to DefaultFlat;
|
|
|
|
@ -188,7 +192,7 @@ public class PowersParser {
@@ -188,7 +192,7 @@ public class PowersParser {
|
|
|
|
|
powerEntry.category = lineValues[1].trim(); |
|
|
|
|
break; |
|
|
|
|
case "CURVE": |
|
|
|
|
arguments = lineValues[1].trim().split(" "); |
|
|
|
|
arguments = lineValues[1].trim().split("\\s+"); |
|
|
|
|
powerEntry.slopeType = arguments[0]; |
|
|
|
|
powerEntry.curve = mbEnums.CompoundCurveType.valueOf(arguments[1]); |
|
|
|
|
break; |
|
|
|
|