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

Added textures #191

Merged
merged 11 commits into from
Sep 15, 2023
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
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.