Public Repository for the Magicbane Shadowbane Emulator
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.
|
|
|
// • ▌ ▄ ·. ▄▄▄· ▄▄ • ▪ ▄▄· ▄▄▄▄· ▄▄▄· ▐▄▄▄ ▄▄▄ .
|
|
|
|
// ·██ ▐███▪▐█ ▀█ ▐█ ▀ ▪██ ▐█ ▌▪▐█ ▀█▪▐█ ▀█ •█▌ ▐█▐▌·
|
|
|
|
// ▐█ ▌▐▌▐█·▄█▀▀█ ▄█ ▀█▄▐█·██ ▄▄▐█▀▀█▄▄█▀▀█ ▐█▐ ▐▌▐▀▀▀
|
|
|
|
// ██ ██▌▐█▌▐█ ▪▐▌▐█▄▪▐█▐█▌▐███▌██▄▪▐█▐█ ▪▐▌██▐ █▌▐█▄▄▌
|
|
|
|
// ▀▀ █▪▀▀▀ ▀ ▀ ·▀▀▀▀ ▀▀▀·▀▀▀ ·▀▀▀▀ ▀ ▀ ▀▀ █▪ ▀▀▀
|
|
|
|
// Magicbane Emulator Project © 2013 - 2024
|
|
|
|
// www.magicbane.com
|
|
|
|
|
|
|
|
package engine.wpak.data;
|
|
|
|
|
|
|
|
import engine.mbEnums;
|
|
|
|
|
|
|
|
public class StatTransfer {
|
|
|
|
public mbEnums.CostType fromStat;
|
|
|
|
public float fromStatValue;
|
|
|
|
public mbEnums.CompoundCurveType fromCurve;
|
|
|
|
public mbEnums.CostType toStat;
|
|
|
|
public float toStatValue;
|
|
|
|
public mbEnums.CompoundCurveType toCurve;
|
|
|
|
public boolean fromStatBool;
|
|
|
|
public boolean toStatBool;
|
|
|
|
public String transfer_action;
|
|
|
|
public int transfer_ticks;
|
|
|
|
}
|