Example #1
0
 private void ChangeCritsToHits(DiceRoll diceroll)
 {
     if (Combat.ChosenWeapon is HeavyLaserCannon)
     {
         diceroll.ChangeAll(DieSide.Crit, DieSide.Success);
     }
 }
Example #2
0
 private void ChangeCritsToHits(DiceRoll diceroll)
 {
     if (Combat.ChosenWeapon is UpgradesList.FirstEdition.HeavyLaserCannon)
     {
         diceroll.ChangeAll(DieSide.Crit, DieSide.Success);
     }
 }
Example #3
0
 private void ChangeCritsToHits(DiceRoll diceroll)
 {
     if (Combat.ChosenWeapon == this)
     {
         diceroll.ChangeAll(DieSide.Crit, DieSide.Success);
     }
 }