2013-03-01 06:52:01 +01:00
|
|
|
package com.gmail.nossr50.skills.mining;
|
|
|
|
|
2013-09-13 15:12:21 +02:00
|
|
|
import org.bukkit.Material;
|
|
|
|
|
2013-03-01 06:52:01 +01:00
|
|
|
import com.gmail.nossr50.config.AdvancedConfig;
|
|
|
|
import com.gmail.nossr50.config.Config;
|
|
|
|
|
|
|
|
public class BlastMining {
|
|
|
|
// The order of the values is extremely important, a few methods depend on it to work properly
|
2013-10-01 14:57:21 +02:00
|
|
|
public enum Tier {
|
|
|
|
EIGHT(8),
|
|
|
|
SEVEN(7),
|
|
|
|
SIX(6),
|
|
|
|
FIVE(5),
|
|
|
|
FOUR(4),
|
|
|
|
THREE(3),
|
|
|
|
TWO(2),
|
|
|
|
ONE(1);
|
2013-03-01 06:52:01 +01:00
|
|
|
|
|
|
|
int numerical;
|
|
|
|
|
|
|
|
private Tier(int numerical) {
|
|
|
|
this.numerical = numerical;
|
|
|
|
}
|
|
|
|
|
|
|
|
public int toNumerical() {
|
|
|
|
return numerical;
|
|
|
|
}
|
|
|
|
|
2013-10-01 14:57:21 +02:00
|
|
|
protected int getLevel() {
|
|
|
|
return AdvancedConfig.getInstance().getBlastMiningRankLevel(this);
|
|
|
|
}
|
|
|
|
|
|
|
|
protected double getBlastRadiusModifier() {
|
|
|
|
return AdvancedConfig.getInstance().getBlastRadiusModifier(this);
|
|
|
|
}
|
|
|
|
|
|
|
|
protected double getOreBonus() {
|
|
|
|
return AdvancedConfig.getInstance().getOreBonus(this);
|
|
|
|
}
|
|
|
|
|
|
|
|
protected double getDebrisReduction() {
|
|
|
|
return AdvancedConfig.getInstance().getDebrisReduction(this);
|
|
|
|
}
|
|
|
|
|
|
|
|
protected double getBlastDamageDecrease() {
|
|
|
|
return AdvancedConfig.getInstance().getBlastDamageDecrease(this);
|
|
|
|
}
|
|
|
|
|
|
|
|
protected int getDropMultiplier() {
|
|
|
|
return AdvancedConfig.getInstance().getDropMultiplier(this);
|
|
|
|
}
|
2013-03-01 06:52:01 +01:00
|
|
|
}
|
|
|
|
|
2013-09-13 15:12:21 +02:00
|
|
|
public static Material detonator = Config.getInstance().getDetonatorItem();
|
2013-03-01 06:52:01 +01:00
|
|
|
|
|
|
|
public final static int MAXIMUM_REMOTE_DETONATION_DISTANCE = 100;
|
|
|
|
}
|