Skip to content

Commit

Permalink
Allow Titanium, Tungstensteel to be acid proof (#2223)
Browse files Browse the repository at this point in the history
  • Loading branch information
serenibyss authored Nov 29, 2023
1 parent 5470edc commit 82aad90
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -833,7 +833,7 @@ public static void register() {
.toolStats(ToolProperty.Builder.of(8.0F, 6.0F, 1536, 3)
.enchantability(14).build())
.rotorStats(7.0f, 3.0f, 1600)
.fluidPipeProperties(2426, 150, true)
.fluidPipeProperties(2426, 150, true, true, false, false)
.blast(b -> b
.temp(1941, GasTier.MID)
.blastStats(VA[HV], 1500)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -122,7 +122,7 @@ public static void register() {
.toolStats(ToolProperty.Builder.of(9.0F, 7.0F, 2048, 4)
.enchantability(14).build())
.rotorStats(8.0f, 4.0f, 2560)
.fluidPipeProperties(3587, 225, true)
.fluidPipeProperties(3587, 225, true, true, false, false)
.cableProperties(V[IV], 3, 2)
.blast(b -> b
.temp(4000, GasTier.MID)
Expand Down
4 changes: 2 additions & 2 deletions src/main/java/gregtech/common/items/MetaItem1.java
Original file line number Diff line number Diff line change
Expand Up @@ -192,15 +192,15 @@ public void registerSubItems() {

FLUID_CELL_LARGE_TITANIUM = addItem(83, "large_fluid_cell.titanium")
.addComponents(new FilteredFluidStats(128000,
Materials.Titanium.getProperty(PropertyKey.FLUID_PIPE).getMaxFluidTemperature(), true, false,
Materials.Titanium.getProperty(PropertyKey.FLUID_PIPE).getMaxFluidTemperature(), true, true,
false, false, true), new ItemFluidContainer())
.setMaterialInfo(new ItemMaterialInfo(new MaterialStack(Materials.Titanium, M * 6))) // ingot * 6
.setCreativeTabs(GregTechAPI.TAB_GREGTECH_TOOLS);

FLUID_CELL_LARGE_TUNGSTEN_STEEL = addItem(84, "large_fluid_cell.tungstensteel")
.addComponents(new FilteredFluidStats(512000,
Materials.TungstenSteel.getProperty(PropertyKey.FLUID_PIPE).getMaxFluidTemperature(), true,
false, false, false, true), new ItemFluidContainer())
true, false, false, true), new ItemFluidContainer())
.setMaxStackSize(32)
.setMaterialInfo(new ItemMaterialInfo(new MaterialStack(Materials.TungstenSteel, M * 8))) // ingot * 8
.setCreativeTabs(GregTechAPI.TAB_GREGTECH_TOOLS);
Expand Down

0 comments on commit 82aad90

Please sign in to comment.