Elfinlocks / Astral_Engineering

This is the repository for Astral Engineering
https://www.curseforge.com/minecraft/modpacks/astral-engineering
2 stars 0 forks source link

Missing Recipes for Washing Ore Dust #33

Closed OJofSteel closed 2 years ago

OJofSteel commented 2 years ago

Issue: When using the Create Crushing Wheel, the end product is ore dust from Thermal Series. However, there are recipes missing in order to wash the Thermal Series Ore Dust into their respective nuggets. Copper Dust is the only ore dust that can be washed.

Solution: In CraftTweaker, I suggest adding compatibility recipes so all relevant ore dusts can be washed like Copper Dust. An alternative solution is to remove the Copper Dust wash recipe.

Below I have written the recipes to wash forge tagged dusts of the following ores: Iron, Gold, Tin, Osmium, Uranium, Lead, Silver, Nickel, Zinc. The input is any forge tagged dust of that Ore type, the output is 10 guaranteed Thermal Series nuggets (where possible, otherwise Mekanism, Create, or Immersive Engineering nuggets are used), with a 50% for 5 additional nuggets.

Recipes for CraftTweaker Ore Dust Washing

.addRecipe("wash_iron_dust", [ * 10, * 5 % 50], ); .addRecipe("wash_gold_dust", [ * 10, * 5 % 50], ); .addRecipe("wash_tin_dust", [ * 10, * 5 % 50], ); .addRecipe("wash_osmium_dust", [ * 10, * 5 % 50], ); .addRecipe("wash_urnaium_dust", [ * 10, * 5 % 50], ); .addRecipe("wash_lead_dust", [ * 10, * 5 % 50], ); .addRecipe("wash_silver_dust", [ * 10, * 5 % 50], ); .addRecipe("wash_nickel_dust", [ * 10, * 5 % 50], ); .addRecipe("wash_zinc_dust", [ * 10, * 5 % 50], );
OJofSteel commented 2 years ago

Forgive me, the osmium recipe is wrong. The correct one is

.addRecipe("wash_osmium_dust", [ * 10, * 5 % 50], ); And the Nickel recipe was wrong, correct one is .addRecipe("wash_nickel_dust", [ * 10, * 5 % 50], ); Editted suggestion to contain the updated recipes
Elfinlocks commented 2 years ago

Thanks for the writeup! Adding this to upcoming patch