39 lines
1.5 KiB
Java
39 lines
1.5 KiB
Java
package ee3.common.lib;
|
|
|
|
import ee3.common.item.ModItems;
|
|
|
|
public class ConfigurationSettings {
|
|
|
|
/*
|
|
* General configuration settings
|
|
*/
|
|
// Whether or not automatic block id resolution for EE3 is turned on or off
|
|
public static boolean AUTO_RESOLVE_BLOCK_IDS;
|
|
public static final boolean AUTO_RESOLVE_BLOCK_IDS_DEFAULT = false;
|
|
|
|
// Whether or not EE3 sounds are enabled
|
|
public static boolean ENABLE_SOUNDS;
|
|
public static final boolean ENABLE_SOUNDS_DEFAULT = true;
|
|
|
|
// Whether or not EE3 particle fx are enabled
|
|
public static boolean ENABLE_PARTICLE_FX;
|
|
public static final boolean ENABLE_PARTICLE_FX_DEFAULT = true;
|
|
|
|
// Whether or not EE3 will do a version check when loaded
|
|
public static boolean ENABLE_VERSION_CHECK;
|
|
public static final boolean ENABLE_VERSION_CHECK_DEFAULT = true;
|
|
|
|
/*
|
|
* Minium stone config settings
|
|
*/
|
|
// The durability cost for each transmute with the Minium Stone
|
|
public static int MINIUM_STONE_TRANSMUTE_COST;
|
|
public static final String MINIUM_STONE_TRANSMUTE_COST_CONFIGNAME = ModItems.MINIUM_STONE_NAME + ".transmuteCost";
|
|
public static final int MINIUM_STONE_TRANSMUTE_COST_DEFAULT = 1;
|
|
|
|
// The maximum durability for the Minium Stone
|
|
public static int MINIUM_STONE_MAX_DURABILITY;
|
|
public static final String MINIUM_STONE_MAX_DURABILITY_CONFIGNAME = ModItems.MINIUM_STONE_NAME + ".maxDurability";
|
|
public static final int MINIUM_STONE_MAX_DURABILITY_DEFAULT = 1521;
|
|
|
|
}
|