mirror of
https://github.com/Ellpeck/ActuallyAdditions.git
synced 2024-11-22 23:28:35 +01:00
Missed something.
This commit is contained in:
parent
4b76440fce
commit
a881b81237
1 changed files with 6 additions and 4 deletions
|
@ -2,7 +2,9 @@ package de.ellpeck.actuallyadditions.data;
|
||||||
|
|
||||||
import com.google.gson.JsonObject;
|
import com.google.gson.JsonObject;
|
||||||
import de.ellpeck.actuallyadditions.mod.blocks.ActuallyBlocks;
|
import de.ellpeck.actuallyadditions.mod.blocks.ActuallyBlocks;
|
||||||
|
import de.ellpeck.actuallyadditions.mod.crafting.ActuallyRecipes;
|
||||||
import de.ellpeck.actuallyadditions.mod.crafting.TargetNBTIngredient;
|
import de.ellpeck.actuallyadditions.mod.crafting.TargetNBTIngredient;
|
||||||
|
import de.ellpeck.actuallyadditions.mod.crafting.WrappedRecipe;
|
||||||
import de.ellpeck.actuallyadditions.mod.items.ActuallyItems;
|
import de.ellpeck.actuallyadditions.mod.items.ActuallyItems;
|
||||||
import de.ellpeck.actuallyadditions.mod.items.metalists.TheFoods;
|
import de.ellpeck.actuallyadditions.mod.items.metalists.TheFoods;
|
||||||
import net.minecraft.data.*;
|
import net.minecraft.data.*;
|
||||||
|
@ -350,7 +352,7 @@ public class ItemRecipeGenerator extends RecipeProvider {
|
||||||
.define('R', TargetNBTIngredient.of(ActuallyItems.BATTERY.get()))
|
.define('R', TargetNBTIngredient.of(ActuallyItems.BATTERY.get()))
|
||||||
.define('I', ActuallyItems.ENORI_CRYSTAL.get())
|
.define('I', ActuallyItems.ENORI_CRYSTAL.get())
|
||||||
.define('C', ActuallyItems.COIL_ADVANCED.get())
|
.define('C', ActuallyItems.COIL_ADVANCED.get())
|
||||||
.save(consumer);
|
.save(WrappedRecipe.Inject(consumer, ActuallyRecipes.KEEP_DATA_SHAPED_RECIPE.get()));
|
||||||
|
|
||||||
//Triple Battery
|
//Triple Battery
|
||||||
Recipe.shaped(ActuallyItems.BATTERY_TRIPLE.get())
|
Recipe.shaped(ActuallyItems.BATTERY_TRIPLE.get())
|
||||||
|
@ -360,7 +362,7 @@ public class ItemRecipeGenerator extends RecipeProvider {
|
||||||
.define('R', TargetNBTIngredient.of(ActuallyItems.BATTERY_DOUBLE.get()))
|
.define('R', TargetNBTIngredient.of(ActuallyItems.BATTERY_DOUBLE.get()))
|
||||||
.define('I', ActuallyItems.ENORI_EMPOWERED_CRYSTAL.get())
|
.define('I', ActuallyItems.ENORI_EMPOWERED_CRYSTAL.get())
|
||||||
.define('C', ActuallyItems.COIL_ADVANCED.get())
|
.define('C', ActuallyItems.COIL_ADVANCED.get())
|
||||||
.save(consumer);
|
.save(WrappedRecipe.Inject(consumer, ActuallyRecipes.KEEP_DATA_SHAPED_RECIPE.get()));
|
||||||
|
|
||||||
//Quad Battery
|
//Quad Battery
|
||||||
Recipe.shaped(ActuallyItems.BATTERY_QUADRUPLE.get())
|
Recipe.shaped(ActuallyItems.BATTERY_QUADRUPLE.get())
|
||||||
|
@ -370,7 +372,7 @@ public class ItemRecipeGenerator extends RecipeProvider {
|
||||||
.define('R', TargetNBTIngredient.of(ActuallyItems.BATTERY_TRIPLE.get()))
|
.define('R', TargetNBTIngredient.of(ActuallyItems.BATTERY_TRIPLE.get()))
|
||||||
.define('I', ActuallyItems.ENORI_EMPOWERED_CRYSTAL.get())
|
.define('I', ActuallyItems.ENORI_EMPOWERED_CRYSTAL.get())
|
||||||
.define('C', ActuallyItems.COIL_ADVANCED.get())
|
.define('C', ActuallyItems.COIL_ADVANCED.get())
|
||||||
.save(consumer);
|
.save(WrappedRecipe.Inject(consumer, ActuallyRecipes.KEEP_DATA_SHAPED_RECIPE.get()));
|
||||||
|
|
||||||
//Quintuple Battery
|
//Quintuple Battery
|
||||||
Recipe.shaped(ActuallyItems.BATTERY_QUINTUPLE.get())
|
Recipe.shaped(ActuallyItems.BATTERY_QUINTUPLE.get())
|
||||||
|
@ -380,7 +382,7 @@ public class ItemRecipeGenerator extends RecipeProvider {
|
||||||
.define('R', TargetNBTIngredient.of(ActuallyItems.BATTERY_QUADRUPLE.get()))
|
.define('R', TargetNBTIngredient.of(ActuallyItems.BATTERY_QUADRUPLE.get()))
|
||||||
.define('I', ActuallyItems.DIAMATINE_EMPOWERED_CRYSTAL.get())
|
.define('I', ActuallyItems.DIAMATINE_EMPOWERED_CRYSTAL.get())
|
||||||
.define('C', ActuallyItems.COIL_ADVANCED.get())
|
.define('C', ActuallyItems.COIL_ADVANCED.get())
|
||||||
.save(consumer);
|
.save(WrappedRecipe.Inject(consumer, ActuallyRecipes.KEEP_DATA_SHAPED_RECIPE.get()));
|
||||||
|
|
||||||
//
|
//
|
||||||
// //Magnet Ring
|
// //Magnet Ring
|
||||||
|
|
Loading…
Reference in a new issue