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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
|
package gregtech.common.pollution;
import com.gtnewhorizon.gtnhlib.config.Config;
import gregtech.api.enums.Mods;
// needs to be loaded early from the coremod because
// it decides to load some mixins or not
@Config(modid = Mods.Names.GREG_TECH, category = "Pollution", configSubDirectory = "GregTech", filename = "Pollution")
public class PollutionConfig {
// override name to be at the top of the cfg file
@Config.Name("Activate Pollution")
@Config.Comment("if true, enables pollution in the game.")
@Config.DefaultBoolean(true)
@Config.RequiresMcRestart
public static boolean pollution;
@Config.Comment("Controls the threshold starting from which you can see fog.")
@Config.DefaultInt(550_000)
@Config.RequiresMcRestart
public static int pollutionSmogLimit;
@Config.Comment("Controls the threshold starting from which players get poison effect.")
@Config.DefaultInt(750_000)
@Config.RequiresMcRestart
public static int pollutionPoisonLimit;
@Config.Comment("Controls the threshold starting from which vegetation starts to be killed.")
@Config.DefaultInt(1_000_000)
@Config.RequiresMcRestart
public static int pollutionVegetationLimit;
@Config.Comment("Controls the threshold starting from which if it rains, will turn cobblestone into gravel and gravel into sand.")
@Config.DefaultInt(2_000_000)
@Config.RequiresMcRestart
public static int pollutionSourRainLimit;
@Config.Comment("Controls the pollution released by an explosion.")
@Config.DefaultInt(100_000)
@Config.RequiresMcRestart
public static int pollutionOnExplosion;
@Config.Comment("Controls the pollution released per second by the bricked blast furnace.")
@Config.DefaultInt(200)
@Config.RequiresMcRestart
public static int pollutionPrimitveBlastFurnacePerSecond;
@Config.Comment("Controls the pollution released per second by the charcoal pile igniter.")
@Config.DefaultInt(100)
@Config.RequiresMcRestart
public static int pollutionCharcoalPitPerSecond;
@Config.Comment("Controls the pollution released per second by the EBF.")
@Config.DefaultInt(400)
@Config.RequiresMcRestart
public static int pollutionEBFPerSecond;
@Config.Comment("Controls the pollution released per second by the large combustion engine.")
@Config.DefaultInt(480)
@Config.RequiresMcRestart
public static int pollutionLargeCombustionEnginePerSecond;
@Config.Comment("Controls the pollution released per second by the extreme combustion engine.")
@Config.DefaultInt(3_840)
@Config.RequiresMcRestart
public static int pollutionExtremeCombustionEnginePerSecond;
@Config.Comment("Controls the pollution released per second by the implosion compressor.")
@Config.DefaultInt(10_000)
@Config.RequiresMcRestart
public static int pollutionImplosionCompressorPerSecond;
@Config.Comment("Controls the pollution released per second by the large bronze boiler.")
@Config.DefaultInt(1_000)
@Config.RequiresMcRestart
public static int pollutionLargeBronzeBoilerPerSecond;
@Config.Comment("Controls the pollution released per second by the large steel boiler.")
@Config.DefaultInt(2_000)
@Config.RequiresMcRestart
public static int pollutionLargeSteelBoilerPerSecond;
@Config.Comment("Controls the pollution released per second by the large titanium boiler.")
@Config.DefaultInt(3_000)
@Config.RequiresMcRestart
public static int pollutionLargeTitaniumBoilerPerSecond;
@Config.Comment("Controls the pollution released per second by the large tungstensteel boiler.")
@Config.DefaultInt(4_000)
@Config.RequiresMcRestart
public static int pollutionLargeTungstenSteelBoilerPerSecond;
@Config.Comment("Controls the pollution reduction obtained with each increment of the circuit when throttling large boilers.")
@Config.DefaultFloat(1.0f / 24.0f) // divided by 24 because there are 24 circuit configs.
@Config.RequiresMcRestart
public static float pollutionReleasedByThrottle;
@Config.Comment("Controls the pollution released per second by the large gas turbine.")
@Config.DefaultInt(300)
@Config.RequiresMcRestart
public static int pollutionLargeGasTurbinePerSecond;
@Config.Comment("Controls the pollution released per second by the multi smelter.")
@Config.DefaultInt(400)
@Config.RequiresMcRestart
public static int pollutionMultiSmelterPerSecond;
@Config.Comment("Controls the pollution released per second by the pyrolyse oven.")
@Config.DefaultInt(300)
@Config.RequiresMcRestart
public static int pollutionPyrolyseOvenPerSecond;
@Config.Comment("Controls the pollution released per second by the small coil boiler.")
@Config.DefaultInt(20)
@Config.RequiresMcRestart
public static int pollutionSmallCoalBoilerPerSecond;
@Config.Comment("Controls the pollution released per second by the high pressure lava boiler.")
@Config.DefaultInt(20)
@Config.RequiresMcRestart
public static int pollutionHighPressureLavaBoilerPerSecond;
@Config.Comment("Controls the pollution released per second by the high pressure coil boiler.")
@Config.DefaultInt(30)
@Config.RequiresMcRestart
public static int pollutionHighPressureCoalBoilerPerSecond;
@Config.Comment("Controls the pollution released per second by the base diesel generator.")
@Config.DefaultInt(40)
@Config.RequiresMcRestart
public static int pollutionBaseDieselGeneratorPerSecond;
// reading double as strings, not perfect, but better than nothing
@Config.Comment({
"Pollution released by tier, with the following formula: PollutionBaseDieselGeneratorPerSecond * PollutionDieselGeneratorReleasedByTier[Tier]",
"The first entry has meaning as it is here to since machine tier with array index: LV is 1, etc." })
@Config.DefaultDoubleList({ 0.1, 1.0, 0.9, 0.8 })
@Config.RequiresMcRestart
public static double[] pollutionDieselGeneratorReleasedByTier;
@Config.Comment("Controls the pollution released per second by the base gas turbine.")
@Config.DefaultInt(40)
@Config.RequiresMcRestart
public static int pollutionBaseGasTurbinePerSecond;
// reading double as strings, not perfect, but better than nothing
@Config.Comment({
"Pollution released by tier, with the following formula: PollutionBaseGasTurbinePerSecond * PollutionGasTurbineReleasedByTier[Tier]",
"The first entry has meaning as it is here to since machine tier with array index: LV is 1, etc." })
@Config.DefaultDoubleList({ 0.1, 1.0, 0.9, 0.8, 0.7, 0.6 })
@Config.RequiresMcRestart
public static double[] pollutionGasTurbineReleasedByTier;
// Minecraft
@Config.Comment("Explosion pollution")
@Config.DefaultFloat(333.34f)
public static float explosionPollutionAmount;
@Config.Comment("Make furnaces Pollute")
@Config.DefaultBoolean(true)
@Config.RequiresMcRestart
public static boolean furnacesPollute;
@Config.Comment("Furnace pollution per second, min 1!")
@Config.DefaultInt(20)
public static int furnacePollutionAmount;
// Galacticraft
@Config.Comment("Pollution Amount for Rockets")
@Config.DefaultInt(10000)
public static int rocketPollutionAmount;
@Config.Comment("Make rockets Pollute")
@Config.DefaultBoolean(true)
@Config.RequiresMcRestart
public static boolean rocketsPollute;
// Railcraft
@Config.Comment("Pollution Amount for Advanced Coke Ovens")
@Config.DefaultInt(80)
public static int advancedCokeOvenPollutionAmount;
@Config.Comment("Pollution Amount for Coke Ovens")
@Config.DefaultInt(10)
public static int cokeOvenPollutionAmount;
@Config.Comment("Pollution Amount for RC Firebox")
@Config.DefaultInt(20)
public static int fireboxPollutionAmount;
@Config.Comment("Pollution Amount for hobbyist steam engine")
@Config.DefaultInt(20)
public static int hobbyistEnginePollutionAmount;
@Config.Comment("Make Railcraft Pollute")
@Config.DefaultBoolean(true)
@Config.RequiresMcRestart
public static boolean railcraftPollutes;
@Config.Comment("Pollution Amount for tunnel bore")
@Config.DefaultInt(2)
public static int tunnelBorePollutionAmount;
// bartworks
@Config.Comment("How much should the Simple Stirling Water Pump produce pollution per second")
@Config.DefaultInt(5)
public static int pollutionHeatedWaterPumpSecond;
@Config.Comment("How much should the MBF produce pollution per tick per ingot. Then it'll be multiplied by the amount of ingots done in parallel")
@Config.DefaultInt(400)
public static int basePollutionMBFSecond;
@Config.Comment("Changes colors of certain blocks based on pollution levels")
@Config.DefaultBoolean(true)
@Config.RequiresMcRestart
public static boolean pollutionBlockRecolor;
@Config.Comment("Double Plant Blocks - Recolor Block List")
@Config.DefaultStringList({ "net.minecraft.block.BlockDoublePlant:FLOWER", })
@Config.RequiresMcRestart
public static String[] renderBlockDoublePlant;
@Config.Comment("Liquid Blocks - Recolor Block List")
@Config.DefaultStringList({ "net.minecraft.block.BlockLiquid:LIQUID" })
@Config.RequiresMcRestart
public static String[] renderBlockLiquid;
@Config.Comment("Block Vine - Recolor Block List")
@Config.DefaultStringList({ "net.minecraft.block.BlockVine:FLOWER", })
@Config.RequiresMcRestart
public static String[] renderblockVine;
@Config.Comment("Crossed Squares - Recolor Block List")
@Config.DefaultStringList({ "net.minecraft.block.BlockTallGrass:FLOWER", "net.minecraft.block.BlockFlower:FLOWER",
"biomesoplenty.common.blocks.BlockBOPFlower:FLOWER", "biomesoplenty.common.blocks.BlockBOPFlower2:FLOWER",
"biomesoplenty.common.blocks.BlockBOPFoliage:FLOWER", })
@Config.RequiresMcRestart
public static String[] renderCrossedSquares;
@Config.Comment("Standard Blocks - Recolor Block List")
@Config.DefaultStringList({ "net.minecraft.block.BlockGrass:GRASS", "net.minecraft.block.BlockLeavesBase:LEAVES",
"biomesoplenty.common.blocks.BlockOriginGrass:GRASS", "biomesoplenty.common.blocks.BlockLongGrass:GRASS",
"biomesoplenty.common.blocks.BlockNewGrass:GRASS", "tconstruct.blocks.slime.SlimeGrass:GRASS",
"thaumcraft.common.blocks.BlockMagicalLeaves:LEAVES", })
@Config.RequiresMcRestart
public static String[] renderStandardBlock;
// gt++
@Config.Comment("pollution rate in gibbl/s for the Amazon warehousing depot")
@Config.DefaultInt(40)
public static int pollutionPerSecondMultiPackager;
@Config.Comment("pollution rate in gibbl/s for the Alloy blast smelter")
@Config.DefaultInt(300)
public static int pollutionPerSecondMultiIndustrialAlloySmelter;
@Config.Comment("pollution rate in gibbl/s for the High current arc furnace")
@Config.DefaultInt(2_400)
public static int pollutionPerSecondMultiIndustrialArcFurnace;
@Config.Comment("pollution rate in gibbl/s for the Industrial centrifuge")
@Config.DefaultInt(300)
public static int pollutionPerSecondMultiIndustrialCentrifuge;
@Config.Comment("pollution rate in gibbl/s for the Industrial coke oven")
@Config.DefaultInt(80)
public static int pollutionPerSecondMultiIndustrialCokeOven;
@Config.Comment("pollution rate in gibbl/s for the Cutting factory")
@Config.DefaultInt(160)
public static int pollutionPerSecondMultiIndustrialCuttingMachine;
@Config.Comment("pollution rate in gibbl/s for the Utupu-Tanuri")
@Config.DefaultInt(500)
public static int pollutionPerSecondMultiIndustrialDehydrator;
@Config.Comment("pollution rate in gibbl/s for the Industrial electrolyzer")
@Config.DefaultInt(300)
public static int pollutionPerSecondMultiIndustrialElectrolyzer;
@Config.Comment("pollution rate in gibbl/s for the Industrial extrusion machine")
@Config.DefaultInt(1_000)
public static int pollutionPerSecondMultiIndust
|