Skip to content

Commit

Permalink
Fix inscription recipe inconsistency
Browse files Browse the repository at this point in the history
  • Loading branch information
yorkeJohn committed Nov 30, 2021
1 parent b418431 commit cd54621
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions src/main/java/taintedmagic/common/registry/RecipeRegistry.java
Original file line number Diff line number Diff line change
Expand Up @@ -443,15 +443,15 @@ 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),
new ItemStack(Items.blaze_powder), new ItemStack(ConfigItems.itemResource, 1, 1) }));

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),
Expand All @@ -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),
Expand All @@ -472,15 +472,15 @@ 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),
new ItemStack(Items.blaze_powder), new ItemStack(ConfigItems.itemResource, 1, 1) }));

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),
Expand All @@ -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),
Expand Down

0 comments on commit cd54621

Please sign in to comment.