Added recipes for sigils. Updated changelog for -18 release.
This commit is contained in:
parent
19bf728da3
commit
70d0723dde
|
@ -6,6 +6,13 @@ Version 2.0.0-18
|
||||||
- Fixed step height issue with C&B stuff. Apparently step height is now 0.6 by default instead of 0.5.
|
- Fixed step height issue with C&B stuff. Apparently step height is now 0.6 by default instead of 0.5.
|
||||||
- Added Ritual: Song of the Cleansing Soul to remove Living Armour upgrades from the armour.
|
- Added Ritual: Song of the Cleansing Soul to remove Living Armour upgrades from the armour.
|
||||||
- Added Ritual: Ritual of Living Evolution, which is used to set the living armour's max upgrade points to 300.
|
- Added Ritual: Ritual of Living Evolution, which is used to set the living armour's max upgrade points to 300.
|
||||||
|
- Added Ritual: The Timberman to cut down trees. Requires a chest on top of the MRS in order to collect the drops from harvested trees.
|
||||||
|
- Added Ritual: Hymn of Syphoning, which syphons up fluids around it in a 16 block radius and puts the fluid in the tank above it.
|
||||||
|
- Added Ritual: The Assembly of the High Altar, which places runes and blocks from the inventory above it in the world in the form of a blood altar. Autobuilding altars~
|
||||||
|
- Added Ritual: The Gate of the Fold.
|
||||||
|
- Added Ritual: The Filler. Places blocks from the inventory on top of it in the world.
|
||||||
|
- Added Ritual: Le Vulcanos Frigius
|
||||||
|
|
||||||
- Added tooltip to living armour to show the current upgrade points of the armour.
|
- Added tooltip to living armour to show the current upgrade points of the armour.
|
||||||
- Added recipe for the training bracelet. Combine in an anvil with an upgrade tome to set it as the upgrade to train.
|
- Added recipe for the training bracelet. Combine in an anvil with an upgrade tome to set it as the upgrade to train.
|
||||||
- Ammended range of Zephyr ritual
|
- Ammended range of Zephyr ritual
|
||||||
|
@ -14,6 +21,9 @@ Version 2.0.0-18
|
||||||
- Removed the FOV effect from the Quick Feet speed upgrade.
|
- Removed the FOV effect from the Quick Feet speed upgrade.
|
||||||
- Minor work on the Demon Crucible.
|
- Minor work on the Demon Crucible.
|
||||||
- Crucibles now fill the tartaric gems of close-by hellfire forges
|
- Crucibles now fill the tartaric gems of close-by hellfire forges
|
||||||
|
- Fixed rituals not correctly re-activating when taking off a redstone signal after reloading the world.
|
||||||
|
- Added Teleposition Sigil, which teleports the user to the bound Teleposer.
|
||||||
|
- Added Transposition Sigil, which picks up the block clicked on including the NBT of the given tile.
|
||||||
|
|
||||||
------------------------------------------------------
|
------------------------------------------------------
|
||||||
Version 2.0.0-17
|
Version 2.0.0-17
|
||||||
|
|
|
@ -202,6 +202,8 @@ public class ModRecipes
|
||||||
TartaricForgeRecipeRegistry.registerRecipe(ItemComponent.getStack(ItemComponent.REAGENT_BRIDGE), 600, 50, Blocks.soul_sand, Blocks.soul_sand, "stone", Blocks.obsidian);
|
TartaricForgeRecipeRegistry.registerRecipe(ItemComponent.getStack(ItemComponent.REAGENT_BRIDGE), 600, 50, Blocks.soul_sand, Blocks.soul_sand, "stone", Blocks.obsidian);
|
||||||
TartaricForgeRecipeRegistry.registerRecipe(ItemComponent.getStack(ItemComponent.REAGENT_SEVERANCE), 800, 70, Items.ender_eye, Items.ender_pearl, "ingotGold", "ingotGold");
|
TartaricForgeRecipeRegistry.registerRecipe(ItemComponent.getStack(ItemComponent.REAGENT_SEVERANCE), 800, 70, Items.ender_eye, Items.ender_pearl, "ingotGold", "ingotGold");
|
||||||
TartaricForgeRecipeRegistry.registerRecipe(ItemComponent.getStack(ItemComponent.REAGENT_COMPRESSION), 2000, 200, "blockIron", "blockGold", Blocks.obsidian, "cobblestone");
|
TartaricForgeRecipeRegistry.registerRecipe(ItemComponent.getStack(ItemComponent.REAGENT_COMPRESSION), 2000, 200, "blockIron", "blockGold", Blocks.obsidian, "cobblestone");
|
||||||
|
TartaricForgeRecipeRegistry.registerRecipe(ItemComponent.getStack(ItemComponent.REAGENT_TELEPOSITION), 1500, 200, ModBlocks.teleposer, "glowstone", "blockRedstone", "ingotGold");
|
||||||
|
TartaricForgeRecipeRegistry.registerRecipe(ItemComponent.getStack(ItemComponent.REAGENT_TRANSPOSITION), 1500, 200, ModBlocks.teleposer, "gemDiamond", Items.ender_pearl, Blocks.obsidian);
|
||||||
|
|
||||||
TartaricForgeRecipeRegistry.registerRecipe(new ItemStack(ModItems.sentientArmourGem), 240, 150, Items.diamond_chestplate, new ItemStack(ModItems.soulGem, 1, 1), Blocks.iron_block, Blocks.obsidian);
|
TartaricForgeRecipeRegistry.registerRecipe(new ItemStack(ModItems.sentientArmourGem), 240, 150, Items.diamond_chestplate, new ItemStack(ModItems.soulGem, 1, 1), Blocks.iron_block, Blocks.obsidian);
|
||||||
|
|
||||||
|
|
|
@ -18,7 +18,6 @@ import java.util.Iterator;
|
||||||
|
|
||||||
public class RitualPump extends Ritual
|
public class RitualPump extends Ritual
|
||||||
{
|
{
|
||||||
|
|
||||||
public static final String PUMP_RANGE = "pumpRange";
|
public static final String PUMP_RANGE = "pumpRange";
|
||||||
|
|
||||||
private ArrayList<BlockPos> liquidsCache;
|
private ArrayList<BlockPos> liquidsCache;
|
||||||
|
|
Loading…
Reference in a new issue