Thaumcraft Goggles upgrade for Living Helmet
Combine a Living Helmet with an undamaged Goggles of Revealing in an anvil (+1 level) to combine the two. Currently no way to split afterwards. Thoughts: - Tweak level requirement to be higher? 1 was chosen in order to make it work. - Require full set of armor to be worn? This would keep it in line with all the other upgrades. - I only used the full Thaumcraft jar because the uploaded API is a zip which does not work as a Gradle library.
This commit is contained in:
parent
332e16a585
commit
c1aeb2e7f6
6 changed files with 68 additions and 9 deletions
15
build.gradle
15
build.gradle
|
@ -41,14 +41,23 @@ if (new File(projectDir, '.git').exists())
|
|||
repositories {
|
||||
maven { url "http://dvs1.progwml6.com/files/maven" }
|
||||
maven { url "http://mobiusstrip.eu/maven" }
|
||||
|
||||
ivy {
|
||||
name "Thaumcraft"
|
||||
artifactPattern "https://dl.dropboxusercontent.com/u/47135879/[module]-[revision]-deobf.[ext]"
|
||||
}
|
||||
ivy {
|
||||
name "Baubles"
|
||||
artifactPattern "https://dl.dropboxusercontent.com/u/47135879/[module]-1.8.9-[revision]-deobf.[ext]"
|
||||
}
|
||||
}
|
||||
|
||||
dependencies {
|
||||
deobfCompile "mezz.jei:jei_${mc_version}:${jei_version}"
|
||||
|
||||
compile ("mcp.mobius.waila:Waila:${waila_version}_1.8.8:dev") {
|
||||
exclude group: 'mcp.mobius.waila'
|
||||
}
|
||||
compile "mcp.mobius.waila:Waila:${waila_version}_1.8.8:dev"
|
||||
compile name: "Thaumcraft", version: "${mc_version}-${thaumcraft_version}", ext: "jar"
|
||||
compile name: 'Baubles', version: "${baubles_version}", ext: 'jar'
|
||||
}
|
||||
|
||||
minecraft {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue