Skip to content

Commit ad9fd89

Browse files
Update docs with a list of standard coil stats, and further explanation of them. (#3749)
1 parent d313ab8 commit ad9fd89

1 file changed

Lines changed: 26 additions & 2 deletions

File tree

docs/content/Modpacks/Other-Topics/Custom-Coils.md

Lines changed: 26 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,9 +23,33 @@ StartupEvents.registry('block', event => {
2323
})
2424
```
2525

26-
`temperature`, `level`, `energyDiscount`, and `tier` all must be integers.
26+
`temperature`, `level`, `energyDiscount`, and `tier` all must be integers
2727
* `temperature`: Used by Electric Blast Furnace recipes.
2828
* `level`: Used to determine Multi-Smelter Parallels, at 32*level.
2929
* `energyDiscount`: Used to determine Multi-Smelter power usage. EU/t = (4 * Parallels) / (8 * Discount), before overclocks.
30+
*Must be greater than 0.*
3031
* `tier`: Used for Speed Bonus in the Pyrolyze Oven, and Energy Discount in the Cracking Unit. +50% Speed,
31-
-10% Energy per tier. (Tiers above 10 will not cause the Cracker to consume negative energy.)
32+
-10% Energy per tier. *(Tiers above 10 will not cause the Cracker to consume negative energy.)*
33+
34+
## Standard Coils
35+
36+
For reference, the standard GregTech Modern coils use the following stats:
37+
```js
38+
Coil, Temperature, Level, Discount
39+
CUPRONICKEL, 1800, 1, 1
40+
KANTHAL, 2700, 2, 1
41+
NICHROME, 3600, 2, 2
42+
RTM_ALLOY, 4500, 4, 2
43+
HSS_G, 5400, 4, 4
44+
NAQUADAH, 7200, 8, 4
45+
TRINIUM, 9001, 8, 8
46+
TRITANIUM, 10800, 16, 8
47+
```
48+
This creates a pattern of each coil tier adding either 900 or 1800 temperature, and doubling either the Level or the
49+
Energy Discount. This is significant because
50+
* For the Electric Blast Furnace, each coil tier unlocks new recipes, and adds either
51+
* A 5% EU/t discount *(multiplicative)* to lower recipes *(from +900 temp)*
52+
* A Perfect Overclock to lower recipes *(from +1800 temp)*
53+
* For the Multi-Smelter, there are effectively two stats: work-per-time, and work-per-EU.
54+
* For tiers that double the Level, the Multi-Smelter gains 2x the work-per-time, at the same work-per-EU
55+
* For tiers that double the Energy Discount, the Multi-Smelter gains 2x the work-per-EU, at the same work-per-time

0 commit comments

Comments
 (0)