2024-08-13 12:06:24 -04:00
|
|
|
// • ▌ ▄ ·. ▄▄▄· ▄▄ • ▪ ▄▄· ▄▄▄▄· ▄▄▄· ▐▄▄▄ ▄▄▄ .
|
|
|
|
|
// ·██ ▐███▪▐█ ▀█ ▐█ ▀ ▪██ ▐█ ▌▪▐█ ▀█▪▐█ ▀█ •█▌ ▐█▐▌·
|
|
|
|
|
// ▐█ ▌▐▌▐█·▄█▀▀█ ▄█ ▀█▄▐█·██ ▄▄▐█▀▀█▄▄█▀▀█ ▐█▐ ▐▌▐▀▀▀
|
|
|
|
|
// ██ ██▌▐█▌▐█ ▪▐▌▐█▄▪▐█▐█▌▐███▌██▄▪▐█▐█ ▪▐▌██▐ █▌▐█▄▄▌
|
|
|
|
|
// ▀▀ █▪▀▀▀ ▀ ▀ ·▀▀▀▀ ▀▀▀·▀▀▀ ·▀▀▀▀ ▀ ▀ ▀▀ █▪ ▀▀▀
|
|
|
|
|
// Magicbane Emulator Project © 2013 - 2024
|
|
|
|
|
// www.magicbane.com
|
|
|
|
|
|
|
|
|
|
package engine.wpak;
|
|
|
|
|
|
|
|
|
|
public class PowerEntry {
|
|
|
|
|
|
2024-08-14 16:36:07 -04:00
|
|
|
public String power_id;
|
|
|
|
|
public String power_name;
|
|
|
|
|
public String power_type;
|
2024-08-14 16:34:20 -04:00
|
|
|
public int skill_id;
|
2024-08-14 16:36:07 -04:00
|
|
|
public String skill_name;
|
2024-08-14 16:34:20 -04:00
|
|
|
public String target_type;
|
2024-08-14 17:00:19 -04:00
|
|
|
public int range;
|
|
|
|
|
public String radiusType;
|
2024-08-14 17:11:38 -04:00
|
|
|
public int radius;
|
|
|
|
|
public String groupReq;
|
|
|
|
|
public String costType;
|
|
|
|
|
public int cost;
|
2024-08-14 17:29:13 -04:00
|
|
|
public int unknown01;
|
|
|
|
|
public int unknown02;
|
|
|
|
|
public float cast_time;
|
|
|
|
|
public float cool_down;
|
|
|
|
|
public float recycle_time;
|
2024-08-13 12:06:24 -04:00
|
|
|
}
|