Thalassium Block & recipes

This commit is contained in:
paulevsGitch 2021-01-20 22:27:29 +03:00
parent bf8234a02e
commit 04e3372e2b
8 changed files with 29 additions and 2 deletions

View file

@ -3,6 +3,7 @@ package ru.betterend.recipe;
import net.minecraft.block.Blocks;
import net.minecraft.item.Items;
import ru.betterend.recipe.builders.AlloyingRecipe;
import ru.betterend.registry.EndBlocks;
import ru.betterend.registry.EndItems;
public class AlloyingRecipes {
@ -35,5 +36,17 @@ public class AlloyingRecipes {
.setExpiriense(4.5F)
.setSmeltTime(600)
.build();
AlloyingRecipe.Builder.create("terminite_ingot_thalassium")
.setInput(EndItems.THALASSIUM_INGOT, EndItems.ENDER_DUST)
.setOutput(EndItems.TERMINITE_INGOT, 1)
.setExpiriense(2.5F)
.setSmeltTime(450)
.build();
AlloyingRecipe.Builder.create("thalassium_ingot")
.setInput(EndBlocks.THALASSIUM_ORE, EndBlocks.THALASSIUM_ORE)
.setOutput(EndItems.THALASSIUM_INGOT, 3)
.setExpiriense(2.1F)
.setSmeltTime(600)
.build();
}
}