Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- ####################
- # Nether Materials #
- ####################
- //Nether Rack
- val mortar = <terrafirmacraft:item.Mortar>;
- val jet = <terrafirmacraft:item.Ore:17>;
- recipes.addShaped(<minecraft:netherrack>, [[jet, mortar, jet],
- [mortar, jet, mortar],
- [jet, mortar, jet]]);
- //Soul Sand
- val flesh = <minecraft:rotten_flesh>;
- val sand = <ore:blockSand>;
- recipes.addShaped(<minecraft:soul_sand> * , [[flesh, flesh, flesh],
- [flesh, sand, flesh],
- [flesh, flesh, flesh]]);
- //Nether Wart
- recipes.addShapeless(<minecraft:nether_wart>, [<minecraft:soul_sand>,<terrafirmacraft:Fungi:0>,<terrafirmacraft:Fungi:1>]);
- //Glowstone Dust
- val netherquartz = <minecraft:quartz>;
- val gypsum = <terrafirmacraft:item.Ore:17>;
- furnace.addRecipe(netherquartz, gypsum);
- //Cost in RF to grind the material
- val grindPower = 2000;
- /*
- Chipped and Flawed drop one dust each with each tier better increasing in dust dropped by 1.
- All gems except chipped have a 50% chance to drop an extra glowstone dust.
- */
- mods.immersiveengineering.Crusher.addRecipe(<minecraft:glowstone_dust> * 1, <ore:gemChipped>, grindPower);
- mods.immersiveengineering.Crusher.addRecipe(<minecraft:glowstone_dust> * 1, <ore:gemFlawed>, grindPower, <minecraft:glowstone_dust>, 0.5);
- mods.immersiveengineering.Crusher.addRecipe(<minecraft:glowstone_dust> * 2, <ore:gemNormal>, grindPower, <minecraft:glowstone_dust>, 0.5);
- mods.immersiveengineering.Crusher.addRecipe(<minecraft:glowstone_dust> * 3, <ore:gemFlawless>, grindPower, <minecraft:glowstone_dust>, 0.5);
- mods.immersiveengineering.Crusher.addRecipe(<minecraft:glowstone_dust> * 4, <ore:gemExquisite>, grindPower, <minecraft:glowstone_dust>, 0.5);
Advertisement
Add Comment
Please, Sign In to add comment