Public Repository for the Magicbane Shadowbane Emulator
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
|
// • ▌ ▄ ·. ▄▄▄· ▄▄ • ▪ ▄▄· ▄▄▄▄· ▄▄▄· ▐▄▄▄ ▄▄▄ .
|
|
|
|
// ·██ ▐███▪▐█ ▀█ ▐█ ▀ ▪██ ▐█ ▌▪▐█ ▀█▪▐█ ▀█ •█▌ ▐█▐▌·
|
|
|
|
// ▐█ ▌▐▌▐█·▄█▀▀█ ▄█ ▀█▄▐█·██ ▄▄▐█▀▀█▄▄█▀▀█ ▐█▐ ▐▌▐▀▀▀
|
|
|
|
// ██ ██▌▐█▌▐█ ▪▐▌▐█▄▪▐█▐█▌▐███▌██▄▪▐█▐█ ▪▐▌██▐ █▌▐█▄▄▌
|
|
|
|
// ▀▀ █▪▀▀▀ ▀ ▀ ·▀▀▀▀ ▀▀▀·▀▀▀ ·▀▀▀▀ ▀ ▀ ▀▀ █▪ ▀▀▀
|
|
|
|
// Magicbane Emulator Project © 2013 - 2024
|
|
|
|
// www.magicbane.com
|
|
|
|
|
|
|
|
package engine.wpak;
|
|
|
|
|
|
|
|
public class PowerEntry {
|
|
|
|
|
|
|
|
public String power_id;
|
|
|
|
public String power;
|
|
|
|
public String power_type;
|
|
|
|
public int icon;
|
|
|
|
public String powerbase;
|
|
|
|
public String target_type;
|
|
|
|
public int range;
|
|
|
|
public String areaType;
|
|
|
|
public int areaRange;
|
|
|
|
public String excludeType;
|
|
|
|
public String costType;
|
|
|
|
public float cost;
|
|
|
|
public int difficulty;
|
|
|
|
public int 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;
|
|
|
|
}
|