Skip to content

Commit

Permalink
Make crafting unit recipies consistent (AppliedEnergistics#7550)
Browse files Browse the repository at this point in the history
Make crafting unit recipies consistent in order [unit, additional item]
this mainly serves to make the guide more visually appealing and
readable.

Current status:

![image](https://github.com/AppliedEnergistics/Applied-Energistics-2/assets/11778108/9c04f034-5873-4569-b818-36da6b07d26e)
  • Loading branch information
LostQuasar authored Jan 8, 2024
1 parent 163a33a commit 5300718
Showing 1 changed file with 5 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -577,13 +577,13 @@ protected void buildRecipes(RecipeOutput consumer) {
.unlockedBy("has_crafting_unit", has(AEBlocks.CRAFTING_UNIT))
.save(consumer, AppEng.makeId("network/crafting/1k_cpu_crafting_storage"));
ShapelessRecipeBuilder.shapeless(RecipeCategory.MISC, AEBlocks.CRAFTING_STORAGE_4K)
.requires(AEItems.CELL_COMPONENT_4K)
.requires(AEBlocks.CRAFTING_UNIT)
.requires(AEItems.CELL_COMPONENT_4K)
.unlockedBy("has_crafting_unit", has(AEBlocks.CRAFTING_UNIT))
.save(consumer, AppEng.makeId("network/crafting/4k_cpu_crafting_storage"));
ShapelessRecipeBuilder.shapeless(RecipeCategory.MISC, AEBlocks.CRAFTING_STORAGE_16K)
.requires(AEItems.CELL_COMPONENT_16K)
.requires(AEBlocks.CRAFTING_UNIT)
.requires(AEItems.CELL_COMPONENT_16K)
.unlockedBy("has_crafting_unit", has(AEBlocks.CRAFTING_UNIT))
.save(consumer, AppEng.makeId("network/crafting/16k_cpu_crafting_storage"));
ShapelessRecipeBuilder.shapeless(RecipeCategory.MISC, AEBlocks.CRAFTING_STORAGE_64K)
Expand All @@ -592,18 +592,18 @@ protected void buildRecipes(RecipeOutput consumer) {
.unlockedBy("has_crafting_unit", has(AEBlocks.CRAFTING_UNIT))
.save(consumer, AppEng.makeId("network/crafting/64k_cpu_crafting_storage"));
ShapelessRecipeBuilder.shapeless(RecipeCategory.MISC, AEBlocks.CRAFTING_STORAGE_256K)
.requires(AEItems.CELL_COMPONENT_256K)
.requires(AEBlocks.CRAFTING_UNIT)
.requires(AEItems.CELL_COMPONENT_256K)
.unlockedBy("has_crafting_unit", has(AEBlocks.CRAFTING_UNIT))
.save(consumer, AppEng.makeId("network/crafting/256k_cpu_crafting_storage"));
ShapelessRecipeBuilder.shapeless(RecipeCategory.MISC, AEBlocks.CRAFTING_ACCELERATOR)
.requires(AEItems.ENGINEERING_PROCESSOR)
.requires(AEBlocks.CRAFTING_UNIT)
.requires(AEItems.ENGINEERING_PROCESSOR)
.unlockedBy("has_crafting_unit", has(AEBlocks.CRAFTING_UNIT))
.save(consumer, AppEng.makeId("network/crafting/cpu_crafting_accelerator"));
ShapelessRecipeBuilder.shapeless(RecipeCategory.MISC, AEBlocks.CRAFTING_MONITOR)
.requires(AEParts.STORAGE_MONITOR)
.requires(AEBlocks.CRAFTING_UNIT)
.requires(AEParts.STORAGE_MONITOR)
.unlockedBy("has_crafting_unit", has(AEBlocks.CRAFTING_UNIT))
.save(consumer, AppEng.makeId("network/crafting/cpu_crafting_monitor"));

Expand Down

0 comments on commit 5300718

Please sign in to comment.