mirror of
https://github.com/HbmMods/Hbm-s-Nuclear-Tech-GIT.git
synced 2026-08-10 17:55:44 +00:00
a
This commit is contained in:
parent
3b00c69440
commit
bdc68f1382
@ -56,4 +56,4 @@
|
||||
* Fixed blast furnace NEI handler not cycling through all valid material shapes
|
||||
* Fixed RoR transmitter sending empty signals when unused mappings apply
|
||||
* Fixed hopper IO for battery sockets being entirely broken
|
||||
* Fixed cargo elevators not dropping the correct amount of segments
|
||||
* Fixed cargo elevators not dropping the correct amount of segments
|
||||
|
||||
@ -141,16 +141,17 @@ public class AssemblyMachineRecipes extends GenericRecipes<GenericRecipe> {
|
||||
.inputItems(new OreDictStack(STEEL.shell(), 4), new OreDictStack(PB.plateCast(), 4), new ComparableStack(ModItems.rod_quad_empty, 10), new OreDictStack(KEY_BROWN, 3)));
|
||||
|
||||
// powders
|
||||
String autoCyclotron = "autoswitch.cyclotron";
|
||||
this.register(new GenericRecipe("ass.partlith").setup(40, 100).outputItems(new ItemStack(ModItems.part_lithium, 8))
|
||||
.inputItems(new OreDictStack(LI.dust(), 1)));
|
||||
.inputItems(new OreDictStack(LI.dust(), 1)).setGroup(autoCyclotron, INSTANCE));
|
||||
this.register(new GenericRecipe("ass.partberyl").setup(40, 100).outputItems(new ItemStack(ModItems.part_beryllium, 8))
|
||||
.inputItems(new OreDictStack(BE.dust(), 1)));
|
||||
.inputItems(new OreDictStack(BE.dust(), 1)).setGroup(autoCyclotron, INSTANCE));
|
||||
this.register(new GenericRecipe("ass.partcoal").setup(40, 100).outputItems(new ItemStack(ModItems.part_carbon, 8))
|
||||
.inputItems(new OreDictStack(COAL.dust(), 1)));
|
||||
.inputItems(new OreDictStack(COAL.dust(), 1)).setGroup(autoCyclotron, INSTANCE));
|
||||
this.register(new GenericRecipe("ass.partcop").setup(40, 100).outputItems(new ItemStack(ModItems.part_copper, 8))
|
||||
.inputItems(new OreDictStack(CU.dust(), 1)));
|
||||
.inputItems(new OreDictStack(CU.dust(), 1)).setGroup(autoCyclotron, INSTANCE));
|
||||
this.register(new GenericRecipe("ass.partplut").setup(40, 100).outputItems(new ItemStack(ModItems.part_plutonium, 8))
|
||||
.inputItems(new OreDictStack(PU.dust(), 1)));
|
||||
.inputItems(new OreDictStack(PU.dust(), 1)).setGroup(autoCyclotron, INSTANCE));
|
||||
|
||||
// bunker blocks
|
||||
this.register(new GenericRecipe("ass.cmbtile").setup(100, 100).outputItems(new ItemStack(ModBlocks.cmb_brick, 8))
|
||||
|
||||
@ -132,6 +132,7 @@ armorMod.type.special=Spezial
|
||||
ass.nitra=Nitra zu Munition
|
||||
|
||||
autoswitch=Teil der Rezeptgruppe "%s"$Rezept ändert sich basierend auf das erste Item
|
||||
autoswitch.cyclotron=Zyklotron-Pulverkisten
|
||||
autoswitch.pile=Wiederaufbereitung Chicago-Pile-Brennstoff
|
||||
autoswitch.plate=Wiederaufbereitung Plattenbrennstoff
|
||||
autoswitch.plates=Metallplatten
|
||||
|
||||
@ -187,6 +187,7 @@ armorMod.type.special=Special
|
||||
ass.nitra=Nitra to Ammunition
|
||||
|
||||
autoswitch=Part of auto switch group "%s"$Recipe changes based on first ingredient
|
||||
autoswitch.cyclotron=Cyclotron Powder Boxes
|
||||
autoswitch.pile=Reprocessing Chicago Pile Rods
|
||||
autoswitch.plate=Reprocessing Plate Fuel
|
||||
autoswitch.plates=Metal Plates
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user