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