Ever wanted to create your own mob spawners? Now you can!
This is a fan continuation of the popular 1.4.7 mod, Soul Shards.
This version of the mod is based on the sources of Soul Shards: Reborn by Moze_Intel and Soul Shards: The Old Ways by Team Whammich.
This version is a near direct clone of the original mod.
For more information, you can see the Wiki. Information about modifying the ShardTiers.json
config can be found there.
##Development Setup
- Fork this project to your own Github repository and clone it to your desktop.
- Navigate to the directory you cloned to. Open a command window there and run
gradlew setupDevWorkspace
then (if you use Eclipse)gradlew eclipse
or (if you use IDEA)gradlew idea
. - This process will setup Forge, your workspace, and all dependencies.
- Open the project in your IDE of choice.
####IntelliJ IDEA extra steps
- Navigate to
File > Settings > Plugins > Browse repositories...
. Search for Lombok and install the plugin. - Navigate to
File > Settings > Build, Execution, Deployment > Compiler > Annotation Processors
. CheckEnable annotation processing
.
Setup video by LexManos. For more information, refer to the Forge Forums.
Add to your build.gradle
:
repositories {
maven {
url "http://tehnut.info/maven/"
}
}
dependencies {
deobfCompile "com.whammic.sstow:SoulShards-TOW:<SSTOW-VERSION>"
}
<SSTOW-VERSION>
can be found on CurseForge (or via the Maven itself), check the file name of the version you want.
Soul Shards: The Old Ways for Minecraft 1.8.9 and above is licensed as MIT.
All of the art is property of BBoldt. The art is released into the public domain.
Custom builds are unsupported. If you have an issue while using an unofficial build, it is not guaranteed that you will get support.
- Clone directly from this repository to your desktop.
- Navigate to the directory you cloned to. Open a command window there and run
gradlew build
- Once it completes, your new build will be found at
../build/libs/SoulShards-TOW-*.jar
. You can ignore theapi
,sources
, andjavadoc
jars.