Files
lakebane/src/engine/wpak/data/PowerActionEntry.java
T

41 lines
1.7 KiB
Java
Raw Normal View History

2024-08-19 13:05:32 -04:00
// • ▌ ▄ ·. ▄▄▄· ▄▄ • ▪ ▄▄· ▄▄▄▄· ▄▄▄· ▐▄▄▄ ▄▄▄ .
// ·██ ▐███▪▐█ ▀█ ▐█ ▀ ▪██ ▐█ ▌▪▐█ ▀█▪▐█ ▀█ •█▌ ▐█▐▌·
// ▐█ ▌▐▌▐█·▄█▀▀█ ▄█ ▀█▄▐█·██ ▄▄▐█▀▀█▄▄█▀▀█ ▐█▐ ▐▌▐▀▀▀
// ██ ██▌▐█▌▐█ ▪▐▌▐█▄▪▐█▐█▌▐███▌██▄▪▐█▐█ ▪▐▌██▐ █▌▐█▄▄▌
// ▀▀ █▪▀▀▀ ▀ ▀ ·▀▀▀▀ ▀▀▀·▀▀▀ ·▀▀▀▀ ▀ ▀ ▀▀ █▪ ▀▀▀
// Magicbane Emulator Project © 2013 - 2024
// www.magicbane.com
package engine.wpak.data;
2024-08-20 11:58:53 -04:00
import engine.mbEnums;
2024-08-19 13:13:31 -04:00
import java.util.ArrayList;
2024-08-19 13:05:32 -04:00
public class PowerActionEntry {
2024-08-19 13:17:44 -04:00
2024-08-19 13:13:31 -04:00
public String action_id;
public String action_type;
2024-08-20 15:21:27 -04:00
public ArrayList<EffectDescription> effects = new ArrayList<>();
2024-08-20 11:58:53 -04:00
// Additional variables after header go here.
public ArrayList<Integer> bodyparts = new ArrayList<>();
2024-08-20 12:05:03 -04:00
public ArrayList<Integer> femaleBodyParts = new ArrayList<>();
2024-08-20 11:58:53 -04:00
public boolean shouldShowWeapons = false;
public boolean shouldShowArmor = false;
public boolean bladeTrails = false;
public boolean isResistable = false;
2024-08-20 15:18:02 -04:00
public String effect_id;
2024-08-20 11:58:53 -04:00
public ArrayList<Float> scaleFactor = new ArrayList<>();
public ArrayList<Integer> attackAnimations = new ArrayList<>();
public boolean isAggressive;
public mbEnums.DamageType damageType;
public boolean applyEffectBlank = false;
public boolean wearOffEffectBlank = false;
2024-08-20 15:27:06 -04:00
public int arg1; // used in DamageOverTime, CreateMob, etc.
2024-08-20 15:18:02 -04:00
public int arg2;
2024-08-20 15:27:06 -04:00
public boolean removeAll;
2024-08-20 11:58:53 -04:00
2024-08-19 13:05:32 -04:00
}