More powerAction work

This commit is contained in:
2024-08-20 18:35:34 -04:00
parent 27cc7655b3
commit 1b7114d8bd
2 changed files with 4 additions and 0 deletions
+3
View File
@@ -271,6 +271,9 @@ public class PowerActionParser {
case "DAMAGETYPE":
powerActionEntry.damageType = mbEnums.DamageType.valueOf(lineValues[1].trim().toUpperCase());
break;
case "ROOTFSMID":
powerActionEntry.rootFsmID = mbEnums.MobBehaviourType.valueOf(lineValues[1].trim());
break;
case "APPLYEFFECTOTHER":
case "APPLYEFFECTSELF":
case "WEAROFFEFFECTOTHER": // Keys not parsed go here.
@@ -44,5 +44,6 @@ public class PowerActionEntry {
public boolean targetBecomesPet = false;
public boolean destroyOldPet = false;
public mbEnums.ItemFlags itemFlag;
public mbEnums.MobBehaviourType rootFsmID;
}