More tweaks to Acrobatics.

This commit is contained in:
GJ
2012-06-11 20:37:09 -04:00
parent 6ab1996440
commit 5f067a6bb5
5 changed files with 116 additions and 99 deletions

View File

@ -1,9 +1,17 @@
package com.gmail.nossr50.skills.acrobatics;
import java.util.Random;
public class Acrobatics {
public static final int DODGE_MAX_BONUS_LEVEL = 800;
public static final int DODGE_XP_MODIFIER = 120;
public static final int FALL_XP_MODIFIER = 120;
public static final int ROLL_MAX_BONUS_LEVEL = 1000;
public static final int ROLL_XP_MODIFIER = 80;
private static Random random = new Random();
public static Random getRandom() {
return random;
}
}