forked from MagicBane/Server
Effect Modifier parsing work.
This commit is contained in:
@@ -7,6 +7,6 @@ public class EffectModifier {
|
|||||||
public int min;
|
public int min;
|
||||||
public int max;
|
public int max;
|
||||||
public float scale;
|
public float scale;
|
||||||
public String slopeType;
|
public mbEnums.CompoundCurveType slopeType;
|
||||||
public String target;
|
public String target;
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -131,6 +131,11 @@ 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 BladeTrails:
|
||||||
|
break;
|
||||||
|
case MeleeDamageModifier:
|
||||||
|
effectModifier.scale = Float.parseFloat(modValues.get(2).trim());
|
||||||
|
effectModifier.slopeType = mbEnums.CompoundCurveType.valueOf(modValues.get(3).trim());
|
||||||
default:
|
default:
|
||||||
Logger.error("Unhandled type: " + effectModifier.type);
|
Logger.error("Unhandled type: " + effectModifier.type);
|
||||||
break;
|
break;
|
||||||
|
|||||||
Reference in New Issue
Block a user