2012-06-11 22:11:23 +02:00
|
|
|
package com.gmail.nossr50.skills.acrobatics;
|
|
|
|
|
2012-06-12 02:37:09 +02:00
|
|
|
import java.util.Random;
|
|
|
|
|
2012-06-11 22:11:23 +02:00
|
|
|
public class Acrobatics {
|
|
|
|
public static final int DODGE_MAX_BONUS_LEVEL = 800;
|
|
|
|
public static final int DODGE_XP_MODIFIER = 120;
|
2012-06-12 17:07:27 +02:00
|
|
|
|
2012-06-11 22:11:23 +02:00
|
|
|
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;
|
2012-06-12 02:37:09 +02:00
|
|
|
|
|
|
|
private static Random random = new Random();
|
|
|
|
|
|
|
|
public static Random getRandom() {
|
|
|
|
return random;
|
|
|
|
}
|
2012-06-11 22:11:23 +02:00
|
|
|
}
|