-
Notifications
You must be signed in to change notification settings - Fork 12
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
f05d441
commit d1230c8
Showing
1 changed file
with
14 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,15 @@ | ||
recipes.addShapeless(<practicallogistics2:sapphire> * 2, [<minecraft:dye:4>, <ore:crystalCertusQuartz> | <ore:crystalPureCertusQuartz>]); | ||
recipes.addShapeless(<practicallogistics2:sapphire> * 2, [<minecraft:dye:4>, <ore:gemRuby>]); | ||
recipes.addShapeless(<practicallogistics2:sapphire> * 2, [<minecraft:dye:4>, <ore:gemRuby>]); | ||
|
||
// <ore:gemSapphire> in Factory Tech drill grinder, Immersive Engineering crusher or Integrated Dynamics squeezer = <practicallogistics2:sapphiredust> | ||
|
||
// Third argument is whether the recipe works in a machine with stone parts. | ||
mods.factorytech.DrillGrinder.addRecipe(<practicallogistics2:sapphiredust>, <ore:gemSapphire>, true); | ||
|
||
// Third argument is how much power the Crusher will use for this recipe. | ||
mods.immersiveengineering.Crusher.addRecipe(<practicallogistics2:sapphiredust>, <ore:gemSapphire>, 2048); | ||
|
||
|
||
for item in <ore:gemSapphire>.items{ | ||
mods.integrateddynamics.Squeezer.addRecipe(item, <practicallogistics2:sapphiredust>); | ||
} |