コード例 #1
0
 private void CheckFocusToCritAuxilaryArc(GenericShip ship)
 {
     if (!Combat.ShotInfo.InPrimaryArc)
     {
         HostShip.AddAvailableActionEffect(new ActionsList.AllianceOverhaulDiceModification());
     }
 }
コード例 #2
0
ファイル: Fearless.cs プロジェクト: shawks-sonifi/FlyCasual
 protected override void FearlessnessAddDiceModification(GenericShip host)
 {
     ActionsList.GenericAction newAction = new ActionsList.FearlessAction()
     {
         ImageUrl = HostUpgrade.ImageUrl,
         Host     = HostShip
     };
     HostShip.AddAvailableActionEffect(newAction);
 }
コード例 #3
0
 private void MaulDiceModification(GenericShip host)
 {
     ActionsList.GenericAction newAction = new ActionsList.MaulDiceModification()
     {
         ImageUrl = HostUpgrade.ImageUrl,
         Host     = HostShip
     };
     HostShip.AddAvailableActionEffect(newAction);
 }