Skip to content

Commit

Permalink
#349 - Added recipe for XP Boost
Browse files Browse the repository at this point in the history
  • Loading branch information
Rover656 committed Feb 8, 2024
1 parent f1ebce1 commit 548da8c
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
{
"type": "enderio:enchanting",
"cost_multiplier": 1,
"enchantment": "enderio:xp_boost",
"input": {
"count": 16,
"ingredient": {
"item": "minecraft:experience_bottle"
}
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -77,6 +77,7 @@ protected void buildRecipes(Consumer<FinishedRecipe> pFinishedRecipeConsumer) {
build(EIOEnchantments.WITHERING.get(), CountedIngredient.of(4, EIOItems.WITHERING_POWDER.get()), 1, pFinishedRecipeConsumer);
build(EIOEnchantments.REPELLENT.get(), CountedIngredient.of(4, Items.ENDER_PEARL), 2, pFinishedRecipeConsumer);
build(EIOEnchantments.AUTO_SMELT.get(), CountedIngredient.of(16, Items.BLAZE_POWDER), 1, pFinishedRecipeConsumer); //TODO
build(EIOEnchantments.XP_BOOST.get(), CountedIngredient.of(16, Items.EXPERIENCE_BOTTLE), 1, pFinishedRecipeConsumer); //TODO
}

protected void build(Enchantment enchantment, CountedIngredient input, int levelModifier, Consumer<FinishedRecipe> recipeConsumer) {
Expand Down

0 comments on commit 548da8c

Please sign in to comment.