Exemplo n.º 1
0
        private void AddOptimizedPrototypeCancelResultModification(GenericShip ship)
        {
            OptimizedPrototypeAction action = new OptimizedPrototypeAction()
            {
                HostShip      = Host,
                SourceUpgrade = SourceUpgrade
            };

            Host.AddAvailableDiceModificationOwn(action);
        }
Exemplo n.º 2
0
        private void AddOptimizedPrototypeCancelResultModification(GenericShip ship)
        {
            GenericAction action = new ActionsList.SecondEdition.OptimizedPrototypeDiceModificationSE()
            {
                HostShip = Host,
                ImageUrl = Tooltip,
                Source   = SourceUpgrade
            };

            Host.AddAvailableDiceModificationOwn(action);
        }
Exemplo n.º 3
0
        private void RegisterDecoy(GenericShip hm)
        {
            var           name   = "Decoyed: HM " + hm.ShipId;
            DecoyedAction action = new DecoyedAction()
            {
                HostShip             = Host,
                SourceShip           = hm,
                DiceModificationName = name,
                Name = name
            };

            Host.AddAvailableDiceModificationOwn(action);
        }