-
Notifications
You must be signed in to change notification settings - Fork 36
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
closes #59, makes BR stuff craftable in GT mode (harder recipe needed
tho)
- Loading branch information
Showing
3 changed files
with
40 additions
and
5 deletions.
There are no files selected for viewing
21 changes: 20 additions & 1 deletion
21
...edar/mods/ic2/nuclearcontrol/crossmod/BigReactors/recipes/BigReactorsRecipesGregtech.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 |
---|---|---|
@@ -1,7 +1,26 @@ | ||
package shedar.mods.ic2.nuclearcontrol.crossmod.BigReactors.recipes; | ||
|
||
import ic2.api.item.IC2Items; | ||
import ic2.api.recipe.Recipes; | ||
import net.minecraft.init.Items; | ||
import net.minecraft.item.ItemStack; | ||
import shedar.mods.ic2.nuclearcontrol.crossmod.BigReactors.CrossBigReactors; | ||
|
||
public class BigReactorsRecipesGregtech { | ||
public static void addRecipes(){ | ||
//TODO | ||
//TODO BR doesn't have any GT recipes | ||
Recipes.advRecipes.addRecipe(new ItemStack(CrossBigReactors.kitRFsensor), new Object[]{ | ||
"IT ", "PD ", " R ", | ||
'I', "ingotYellorium", | ||
'T', IC2Items.getItem("frequencyTransmitter"), | ||
'P', Items.paper, | ||
'D', "dyeRed", | ||
'R', "dustRedstone"}); | ||
Recipes.advRecipes.addRecipe(new ItemStack(CrossBigReactors.ReactorInfoFetch), new Object[]{ | ||
"BRB", "YCY", "BRB", | ||
'B', "reactorCasing", | ||
'R', "dustRedstone", | ||
'Y', "ingotYellorium", | ||
'C', Items.comparator}); | ||
} | ||
} |
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