Skip to content

Commit

Permalink
Mithril changes
Browse files Browse the repository at this point in the history
- Added conversion recipe for gregtech mithril and ab one
- Changed ingot with mithril plates
- Now you dont need gaia for mithril tier!
- Now you dont need gaia for some nebula recipes tier!
  • Loading branch information
EnderProyects committed Jun 8, 2023
1 parent 3b39d1c commit a3db176
Showing 1 changed file with 14 additions and 3 deletions.
17 changes: 14 additions & 3 deletions src/main/java/ab/common/lib/register/RecipeListAB.java
Original file line number Diff line number Diff line change
Expand Up @@ -131,6 +131,7 @@ public class RecipeListAB implements IModHelper {
public static RecipeFountainAlchemy tallgrassRecipes;
public static RecipeFountainAlchemy flowersRecipes;
public static RecipeFountainAlchemy petiteRecipes;
public static RecipeFountainAlchemy conversionRecipes;
// public static RecipeFountainAlchemy Bee2Recipe;

public static RecipeFountainConjuration redstoneRecipe;
Expand Down Expand Up @@ -972,6 +973,16 @@ public static void setupCrafting() {
30,
0x25d6b7));

conversionRecipes = (AdvancedBotanyAPI.registerFountainAlchemyRecipe(
OreDictionary.getOres("ingotMithril").get(0),
new ItemStack(ItemListAB.itemABResource),
25000,
0x25d6b7));
conversionRecipes = (AdvancedBotanyAPI.registerFountainAlchemyRecipe(
new ItemStack(ItemListAB.itemABResource, 1, 1),
OreDictionary.getOres("ingotMithril").get(0),
25000,
0x25d6b7));
////////////////////////////////////////////////////////////////////////////////////////////////////////////////
// Conjuration catalyst

Expand Down Expand Up @@ -1232,7 +1243,7 @@ public static void setupCrafting() {
"LPL",
"M3M",
'M',
new ItemStack(ItemListAB.itemABResource),
"plateMithril",
'G',
new ItemStack(ModItems.rune, 1, 15),
'L',
Expand Down Expand Up @@ -1271,7 +1282,7 @@ public static void setupCrafting() {
"LPL",
"M3M",
'M',
new ItemStack(ItemListAB.itemABResource),
"plateMithril",
'G',
new ItemStack(ModItems.rune, 1, 15),
'L',
Expand Down Expand Up @@ -1337,7 +1348,7 @@ public static void setupCrafting() {
'L',
new ItemStack(ItemListAB.itemABResource, 1, 1),
'M',
new ItemStack(ItemListAB.itemABResource),
"plateMithril",
'R',
new ItemStack(ModItems.manaRingGreater)

Expand Down

0 comments on commit a3db176

Please sign in to comment.