2024-08-13 12:06:24 -04:00
|
|
|
// • ▌ ▄ ·. ▄▄▄· ▄▄ • ▪ ▄▄· ▄▄▄▄· ▄▄▄· ▐▄▄▄ ▄▄▄ .
|
|
|
|
|
// ·██ ▐███▪▐█ ▀█ ▐█ ▀ ▪██ ▐█ ▌▪▐█ ▀█▪▐█ ▀█ •█▌ ▐█▐▌·
|
|
|
|
|
// ▐█ ▌▐▌▐█·▄█▀▀█ ▄█ ▀█▄▐█·██ ▄▄▐█▀▀█▄▄█▀▀█ ▐█▐ ▐▌▐▀▀▀
|
|
|
|
|
// ██ ██▌▐█▌▐█ ▪▐▌▐█▄▪▐█▐█▌▐███▌██▄▪▐█▐█ ▪▐▌██▐ █▌▐█▄▄▌
|
|
|
|
|
// ▀▀ █▪▀▀▀ ▀ ▀ ·▀▀▀▀ ▀▀▀·▀▀▀ ·▀▀▀▀ ▀ ▀ ▀▀ █▪ ▀▀▀
|
|
|
|
|
// Magicbane Emulator Project © 2013 - 2024
|
|
|
|
|
// www.magicbane.com
|
|
|
|
|
|
|
|
|
|
package engine.wpak;
|
|
|
|
|
|
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-14 16:34:20 -04:00
|
|
|
public String target_type;
|
2024-08-14 17:00:19 -04:00
|
|
|
public int range;
|
2024-08-16 12:36:54 -04:00
|
|
|
public String areaType;
|
|
|
|
|
public int areaRange;
|
|
|
|
|
public String excludeType;
|
2024-08-14 17:11:38 -04:00
|
|
|
public String costType;
|
2024-08-15 16:01:50 -04:00
|
|
|
public float cost;
|
2024-08-16 12:36:54 -04:00
|
|
|
public int difficulty;
|
|
|
|
|
public int precision;
|
|
|
|
|
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;
|
|
|
|
|
public String castingMode;
|
|
|
|
|
public int initAmin;
|
|
|
|
|
public int releaseAnim;
|
|
|
|
|
public String targetSelect;
|
2024-08-13 12:06:24 -04:00
|
|
|
}
|