More poweraction parsing work.

This commit is contained in:
2024-08-20 17:14:26 -04:00
parent 4b855cdf6e
commit 6ca5e46ef6
+6
View File
@@ -146,6 +146,12 @@ public class PowerActionParser {
effectDescription.type = headerIterator.next();
powerActionEntry.effects.add(effectDescription);
break;
case "Block":
effectDescription = new EffectDescription();
effectDescription.effect_id = headerIterator.next();
effectDescription.level = Integer.parseInt(headerIterator.next());
powerActionEntry.effects.add(effectDescription);
break;
case "Teleport":// No arguments for these tags
case "TreeChoke":
break;