-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
started work on renaming fluid extractor and adding smelter
- Loading branch information
Showing
11 changed files
with
126 additions
and
101 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
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
78 changes: 0 additions & 78 deletions
78
common/src/main/java/trinsdar/gt4r/loader/machines/FluidExtractorLoader.java
This file was deleted.
Oops, something went wrong.
35 changes: 35 additions & 0 deletions
35
common/src/main/java/trinsdar/gt4r/loader/machines/FluidPressLoader.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,35 @@ | ||
package trinsdar.gt4r.loader.machines; | ||
|
||
import muramasa.antimatter.material.Material; | ||
import muramasa.antimatter.material.MaterialTags; | ||
import muramasa.antimatter.material.MaterialTypeItem; | ||
import muramasa.antimatter.recipe.ingredient.RecipeIngredient; | ||
import muramasa.antimatter.util.AntimatterPlatformUtils; | ||
import net.minecraft.world.item.ItemStack; | ||
import net.minecraft.world.item.Items; | ||
import net.minecraft.tags.ItemTags; | ||
import muramasa.antimatter.data.ForgeCTags; | ||
|
||
import static muramasa.antimatter.data.AntimatterMaterialTypes.*; | ||
import static trinsdar.gt4r.data.Materials.FishOil; | ||
import static trinsdar.gt4r.data.Materials.Honey; | ||
import static trinsdar.gt4r.data.Materials.SeedOil; | ||
import static trinsdar.gt4r.data.RecipeMaps.FLUID_PRESS; | ||
|
||
public class FluidPressLoader { | ||
public static void init() { | ||
FLUID_PRESS.RB() | ||
.ii(RecipeIngredient.of(ForgeCTags.SEEDS,1)) | ||
.fo(SeedOil.getLiquid(10)) | ||
.add("seed_oil",32, 2); | ||
FLUID_PRESS.RB() | ||
.ii(RecipeIngredient.of(ItemTags.FISHES,1)) | ||
.fo(FishOil.getLiquid(10)) | ||
.add("fish_oil",32, 2); | ||
FLUID_PRESS.RB() | ||
.ii(RecipeIngredient.of(Items.HONEY_BOTTLE,1)) | ||
.fo(Honey.getLiquid(250)) | ||
.io(new ItemStack(Items.GLASS_BOTTLE)) | ||
.add("honey",32, 2); | ||
} | ||
} |
Oops, something went wrong.