This commit is contained in:
Leath Cooper 2021-09-11 20:12:32 -04:00
parent 0e84739f2d
commit 3f309edffb
25 changed files with 947 additions and 3 deletions

View file

@ -11,12 +11,14 @@ namespace Server.Mobiles.BT
AddChild(
new SelectorNode(tree)
.AddChild(new TapNode(tree, (mob, board) => { mob.CurrentSpeed = mob.ActiveSpeed; }))
.AddChild(new CooldownNode(tree, TimeSpan.FromSeconds(0.5), new InverterNode(tree, new KeepRangeNode(tree, 1, 2))))
.AddChild(new CooldownNode(tree, TimeSpan.FromSeconds(0.5), new InverterNode(tree, new KeepRangeNode(tree, 1, 3))))
/*
.AddChild(new MageDebuffNode(tree))
.AddChild(new MageComboNode(tree))
.AddChild(new OwnerConditionNode(tree, (mob, board) => mob.Poison != null, new CureSelfNode(tree, TimeSpan.FromSeconds(6.0))))
.AddChild(new OwnerConditionNode(tree, (mob, board) => mob.HitsMax - mob.Hits >= 40, new HealSelfNode(tree, TimeSpan.FromSeconds(6.0))))
.AddChild(new OwnerConditionNode(tree, shouldMeditate, new MeditateNode(tree, 75)))
*/
);
}