|
|
|
// • ▌ ▄ ·. ▄▄▄· ▄▄ • ▪ ▄▄· ▄▄▄▄· ▄▄▄· ▐▄▄▄ ▄▄▄ .
|
|
|
|
// ·██ ▐███▪▐█ ▀█ ▐█ ▀ ▪██ ▐█ ▌▪▐█ ▀█▪▐█ ▀█ •█▌ ▐█▐▌·
|
|
|
|
// ▐█ ▌▐▌▐█·▄█▀▀█ ▄█ ▀█▄▐█·██ ▄▄▐█▀▀█▄▄█▀▀█ ▐█▐ ▐▌▐▀▀▀
|
|
|
|
// ██ ██▌▐█▌▐█ ▪▐▌▐█▄▪▐█▐█▌▐███▌██▄▪▐█▐█ ▪▐▌██▐ █▌▐█▄▄▌
|
|
|
|
// ▀▀ █▪▀▀▀ ▀ ▀ ·▀▀▀▀ ▀▀▀·▀▀▀ ·▀▀▀▀ ▀ ▀ ▀▀ █▪ ▀▀▀
|
|
|
|
// Magicbane Emulator Project © 2013 - 2024
|
|
|
|
// www.magicbane.com
|
|
|
|
|
|
|
|
package engine.wpak;
|
|
|
|
|
|
|
|
import engine.mbEnums;
|
|
|
|
|
|
|
|
import java.util.ArrayList;
|
|
|
|
|
|
|
|
public class PowerEntry {
|
|
|
|
public String power_id;
|
|
|
|
public String power;
|
|
|
|
public ArrayList<PowerData> powers = new ArrayList<>();
|
|
|
|
public String target_type;
|
|
|
|
public int range;
|
|
|
|
public String areaType;
|
|
|
|
public int areaRange;
|
|
|
|
public String excludeType;
|
|
|
|
public mbEnums.CostType costType;
|
|
|
|
public float cost;
|
|
|
|
public float difficulty;
|
|
|
|
public float precision;
|
|
|
|
public float init_time;
|
|
|
|
public float release_time;
|
|
|
|
public float recycle_time;
|
|
|
|
public int hitRollYN;
|
|
|
|
public String castingMode;
|
|
|
|
public int initAmin;
|
|
|
|
public int releaseAnim;
|
|
|
|
public String targetSelect;
|
|
|
|
}
|