2024-08-06 16:56:41 -04:00
|
|
|
package engine.ConfigParsing.EffectEntry;
|
2024-07-23 20:47:39 -05:00
|
|
|
|
2024-07-23 21:18:12 -05:00
|
|
|
import engine.mbEnums;
|
|
|
|
|
|
2024-08-10 16:29:55 -04:00
|
|
|
public class EffectModifier {
|
2024-07-23 21:18:12 -05:00
|
|
|
public mbEnums.ModType type;
|
2024-08-08 11:21:39 -04:00
|
|
|
public int min;
|
|
|
|
|
public int max;
|
|
|
|
|
public float scale;
|
2024-08-10 18:23:40 -04:00
|
|
|
public mbEnums.CompoundCurveType slopeType;
|
2024-08-08 11:21:39 -04:00
|
|
|
public String target;
|
2024-07-23 20:47:39 -05:00
|
|
|
}
|