ste assorted hard recipes

This commit is contained in:
m2r1k5 2022-03-26 11:28:26 +08:00
parent 42d4a5b7a7
commit 492e8c443a
3 changed files with 30 additions and 6 deletions

View File

@ -25,12 +25,6 @@ alloy.recipeBuilder().inputs([<minecraft:diamond>,<ore:dustPulsating>]).outputs(
furnace.remove(<metaitem:nuggetWroughtIron>);
furnace.addRecipe(<metaitem:ingotWroughtIron>, <minecraft:iron_ingot>, 0.0);
recipes.remove(<storagedrawers:upgrade_template>);
recipes.addShaped(<storagedrawers:upgrade_template> * 2, [
[<ore:stickWood>, <ore:stickWood>, <ore:stickWood>],
[<ore:stickWood>, <storagedrawers:customdrawers>, <ore:stickWood>],
[<ore:stickWood>, <ore:stickWood>, <ore:stickWood>]]);
//Wood Pulp
recipes.addShapeless(<metaitem:dustWood> * 4,[<ore:logWood>,<ore:gtceMortars>]);

View File

@ -716,6 +716,8 @@ recipes.addShaped(<minecraft:dispenser>, [
[<metaitem:gearSmallIron>, <metaitem:stickRedAlloy>, <metaitem:gearSmallIron>]
]);
recipes.remove(<minecraft:comparator>);
recipes.remove(<minecraft:repeater>);
recipes.remove(<minecraft:piston>);
// Piston * 4
@ -839,6 +841,27 @@ assembler.recipeBuilder()
.duration(100).EUt(960)
.buildAndRegister();
// Small Storage Crates
recipes.removeByRecipeName("actuallyadditions:recipes162");
assembler.recipeBuilder()
.inputs(<ore:chestWood> * 4, <metaitem:frameTreatedWood> * 4, <metaitem:crate.steel>)
.outputs(<actuallyadditions:block_giant_chest>)
.duration(100).EUt(7).buildAndRegister();
// Drawer Upgrades
recipes.remove(<storagedrawers:upgrade_template>);
recipes.removeByRecipeName("storagedrawers:upgrade_storage_emerald");
recipes.removeByRecipeName("storagedrawers:upgrade_storage_diamond");
recipes.addShaped(<storagedrawers:upgrade_template> * 4, [
[<ore:stickBrass>, <ore:stickBrass>, <ore:stickBrass>],
[<ore:stickBrass>, <storagedrawers:customdrawers>, <ore:stickBrass>],
[<ore:stickBrass>, <ore:stickBrass>, <ore:stickBrass>]]);
recipes.addShaped(<storagedrawers:upgrade_storage:3>, [[<ore:stickWood>, <ore:stickWood>, <ore:stickWood>], [<ore:ingotAluminium>, <storagedrawers:upgrade_template>, <ore:ingotAluminium>], [<ore:stickWood>, <ore:stickWood>, <ore:stickWood>]]);
recipes.addShaped(<storagedrawers:upgrade_storage:4>, [[<ore:stickWood>, <ore:stickWood>, <ore:stickWood>], [<ore:ingotVibrantAlloy>, <storagedrawers:upgrade_template>, <ore:ingotVibrantAlloy>], [<ore:stickWood>, <ore:stickWood>, <ore:stickWood>]]);
// Removals
mods.jei.JEI.removeAndHide(<thermalexpansion:augment:640>);
recipes.removeByMod("deepmoblearning");

View File

@ -505,6 +505,13 @@ autoclave.recipeBuilder()
.EUt(320)
.buildAndRegister();
// Upgrade Template
recipes.remove(<storagedrawers:upgrade_template>);
recipes.addShaped(<storagedrawers:upgrade_template> * 2, [
[<ore:stickWood>, <ore:stickWood>, <ore:stickWood>],
[<ore:stickWood>, <storagedrawers:customdrawers>, <ore:stickWood>],
[<ore:stickWood>, <ore:stickWood>, <ore:stickWood>]]);
// Removals
// GT
mods.jei.JEI.removeAndHide(<meta_tile_entity:steam_extractor_bronze>);