Skip to content

Commit

Permalink
Crush sapphire into dust
Browse files Browse the repository at this point in the history
  • Loading branch information
TheDeviantCrafter committed Sep 7, 2019
1 parent f05d441 commit d1230c8
Showing 1 changed file with 14 additions and 1 deletion.
15 changes: 14 additions & 1 deletion scripts/mod-specific scripts/practicallogistics2.zs
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>);
}

0 comments on commit d1230c8

Please sign in to comment.