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

Commit

Permalink
raw ore compression
Browse files Browse the repository at this point in the history
  • Loading branch information
kotelkonrad committed Sep 11, 2023
1 parent f815c41 commit c9d0b25
Showing 1 changed file with 7 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,13 @@ public static void init() {
.add("gem_" + ingot.getId(),Math.max(80, ingot.getMass() * 2), 16);
}
});
AntimatterMaterialTypes.RAW_ORE.all().forEach(raw_ore -> {
if (raw_ore.has(AntimatterMaterialTypes.BLOCK)) {
int count = 9;
COMPRESSING.RB().ii(RecipeIngredient.of(AntimatterMaterialTypes.RAW_ORE.get(raw_ore), count)).io(AntimatterMaterialTypes.RAW_ORE_BLOCK.get().get(raw_ore).asStack(1))
.add("block_" + raw_ore.getId(),Math.max(80, raw_ore.getMass() * 2), 16);
}
});
COMPRESSING.RB().ii(DUST.getMaterialIngredient(Wood, 1)).io(AntimatterMaterialTypes.PLATE.get(Wood, 1)).add("wood_plate",60, 4);
COMPRESSING.RB().ii(DUST.getMaterialIngredient(Fireclay, 1)).io(new ItemStack(CompressedFireClay)).add("compressed_fireclay",200, 2);
COMPRESSING.RB().ii(RecipeIngredient.of(ItemTags.SAPLINGS, 4)).io(new ItemStack(PlantBall)).add("plantball",300, 2);
Expand Down

0 comments on commit c9d0b25

Please sign in to comment.