// • ▌ ▄ ·. ▄▄▄· ▄▄ • ▪ ▄▄· ▄▄▄▄· ▄▄▄· ▐▄▄▄ ▄▄▄ . // ·██ ▐███▪▐█ ▀█ ▐█ ▀ ▪██ ▐█ ▌▪▐█ ▀█▪▐█ ▀█ •█▌ ▐█▐▌· // ▐█ ▌▐▌▐█·▄█▀▀█ ▄█ ▀█▄▐█·██ ▄▄▐█▀▀█▄▄█▀▀█ ▐█▐ ▐▌▐▀▀▀ // ██ ██▌▐█▌▐█ ▪▐▌▐█▄▪▐█▐█▌▐███▌██▄▪▐█▐█ ▪▐▌██▐ █▌▐█▄▄▌ // ▀▀ █▪▀▀▀ ▀ ▀ ·▀▀▀▀ ▀▀▀·▀▀▀ ·▀▀▀▀ ▀ ▀ ▀▀ █▪ ▀▀▀ // Magicbane Emulator Project © 2013 - 2024 // www.magicbane.com package engine.wpak.data; import engine.mbEnums; import java.util.ArrayList; public class PowerActionEntry { // Header values public String action_id; public String action_type; public ArrayList effects = new ArrayList<>(); public int petLevel; public int petRace; public StatTransfer statTransfer; public int levelCap; public mbEnums.CompoundCurveType levelCurve; // Additional variables after header go here. public ArrayList bodyparts = new ArrayList<>(); public ArrayList femaleBodyParts = new ArrayList<>(); public boolean shouldShowWeapons = false; public boolean shouldShowArmor = false; public boolean bladeTrails = false; public boolean isResistible = false; public ArrayList scaleFactor = new ArrayList<>(); public ArrayList attackAnimations = new ArrayList<>(); public boolean isAggressive; public mbEnums.DamageType damageType; public boolean applyEffectBlank = false; public boolean wearOffEffectBlank = false; public boolean removeAll = false; public boolean clearAggro = false; public boolean targetBecomesPet = false; public boolean destroyOldPet = false; public mbEnums.ItemFlags itemFlag; public mbEnums.MobBehaviourType rootFsmID; }