Skip to content

Commit

Permalink
adjust stabilizer recipes (#21)
Browse files Browse the repository at this point in the history
  • Loading branch information
chochem authored Mar 14, 2023
1 parent e049d76 commit 09bac9c
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 8 deletions.
12 changes: 7 additions & 5 deletions src/main/java/tb/init/TBRecipes.java
Original file line number Diff line number Diff line change
Expand Up @@ -67,13 +67,15 @@ public static void setup() {
new Object[] { new ItemStack(TBBlocks.genLogs, 1, 2) });

ShapedOreRecipe eAr = new ShapedOreRecipe(
new ItemStack(TBBlocks.eldritchArk, 5, 0),
new Object[] { "@#@", "###", "@#@", '@', "nuggetGold", '#', "obsidian" });
new ItemStack(TBBlocks.eldritchArk, 4, 0),
new Object[] { "@#@", "#$#", "@#@", '@', "nuggetGold", '#', "obsidian", '$',
new ItemStack(ConfigBlocks.blockCrystal, 1, 4) });

ShapedOreRecipe iGw = new ShapedOreRecipe(
new ItemStack(TBBlocks.ironGreatwood, 5, 0),
new Object[] { "@#@", "###", "@#@", '@', "nuggetIron", '#',
new ItemStack(ConfigBlocks.blockWoodenDevice, 1, 6) });
new ItemStack(TBBlocks.ironGreatwood, 4, 0),
new Object[] { "@#@", "#$#", "@#@", '@', "nuggetIron", '#',
new ItemStack(ConfigBlocks.blockWoodenDevice, 1, 6), '$',
new ItemStack(ConfigBlocks.blockCrystal, 1, 4) });

GameRegistry.addSmelting(new ItemStack(TBBlocks.genLogs, 1, 0), new ItemStack(Items.coal, 1, 1), 0.15F);
GameRegistry.addSmelting(new ItemStack(TBBlocks.genLogs, 1, 1), new ItemStack(Items.coal, 1, 1), 0.15F);
Expand Down
7 changes: 4 additions & 3 deletions src/main/java/tb/init/TBThaumonomicon.java
Original file line number Diff line number Diff line change
Expand Up @@ -557,9 +557,10 @@ public static void setup() {

for (int i = 0; i < oldRec.length; ++i) oldRec[i] = new ShapedArcaneRecipe(
"TB.DecoBlocks",
new ItemStack(recResult[i], 6, 0),
new AspectList().add(Aspect.ENTROPY, 1),
new Object[] { "# #", "# #", "# #", '#', recBlocks[i] });
new ItemStack(recResult[i], 8, 0),
new AspectList().add(Aspect.ENTROPY, 5),
new Object[] { "###", "#@#", "###", '#', recBlocks[i], '@',
new ItemStack(ConfigBlocks.blockCrystal, 1, 5) });

ShapedArcaneRecipe advFurnaceRecipe = new ShapedArcaneRecipe(
"TB.AdvAlc",
Expand Down

0 comments on commit 09bac9c

Please sign in to comment.