Esempio n. 1
0
  private int getSpaceRoids() {
    int damage = 0;

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