2024-08-13 12:05:09 -04:00
|
|
|
// • ▌ ▄ ·. ▄▄▄· ▄▄ • ▪ ▄▄· ▄▄▄▄· ▄▄▄· ▐▄▄▄ ▄▄▄ .
|
|
|
|
|
// ·██ ▐███▪▐█ ▀█ ▐█ ▀ ▪██ ▐█ ▌▪▐█ ▀█▪▐█ ▀█ •█▌ ▐█▐▌·
|
|
|
|
|
// ▐█ ▌▐▌▐█·▄█▀▀█ ▄█ ▀█▄▐█·██ ▄▄▐█▀▀█▄▄█▀▀█ ▐█▐ ▐▌▐▀▀▀
|
|
|
|
|
// ██ ██▌▐█▌▐█ ▪▐▌▐█▄▪▐█▐█▌▐███▌██▄▪▐█▐█ ▪▐▌██▐ █▌▐█▄▄▌
|
|
|
|
|
// ▀▀ █▪▀▀▀ ▀ ▀ ·▀▀▀▀ ▀▀▀·▀▀▀ ·▀▀▀▀ ▀ ▀ ▀▀ █▪ ▀▀▀
|
|
|
|
|
// Magicbane Emulator Project © 2013 - 2024
|
|
|
|
|
// www.magicbane.com
|
|
|
|
|
|
2024-08-17 16:33:20 -04:00
|
|
|
package engine.wpak.data;
|
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-12 09:55:22 -04:00
|
|
|
public float min;
|
|
|
|
|
public float max;
|
2024-08-08 11:21:39 -04:00
|
|
|
public float scale;
|
2024-08-11 17:07:56 -04:00
|
|
|
public mbEnums.CompoundCurveType compoundCurveType;
|
2024-08-11 12:44:54 -04:00
|
|
|
public String arg1; // ItemName "Masterwork" ""
|
|
|
|
|
public String arg2; // ItemName "" "of the Defender"
|
|
|
|
|
|
2024-07-23 20:47:39 -05:00
|
|
|
}
|