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

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