blob: 63cd2bc231e8b56efcc51ae641d60b54d0ef921a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
|
package gregtech.common.config.opstuff;
import com.gtnewhorizon.gtnhlib.config.Config;
import gregtech.api.enums.Mods;
@Config(
modid = Mods.Names.GREG_TECH,
category = "general",
configSubDirectory = "GregTech",
filename = "OverpoweredStuff")
public class ConfigGeneral {
@Config.Comment("How much RF you get with 100 EU in input.")
@Config.DefaultInt(360)
@Config.RequiresMcRestart
public static int howMuchRFWith100EUInInput;
@Config.Comment("How much EU you get with 100 RF in input.")
@Config.DefaultInt(100)
@Config.RequiresMcRestart
public static int howMuchEUWith100RFInInput;
@Config.Comment("if true, enables RF -> EU conversion.")
@Config.DefaultBoolean(false)
@Config.RequiresMcRestart
public static boolean inputRF;
@Config.Comment("if true, enables EU -> RF conversion.")
@Config.DefaultBoolean(true)
@Config.RequiresMcRestart
public static boolean outputRF;
@Config.Comment("If true, machines will explode if RFs injected to a GT machine are above 600 * the max energy they can store.")
@Config.DefaultBoolean(false)
@Config.RequiresMcRestart
public static boolean RFExplosions;
@Config.Comment("if true, ignores TinkerConstruct in ore registration.")
@Config.DefaultBoolean(true)
@Config.RequiresMcRestart
public static boolean ignoreTinkerConstruct;
@Config.Comment("Controls the exposant used in the computation of the UUM required to replicate an element (uum = mass^replicatorExponent)")
@Config.DefaultFloat(1.2f)
@Config.RequiresMcRestart
public static float replicatorExponent;
}
|