Added the recipe for the Inspectoris Scandalum and changed its name
This commit is contained in:
parent
6a2c30834e
commit
6315d38c8a
|
@ -8,6 +8,8 @@ Version 2.0.2-45
|
|||
- Added Fire Resistance Living Armour Upgrade, "Gift of Ignis."
|
||||
- Updated The Architect section of the documentation.
|
||||
- Fixed it so the Ritual will call stopRitual when a ritual stone is broken.
|
||||
- Added the recipe for the Inspectoris Scandalum (I had to check if I spelled that right) which acts as a helper for Altar Building
|
||||
- Right-clicking a MRS with the Ritual Diviner will affix the ritual hologram to the MRS.
|
||||
|
||||
------------------------------------------------------
|
||||
Version 2.0.2-44
|
||||
|
|
|
@ -5,12 +5,10 @@ import java.util.List;
|
|||
|
||||
import net.minecraft.init.Blocks;
|
||||
import net.minecraft.init.Items;
|
||||
import net.minecraft.item.ItemFishFood;
|
||||
import net.minecraft.item.ItemStack;
|
||||
import net.minecraft.item.crafting.FurnaceRecipes;
|
||||
import net.minecraft.util.ResourceLocation;
|
||||
import net.minecraftforge.common.ForgeModContainer;
|
||||
import net.minecraftforge.fluids.UniversalBucket;
|
||||
import net.minecraftforge.fml.common.registry.GameRegistry;
|
||||
import net.minecraftforge.oredict.OreDictionary;
|
||||
import net.minecraftforge.oredict.RecipeSorter;
|
||||
|
@ -18,7 +16,6 @@ import net.minecraftforge.oredict.ShapedOreRecipe;
|
|||
import net.minecraftforge.oredict.ShapelessOreRecipe;
|
||||
import WayofTime.bloodmagic.BloodMagic;
|
||||
import WayofTime.bloodmagic.alchemyArray.AlchemyArrayEffectBinding;
|
||||
import WayofTime.bloodmagic.api.BloodMagicAPI;
|
||||
import WayofTime.bloodmagic.api.Constants;
|
||||
import WayofTime.bloodmagic.api.altar.EnumAltarTier;
|
||||
import WayofTime.bloodmagic.api.compress.CompressionRegistry;
|
||||
|
@ -157,6 +154,7 @@ public class ModRecipes
|
|||
AltarRecipeRegistry.registerRecipe(new AltarRecipeRegistry.AltarRecipe(new ItemStack(Items.DIAMOND), OrbRegistry.getOrbStack(ModItems.orbWeak), EnumAltarTier.ONE, 2000, 2, 1));
|
||||
AltarRecipeRegistry.registerRecipe(new AltarRecipeRegistry.AltarRecipe(new ItemStack(Blocks.STONE), new ItemStack(ModItems.slate), EnumAltarTier.ONE, 1000, 5, 5));
|
||||
AltarRecipeRegistry.registerRecipe(new AltarRecipeRegistry.AltarRecipe(new ItemStack(Items.BUCKET), new ItemStack(ForgeModContainer.getInstance().universalBucket), EnumAltarTier.ONE, 1000, 5, 0));
|
||||
AltarRecipeRegistry.registerRecipe(new AltarRecipeRegistry.AltarRecipe(new ItemStack(Items.BOOK), new ItemStack(ModItems.sanguineBook), EnumAltarTier.ONE, 1000, 20, 0));
|
||||
|
||||
// TWO
|
||||
AltarRecipeRegistry.registerFillRecipe(OrbRegistry.getOrbStack(ModItems.orbApprentice), EnumAltarTier.TWO, ModItems.orbApprentice.getCapacity(), 5, 5);
|
||||
|
|
|
@ -169,7 +169,7 @@ item.BloodMagic.itemFilter.modItems.name=Mod Item Filter
|
|||
item.BloodMagic.itemFilter.oreDict.name=Ore Dictionary Item Filter
|
||||
|
||||
item.BloodMagic.experienceTome.name=Tome of Peritia
|
||||
item.BloodMagic.sanguineBook.name=Book of Sanguine
|
||||
item.BloodMagic.sanguineBook.name=Inspectoris Scandalum
|
||||
|
||||
item.BloodMagic.livingPointUpgrade.draftAngelus.name=Draft of Angelus
|
||||
|
||||
|
|
Loading…
Reference in a new issue