Skip to content

Commit

Permalink
make ectoplasm blocks cheaper
Browse files Browse the repository at this point in the history
  • Loading branch information
AViewFromTheTop committed Dec 22, 2024
1 parent 8f57c35 commit d810e89
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
}
],
"result": {
"count": 9,
"count": 4,
"id": "trailiertales:ectoplasm"
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,8 @@
}
},
"pattern": [
"###",
"###",
"###"
"##",
"##"
],
"result": {
"count": 1,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,17 @@ public void buildRecipes(RecipeOutput recipeOutput) {
.unlockedBy("has_ectoplasm", has(TTItems.ECTOPLASM))
.save(recipeOutput);

RecipeProvider.nineBlockStorageRecipes(recipeOutput, RecipeCategory.MISC, TTItems.ECTOPLASM, RecipeCategory.MISC, TTBlocks.ECTOPLASM_BLOCK);
ShapedRecipeBuilder.shaped(RecipeCategory.MISC, TTBlocks.ECTOPLASM_BLOCK)
.define('#', TTItems.ECTOPLASM)
.pattern("##")
.pattern("##")
.unlockedBy("has_ectoplasm", has(TTItems.ECTOPLASM))
.save(recipeOutput, getSimpleRecipeName(TTBlocks.ECTOPLASM_BLOCK));

ShapelessRecipeBuilder.shapeless(RecipeCategory.MISC, TTItems.ECTOPLASM, 4)
.requires(TTBlocks.ECTOPLASM_BLOCK)
.unlockedBy("has_ectoplasm_block", has(TTBlocks.ECTOPLASM_BLOCK))
.save(recipeOutput, getSimpleRecipeName(TTItems.ECTOPLASM));

ShapedRecipeBuilder.shaped(RecipeCategory.MISC, Blocks.SUSPICIOUS_GRAVEL, 4)
.define('#', Items.GRAVEL)
Expand Down

0 comments on commit d810e89

Please sign in to comment.