Skip to content

Commit

Permalink
Fix Spirited Crystal energy requirement
Browse files Browse the repository at this point in the history
  • Loading branch information
jeremiahwinsley committed Sep 30, 2024
1 parent 38551c5 commit ed12720
Show file tree
Hide file tree
Showing 4 changed files with 22 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
}
],
"type": "powah:energizing",
"energy": 81000000,
"energy": 9000000,
"ingredients": [
{
"item": "minecraft:emerald_block"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
}
],
"type": "powah:energizing",
"energy": 729000000,
"energy": 81000000,
"ingredients": [
{
"item": "allthecompressed:emerald_block_1x"
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
{
"neoforge:conditions": [
{
"type": "neoforge:mod_loaded",
"modid": "powah"
}
],
"type": "powah:energizing",
"energy": 729000000,
"ingredients": [
{
"item": "allthecompressed:emerald_block_2x"
}
],
"result": {
"count": 1,
"id": "allthecompressed:spirited_crystal_block_2x"
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ protected void energizingRecipes(RecipeOutput consumer) {
.save(powah);

EnergizingRecipeBuilder.build(Overlays.SPIRITED_CRYSTAL)
.setEnergy(81_000_000)
.setEnergy(9_000_000)
.addIngredient(Overlays.EMERALD)
.save(powah);

Expand Down

0 comments on commit ed12720

Please sign in to comment.