Skip to content

Commit

Permalink
Change EV-tier Voltage Coil material to Platinum (#2233)
Browse files Browse the repository at this point in the history
  • Loading branch information
Zorbatron authored and krossgg committed Oct 30, 2024
1 parent bddf141 commit a536e18
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/com/gregtechceu/gtceu/data/item/GTItems.java
Original file line number Diff line number Diff line change
Expand Up @@ -2620,7 +2620,7 @@ public Component getItemName(ItemStack stack) {
.register();
public static ItemEntry<ComponentItem> VOLTAGE_COIL_EV = REGISTRATE.item("ev_voltage_coil", ComponentItem::new)
.lang("Extreme Voltage Coil").onRegister(compassNodeExist(GTCompassSections.MISC, "coil"))
.onRegister(materialInfo(new ItemMaterialInfo(new MaterialStack(GTMaterials.TungstenSteel, GTValues.M * 2),
.onRegister(materialInfo(new ItemMaterialInfo(new MaterialStack(GTMaterials.Platinum, GTValues.M * 2),
new MaterialStack(GTMaterials.NeodymiumMagnetic, GTValues.M / 2))))
.register();
public static ItemEntry<ComponentItem> VOLTAGE_COIL_IV = REGISTRATE.item("iv_voltage_coil", ComponentItem::new)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -195,7 +195,7 @@ public static void init(RecipeOutput provider) {

ASSEMBLER_RECIPES.recipeBuilder("voltage_coil_ev").duration(200).EUt(VA[EV])
.inputItems(rod, NeodymiumMagnetic)
.inputItems(wireFine, TungstenSteel, 16)
.inputItems(wireFine, Platinum, 16)
.circuitMeta(1)
.outputItems(VOLTAGE_COIL_EV)
.save(provider);
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 a536e18

Please sign in to comment.