2024-08-13 12:06:24 -04:00
|
|
|
// • ▌ ▄ ·. ▄▄▄· ▄▄ • ▪ ▄▄· ▄▄▄▄· ▄▄▄· ▐▄▄▄ ▄▄▄ .
|
|
|
|
|
// ·██ ▐███▪▐█ ▀█ ▐█ ▀ ▪██ ▐█ ▌▪▐█ ▀█▪▐█ ▀█ •█▌ ▐█▐▌·
|
|
|
|
|
// ▐█ ▌▐▌▐█·▄█▀▀█ ▄█ ▀█▄▐█·██ ▄▄▐█▀▀█▄▄█▀▀█ ▐█▐ ▐▌▐▀▀▀
|
|
|
|
|
// ██ ██▌▐█▌▐█ ▪▐▌▐█▄▪▐█▐█▌▐███▌██▄▪▐█▐█ ▪▐▌██▐ █▌▐█▄▄▌
|
|
|
|
|
// ▀▀ █▪▀▀▀ ▀ ▀ ·▀▀▀▀ ▀▀▀·▀▀▀ ·▀▀▀▀ ▀ ▀ ▀▀ █▪ ▀▀▀
|
|
|
|
|
// Magicbane Emulator Project © 2013 - 2024
|
|
|
|
|
// www.magicbane.com
|
|
|
|
|
|
|
|
|
|
package engine.wpak;
|
|
|
|
|
|
2024-08-17 15:58:48 -04:00
|
|
|
import engine.mbEnums;
|
|
|
|
|
|
2024-08-17 14:51:18 -04:00
|
|
|
import java.util.ArrayList;
|
2024-08-13 12:06:24 -04:00
|
|
|
|
2024-08-17 14:51:18 -04:00
|
|
|
public class PowerEntry {
|
2024-08-14 16:36:07 -04:00
|
|
|
public String power_id;
|
2024-08-17 15:13:32 -04:00
|
|
|
public String power;
|
2024-08-17 14:51:18 -04:00
|
|
|
public ArrayList<PowerData> powers = new ArrayList<>();
|
2024-08-17 16:07:47 -04:00
|
|
|
public mbEnums.PowerTargetType target_type;
|
2024-08-14 17:00:19 -04:00
|
|
|
public int range;
|
2024-08-17 16:16:00 -04:00
|
|
|
public mbEnums.AreaType areaType;
|
2024-08-16 12:36:54 -04:00
|
|
|
public int areaRange;
|
2024-08-17 16:20:21 -04:00
|
|
|
public mbEnums.ExcludeType excludeType;
|
2024-08-17 15:58:48 -04:00
|
|
|
public mbEnums.CostType costType;
|
2024-08-15 16:01:50 -04:00
|
|
|
public float cost;
|
2024-08-17 15:23:12 -04:00
|
|
|
public float difficulty;
|
|
|
|
|
public float precision;
|
2024-08-16 12:36:54 -04:00
|
|
|
public float init_time;
|
|
|
|
|
public float release_time;
|
2024-08-14 17:29:13 -04:00
|
|
|
public float recycle_time;
|
2024-08-16 12:36:54 -04:00
|
|
|
public int hitRollYN;
|
2024-08-17 16:24:25 -04:00
|
|
|
public mbEnums.CastingModeType castingMode;
|
2024-08-16 12:36:54 -04:00
|
|
|
public int initAmin;
|
|
|
|
|
public int releaseAnim;
|
2024-08-17 16:24:25 -04:00
|
|
|
public mbEnums.TargetSelectType targetSelect;
|
2024-08-13 12:06:24 -04:00
|
|
|
}
|