2021-05-02 00:51:36 +02:00
|
|
|
package de.ellpeck.actuallyadditions.data;
|
|
|
|
|
|
|
|
import com.google.gson.JsonObject;
|
|
|
|
import de.ellpeck.actuallyadditions.mod.ActuallyAdditions;
|
|
|
|
import de.ellpeck.actuallyadditions.mod.blocks.ActuallyBlocks;
|
|
|
|
import de.ellpeck.actuallyadditions.mod.items.ActuallyItems;
|
|
|
|
import net.minecraft.data.*;
|
|
|
|
import net.minecraft.item.Items;
|
|
|
|
import net.minecraft.util.ResourceLocation;
|
|
|
|
import net.minecraftforge.common.Tags;
|
|
|
|
|
|
|
|
import java.nio.file.Path;
|
|
|
|
import java.util.function.Consumer;
|
|
|
|
|
|
|
|
public class BlockRecipeGenerator extends RecipeProvider {
|
|
|
|
public BlockRecipeGenerator(DataGenerator generatorIn) {
|
|
|
|
super(generatorIn);
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
protected void registerRecipes(Consumer<IFinishedRecipe> consumer) {
|
2021-05-02 17:47:50 +02:00
|
|
|
//Battery Box
|
|
|
|
ShapelessRecipeBuilder.shapelessRecipe(ActuallyBlocks.BATTERY_BOX.get())
|
|
|
|
.addIngredient(ActuallyBlocks.ENERGIZER.get())
|
|
|
|
.addIngredient(ActuallyBlocks.ENERVATOR.get())
|
2021-05-02 18:10:21 +02:00
|
|
|
.addIngredient(ActuallyItems.COIL.get())
|
2021-05-02 00:51:36 +02:00
|
|
|
.addCriterion("", hasItem(Items.AIR))
|
|
|
|
.build(consumer, new ResourceLocation(ActuallyAdditions.MODID, "battery_box"));
|
|
|
|
|
2021-05-02 17:47:50 +02:00
|
|
|
//Farmer
|
|
|
|
ShapedRecipeBuilder.shapedRecipe(ActuallyBlocks.FARMER.get())
|
2021-05-02 00:51:36 +02:00
|
|
|
.patternLine("ISI")
|
|
|
|
.patternLine("SCS")
|
|
|
|
.patternLine("ISI")
|
|
|
|
.key('I', ActuallyBlocks.CRYSTAL_ENORI.get())
|
2021-05-02 17:47:50 +02:00
|
|
|
.key('C', ActuallyBlocks.IRON_CASING.get())
|
2021-05-02 00:51:36 +02:00
|
|
|
.key('S', Tags.Items.SEEDS)
|
|
|
|
.addCriterion("", hasItem(Items.AIR))
|
|
|
|
.build(consumer, new ResourceLocation(ActuallyAdditions.MODID, "farmer"));
|
|
|
|
|
2021-05-02 17:47:50 +02:00
|
|
|
//Empowerer
|
|
|
|
ShapedRecipeBuilder.shapedRecipe(ActuallyBlocks.EMPOWERER.get())
|
|
|
|
.patternLine(" R ")
|
|
|
|
.patternLine(" B ")
|
|
|
|
.patternLine("CDC")
|
|
|
|
.key('R', ActuallyItems.RESTONIA_CRYSTAL.get())
|
2021-05-02 18:10:21 +02:00
|
|
|
.key('B', ActuallyItems.BATTERY_DOUBLE.get())
|
2021-05-02 17:47:50 +02:00
|
|
|
.key('C', ActuallyBlocks.IRON_CASING.get())
|
|
|
|
.key('D', ActuallyBlocks.DISPLAY_STAND.get())
|
|
|
|
.addCriterion("", hasItem(Items.AIR))
|
|
|
|
.build(consumer,new ResourceLocation(ActuallyAdditions.MODID, "empowerer"));
|
|
|
|
|
|
|
|
|
2021-05-02 00:51:36 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
protected void saveRecipeAdvancement(DirectoryCache cache, JsonObject cache2, Path advancementJson) {
|
|
|
|
//Nope...
|
|
|
|
}
|
|
|
|
}
|