commit
14d603e99c
|
@ -51,9 +51,9 @@ repositories {
|
|||
}
|
||||
|
||||
dependencies {
|
||||
// compile "codechicken:CodeChickenLib:1.7.10-1.1.1.99:dev"
|
||||
// compile "codechicken:CodeChickenCore:" + config.mc_version + "-" + config.ccc_version + ":dev"
|
||||
// compile "codechicken:NotEnoughItems:" + config.mc_version + "-" + config.nei_version + ":dev"
|
||||
compile "codechicken:CodeChickenLib:" + config.mc_version + "-" + config.cclib_version + ":dev"
|
||||
compile "codechicken:CodeChickenCore:" + config.mc_version + "-" + config.ccc_version + ":dev"
|
||||
compile "codechicken:NotEnoughItems:" + config.mc_version + "-" + config.nei_version + ":dev"
|
||||
// compile name: 'MineTweaker3', version: config.minetweaker_version, ext: 'jar'
|
||||
// compile "codechicken:ForgeMultipart:1.7.10-1.1.0.314:dev"
|
||||
// compile "info.amerifrance.guideapi:Guide-API:" + config.mc_version + "-" + config.guideapi_version + ":deobf"
|
||||
|
|
|
@ -1,9 +1,8 @@
|
|||
#
|
||||
#Mon Jul 20 20:59:46 EDT 2015
|
||||
mod_name=BloodMagic
|
||||
forge_version=11.14.1.1334
|
||||
ccc_version=1.0.4.29
|
||||
nei_version=1.0.3.64
|
||||
forge_version=11.14.3.1499
|
||||
cclib_version=1.1.2.133
|
||||
ccc_version=1.0.5.36
|
||||
nei_version=1.0.5.104
|
||||
//=Dependency Information
|
||||
guideapi_version=1.0.1-20
|
||||
package_group=com.wayoftime.bloodmagic
|
||||
|
|
|
@ -50,6 +50,10 @@ import org.apache.logging.log4j.Level;
|
|||
import org.apache.logging.log4j.LogManager;
|
||||
import org.apache.logging.log4j.Logger;
|
||||
|
||||
//import thaumcraft.api.ItemApi;
|
||||
//import thaumcraft.api.ThaumcraftApi;
|
||||
//import thaumcraft.api.aspects.Aspect;
|
||||
//import thaumcraft.api.aspects.AspectList;
|
||||
import WayofTime.alchemicalWizardry.api.alchemy.AlchemicalPotionCreationHandler;
|
||||
import WayofTime.alchemicalWizardry.api.alchemy.AlchemyRecipeRegistry;
|
||||
import WayofTime.alchemicalWizardry.api.alchemy.energy.ReagentRegistry;
|
||||
|
@ -283,6 +287,7 @@ import WayofTime.alchemicalWizardry.common.tileEntity.TESpellParadigmBlock;
|
|||
import WayofTime.alchemicalWizardry.common.tileEntity.TETeleposer;
|
||||
import WayofTime.alchemicalWizardry.common.tileEntity.TEWritingTable;
|
||||
import WayofTime.alchemicalWizardry.common.tileEntity.gui.GuiHandler;
|
||||
import WayofTime.alchemicalWizardry.common.tweaker.MineTweakerIntegration;
|
||||
|
||||
|
||||
@Mod(modid = "AWWayofTime", name = "AlchemicalWizardry", version = "v1.3.3", guiFactory = "WayofTime.alchemicalWizardry.client.gui.ConfigGuiFactory")
|
||||
|
@ -843,7 +848,6 @@ public class AlchemicalWizardry
|
|||
|
||||
ItemStack strengthenedCatalystStackCrafted = new ItemStack(ModItems.baseAlchemyItems, 2, 3);
|
||||
ItemStack fracturedBoneStackCrafted = new ItemStack(ModItems.baseAlchemyItems, 4, 5);
|
||||
|
||||
//TODO NEW RECIPES!
|
||||
AlchemyRecipeRegistry.registerRecipe(new ItemStack(ModItems.weakBindingAgent), 10, new ItemStack[]{simpleCatalystStack, simpleCatalystStack, new ItemStack(Items.clay_ball)}, 2);
|
||||
AlchemyRecipeRegistry.registerRecipe(new ItemStack(ModItems.standardBindingAgent), 15, new ItemStack[]{new ItemStack(ModItems.weakBindingAgent), sanctusStack, new ItemStack(ModItems.crystallos)}, 3);
|
||||
|
@ -882,7 +886,6 @@ public class AlchemicalWizardry
|
|||
AlchemyRecipeRegistry.registerRecipe(reductusStack, 20, new ItemStack[]{redstoneStack, goldIngotStack, strengthenedCatalystStack, new ItemStack(Blocks.soul_sand), new ItemStack(Items.carrot)}, 3);
|
||||
AlchemyRecipeRegistry.registerRecipe(potentiaStack, 20, new ItemStack[]{glowstoneDustStack, strengthenedCatalystStack, lapisStack, lapisStack, new ItemStack(Items.quartz)}, 3);
|
||||
|
||||
|
||||
HomSpellRegistry.registerBasicSpell(new ItemStack(Items.flint_and_steel), new SpellFireBurst());
|
||||
HomSpellRegistry.registerBasicSpell(new ItemStack(Blocks.ice), new SpellFrozenWater());
|
||||
HomSpellRegistry.registerBasicSpell(new ItemStack(Blocks.tnt), new SpellExplosions());
|
||||
|
@ -934,8 +937,6 @@ public class AlchemicalWizardry
|
|||
EntityRegistry.registerModEntity(EntityMinorDemonGruntGuardianIce.class, "MinorDemonGruntGuardianIce", 42, this, 80, 3, true);
|
||||
EntityRegistry.registerModEntity(EntityMinorDemonGruntGuardianEarth.class, "MinorDemonGruntGuardianEarth", 43, this, 80, 3, true);
|
||||
|
||||
|
||||
|
||||
ChestGenHooks.getInfo(ChestGenHooks.DUNGEON_CHEST).addItem(new WeightedRandomChestContent(new ItemStack(ModItems.standardBindingAgent), 1, 3, this.standardBindingAgentDungeonChance / 5));
|
||||
ChestGenHooks.getInfo(ChestGenHooks.DUNGEON_CHEST).addItem(new WeightedRandomChestContent(new ItemStack(ModItems.mundanePowerCatalyst), 1, 1, this.mundanePowerCatalystDungeonChance / 5));
|
||||
ChestGenHooks.getInfo(ChestGenHooks.DUNGEON_CHEST).addItem(new WeightedRandomChestContent(new ItemStack(ModItems.mundaneLengtheningCatalyst), 1, 1, this.mundaneLengtheningCatalystDungeonChance / 5));
|
||||
|
@ -1128,7 +1129,7 @@ public class AlchemicalWizardry
|
|||
{
|
||||
proxy.registerPostSideObjects();
|
||||
//TODO Thaumcraft Integration
|
||||
if (Loader.isModLoaded("Thaumcraft"))
|
||||
/* if (Loader.isModLoaded("Thaumcraft"))
|
||||
{
|
||||
isThaumcraftLoaded = true;
|
||||
|
||||
|
@ -1144,39 +1145,38 @@ public class AlchemicalWizardry
|
|||
GameRegistry.registerItem(ModItems.sanguinePants, "sanguinePants");
|
||||
GameRegistry.registerItem(ModItems.sanguineBoots, "sanguineBoots");
|
||||
|
||||
// ItemStack itemGoggles = ItemApi.getItem("itemGoggles", 0);
|
||||
// Item itemThaumChest = GameRegistry.findItem("Thaumcraft", "ItemChestplateThaumium");
|
||||
// Item itemThaumLeggings = GameRegistry.findItem("Thaumcraft", "ItemLeggingsThaumium");
|
||||
// Item itemThaumBoots = GameRegistry.findItem("Thaumcraft", "ItemBootsThaumium");
|
||||
//
|
||||
// AspectList aspectList = new AspectList();
|
||||
// aspectList.add(Aspect.ARMOR, 5).add(Aspect.MAGIC, 5);
|
||||
//
|
||||
// ThaumcraftApi.registerObjectTag(new ItemStack(ModItems.sanguineHelmet), aspectList);
|
||||
// ThaumcraftApi.registerObjectTag(new ItemStack(ModItems.sanguineRobe), aspectList);
|
||||
// ThaumcraftApi.registerObjectTag(new ItemStack(ModItems.sanguinePants), aspectList);
|
||||
// ThaumcraftApi.registerObjectTag(new ItemStack(ModItems.sanguineBoots), aspectList);
|
||||
//
|
||||
//
|
||||
// if (itemGoggles != null)
|
||||
// {
|
||||
// BindingRegistry.registerRecipe(new ItemStack(ModItems.sanguineHelmet), itemGoggles);
|
||||
// }
|
||||
//
|
||||
// if (itemThaumChest != null)
|
||||
// {
|
||||
// BindingRegistry.registerRecipe(new ItemStack(ModItems.sanguineRobe), new ItemStack(itemThaumChest));
|
||||
// }
|
||||
//
|
||||
// if (itemThaumLeggings != null)
|
||||
// {
|
||||
// BindingRegistry.registerRecipe(new ItemStack(ModItems.sanguinePants), new ItemStack(itemThaumLeggings));
|
||||
// }
|
||||
//
|
||||
// if (itemThaumBoots != null)
|
||||
// {
|
||||
// BindingRegistry.registerRecipe(new ItemStack(ModItems.sanguineBoots), new ItemStack(itemThaumBoots));
|
||||
// }
|
||||
ItemStack itemGoggles = ItemApi.getItem("itemGoggles", 0);
|
||||
Item itemThaumChest = GameRegistry.findItem("Thaumcraft", "ItemChestplateThaumium");
|
||||
Item itemThaumLeggings = GameRegistry.findItem("Thaumcraft", "ItemLeggingsThaumium");
|
||||
Item itemThaumBoots = GameRegistry.findItem("Thaumcraft", "ItemBootsThaumium");
|
||||
|
||||
AspectList aspectList = new AspectList();
|
||||
aspectList.add(Aspect.ARMOR, 5).add(Aspect.MAGIC, 5);
|
||||
|
||||
ThaumcraftApi.registerObjectTag(new ItemStack(ModItems.sanguineHelmet), aspectList);
|
||||
ThaumcraftApi.registerObjectTag(new ItemStack(ModItems.sanguineRobe), aspectList);
|
||||
ThaumcraftApi.registerObjectTag(new ItemStack(ModItems.sanguinePants), aspectList);
|
||||
ThaumcraftApi.registerObjectTag(new ItemStack(ModItems.sanguineBoots), aspectList);
|
||||
|
||||
if (itemGoggles != null)
|
||||
{
|
||||
BindingRegistry.registerRecipe(new ItemStack(ModItems.sanguineHelmet), itemGoggles);
|
||||
}
|
||||
|
||||
if (itemThaumChest != null)
|
||||
{
|
||||
BindingRegistry.registerRecipe(new ItemStack(ModItems.sanguineRobe), new ItemStack(itemThaumChest));
|
||||
}
|
||||
|
||||
if (itemThaumLeggings != null)
|
||||
{
|
||||
BindingRegistry.registerRecipe(new ItemStack(ModItems.sanguinePants), new ItemStack(itemThaumLeggings));
|
||||
}
|
||||
|
||||
if (itemThaumBoots != null)
|
||||
{
|
||||
BindingRegistry.registerRecipe(new ItemStack(ModItems.sanguineBoots), new ItemStack(itemThaumBoots));
|
||||
}
|
||||
|
||||
//LogHelper.log(Level.INFO, "Loaded RP2 World addon");
|
||||
} catch (Exception e)
|
||||
|
@ -1226,18 +1226,19 @@ public class AlchemicalWizardry
|
|||
AlchemicalWizardry.logger.info("Loaded Harvestcraft Handlers!");
|
||||
}
|
||||
|
||||
// if(Loader.isModLoaded("MineTweaker3"))
|
||||
// {
|
||||
// MineTweakerIntegration.register();
|
||||
// AlchemicalWizardry.logger.info("Loaded MineTweaker 3 Integration");
|
||||
// }
|
||||
if(Loader.isModLoaded("MineTweaker3"))
|
||||
{
|
||||
MineTweakerIntegration.register();
|
||||
AlchemicalWizardry.logger.info("Loaded MineTweaker 3 Integration");
|
||||
}
|
||||
|
||||
// if(Loader.isModLoaded("AgriCraft"))
|
||||
// {
|
||||
// HarvestRegistry.registerHarvestHandler(new AgriCraftCropHarvestHandler());
|
||||
// AlchemicalWizardry.logger.info("Loaded AgriCraft Handlers!");
|
||||
// }
|
||||
|
||||
*/
|
||||
isThaumcraftLoaded = Loader.isModLoaded("Thaumcraft"); //this is temp.
|
||||
isBotaniaLoaded = Loader.isModLoaded("Botania");
|
||||
isPneumaticCraftLoaded = Loader.isModLoaded("PneumaticCraft");
|
||||
isFMPLoaded = Loader.isModLoaded("ForgeMultipart");
|
||||
|
@ -1256,12 +1257,12 @@ public class AlchemicalWizardry
|
|||
// this.createItemTextureFiles();
|
||||
}
|
||||
|
||||
@Optional.Method(modid = "guideapi")
|
||||
/* @Optional.Method(modid = "guideapi")
|
||||
public static void registerBMBook()
|
||||
{
|
||||
// BloodMagicGuide.registerGuide();
|
||||
BloodMagicGuide.registerGuide();
|
||||
}
|
||||
|
||||
*/
|
||||
public static void blacklistAccelerators()
|
||||
{
|
||||
if (Loader.isModLoaded("Torcherino"))
|
||||
|
|
Loading…
Reference in a new issue