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.
23 lines
1.1 KiB
23 lines
1.1 KiB
8 months ago
|
// • ▌ ▄ ·. ▄▄▄· ▄▄ • ▪ ▄▄· ▄▄▄▄· ▄▄▄· ▐▄▄▄ ▄▄▄ .
|
||
|
// ·██ ▐███▪▐█ ▀█ ▐█ ▀ ▪██ ▐█ ▌▪▐█ ▀█▪▐█ ▀█ •█▌ ▐█▐▌·
|
||
|
// ▐█ ▌▐▌▐█·▄█▀▀█ ▄█ ▀█▄▐█·██ ▄▄▐█▀▀█▄▄█▀▀█ ▐█▐ ▐▌▐▀▀▀
|
||
|
// ██ ██▌▐█▌▐█ ▪▐▌▐█▄▪▐█▐█▌▐███▌██▄▪▐█▐█ ▪▐▌██▐ █▌▐█▄▄▌
|
||
|
// ▀▀ █▪▀▀▀ ▀ ▀ ·▀▀▀▀ ▀▀▀·▀▀▀ ·▀▀▀▀ ▀ ▀ ▀▀ █▪ ▀▀▀
|
||
|
// Magicbane Emulator Project © 2013 - 2024
|
||
|
// www.magicbane.com
|
||
|
|
||
8 months ago
|
package engine.wpak.data;
|
||
8 months ago
|
|
||
8 months ago
|
import engine.mbEnums;
|
||
|
|
||
7 months ago
|
public class ModifierEntry {
|
||
8 months ago
|
public mbEnums.ModType type;
|
||
8 months ago
|
public float min;
|
||
|
public float max;
|
||
7 months ago
|
public float value;
|
||
8 months ago
|
public mbEnums.CompoundCurveType compoundCurveType;
|
||
8 months ago
|
public String arg1; // ItemName "Masterwork" ""
|
||
|
public String arg2; // ItemName "" "of the Defender"
|
||
|
|
||
8 months ago
|
}
|