Skip to content

Commit

Permalink
Fix golem bell recipes (#1089)
Browse files Browse the repository at this point in the history
  • Loading branch information
chochem authored Nov 20, 2024
1 parent 7c347b3 commit 6553696
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 10 deletions.
14 changes: 4 additions & 10 deletions src/main/java/com/dreammaster/scripts/ScriptThaumcraft.java
Original file line number Diff line number Diff line change
Expand Up @@ -4524,12 +4524,14 @@ private void golemancy() {
.add(Aspect.getAspect("instrumentum"), 9).add(Aspect.getAspect("meto"), 12)
.add(Aspect.getAspect("motus"), 6).add(Aspect.getAspect("praecantatio"), 3));
TCHelper.setResearchComplexity("CORELUMBER", 3);

TCHelper.removeArcaneRecipe(getModItem(Thaumcraft.ID, "GolemBell", 1, 0));
TCHelper.clearPages("GOLEMBELL");
TCHelper.addResearchPage("GOLEMBELL", new ResearchPage("tc.research_page.GOLEMBELL.1"));
TCHelper.addResearchPage("GOLEMBELL", new ResearchPage("tc.research_page.GOLEMBELL.2"));
ThaumcraftApi.addArcaneCraftingRecipe(
"GOLEMBELL",
createItemStack(Thaumcraft.ID, "GolemBell", 1, 0, "{markers:[0:{side:1b}]}", missing),
getModItem(Thaumcraft.ID, "GolemBell", 1, 0, missing),
new AspectList().add(Aspect.getAspect("ordo"), 10).add(Aspect.getAspect("aer"), 5),
"abc",
"def",
Expand All @@ -4554,15 +4556,7 @@ private void golemancy() {
"craftingToolFile");
TCHelper.addResearchPage(
"GOLEMBELL",
new ResearchPage(
TCHelper.findArcaneRecipe(
createItemStack(
Thaumcraft.ID,
"GolemBell",
1,
0,
"{markers:[0:{side:1b}]}",
missing))));
new ResearchPage(TCHelper.findArcaneRecipe(getModItem(Thaumcraft.ID, "GolemBell", 1, 0, missing))));
ThaumcraftApi.addArcaneCraftingRecipe(
"UPGRADEAIR",
getModItem(Thaumcraft.ID, "ItemGolemUpgrade", 1, 0, missing),
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,7 @@ public List<String> getDependencies() {
public void loadRecipes() {
TCHelper.removeArcaneRecipe(getModItem(ThaumicHorizons.ID, "boatGreatwood", 1, 0, missing));
TCHelper.removeArcaneRecipe(getModItem(ThaumicHorizons.ID, "boatThaumium", 1, 0, missing));
TCHelper.removeArcaneRecipe(getModItem(ThaumicHorizons.ID, "Golemancy Bell TH", 1, 0));
TCHelper.removeArcaneRecipe(getModItem(ThaumicHorizons.ID, "planarConduit", 1, 0, missing));
TCHelper.removeArcaneRecipe(getModItem(ThaumicHorizons.ID, "transductionAmplifier", 1, 0, missing));
TCHelper.removeInfusionRecipe(getModItem(ThaumicHorizons.ID, "vortexStabilizer", 1, 0, missing));
Expand Down

0 comments on commit 6553696

Please sign in to comment.