示例#1
0
 private void AddSharaBeyActionEffect(Ship.GenericShip ship)
 {
     ship.AddAvailableDiceModification(new ActionsList.SharaBeyAction()
     {
         Host = HostShip
     });
 }
示例#2
0
 private void AddJessPavaActionEffect(Ship.GenericShip host)
 {
     ActionsList.GenericAction newAction = new ActionsList.JessPavaActionEffect();
     newAction.Host     = host;
     newAction.ImageUrl = host.ImageUrl;
     host.AddAvailableDiceModification(newAction);
 }
示例#3
0
 private void AdvancedProtonTorpedoesAddDiceModification(Ship.GenericShip ship)
 {
     ship.AddAvailableDiceModification(this);
 }