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.
25 lines
1.2 KiB
25 lines
1.2 KiB
10 months ago
|
// • ▌ ▄ ·. ▄▄▄· ▄▄ • ▪ ▄▄· ▄▄▄▄· ▄▄▄· ▐▄▄▄ ▄▄▄ .
|
||
|
// ·██ ▐███▪▐█ ▀█ ▐█ ▀ ▪██ ▐█ ▌▪▐█ ▀█▪▐█ ▀█ •█▌ ▐█▐▌·
|
||
|
// ▐█ ▌▐▌▐█·▄█▀▀█ ▄█ ▀█▄▐█·██ ▄▄▐█▀▀█▄▄█▀▀█ ▐█▐ ▐▌▐▀▀▀
|
||
|
// ██ ██▌▐█▌▐█ ▪▐▌▐█▄▪▐█▐█▌▐███▌██▄▪▐█▐█ ▪▐▌██▐ █▌▐█▄▄▌
|
||
|
// ▀▀ █▪▀▀▀ ▀ ▀ ·▀▀▀▀ ▀▀▀·▀▀▀ ·▀▀▀▀ ▀ ▀ ▀▀ █▪ ▀▀▀
|
||
|
// Magicbane Emulator Project © 2013 - 2024
|
||
|
// www.magicbane.com
|
||
|
|
||
|
package engine.wpak.data;
|
||
|
|
||
|
import engine.mbEnums;
|
||
|
|
||
|
public class StatTransfer {
|
||
|
public mbEnums.CostType fromStat;
|
||
|
public int fromStatValue;
|
||
|
public mbEnums.CompoundCurveType fromCurve;
|
||
|
public mbEnums.CostType toStat;
|
||
|
public int toStatValue;
|
||
|
public mbEnums.CompoundCurveType toCurve;
|
||
|
public boolean fromStatBool;
|
||
|
public boolean toStatBool;
|
||
|
public String transfer_action;
|
||
|
public int effect_duration;
|
||
|
}
|