Example #1
0
        private void AssignK4TargetingLock(object sender, EventArgs e)
        {
            Messages.ShowInfoToHuman("K4 Security Droid: Acquire a Target Lock");
            Sounds.PlayShipSound("Astromech-Beeping-and-whistling");

            HostShip.AcquireTargetLock(Triggers.FinishTrigger);
        }
        private void AssignAstromechTargetingLock(object sender, System.EventArgs e)
        {
            Messages.ShowInfoToHuman("Targeting Astromech: Aquire a Target Lock");
            Sounds.PlayShipSound("Astromech-Beeping-and-whistling");

            HostShip.AcquireTargetLock(Triggers.FinishTrigger);
        }
Example #3
0
 private void PerformBosskAbility(object sender, EventArgs e)
 {
     Messages.ShowInfoToHuman("Bossk: Select a target for Target Lock.");
     HostShip.AcquireTargetLock(AssignFocusToken);
 }