|
|
|
@ -128,9 +128,9 @@ public class PowerActionParser {
@@ -128,9 +128,9 @@ public class PowerActionParser {
|
|
|
|
|
statTransfer = new StatTransfer(); |
|
|
|
|
statTransfer.fromStat = mbEnums.CostType.valueOf(headerIterator.next()); |
|
|
|
|
statTransfer.toStat = mbEnums.CostType.valueOf(headerIterator.next()); |
|
|
|
|
statTransfer.fromStatValue = Integer.parseInt(headerIterator.next()); |
|
|
|
|
statTransfer.fromStatValue = Float.parseFloat(headerIterator.next()); |
|
|
|
|
statTransfer.fromCurve = mbEnums.CompoundCurveType.valueOf(headerIterator.next()); |
|
|
|
|
statTransfer.toStatValue = Integer.parseInt(headerIterator.next()); |
|
|
|
|
statTransfer.toStatValue = Float.parseFloat(headerIterator.next()); |
|
|
|
|
statTransfer.toCurve = mbEnums.CompoundCurveType.valueOf(headerIterator.next()); |
|
|
|
|
statTransfer.fromStatBool = Boolean.parseBoolean(headerIterator.next()); |
|
|
|
|
statTransfer.toStatBool = Boolean.parseBoolean(headerIterator.next()); |
|
|
|
|