forked from MagicBane/Server
MagicBot
3 months ago
2 changed files with 29 additions and 2 deletions
@ -0,0 +1,24 @@ |
|||||||
|
// • ▌ ▄ ·. ▄▄▄· ▄▄ • ▪ ▄▄· ▄▄▄▄· ▄▄▄· ▐▄▄▄ ▄▄▄ .
|
||||||
|
// ·██ ▐███▪▐█ ▀█ ▐█ ▀ ▪██ ▐█ ▌▪▐█ ▀█▪▐█ ▀█ •█▌ ▐█▐▌·
|
||||||
|
// ▐█ ▌▐▌▐█·▄█▀▀█ ▄█ ▀█▄▐█·██ ▄▄▐█▀▀█▄▄█▀▀█ ▐█▐ ▐▌▐▀▀▀
|
||||||
|
// ██ ██▌▐█▌▐█ ▪▐▌▐█▄▪▐█▐█▌▐███▌██▄▪▐█▐█ ▪▐▌██▐ █▌▐█▄▄▌
|
||||||
|
// ▀▀ █▪▀▀▀ ▀ ▀ ·▀▀▀▀ ▀▀▀·▀▀▀ ·▀▀▀▀ ▀ ▀ ▀▀ █▪ ▀▀▀
|
||||||
|
// 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; |
||||||
|
} |
Loading…
Reference in new issue