
Alan's Basalt Generator
Активный0.0
Установок
Последнее обновление
Alan's Basalt Generator brings Basalt Generators from 1.16 to 1.7.10 while adding compatibility and recipes to Ex Nihilo to be playable from starting in the Nether.
*Check out my other Mod Alan's Bees and my youtube channel here:
https://www.curseforge.com/minecraft/mc-mods/alans-bees
Alan's Basalt Generator has two required dependencies:
netherlicious-3.2.8 or higher (from creator DelirusCrux)
BlueIceV1.0 or higher (from creator SnowwyShiro)
- with these two mods, essentially only the Basalt Generator will work (along with a few other recipe additions)
Optional Ex Nihilo support (will need these mods and the included .zs file for support):
Ex-Nihilo-1.38-53 or higher (from creator Erasmus_Crowley)
MineTweakerRecipeMaker-1.7.10-1.1.0.11 (from creator DoubleDoorDev) and it's dependcies CraftTweaker and ModTweaker shown below. - not version specific but this is the most up to date for 1.7.10
CraftTweaker-1.7.10-3.0.13 (from creator Jaredlll08) - not version specific but this is the most up to date for1.7.10
ModTweaker2-0.9.6 (from creator Jaredlll08) - not version specific but this is the most up to date for1.7.10
Recipes.zs file - If you've used Minetweaker before great! Copy and paste the code at the bottom of this description into a new .zs file in your .minecraft folder at the directory (scripts > MineTweakerRecipeMaker > scripts).
If you have no idea what I'm talking about watch my youtube setup tutorial here, (it's not difficult):
*NOTE: THESE RECIPES WILL NEED TO BE ADDED TO MINETWEAKER TO MAKE ITEMS/BLOCKS IN THIS MOD, AND NETHERLICIOUS, COMPATIBLE WITH EX NIHILO. DO NOT SKIP THIS STEP
Base Additions:
- Emberflow (liquid) and Emberflow Bucket:
A new liquid similar to lava which is only placable in the Nether. when it flows into an air space with soul soil directly below it and a blue ice block somewhere adjacent to it, it will generate a Basalt block. (Basalt can be changed to another block in the config file)
- Craft Emberflow like this:
- Twisting Vines and Weeping Vines now have a chance to spawn on Warped Nylium and Crimson Nylium blocks respectively, even outside of Warped and Crimson Forests. (This is intended to help players in nether skyblock maps.)
- Use Twisting Vines and Weeping Vines to Craft String
- Crying Obsidian and Crying Blackstone recipes are added
- Obsidian recipe is added using my new item Obsidian Dust.
- Blackstone recipe is added using my new item Blackstone clump.
Ex Nihilo Compatibility Additons (These additions aim to make Ex Nihilo compatible with starting in the Nether and only work with Ex Nihilo loaded).
- Added nether organic material compostable in Ex Nihilo Barrel. (Still produces Dirt)
- Dirt Corruption - Dirt, Grass, and Podzel blocks become corrupted on being placed in the nether, turning into netherrack. (Using a barrel to compost nether organinc material into dirt, and then placing it, creates a way for the player to obtain netherrack in the nether as well as keeping dirt in hand - both can be sifted using a sieve),
- Dirt Corruption can be disabled in the config file, (though I recommend keeping it enabled).
- Added Sieve drops for sifting Netherrack using Ex Nihilo's Sieve.
- Breaking Basalt or Blackstone with a Hammer drops Gravel, (By default in Ex Nihilo Gravel can be sifted to obtain various broken ores.)
- Emberflow can be used to heat an Ex Nihilo crucible at a speed of 4x (a bit better than lava which is at 2x speed).
- Basalt and Blackstone can be melted in a crucible to create Emberflow liquid.
Disclaimer: this mod may be used in your modpacks but may not be directly monetized by itself or in part of any pack. Additionally, although you may copy and distribute the mod freely, it may not be modified without first receiving my permission. If you do monetize this mod despite this prohibiton I will not be held liable and you do so at your own risk.
Copy this into your Recipes.zs file
//RECIPES FOR BASALT GENERATOR MOD////////////////////////////////////////////////////////////////////////////
//Add shaped recipes
recipes.addShaped(<exnihilo:hammer_stone>, [[null, <ore:cobblestone>, null], [null, <ore:stickWood>, <ore:cobblestone>], [<ore:stickWood>, null, null]]);
recipes.addShaped(<exnihilo:hammer_stone>, [[null, <netherlicious:Blackstone>, null], [null, <ore:stickWood>, <netherlicious:Blackstone>], [<ore:stickWood>, null, null]]);
//add basaltgenmod:emberflow as a heatsource for the crucible
mods.exnihilo.Crucible.addHeatSource(<basaltgenmod:emberflow>, 0.4);
//add Blackstone and Basalt from netherlicious as blocks to make emberflow block in the crucible
mods.exnihilo.Crucible.addRecipe(<netherlicious:Blackstone>, <liquid:emberflow> * 250);
mods.exnihilo.Crucible.addRecipe(<netherlicious:Basalt>, <liquid:emberflow> * 250);
//Hammer: add recipes
mods.exnihilo.Hammer.addRecipe(<netherlicious:Basalt>, <minecraft:gravel>, 1.0, 0.0);
mods.exnihilo.Hammer.addRecipe(<netherlicious:Blackstone>, <minecraft:gravel>, 1.0, 0.0);
//Composting using the Barrel additions
mods.exnihilo.Composting.addRecipe(<netherlicious:Wartblock>, 0.125, "4d5156");
mods.exnihilo.Composting.addRecipe(<netherlicious:Wartblock:1>, 0.125, "4d5156");
mods.exnihilo.Composting.addRecipe(<netherlicious:Wartblock:2>, 0.125, "4d5156");
mods.exnihilo.Composting.addRecipe(<netherlicious:Wartblock:3>, 0.125, "4d5156");
mods.exnihilo.Composting.addRecipe(<netherlicious:Fungus>, 0.125, "4d5156");
mods.exnihilo.Composting.addRecipe(<netherlicious:Fungus:1>, 0.125, "4d5156");
mods.exnihilo.Composting.addRecipe(<netherlicious:Fungus:2>, 0.125, "4d5156");
mods.exnihilo.Composting.addRecipe(<netherlicious:GloomHibiscus>, 0.1, "4d5156");
mods.exnihilo.Composting.addRecipe(<netherlicious:HellderBerryItem>, 0.1, "4d5156");
mods.exnihilo.Composting.addRecipe(<netherlicious:InfernalReedItem>, 0.1, "4d5156");
mods.exnihilo.Composting.addRecipe(<netherlicious:GhastlyGourdSeeds>, 0.1, "4d5156");
mods.exnihilo.Composting.addRecipe(<netherlicious:AbyssalOatSeeds>, 0.1, "4d5156");
mods.exnihilo.Composting.addRecipe(<netherlicious:DevilishMaizeItem>, 0.1, "4d5156");
mods.exnihilo.Composting.addRecipe(<netherlicious:AbyssalOatItem>, 0.1, "4d5156");
mods.exnihilo.Composting.addRecipe(<netherlicious:DevilishMaizeSeeds>, 0.1, "4d5156");
mods.exnihilo.Composting.addRecipe(<netherlicious:WartItem:2>, 0.1, "4d5156");
mods.exnihilo.Composting.addRecipe(<netherlicious:WartItem:1>, 0.1, "4d5156");
mods.exnihilo.Composting.addRecipe(<netherlicious:WartItem>, 0.1, "4d5156");
mods.exnihilo.Composting.addRecipe(<netherlicious:FungalTreat>, 0.1, "4d5156");
mods.exnihilo.Composting.addRecipe(<netherlicious:HellderBerrySeeds>, 0.1, "4d5156");
mods.exnihilo.Composting.addRecipe(<netherlicious:GhastlyGourdStem>, 0.1, "4d5156");
//Sieve Recipe additions
mods.exnihilo.Sieve.addRecipe(<minecraft:netherrack>, <netherlicious:InfernalReedItem>, 50);
mods.exnihilo.Sieve.addRecipe(<minecraft:netherrack>, <netherlicious:Fungus>, 50);
mods.exnihilo.Sieve.addRecipe(<minecraft:netherrack>, <netherlicious:Fungus:1>, 50);
mods.exnihilo.Sieve.addRecipe(<minecraft:netherrack>, <netherlicious:Fungus:2>, 50);
mods.exnihilo.Sieve.addRecipe(<minecraft:netherrack>, <netherlicious:InfernalReedItem>, 50);
mods.exnihilo.Sieve.addRecipe(<minecraft:netherrack>, <netherlicious:GhastlyGourdSeeds>, 50);
mods.exnihilo.Sieve.addRecipe(<minecraft:netherrack>, <netherlicious:AbyssalOatSeeds>, 50);
mods.exnihilo.Sieve.addRecipe(<minecraft:netherrack>, <netherlicious:DevilishMaizeItem>, 50);
mods.exnihilo.Sieve.addRecipe(<minecraft:netherrack>, <netherlicious:AbyssalOatItem>, 50);
mods.exnihilo.Sieve.addRecipe(<minecraft:netherrack>, <netherlicious:DevilishMaize Seeds>, 50);
mods.exnihilo.Sieve.addRecipe(<minecraft:netherrack>, <netherlicious:HellderBerrySeeds>, 50);
mods.exnihilo.Sieve.addRecipe(<minecraft:netherrack>, <netherlicious:GhastlyGourdStem>, 50);
mods.exnihilo.Sieve.addRecipe(<minecraft:netherrack>, <minecraft:dye:15>, 10);
mods.exnihilo.Sieve.addRecipe(<minecraft:netherrack>, <basaltgenmod:obsidian_dust>, 50);
mods.exnihilo.Sieve.addRecipe(<minecraft:netherrack>, <basaltgenmod:blackstone_clump>, 2);