|
@@ -1005,6 +1005,7 @@ public final class Config
|
|
public static ObjectMapType MAP_TYPE;
|
|
public static ObjectMapType MAP_TYPE;
|
|
public static ObjectSetType SET_TYPE;
|
|
public static ObjectSetType SET_TYPE;
|
|
public static double ENCHANT_CHANCE;
|
|
public static double ENCHANT_CHANCE;
|
|
|
|
+ public static int MAX_ENCHANT_LEVEL;
|
|
public static double ENCHANT_CHANCE_ELEMENT_STONE;
|
|
public static double ENCHANT_CHANCE_ELEMENT_STONE;
|
|
public static double ENCHANT_CHANCE_ELEMENT_CRYSTAL;
|
|
public static double ENCHANT_CHANCE_ELEMENT_CRYSTAL;
|
|
public static double ENCHANT_CHANCE_ELEMENT_JEWEL;
|
|
public static double ENCHANT_CHANCE_ELEMENT_JEWEL;
|
|
@@ -1635,6 +1636,7 @@ public final class Config
|
|
ALT_FREIGHT_SLOTS = Integer.parseInt(Character.getProperty("MaximumFreightSlots", "200"));
|
|
ALT_FREIGHT_SLOTS = Integer.parseInt(Character.getProperty("MaximumFreightSlots", "200"));
|
|
ALT_FREIGHT_PRIECE = Integer.parseInt(Character.getProperty("FreightPriece", "1000"));
|
|
ALT_FREIGHT_PRIECE = Integer.parseInt(Character.getProperty("FreightPriece", "1000"));
|
|
ENCHANT_CHANCE = Double.parseDouble(Character.getProperty("EnchantChance", "66.66"));
|
|
ENCHANT_CHANCE = Double.parseDouble(Character.getProperty("EnchantChance", "66.66"));
|
|
|
|
+ MAX_ENCHANT_LEVEL = Integer.parseInt(Character.getProperty("MaxEnchantLevel", "0"));
|
|
ENCHANT_CHANCE_ELEMENT_STONE = Double.parseDouble(Character.getProperty("EnchantChanceElementStone", "50"));
|
|
ENCHANT_CHANCE_ELEMENT_STONE = Double.parseDouble(Character.getProperty("EnchantChanceElementStone", "50"));
|
|
ENCHANT_CHANCE_ELEMENT_CRYSTAL = Double.parseDouble(Character.getProperty("EnchantChanceElementCrystal", "30"));
|
|
ENCHANT_CHANCE_ELEMENT_CRYSTAL = Double.parseDouble(Character.getProperty("EnchantChanceElementCrystal", "30"));
|
|
ENCHANT_CHANCE_ELEMENT_JEWEL = Double.parseDouble(Character.getProperty("EnchantChanceElementJewel", "20"));
|
|
ENCHANT_CHANCE_ELEMENT_JEWEL = Double.parseDouble(Character.getProperty("EnchantChanceElementJewel", "20"));
|