forked from MagicBane/Server
PowerAction work started.
This commit is contained in:
@@ -8,5 +8,11 @@
|
||||
|
||||
package engine.wpak.data;
|
||||
|
||||
import java.util.ArrayList;
|
||||
|
||||
public class PowerActionEntry {
|
||||
public String action_id;
|
||||
public String action_type;
|
||||
public ArrayList<effectDescription> effects;
|
||||
|
||||
}
|
||||
|
||||
@@ -50,7 +50,7 @@ public class PowerEntry {
|
||||
public String category;
|
||||
public boolean canCastWhileMoving = false;
|
||||
public boolean bladeTrails = false;
|
||||
public ArrayList<EffectPreReq> effectPreReqs = new ArrayList<>();
|
||||
public ArrayList<effectDescription> effectPreReqs = new ArrayList<>();
|
||||
public EquipmentPreReq equipmentPreReq;
|
||||
public EnumSet<mbEnums.MonsterType> monsterRestricts = EnumSet.noneOf(mbEnums.MonsterType.class);
|
||||
public EnumSet<mbEnums.MonsterType> monsterPrereqs = EnumSet.noneOf(mbEnums.MonsterType.class);
|
||||
@@ -62,7 +62,7 @@ public class PowerEntry {
|
||||
public int maxPlayerTargets;
|
||||
public boolean isAdminPower = false;
|
||||
public int casterPulseParticle;
|
||||
public ArrayList<EffectPreReq> targetEffectPrereqs = new ArrayList<>();
|
||||
public ArrayList<effectDescription> targetEffectPrereqs = new ArrayList<>();
|
||||
public boolean canCastWhileFlying = false;
|
||||
public boolean isProjectile = false;
|
||||
public HashMap<String, Float> conditions = new HashMap<>();
|
||||
|
||||
+1
-1
@@ -8,7 +8,7 @@
|
||||
|
||||
package engine.wpak.data;
|
||||
|
||||
public class EffectPreReq {
|
||||
public class effectDescription {
|
||||
public String effect_id;
|
||||
public int level;
|
||||
public String message;
|
||||
Reference in New Issue
Block a user