Skip to content

Commit

Permalink
Adjust EV coil recipe & texture (GregTechCEu#2518)
Browse files Browse the repository at this point in the history
  • Loading branch information
Firyst authored Jul 14, 2024
1 parent fa281c8 commit b6eec3c
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/main/java/gregtech/common/items/MetaItem1.java
Original file line number Diff line number Diff line change
Expand Up @@ -279,7 +279,7 @@ public void registerSubItems() {
VOLTAGE_COIL_HV = addItem(99, "voltage_coil.hv").setMaterialInfo(new ItemMaterialInfo(
new MaterialStack(Materials.BlackSteel, M * 2), new MaterialStack(Materials.SteelMagnetic, M / 2)));
VOLTAGE_COIL_EV = addItem(100, "voltage_coil.ev")
.setMaterialInfo(new ItemMaterialInfo(new MaterialStack(Materials.TungstenSteel, M * 2),
.setMaterialInfo(new ItemMaterialInfo(new MaterialStack(Materials.Platinum, M * 2),
new MaterialStack(Materials.NeodymiumMagnetic, M / 2)));
VOLTAGE_COIL_IV = addItem(101, "voltage_coil.iv").setMaterialInfo(new ItemMaterialInfo(
new MaterialStack(Materials.Iridium, M * 2), new MaterialStack(Materials.NeodymiumMagnetic, M / 2)));
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -158,7 +158,7 @@ public static void init() {

ASSEMBLER_RECIPES.recipeBuilder().duration(200).EUt(VA[EV])
.input(stick, NeodymiumMagnetic)
.input(wireFine, TungstenSteel, 16)
.input(wireFine, Platinum, 16)
.circuitMeta(1)
.outputs(VOLTAGE_COIL_EV.getStackForm())
.buildAndRegister();
Expand Down
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.

0 comments on commit b6eec3c

Please sign in to comment.