From cd5462126b05940e5591675bdd39bd9df633cea0 Mon Sep 17 00:00:00 2001 From: John Yorke Date: Mon, 29 Nov 2021 21:00:59 -0400 Subject: [PATCH] Fix inscription recipe inconsistency --- .../taintedmagic/common/registry/RecipeRegistry.java | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/src/main/java/taintedmagic/common/registry/RecipeRegistry.java b/src/main/java/taintedmagic/common/registry/RecipeRegistry.java index 21e65dfb..b217c6ad 100644 --- a/src/main/java/taintedmagic/common/registry/RecipeRegistry.java +++ b/src/main/java/taintedmagic/common/registry/RecipeRegistry.java @@ -443,7 +443,7 @@ private static void initInfusion () { ResearchRegistry.recipes.put("ItemKatanaThaumium:inscription0", ThaumcraftApi.addInfusionCraftingRecipe("INSCRIPTIONFIRE", new Object[]{ ItemKatana.TAG_INSCRIPTION, new NBTTagInt(0) }, 8, - new AspectList().add(Aspect.FIRE, 64).add(Aspect.LIGHT, 64).add(Aspect.METAL, 16), + new AspectList().add(Aspect.FIRE, 64).add(Aspect.ENERGY, 64).add(Aspect.WEAPON, 16), new ItemStack(ItemRegistry.ItemKatana, 1, 0), new ItemStack[]{ new ItemStack(ConfigItems.itemFocusFire), new ItemStack(Items.coal), new ItemStack(Blocks.netherrack), new ItemStack(Items.fire_charge), @@ -451,7 +451,7 @@ private static void initInfusion () { ResearchRegistry.recipes.put("ItemKatanaThaumium:inscription1", ThaumcraftApi.addInfusionCraftingRecipe( "INSCRIPTIONTHUNDER", new Object[]{ ItemKatana.TAG_INSCRIPTION, new NBTTagInt(1) }, 8, - new AspectList().add(Aspect.AIR, 64).add(Aspect.MOTION, 64).add(Aspect.MAGIC, 16), + new AspectList().add(Aspect.AIR, 64).add(Aspect.WEATHER, 64).add(Aspect.WEAPON, 16), new ItemStack(ItemRegistry.ItemKatana, 1, 0), new ItemStack[]{ new ItemStack(ItemRegistry.ItemFocusShockwave), new ItemStack(ConfigItems.itemShard, 1, 0), new ItemStack(Items.feather), new ItemStack(Blocks.tnt), new ItemStack(ConfigItems.itemShard, 1, 5), @@ -460,7 +460,7 @@ private static void initInfusion () { ResearchRegistry.recipes.put("ItemKatanaThaumium:inscription2", ThaumcraftApi.addInfusionCraftingRecipe("INSCRIPTIONHEAL", new Object[]{ ItemKatana.TAG_INSCRIPTION, new NBTTagInt(2) }, 8, - new AspectList().add(Aspect.HEAL, 64).add(Aspect.UNDEAD, 64).add(Aspect.MAGIC, 16), + new AspectList().add(Aspect.HEAL, 64).add(Aspect.UNDEAD, 64).add(Aspect.WEAPON, 16), new ItemStack(ItemRegistry.ItemKatana, 1, 0), new ItemStack[]{ new ItemStack(ConfigItems.itemFocusPech), new ItemStack(Items.bone), new ItemStack(Items.rotten_flesh), new ItemStack(Items.fermented_spider_eye), @@ -472,7 +472,7 @@ private static void initInfusion () { ResearchRegistry.recipes.put("ItemKatana:inscription0", ThaumcraftApi.addInfusionCraftingRecipe("INSCRIPTIONFIRE", new Object[]{ ItemKatana.TAG_INSCRIPTION, new NBTTagInt(0) }, 8, - new AspectList().add(Aspect.FIRE, 64).add(Aspect.ENERGY, 64).add(Aspect.MAGIC, 16), + new AspectList().add(Aspect.FIRE, 64).add(Aspect.ENERGY, 64).add(Aspect.WEAPON, 16), new ItemStack(ItemRegistry.ItemKatana, 1, OreDictionary.WILDCARD_VALUE), new ItemStack[]{ new ItemStack(ConfigItems.itemFocusFire), new ItemStack(Items.coal), new ItemStack(Blocks.netherrack), new ItemStack(Items.fire_charge), @@ -480,7 +480,7 @@ private static void initInfusion () { ResearchRegistry.recipes.put("ItemKatana:inscription1", ThaumcraftApi.addInfusionCraftingRecipe("INSCRIPTIONTHUNDER", new Object[]{ ItemKatana.TAG_INSCRIPTION, new NBTTagInt(1) }, 8, - new AspectList().add(Aspect.AIR, 64).add(Aspect.MOTION, 64).add(Aspect.MAGIC, 16), + new AspectList().add(Aspect.AIR, 64).add(Aspect.WEATHER, 64).add(Aspect.WEAPON, 16), new ItemStack(ItemRegistry.ItemKatana, 1, OreDictionary.WILDCARD_VALUE), new ItemStack[]{ new ItemStack(ItemRegistry.ItemFocusShockwave), new ItemStack(ConfigItems.itemShard, 1, 0), new ItemStack(Items.feather), new ItemStack(Blocks.tnt), new ItemStack(ConfigItems.itemShard, 1, 5), @@ -489,7 +489,7 @@ private static void initInfusion () { ResearchRegistry.recipes.put("ItemKatana:inscription2", ThaumcraftApi.addInfusionCraftingRecipe("INSCRIPTIONHEAL", new Object[]{ ItemKatana.TAG_INSCRIPTION, new NBTTagInt(2) }, 8, - new AspectList().add(Aspect.HEAL, 64).add(Aspect.UNDEAD, 64).add(Aspect.METAL, 16), + new AspectList().add(Aspect.HEAL, 64).add(Aspect.UNDEAD, 64).add(Aspect.WEAPON, 16), new ItemStack(ItemRegistry.ItemKatana, 1, OreDictionary.WILDCARD_VALUE), new ItemStack[]{ new ItemStack(ConfigItems.itemFocusPech), new ItemStack(Items.bone), new ItemStack(Items.rotten_flesh), new ItemStack(Items.fermented_spider_eye),