diff options
| author | Draknyte1 <Draknyte1@hotmail.com> | 2016-01-20 14:24:34 +1000 |
|---|---|---|
| committer | Draknyte1 <Draknyte1@hotmail.com> | 2016-01-20 14:24:34 +1000 |
| commit | 869c206c4fcc8001bd2e1d66f704290331813835 (patch) | |
| tree | 96735ce8fe4665e2759c3374221d6f06f4527df2 /config | |
| parent | ec2c72827f01dd4bb2174137f1ab162f9ddaab62 (diff) | |
| download | GT5-Unofficial-869c206c4fcc8001bd2e1d66f704290331813835.tar.gz GT5-Unofficial-869c206c4fcc8001bd2e1d66f704290331813835.tar.bz2 GT5-Unofficial-869c206c4fcc8001bd2e1d66f704290331813835.zip | |
Initial Commit
Diffstat (limited to 'config')
22 files changed, 4662 insertions, 0 deletions
diff --git a/config/CodeChickenCore.cfg b/config/CodeChickenCore.cfg new file mode 100644 index 0000000000..b5851ee122 --- /dev/null +++ b/config/CodeChickenCore.cfg @@ -0,0 +1,27 @@ +#CodeChickenCore configuration file. + +checkUpdates=true + +#set to true to completely deobfuscate mcp names +dev.deobfuscate=true +#Enabling this setting will make all minecraft classes public at runtime in MCP just as they are in modloader. +#You should ONLY use this when you are testing with a mod that relies on runtime publicity and doesn't include access transformers. +#Such mods are doing the wrong thing and should be fixed. +dev.runtimePublic=false + +#Various tweaks that can be applied to game mechanics. +tweaks +{ + #If set to true and doFireTick is disabled in the game rules, fire will still dissipate if it's not over a fire source + doFireTickOut=true + #If set to true, creepers will not destroy landscape. (A version of mobGriefing setting just for creepers) + environmentallyFriendlyCreepers=false + #If set to true two adjacent water source blocks will not generate a third. + finiteWater=false + #Set this to true to use the pre1.5 lava textures + replaceLavaFX=false + #Set this to true to use the pre1.5 water textures + replaceWaterFX=false + #If set to false, leaves will only replace air when growing + softLeafReplace=false +} diff --git a/config/CodeChickenLib.cfg b/config/CodeChickenLib.cfg new file mode 100644 index 0000000000..d19a4f9b85 --- /dev/null +++ b/config/CodeChickenLib.cfg @@ -0,0 +1,8 @@ +#CodeChickenLib development configuration file. + +dump_asm=true + +#Path to directory holding packaged.srg, fields.csv and methods.csv for mcp remapping +mappingDir=C:\eclipse\AlkalusCraft\mcp908\conf + +textify=true diff --git a/config/enderio/AlloySmelterRecipes_Core.xml b/config/enderio/AlloySmelterRecipes_Core.xml new file mode 100644 index 0000000000..7c4c7b9d72 --- /dev/null +++ b/config/enderio/AlloySmelterRecipes_Core.xml @@ -0,0 +1,444 @@ +<!-- + +IMPORTANT: + This is the core recipe file. Modifying this file will have no effect. + It will be rewritten by EnderIO and all modifications made to it will be lost. To add + or modify recipes please use 'AlloySmelterRecipes_User.xml' + +Please refer to the documentation in SAGMillRecipes_Core/_User for details on the format used. +Recipes for the alloy smelter have multiple inputs (up to three) and a single output. Multiple output tags +can be used as long as they are for the same item. This allows 'chance' outputs, for example, if you wanted to +output some 4 bronze ingots with a 50% chance of a fifth, you would use: + +<recipe name="Smelted Bronze" energyCost="750"> + <input> + <itemStack oreDictionary="ingotCopper" number="1"/> + </input> + <input> + <itemStack oreDictionary="ingotTon" number="3"/> + </input> + <output> + <itemStack oreDictionary="ingotBronze" number="4" exp="0.5"/> + <itemStack oreDictionary="ingotBronze" number="1" exp="0.5" chance="0.5"/> + </output> +</recipe> + + +The 'exp' value ranges from 0-1. Some exmaple values from a vanilla furnace are: +gold=1 +iron=0.7 +food=0.35 +sand/cobble/wood=0.1 + + +Recipes can also be added using forge IMC messages. For example, in the init method of a mod: + +String recipe = + "<recipeGroup name=\"cheaty\">" + + "<recipe name=\"foo\" energyCost=\"2400\">" + + "<input>" + + "<itemStack modID=\"minecraft\" itemName=\"dirt\"/>" + + "</input>" + + "<output>" + + "<itemStack modID=\"minecraft\" itemName=\"diamond\"/>" + + "</output>" + + "</recipe>" + + "</recipeGroup>"; +FMLInterModComms.sendMessage("EnderIO", "recipe:alloysmelter", recipe); + + + +Item Information and data dumps: + +To show ore dictionary and/or registered names, in the EnderIO config set: +addRegisterdNameTooltip=true +addOreDictionaryTooltips=true + +To write all registered items to config/modObjectsRegistery.txt include in SAGMillRecipes_User.xml: +<dumpRegistry modObjects="true/> + +To write the contents of the ore dictionary to config/oreDictionaryRegistery.txt include in SAGMillRecipes_User.xml: +<dumpRegistery oreDictionary="true"/> + + + +--> + +<AlloySmelterRecipes> + + <recipeGroup name="EnderIO"> <!-- Required for EnderIO to function correctly. --> + + <recipe name="Electrical Steel" energyCost="10000"> + <input> + <itemStack modID="minecraft" itemName="iron_ingot" /> + <itemStack oreDictionary="dustCoal" /> + <itemStack oreDictionary="itemSilicon" /> + </input> + <output> + <itemStack modID="EnderIO" itemName="itemAlloy" itemMeta="0" exp="0.5" /> + </output> + </recipe> + + <recipe name="Energetic Alloy" energyCost="10000"> + <input> + <itemStack modID="minecraft" itemName="redstone" /> + <itemStack modID="minecraft" itemName="gold_ingot" /> + <itemStack modID="minecraft" itemName="glowstone_dust" /> + </input> + <output> + <itemStack modID="EnderIO" itemName="itemAlloy" itemMeta="1" exp="0.7" /> + </output> + </recipe> + + <recipe name="Vibrant Alloy" energyCost="10000"> + <input> + <itemStack modID="EnderIO" itemName="itemAlloy" itemMeta="1" /> <!-- Energetic Alloy --> + <itemStack modID="minecraft" itemName="ender_pearl" /> + </input> + <output> + <itemStack modID="EnderIO" itemName="itemAlloy" itemMeta="2" exp="1" /> + </output> + </recipe> + + <recipe name="Redstone Alloy" energyCost="10000"> + <input> + <itemStack modID="minecraft" itemName="redstone" /> + <itemStack modID="EnderIO" itemName="itemMaterial" itemMeta="0" /> <!-- Silicon --> + </input> + <output> + <itemStack modID="EnderIO" itemName="itemAlloy" itemMeta="3" exp="0.5" /> + </output> + </recipe> + + <recipe name="Conductive Iron" energyCost="10000"> + <input> + <itemStack modID="minecraft" itemName="redstone" /> + <itemStack modID="minecraft" itemName="iron_ingot" /> + </input> + <output> + <itemStack modID="EnderIO" itemName="itemAlloy" itemMeta="4" exp="0.5" /> + </output> + </recipe> + + <recipe name="Pulsating Iron" energyCost="10000"> + <input> + <itemStack modID="minecraft" itemName="iron_ingot" /> + <itemStack modID="minecraft" itemName="ender_pearl" /> + </input> + <output> + <itemStack modID="EnderIO" itemName="itemAlloy" itemMeta="5" exp="0.7" /> + </output> + </recipe> + + <recipe name="Dark Steel" energyCost="20000"> + <input> + <itemStack modID="minecraft" itemName="iron_ingot" /> + <itemStack oreDictionary="dustCoal" /> + <itemStack modID="minecraft" itemName="obsidian" /> + </input> + <output> + <itemStack modID="EnderIO" itemName="itemAlloy" itemMeta="6" exp="0.5" /> + </output> + </recipe> + + <recipe name="Soularium" energyCost="10000"> + <input> + <itemStack modID="minecraft" itemName="soul_sand" /> + <itemStack modID="minecraft" itemName="gold_ingot" /> + </input> + <output> + <itemStack modID="EnderIO" itemName="itemAlloy" itemMeta="7" exp="0.7" /> + </output> + </recipe> + + <recipe name="Fused Quartz" energyCost="5000"> + <input> + <itemStack modID="minecraft" itemName="quartz" number="4" /> + </input> + <output> + <itemStack modID="EnderIO" itemName="blockFusedQuartz" itemMeta="0" exp="0.5" /> + </output> + </recipe> + + <recipe name="Fused Quartz 2 Slots" energyCost="10000"> + <input> + <itemStack modID="minecraft" itemName="quartz" number="4" /> + <itemStack modID="minecraft" itemName="quartz" number="4" /> + </input> + <output> + <itemStack modID="EnderIO" itemName="blockFusedQuartz" itemMeta="0" exp="0.5" number="2" /> + </output> + </recipe> + + <recipe name="Fused Quartz 3 Slots" energyCost="15000"> + <input> + <itemStack modID="minecraft" itemName="quartz" number="4" /> + <itemStack modID="minecraft" itemName="quartz" number="4" /> + <itemStack modID="minecraft" itemName="quartz" number="4" /> + </input> + <output> + <itemStack modID="EnderIO" itemName="blockFusedQuartz" itemMeta="0" exp="0.5" number="3" /> + </output> + </recipe> + + <recipe name="Fused Glass" energyCost="2500"> + <input> + <itemStack oreDictionary="sand" /> + </input> + <output> + <itemStack modID="EnderIO" itemName="blockFusedQuartz" itemMeta="1" exp="0.2" /> + </output> + </recipe> + + <recipe name="Fused Glass 2 Slots" energyCost="5000"> + <input> + <itemStack oreDictionary="sand" /> + <itemStack oreDictionary="sand" /> + </input> + <output> + <itemStack modID="EnderIO" itemName="blockFusedQuartz" itemMeta="1" exp="0.2" number="2" /> + </output> + </recipe> + + <recipe name="Fused Glass 3 Slots" energyCost="7500"> + <input> + <itemStack oreDictionary="sand" /> + <itemStack oreDictionary="sand" /> + <itemStack oreDictionary="sand" /> + </input> + <output> + <itemStack modID="EnderIO" itemName="blockFusedQuartz" itemMeta="1" exp="0.2" number="3" /> + </output> + </recipe> + + + <recipe name="Enlightened Fused Quartz" energyCost="5000"> + <input> + <itemStack modID="minecraft" itemName="quartz" number="4" /> + <itemStack modID="minecraft" itemName="glowstone_dust" number="4" /> + </input> + <output> + <itemStack modID="EnderIO" itemName="blockFusedQuartz" itemMeta="2" exp="0.5" /> + </output> + </recipe> + + <recipe name="Enlightened Fused Quartz 2" energyCost="5000"> + <input> + <itemStack modID="EnderIO" itemName="blockFusedQuartz" itemMeta="0" /> + <itemStack modID="minecraft" itemName="glowstone_dust" number="4" /> + </input> + <output> + <itemStack modID="EnderIO" itemName="blockFusedQuartz" itemMeta="2" exp="0.5" /> + </output> + </recipe> + + <recipe name="Enlightened Fused Glass" energyCost="2500"> + <input> + <itemStack oreDictionary="sand" /> + <itemStack modID="minecraft" itemName="glowstone_dust" number="4" /> + </input> + <output> + <itemStack modID="EnderIO" itemName="blockFusedQuartz" itemMeta="3" exp="0.2" /> + </output> + </recipe> + + <recipe name="Enlightened Fused Glass 2" energyCost="2500"> + <input> + <itemStack modID="EnderIO" itemName="blockFusedQuartz" itemMeta="1" /> + <itemStack modID="minecraft" itemName="glowstone_dust" number="4" /> + </input> + <output> + <itemStack modID="EnderIO" itemName="blockFusedQuartz" itemMeta="3" exp="0.2" /> + </output> + </recipe> + + <recipe name="Fused Quartz from Block" energyCost="5000"> + <input> + <itemStack modID="minecraft" itemName="quartz_block" number="1" /> + </input> + <output> + <itemStack modID="EnderIO" itemName="blockFusedQuartz" itemMeta="0" exp="0.5" /> + </output> + </recipe> + + <recipe name="Enlightened Fused Quartz from Block" energyCost="5000"> + <input> + <itemStack modID="minecraft" itemName="quartz_block" number="1" /> + <itemStack modID="minecraft" itemName="glowstone_dust" number="4" /> + </input> + <output> + <itemStack modID="EnderIO" itemName="blockFusedQuartz" itemMeta="2" exp="0.5" /> + </output> + </recipe> + + <recipe name="Enlightened Fused Quartz from Block 2" energyCost="5000"> + <input> + <itemStack modID="minecraft" itemName="quartz_block" number="1" /> + <itemStack modID="minecraft" itemName="glowstone" number="1" /> + </input> + <output> + <itemStack modID="EnderIO" itemName="blockFusedQuartz" itemMeta="2" exp="0.5" /> + </output> + </recipe> + + <recipe name="Enlightened Fused Quartz from Block 3" energyCost="5000"> + <input> + <itemStack modID="minecraft" itemName="quartz" number="4" /> + <itemStack modID="minecraft" itemName="glowstone" number="1" /> + </input> + <output> + <itemStack modID="EnderIO" itemName="blockFusedQuartz" itemMeta="2" exp="0.5" /> + </output> + </recipe> + + <recipe name="Enlightened Fused Quartz from Block 4" energyCost="5000"> + <input> + <itemStack modID="EnderIO" itemName="blockFusedQuartz" itemMeta="0" /> + <itemStack modID="minecraft" itemName="glowstone" number="1" /> + </input> + <output> + <itemStack modID="EnderIO" itemName="blockFusedQuartz" itemMeta="2" exp="0.5" /> + </output> + </recipe> + + </recipeGroup> + + + <recipeGroup name="Thermal Expansion"> + + <recipe name="Electrum Ingot" energyCost="2000"> + <input> + <itemStack oreDictionary="ingotGold" /> + <itemStack oreDictionary="ingotSilver" /> + </input> + <output> + <itemStack oreDictionary="ingotElectrum" number="2" exp="0.25" /> + </output> + </recipe> + + <recipe name="Invar Ingot" energyCost="3000"> + <input> + <itemStack oreDictionary="ingotNickel" /> + <itemStack oreDictionary="ingotIron" number="2" /> + </input> + <output> + <itemStack oreDictionary="ingotInvar" number="3" exp="0.25" /> + </output> + </recipe> + + <recipe name="Hardened Glass" energyCost="4000"> + <input> + <itemStack oreDictionary="dustObsidian" number="8" /> + <itemStack oreDictionary="ingotLead" /> + </input> + <output> + <itemStack modID="ThermalExpansion" itemName="Glass" number="2" /> + </output> + </recipe> + + <recipe name="Bronze" energyCost="4000"> + <input> + <itemStack oreDictionary="ingotCopper" number="3" /> + <itemStack oreDictionary="ingotTin" /> + </input> + <output> + <itemStack oreDictionary="ingotBronze" number="4" /> + </output> + </recipe> + + + <recipe name="Enderium Base" energyCost="4000"> + <input> + <itemStack oreDictionary="ingotTin" number="2" /> + <itemStack oreDictionary="ingotSilver" /> + <itemStack oreDictionary="ingotPlatinum" /> + </input> + <output> + <itemStack oreDictionary="ingotEnderiumBase" number="4" /> + </output> + </recipe> + + + <recipe name="Enderium" energyCost="50000"> + <input> + <itemStack oreDictionary="ingotEnderiumBase" number="2" /> + <itemStack modID="ThermalFoundation" itemName="material" itemMeta="512" /> + <itemStack modID="minecraft" itemName="ender_pearl" number="2"/> + </input> + <output> + <itemStack oreDictionary="ingotEnderium" number="2" /> + </output> + </recipe> + + <recipe name="Fluxed Electrum" energyCost="32000"> + <input> + <itemStack oreDictionary="ingotElectrum" number="2" /> + <itemStack modID="minecraft" itemName="redstone" number="4"/> + <itemStack modID="ThermalFoundation" itemName="material" itemMeta="512" /> + </input> + <output> + <itemStack oreDictionary="ingotElectrumFlux" number="2" /> + </output> + </recipe> + + <recipe name="Signalum" energyCost="32000"> + <input> + <itemStack oreDictionary="ingotCopper" number="3" /> + <itemStack oreDictionary="ingotSilver" /> + <itemStack modID="minecraft" itemName="redstone" number="10" /> + </input> + <output> + <itemStack oreDictionary="ingotSignalum" number="4" /> + </output> + </recipe> + + <recipe name="Lumium from dust" energyCost="32000"> + <input> + <itemStack oreDictionary="ingotTin" number="3" /> + <itemStack oreDictionary="ingotSilver" /> + <itemStack modID="minecraft" itemName="glowstone_dust" number="4" /> + </input> + <output> + <itemStack oreDictionary="ingotLumium" number="4" /> + </output> + </recipe> + + <recipe name="Lumium" energyCost="32000"> + <input> + <itemStack oreDictionary="ingotTin" number="3" /> + <itemStack oreDictionary="ingotSilver" /> + <itemStack modID="minecraft" itemName="glowstone" /> + </input> + <output> + <itemStack oreDictionary="ingotLumium" number="4" /> + </output> + </recipe> + + <!-- + <recipe name="Steel" energyCost="8000"> + <input> + <itemStack oreDictionary="ingotIron" number="1" /> + <itemStack oreDictionary="dustCoal" number="2" /> + </input> + <output> + <itemStack oreDictionary="ingotSteel" number="1" /> + </output> + </recipe> + + <recipe name="Steel - Charcoal" energyCost="8000"> + <input> + <itemStack oreDictionary="ingotIron" number="1" /> + <itemStack modID="minecraft" itemName="coal" itemMeta="1" number="4"/> + </input> + <output> + <itemStack oreDictionary="ingotSteel" number="1" /> + </output> + </recipe> + --> + + </recipeGroup> + + <vanillaFurnaceRecipes enabled="true" /> + + +</AlloySmelterRecipes> diff --git a/config/enderio/AlloySmelterRecipes_User.xml b/config/enderio/AlloySmelterRecipes_User.xml new file mode 100644 index 0000000000..25520c4cb0 --- /dev/null +++ b/config/enderio/AlloySmelterRecipes_User.xml @@ -0,0 +1,31 @@ +<!-- +Custom recipes that will not be over written by Ender IO are added here. +Examples of recipes can be found in AlloySmelterRecipes_Core.xml and general format +documentation in SAGMillRecipes_Core/User. + +As well as adding custom recipes the operation of the Alloy Smelter as a vanilla furnace +can be controlled. It can be disabled completely by simply adding this line: + + <vanillaFurnaceRecipes enabled="false"/> + +It is also possible to selectively disable vanilla furnace recipes. +The following example disables the smelting of iron ingots, ender pearls and any form of iron ore registered in the +ore dictionary. + + <vanillaFurnaceRecipes> + <exclude> + <itemStack itemID="265" /> + <itemStack itemID="368" /> + <itemStack oreDictionary="oreIron" /> + </exclude> + + </vanillaFurnaceRecipes> + + Add this line to disbale the creation of TE alloys using the Alloy Smelter. + <recipeGroup name="Thermal Expansion" enabled="false"/> +--> + +<AlloySmelterRecipes> + +</AlloySmelterRecipes> + diff --git a/config/enderio/EnchanterRecipes_Core.xml b/config/enderio/EnchanterRecipes_Core.xml new file mode 100644 index 0000000000..a2d0662615 --- /dev/null +++ b/config/enderio/EnchanterRecipes_Core.xml @@ -0,0 +1,137 @@ + +<!-- + +IMPORTANT: + This is the core recipe file. Modifying this file will have no effect. + It will be rewritten by EnderIO and all modifications made to it will be lost. To add + or modify recipes please use 'EnchanterRecipes_User.xml' + +Costs are calculated as follows: +level = enchantmentItem.stackSize +levelCost = Config.enchanterBaseLevelCost; +for (int i = 0; i < level; i++) { + levelCost += costPerLevel * level; +} + --> + +<enchaterRecipes> + + <enchantment name="enchantment.protect.all" costPerLevel="1"> + <itemStack modID="EnderIO" itemName="itemAlloy" itemMeta="6" number="16"/> + </enchantment> + + <enchantment name="enchantment.protect.fire" costPerLevel="2"> + <itemStack modID="minecraft" itemName="blaze_powder" number="16"/> + </enchantment> + + <enchantment name="enchantment.protect.fall" costPerLevel="2"> + <itemStack modID="minecraft" itemName="feather"/> + </enchantment> + + <enchantment name="enchantment.protect.explosion" costPerLevel="2"> + <itemStack modID="minecraft" itemName="gunpowder" number="16"/> + </enchantment> + + <enchantment name="enchantment.protect.projectile" costPerLevel="2"> + <itemStack modID="minecraft" itemName="arrow" number="16"/> + </enchantment> + + <enchantment name="enchantment.oxygen" costPerLevel="4"> + <itemStack modID="minecraft" itemName="glass_bottle"/> + </enchantment> + + <enchantment name="enchantment.waterWorker" costPerLevel="4"> + <itemStack modID="minecraft" itemName="waterlily"/> + </enchantment> + + <enchantment name="enchantment.thorns" costPerLevel="8"> + <itemStack modID="minecraft" itemName="double_plant" itemMeta="4"/> + </enchantment> + + <enchantment name="enchantment.damage.all" costPerLevel="1"> + <itemStack modID="minecraft" itemName="quartz" number="12"/> + </enchantment> + + <enchantment name="enchantment.damage.undead" costPerLevel="2"> + <itemStack modID="minecraft" itemName="rotten_flesh" number="12"/> + </enchantment> + + <enchantment name="enchantment.damage.arthropods" costPerLevel="2"> + <itemStack modID="minecraft" itemName="spider_eye" number="12"/> + </enchantment> + + <enchantment name="enchantment.knockback" costPerLevel="2"> + <itemStack modID="minecraft" itemName="piston"/> + </enchantment> + + <enchantment name="enchantment.fire" costPerLevel="4"> + <itemStack modID="minecraft" itemName="blaze_rod" number="8"/> + </enchantment> + + <enchantment name="enchantment.lootBonus" costPerLevel="4"> + <itemStack oreDictionary="itemSkull"/> + </enchantment> + + <enchantment name="enchantment.digging" costPerLevel="1"> + <itemStack modID="minecraft" itemName="redstone" number="12"/> + </enchantment> + + <enchantment name="enchantment.untouching" costPerLevel="26"> + <itemStack modID="minecraft" itemName="slime_ball"/> + </enchantment> + + <enchantment name="enchantment.durability" costPerLevel="2"> + <itemStack modID="minecraft" itemName="obsidian"/> + </enchantment> + + <enchantment name="enchantment.lootBonusDigger" costPerLevel="4"> + <itemStack modID="minecraft" itemName="emerald" number="4"/> + </enchantment> + + <enchantment name="enchantment.arrowDamage" costPerLevel="1"> + <itemStack modID="minecraft" itemName="flint" number="12"/> + </enchantment> + + <enchantment name="enchantment.arrowKnockback" costPerLevel="4"> + <itemStack modID="minecraft" itemName="string"/> + </enchantment> + + <enchantment name="enchantment.arrowFire" costPerLevel="1"> + <itemStack modID="minecraft" itemName="netherrack"/> + </enchantment> + + <enchantment name="enchantment.arrowInfinite" costPerLevel="26"> + <itemStack modID="minecraft" itemName="ender_pearl"/> + </enchantment> + + <enchantment name="enchantment.lootBonusFishing" costPerLevel="4"> + <itemStack modID="minecraft" itemName="dye" itemMeta="4"/> + </enchantment> + + <enchantment name="enchantment.fishingSpeed" costPerLevel="4"> + <itemStack modID="minecraft" itemName="fish"/> + </enchantment> + + <enchantment name="enchantment.enderio.soulBound" costPerLevel="21"> + <itemStack modID="EnderIO" itemName="itemMaterial" itemMeta="8"/> + </enchantment> + + <enchantment name="enchantment.enderzoo.witherArrow" costPerLevel="6"> + <itemStack modID="EnderZoo" itemName="witheringDust"/> + </enchantment> + + <!-- The wither potion in the creative tab has a meta of 8235 while a brewed potion has one of 8203 + so adding both--> + <enchantment name="enchantment.enderzoo.witherWeapon" costPerLevel="6"> + <itemStack modID="minecraft" itemName="potion" itemMeta="8235"/> + </enchantment> + + <enchantment name="enchantment.enderzoo.witherWeapon" costPerLevel="6"> + <itemStack modID="minecraft" itemName="potion" itemMeta="8203"/> + </enchantment> + + <enchantment name="enchantment.repair" costPerLevel="6"> + <itemStack modID="minecraft" itemName="anvil"/> + </enchantment> + +</enchaterRecipes> diff --git a/config/enderio/EnchanterRecipes_User.xml b/config/enderio/EnchanterRecipes_User.xml new file mode 100644 index 0000000000..f9e986a90b --- /dev/null +++ b/config/enderio/EnchanterRecipes_User.xml @@ -0,0 +1,27 @@ +<enchaterRecipes> + +<!-- An example of how to add the enchantments from Thaumcraft. + + <enchantment name="enchantment.potency" costPerLevel="5"> + <itemStack modID="Thaumcraft" itemName="ItemShard" itemMeta="1"/> + </enchantment> + + <enchantment name="enchantment.frugal" costPerLevel="5"> + <itemStack modID="Thaumcraft" itemName="ItemShard" itemMeta="4" /> + </enchantment> + + <enchantment name="enchantment.wandfortune" costPerLevel="5"> + <itemStack modID="Thaumcraft" itemName="blockCustomPlant" itemMeta="1"/> + </enchantment> + + <enchantment name="enchantment.haste" costPerLevel="5"> + <itemStack modID="Thaumcraft" itemName="blockMetalDevice" itemMeta="8"/> + </enchantment> + + <enchantment name="enchantment.repair" costPerLevel="15"> + <itemStack modID="Thaumcraft" itemName="BlockJarNodeItem"/> + </enchantment> + + --> + +</enchaterRecipes> diff --git a/config/enderio/EnderIO.cfg b/config/enderio/EnderIO.cfg new file mode 100644 index 0000000000..ea16633539 --- /dev/null +++ b/config/enderio/EnderIO.cfg @@ -0,0 +1,876 @@ +# Configuration file + +"advanced settings" { + # Enable per tick sampling on individual power inputs and outputs. This allows slightly more detailed messages from the RF Reader but has a negative impact on server performance. + B:perInterfacePowerTrackingEnabled=false +} + + +"aesthetic settings" { + # If set to true: fluid will not be shown in combustion generator tanks. Improves FPS. + B:combustionGeneratorUseOpaqueModel=true + + # Valid values are between 0-1, smallest conduits at 0, largest at 1. + # In SMP, all clients must be using the same value as the server. + D:conduitScale=0.6 + + # Use TheKazador's alternative model for the Dimensional Transceiver + B:useAlternateTransceiverModel=false + + # If set to true: WIP Combustion Generator model will be used + B:useCombustionGenModel=false +} + + +"anchor settings" { + # Maximum number of blocks that can be traveled from one travel anchor to another. + I:travelAnchorMaxDistance=48 +} + + +"autocrafter settings" { + # RF used per autocrafted recipe + I:crafterRfPerCraft=2500 +} + + +"dark steel" { + # Chance that the dark steel anvil will take damage after repairing something. + D:darkSteelAnvilDamageChance=0.024000000208616257 + + # Number of levels required for the Apiarist Armor upgrade. + I:darkSteelApiaristArmorCost=10 + + # The increase in efficiency when powered. + D:darkSteelAxeEffeciencyBoostWhenPowered=2.0 + + # Power use (RF) per damage/durability point avoided. + I:darkSteelAxePowerUsePerDamagePoint=750 + + # How much slower shift-harvesting logs is. + D:darkSteelAxeSpeedPenaltyMultiHarvest=4.0 + + # Jump height modifier applied when jumping with Dark Steel Boots equipped + D:darkSteelBootsJumpModifier=1.5 + + # Base amount of power used per jump (RF) dark steel boots. The second jump in a 'double jump' uses 2x this etc + I:darkSteelBootsJumpPowerCost=150 + + # If true, dark steel armor will drain power stored (RF) in power containers in the players inventory. + B:darkSteelDrainPowerFromInventory=false + + # Amount of power used (RF) per block height of fall distance damage negated. + I:darkSteelFallDistanceCost=75 + + # Number of levels required for the 'Glider' upgrade. + I:darkSteelGliderCost=10 + + # Horizontal movement speed modifier when gliding. + D:darkSteelGliderHorizontalSpeed=0.03 + + # Rate of altitude loss when gliding. + D:darkSteelGliderVerticalSpeed=-0.05 + + # Rate of altitude loss when sprinting and gliding. + D:darkSteelGliderVerticalSpeedSprinting=-0.15 + + # Number of levels required for the Goggles of Revealing upgrade. + I:darkSteelGogglesOfRevealingCost=10 + + # Number of levels required for the 'Jump 1' upgrade. + I:darkSteelJumpOneCost=10 + + # Number of levels required for the 'Jump 3' upgrade. + I:darkSteelJumpThreeCost=20 + + # Number of levels required for the 'Jump 2' upgrade. + I:darkSteelJumpTwoCost=15 + + # Speed boost, in blocks per tick, that the DS ladder gives |
