Enums needed to support parser.
This commit is contained in:
@@ -3022,5 +3022,66 @@ public class mbEnums {
|
|||||||
PREFIX,
|
PREFIX,
|
||||||
SUFFIX;
|
SUFFIX;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public enum PowerType {
|
||||||
|
None,
|
||||||
|
SPELL,
|
||||||
|
SKILL
|
||||||
|
}
|
||||||
|
|
||||||
|
public enum CostType {
|
||||||
|
NONE,
|
||||||
|
HEALTH,
|
||||||
|
MANA,
|
||||||
|
STAMINA
|
||||||
|
}
|
||||||
|
|
||||||
|
public enum AreaType {
|
||||||
|
NONE,
|
||||||
|
SPHERE,
|
||||||
|
POINTBLANK,
|
||||||
|
LINE,
|
||||||
|
CONE,
|
||||||
|
WALL
|
||||||
|
}
|
||||||
|
|
||||||
|
public enum ExcludeType {
|
||||||
|
NONE,
|
||||||
|
CASTER,
|
||||||
|
GROUP,
|
||||||
|
GUILD,
|
||||||
|
NATION,
|
||||||
|
PLAYERS,
|
||||||
|
ALLBUTGROUP,
|
||||||
|
ALLBUTPETS
|
||||||
|
}
|
||||||
|
|
||||||
|
public enum CastingModeType {
|
||||||
|
NONE,
|
||||||
|
COMBAT,
|
||||||
|
NONCOMBAT,
|
||||||
|
BOTH
|
||||||
|
}
|
||||||
|
|
||||||
|
public enum TargetSelectType {
|
||||||
|
NONE,
|
||||||
|
CLICK,
|
||||||
|
GROUP,
|
||||||
|
GUILD,
|
||||||
|
NEARBYMOBS,
|
||||||
|
NAME
|
||||||
|
}
|
||||||
|
|
||||||
|
public enum CategoryToPowerType {
|
||||||
|
None,
|
||||||
|
GreaterThanOrEqualTo,
|
||||||
|
GreaterThan,
|
||||||
|
Always
|
||||||
|
}
|
||||||
|
|
||||||
|
public enum ModificationType {
|
||||||
|
ADD,
|
||||||
|
MULTIPLY
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user