More effectmod parser work.
This commit is contained in:
@@ -132,6 +132,12 @@ public class EffectsParser {
|
|||||||
effectModifier.min = Integer.parseInt(modValues.get(1).trim());
|
effectModifier.min = Integer.parseInt(modValues.get(1).trim());
|
||||||
effectModifier.max = Integer.parseInt(modValues.get(2).trim());
|
effectModifier.max = Integer.parseInt(modValues.get(2).trim());
|
||||||
break;
|
break;
|
||||||
|
case Health:
|
||||||
|
effectModifier.min = Integer.parseInt(modValues.get(1).trim());
|
||||||
|
effectModifier.max = Integer.parseInt(modValues.get(2).trim());
|
||||||
|
effectModifier.scale = Float.parseFloat(modValues.get(3).trim());
|
||||||
|
effectModifier.compoundCurveType = mbEnums.CompoundCurveType.valueOf(modValues.get(5).trim());
|
||||||
|
effectModifier.arg1 = modValues.get(6).trim();
|
||||||
case Attr:
|
case Attr:
|
||||||
case Resistance:
|
case Resistance:
|
||||||
case Skill:
|
case Skill:
|
||||||
|
|||||||
Reference in New Issue
Block a user