forked from MagicBane/Server
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
345 B
15 lines
345 B
8 months ago
|
package engine.wpak;
|
||
9 months ago
|
|
||
9 months ago
|
import engine.mbEnums;
|
||
|
|
||
9 months ago
|
public class EffectModifier {
|
||
9 months ago
|
public mbEnums.ModType type;
|
||
9 months ago
|
public float min;
|
||
|
public float max;
|
||
9 months ago
|
public float scale;
|
||
9 months ago
|
public mbEnums.CompoundCurveType compoundCurveType;
|
||
9 months ago
|
public String arg1; // ItemName "Masterwork" ""
|
||
|
public String arg2; // ItemName "" "of the Defender"
|
||
|
|
||
9 months ago
|
}
|