diff --git a/changelog.txt b/changelog.txt index 777857d3..955bc16a 100644 --- a/changelog.txt +++ b/changelog.txt @@ -7,6 +7,11 @@ Version 2.0.0-17 - [Thaumcraft] Runic Shielding - Fixed Blood Altar's progress resetting when clicking with another item - Fixed Divination and Seer sigils crashing when clicking on an altar while not bound +- Added crafting recipes for the following sigils: + - Compression + - Phantom Bridge + - Ender Severance + - Haste ------------------------------------------------------ Version 2.0.0-16 diff --git a/src/main/java/WayofTime/bloodmagic/item/ItemComponent.java b/src/main/java/WayofTime/bloodmagic/item/ItemComponent.java index 6c608c52..c4440fde 100644 --- a/src/main/java/WayofTime/bloodmagic/item/ItemComponent.java +++ b/src/main/java/WayofTime/bloodmagic/item/ItemComponent.java @@ -31,6 +31,10 @@ public class ItemComponent extends Item public static final String COMPONENT_FRAME_PART = "frameParts"; public static final String REAGENT_BLOODLIGHT = "reagentBloodLight"; public static final String REAGENT_MAGNETISM = "reagentMagnetism"; + public static final String REAGENT_HASTE = "reagentHaste"; + public static final String REAGENT_COMPRESSION = "reagentCompression"; + public static final String REAGENT_BRIDGE = "reagentBridge"; + public static final String REAGENT_SEVERANCE = "reagentSeverance"; public ItemComponent() { @@ -59,6 +63,10 @@ public class ItemComponent extends Item names.add(10, COMPONENT_FRAME_PART); names.add(11, REAGENT_BLOODLIGHT); names.add(12, REAGENT_MAGNETISM); + names.add(13, REAGENT_HASTE); + names.add(14, REAGENT_COMPRESSION); + names.add(15, REAGENT_BRIDGE); + names.add(16, REAGENT_SEVERANCE); } @Override diff --git a/src/main/java/WayofTime/bloodmagic/registry/ModRecipes.java b/src/main/java/WayofTime/bloodmagic/registry/ModRecipes.java index 417202f1..385a07f8 100644 --- a/src/main/java/WayofTime/bloodmagic/registry/ModRecipes.java +++ b/src/main/java/WayofTime/bloodmagic/registry/ModRecipes.java @@ -154,6 +154,10 @@ public class ModRecipes AlchemyArrayRecipeRegistry.registerCraftingRecipe(ItemComponent.getStack(ItemComponent.REAGENT_SUPPRESSION), new ItemStack(ModItems.slate, 1, 3), new ItemStack(ModItems.sigilSuppression), new ResourceLocation("bloodmagic", "textures/models/AlchemyArrays/SuppressionSigil.png")); AlchemyArrayRecipeRegistry.registerCraftingRecipe(ItemComponent.getStack(ItemComponent.REAGENT_BLOODLIGHT), new ItemStack(ModItems.slate, 1, 2), new ItemStack(ModItems.sigilBloodLight), new ResourceLocation("bloodmagic", "textures/models/AlchemyArrays/LightSigil.png")); AlchemyArrayRecipeRegistry.registerCraftingRecipe(ItemComponent.getStack(ItemComponent.REAGENT_MAGNETISM), new ItemStack(ModItems.slate, 1, 2), new ItemStack(ModItems.sigilMagnetism), new ResourceLocation("bloodmagic", "textures/models/AlchemyArrays/MagnetismSigil.png")); + AlchemyArrayRecipeRegistry.registerCraftingRecipe(ItemComponent.getStack(ItemComponent.REAGENT_HASTE), new ItemStack(ModItems.slate, 1, 3), new ItemStack(ModItems.sigilHaste), new ResourceLocation("bloodmagic", "textures/models/AlchemyArrays/WIPArray.png")); + AlchemyArrayRecipeRegistry.registerCraftingRecipe(ItemComponent.getStack(ItemComponent.REAGENT_BRIDGE), new ItemStack(ModItems.slate, 1, 3), new ItemStack(ModItems.sigilPhantomBridge), new ResourceLocation("bloodmagic", "textures/models/AlchemyArrays/WIPArray.png")); + AlchemyArrayRecipeRegistry.registerCraftingRecipe(ItemComponent.getStack(ItemComponent.REAGENT_COMPRESSION), new ItemStack(ModItems.slate, 1, 3), new ItemStack(ModItems.sigilCompression), new ResourceLocation("bloodmagic", "textures/models/AlchemyArrays/WIPArray.png")); + AlchemyArrayRecipeRegistry.registerCraftingRecipe(ItemComponent.getStack(ItemComponent.REAGENT_SEVERANCE), new ItemStack(ModItems.slate, 1, 3), new ItemStack(ModItems.sigilEnderSeverance), new ResourceLocation("bloodmagic", "textures/models/AlchemyArrays/WIPArray.png")); } public static void addCompressionHandlers() @@ -188,6 +192,11 @@ public class ModRecipes TartaricForgeRecipeRegistry.registerRecipe(ItemComponent.getStack(ItemComponent.REAGENT_BINDING), 400, 10, "dustGlowstone", "dustRedstone", "nuggetGold", Items.gunpowder); TartaricForgeRecipeRegistry.registerRecipe(ItemComponent.getStack(ItemComponent.REAGENT_BLOODLIGHT), 300, 10, "glowstone", Blocks.torch, "dustRedstone", "dustRedstone"); TartaricForgeRecipeRegistry.registerRecipe(ItemComponent.getStack(ItemComponent.REAGENT_MAGNETISM), 600, 10, Items.string, "ingotGold", "blockIron", "ingotGold"); + TartaricForgeRecipeRegistry.registerRecipe(ItemComponent.getStack(ItemComponent.REAGENT_HASTE), 1400, 100, Items.cookie, Items.sugar, Items.cookie, "stone"); + 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_COMPRESSION), 2000, 200, "blockIron", "blockGold", Blocks.obsidian, "cobblestone"); + TartaricForgeRecipeRegistry.registerRecipe(new ItemStack(ModItems.sentientArmourGem), 240, 150, Items.diamond_chestplate, new ItemStack(ModItems.soulGem, 1, 1), Blocks.iron_block, Blocks.obsidian); TartaricForgeRecipeRegistry.registerRecipe(ItemComponent.getStack(ItemComponent.COMPONENT_FRAME_PART), 400, 10, "blockGlass", "stone", new ItemStack(ModItems.slate)); diff --git a/src/main/resources/assets/bloodmagic/blockstates/item/ItemComponent.json b/src/main/resources/assets/bloodmagic/blockstates/item/ItemComponent.json index 6d0ac297..0b1567ac 100644 --- a/src/main/resources/assets/bloodmagic/blockstates/item/ItemComponent.json +++ b/src/main/resources/assets/bloodmagic/blockstates/item/ItemComponent.json @@ -70,6 +70,26 @@ "textures": { "layer0": "bloodmagic:items/ReagentMagnetism" } + }, + "reagenthaste": { + "textures": { + "layer0": "bloodmagic:items/ReagentHaste" + } + }, + "reagentcompression": { + "textures": { + "layer0": "bloodmagic:items/ReagentCompression" + } + }, + "reagentbridge": { + "textures": { + "layer0": "bloodmagic:items/ReagentBridge" + } + }, + "reagentseverance": { + "textures": { + "layer0": "bloodmagic:items/ReagentSeverance" + } } } } diff --git a/src/main/resources/assets/bloodmagic/lang/en_US.lang b/src/main/resources/assets/bloodmagic/lang/en_US.lang index 5d56f69d..74bc7616 100644 --- a/src/main/resources/assets/bloodmagic/lang/en_US.lang +++ b/src/main/resources/assets/bloodmagic/lang/en_US.lang @@ -79,6 +79,10 @@ item.BloodMagic.baseComponent.reagentSuppression.name=Suppression Reagent item.BloodMagic.baseComponent.frameParts.name=Frame Parts item.BloodMagic.baseComponent.reagentBloodLight.name=Blood Lamp Reagent item.BloodMagic.baseComponent.reagentMagnetism.name=Magnetism Reagent +item.BloodMagic.baseComponent.reagentHaste.name=Haste Reagent +item.BloodMagic.baseComponent.reagentBridge.name=Phantom Bridge Reagent +item.BloodMagic.baseComponent.reagentCompression.name=Compression Reagent +item.BloodMagic.baseComponent.reagentSeverance.name=Severance Reagent item.BloodMagic.monsterSoul.base.name=Demonic Will diff --git a/src/main/resources/assets/bloodmagic/textures/models/AlchemyArrays/WIPArray.png b/src/main/resources/assets/bloodmagic/textures/models/AlchemyArrays/WIPArray.png new file mode 100644 index 00000000..11297382 Binary files /dev/null and b/src/main/resources/assets/bloodmagic/textures/models/AlchemyArrays/WIPArray.png differ