More PowerEntry work.
This commit is contained in:
@@ -162,7 +162,11 @@ public class PowersParser {
|
||||
case "HateValue":
|
||||
arguments = lineValues[1].trim().split(" ");
|
||||
powerEntry.hateValue = Integer.parseInt(arguments[0]);
|
||||
powerEntry.hateCurve = mbEnums.CompoundCurveType.valueOf(arguments[1]);
|
||||
|
||||
// Not all entries have a curve. Defaults to DefaultFlat;
|
||||
|
||||
if (arguments.length > 1)
|
||||
powerEntry.hateCurve = mbEnums.CompoundCurveType.valueOf(arguments[1]);
|
||||
break;
|
||||
case "LOOPANIMID":
|
||||
powerEntry.loopAnimID = Integer.parseInt(lineValues[1].trim());
|
||||
@@ -196,6 +200,9 @@ public class PowersParser {
|
||||
powerEntry.bladeTrails = Boolean.parseBoolean(lineValues[1].trim());
|
||||
break;
|
||||
case "SOUNDS": // Values not parsed
|
||||
case "APPLYDAMAGECASTER":
|
||||
case "APPLYDAMAGEOTHER":
|
||||
case "APPLYDAMAGETARGET":
|
||||
case "APPLYEFFECTSELF":
|
||||
case "APPLYEFFECTOTHER":
|
||||
case "FIZZLEOTHER":
|
||||
|
||||
@@ -39,7 +39,7 @@ public class PowerEntry {
|
||||
public ArrayList<PowerAction> actions = new ArrayList<>();
|
||||
public int maxLevel;
|
||||
public int hateValue;
|
||||
public mbEnums.CompoundCurveType hateCurve;
|
||||
public mbEnums.CompoundCurveType hateCurve = mbEnums.CompoundCurveType.DefaultFlat;
|
||||
public int loopAnimID;
|
||||
public String grantOverrideVar;
|
||||
public ArrayList<String> description = new ArrayList<>();
|
||||
|
||||
Reference in New Issue
Block a user