-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
WOrks but the crafting recipe is broken
- Loading branch information
1 parent
4686ea6
commit 45aaee0
Showing
9 changed files
with
88 additions
and
142 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
package stevee.gtec.common.data; | ||
|
||
import com.tterrag.registrate.util.entry.BlockEntry; | ||
import stevee.gtec.registry.GTECCreativeModeTabs; | ||
|
||
import static stevee.gtec.registry.GTECRegistries.REGISTRATE; | ||
|
||
public class GTECBlocks { | ||
|
||
static { | ||
REGISTRATE.creativeModeTab(() -> GTECCreativeModeTabs.ITEM); | ||
} | ||
|
||
|
||
|
||
|
||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
26 changes: 26 additions & 0 deletions
26
src/main/java/stevee/gtec/data/recipe/chemistry/MiscRecipes.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
package stevee.gtec.data.recipe.chemistry; | ||
|
||
import com.gregtechceu.gtceu.common.data.GTBlocks; | ||
import com.gregtechceu.gtceu.common.data.GTItems; | ||
import com.gregtechceu.gtceu.common.data.GTMachines; | ||
import com.gregtechceu.gtceu.data.recipe.VanillaRecipeHelper; | ||
import net.minecraft.data.recipes.FinishedRecipe; | ||
import stevee.gtec.GTExtendedChem; | ||
import stevee.gtec.common.data.GTECMachines; | ||
|
||
import java.util.function.Consumer; | ||
|
||
public class MiscRecipes { | ||
public static void init(Consumer<FinishedRecipe> provider) { | ||
VanillaRecipeHelper.addShapedRecipe(provider, GTExtendedChem.id("bacteria_bath"), | ||
GTECMachines.BACTERIA_BATH.asStack(1), | ||
"FFF", | ||
"PMP", | ||
"GGG", | ||
"M", GTMachines.HULL[6].asStack(), | ||
"F", GTBlocks.CASING_TEMPERED_GLASS.asStack(), | ||
"P", GTItems.ELECTRIC_PUMP_LuV, | ||
"G", GTItems.PETRI_DISH); | ||
} | ||
|
||
} |