Skip to content
This repository has been archived by the owner on May 24, 2024. It is now read-only.

Commit

Permalink
recipe and text
Browse files Browse the repository at this point in the history
  • Loading branch information
HoleFish committed Jan 13, 2024
1 parent 07330c4 commit a079547
Show file tree
Hide file tree
Showing 3 changed files with 30 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -25,9 +25,11 @@
import static gregtech.api.enums.Mods.Thaumcraft;
import static gregtech.api.enums.Mods.TinkersGregworks;
import static gregtech.api.util.GT_ModHandler.getModItem;
import static gregtech.api.util.GT_RecipeBuilder.INGOTS;
import static gregtech.api.util.GT_RecipeBuilder.MINUTES;
import static gregtech.api.util.GT_RecipeBuilder.SECONDS;

import net.minecraft.init.Blocks;
import net.minecraft.item.ItemStack;
import net.minecraftforge.fluids.Fluid;
import net.minecraftforge.fluids.FluidRegistry;
Expand Down Expand Up @@ -1222,6 +1224,28 @@ public void run() {
6000,
500000);

if (GTPlusPlus.isModLoaded()) {
// Debug uncertainty resolver
TT_recipeAdder.addResearchableAssemblylineRecipe(
CustomItemList.UncertaintyX_Hatch.get(1L),
720_000_000,
5_120,
16_000_000,
6,
new Object[] { CustomItemList.UncertaintyX_Hatch.get(1L),
CustomItemList.hatch_CreativeMaintenance.get(1), ItemList.Field_Generator_UIV.get(1L),
GregtechItemList.Laser_Lens_Special.get(4),
new Object[] { OrePrefixes.circuit.get(Materials.Piko), 1 },
new Object[] { OrePrefixes.circuit.get(Materials.Piko), 1 },
CustomItemList.DATApipe.get(64), CustomItemList.DATApipe.get(64),
ItemList.Cover_Screen.get(1), new ItemStack(Blocks.stone_button, 16) },
new FluidStack[] { Materials.Iridium.getMolten(INGOTS * 100),
new FluidStack(ELEMENT.getInstance().NEPTUNIUM.getPlasma(), 20000),
new FluidStack(ELEMENT.getInstance().FERMIUM.getPlasma(), 20000) },
CustomItemList.hatch_CreativeUncertainty.get(1),
200 * 20,
(int) TierEU.RECIPE_UIV);
}
}

private void itemPartsUHVAsslineRecipes() {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -30,11 +30,11 @@ public IMetaTileEntity newMetaEntity(IGregTechTileEntity iGregTechTileEntity) {
public String[] getDescription() {
return new String[] { CommonValues.TEC_MARK_EM, translateToLocal("gt.blockmachines.debug.tt.certain.desc.0"), // Feeling
// certain,
// isn't
// it?
// for
// sure
EnumChatFormatting.AQUA.toString() + EnumChatFormatting.BOLD
+ translateToLocal("gt.blockmachines.debug.tt.certain.desc.1") // Schrödinger's cat ran out of
// the box
+ translateToLocal("gt.blockmachines.debug.tt.certain.desc.1") // Schrödinger's cat escaped the
// box
};
}

Expand Down
4 changes: 2 additions & 2 deletions src/main/resources/assets/tectech/lang/en_US.lang
Original file line number Diff line number Diff line change
Expand Up @@ -963,8 +963,8 @@ gt.blockmachines.debug.tt.writer.name=Debug Structure Writer
gt.blockmachines.debug.tt.writer.desc.0=Scans Blocks Around
gt.blockmachines.debug.tt.writer.desc.1=Prints Multiblock NonTE structure check code
gt.blockmachines.debug.tt.writer.desc.2=ABC axises aligned to machine front
gt.blockmachines.debug.tt.certain.desc.0=Feeling certain, isn't it?
gt.blockmachines.debug.tt.certain.desc.1=Schrödinger's cat ran out of the box
gt.blockmachines.debug.tt.certain.desc.0=Feeling certain, for sure
gt.blockmachines.debug.tt.certain.desc.1=Schrödinger's cat escaped the box

GT5U.gui.text.computing=§aComputing
GT5U.gui.text.providing_data=§aProviding Data
Expand Down

0 comments on commit a079547

Please sign in to comment.