Skip to content

Commit

Permalink
feat(buff): make Primordial Core crafting recipe cheaper
Browse files Browse the repository at this point in the history
  • Loading branch information
Elenterius committed Mar 6, 2024
1 parent 071d3a2 commit e1158f2
Showing 1 changed file with 6 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -46,16 +46,19 @@ private void buildCookingRecipes(Consumer<FinishedRecipe> consumer) {
private void buildWorkbenchRecipes(Consumer<FinishedRecipe> consumer) {

WorkbenchRecipeBuilder.shaped(RecipeCategory.MISC, ModItems.PRIMORDIAL_CORE.get())
.pattern("P#B")
.pattern("PRB")
.pattern("#E#")
.pattern("C#M")
.pattern("CFM")
.define('B', Items.BEEF)
.define('P', Items.PORKCHOP)
.define('M', Items.MUTTON)
.define('C', Items.CHICKEN)
.define('R', Items.RABBIT)
.define('F', Items.ROTTEN_FLESH)
.define('E', Items.SPIDER_EYE)
.define('#', Items.ENDER_PEARL)
.unlockedBy(hasName(Items.ENDER_PEARL), has(Items.ENDER_PEARL)).save(consumer);
.unlockedBy(hasName(ModItems.PRIMORDIAL_CORE.get()), has(ModItems.PRIMORDIAL_CORE.get()))
.save(consumer);

WorkbenchRecipeBuilder.shaped(RecipeCategory.COMBAT, ModItems.DESPOIL_SICKLE.get())
.define('B', Tags.Items.BONES)
Expand Down

0 comments on commit e1158f2

Please sign in to comment.