Example #1
0
  private int getSpaceRoids() {
    int damage = 0;

    if (getBattleLocation().equalsIgnoreCase("space")) {
      damage = RandInt.randomInt(0, spaceRoids);
    }
    return damage;
  }
Example #2
0
 private int getLaserRangeProtection() {
   int damage = RandInt.randomInt(1, laserRangeProtection);
   return damage;
 }
Example #3
0
 private int getClawRangeProtection() {
   int damage = RandInt.randomInt(1, clawRangeProtection);
   return damage;
 }
Example #4
0
 private int getRandomAccuracy() {
   int damage = RandInt.randomInt(1, accuracy);
   return damage;
 }
Example #5
0
 private int getRandomHitsPerRole() {
   int damage = RandInt.randomInt(1, maxHitsPerRole);
   return damage;
 }
Example #6
0
 private int getLaserMaxDamage() {
   int damage = RandInt.randomInt(1, laserMaxDamage);
   return damage;
 }
Example #7
0
 private int getClawMaxDamage() {
   int damage = RandInt.randomInt(1, clawMaxDamage);
   return damage;
 }