More powerAction work

This commit is contained in:
2024-08-20 18:47:44 -04:00
parent 1b7114d8bd
commit 4e3a578ad1
+21
View File
@@ -177,6 +177,27 @@ public class PowerActionParser {
trackEntry.min = Integer.parseInt(headerIterator.next());
trackEntry.max = Integer.parseInt(headerIterator.next());
break;
case "NOTRANSFORM":
effectDescription = new EffectDescription();
effectDescription.type = headerIterator.next();
effectDescription.effect_id = headerIterator.next();
break;
case "NOROOT":
case "NOSNARE":
case "NOSTANCE-A":
case "NOSTANCE-B":
case "NOSTUN":
case "NOSTUN1":
case "NOSTUN2":
case "NOSTUN3":
case "NOSTUN4":
case "NOSTUN5":
case "NOSTUN6":
effectDescription = new EffectDescription();
effectDescription.type = headerIterator.next();
effectDescription.effect_id = headerIterator.next();
effectDescription.level = Integer.parseInt(headerIterator.next());
break;
case "Recall": // No arguments for these tags or not parsed
case "Teleport":
case "TreeChoke":