Resourceful Bees is a Minecraft mod that provides a feature rich framework API for players and Modpack Developers to create their own customized bees.
You can find our wiki here.
The mod is licensed under LGPL 3.0 and is available on Curseforge and Modrinth.
If you would like to contribute to the mod feel free to submit a PR.
TODO: Add more info about importing the project in IntelliJ and any additional setup required.
Be sure to add our maven to your build.gradle
:
repositories {
maven { url = "https://maven.resourcefulbees.com/repository/maven-public/" }
<--- other repositories here --->
}
You can then add our mod as a dependency:
dependencies {
<--- Other dependencies here --->
implementation fg.deobf("com.teamresourceful.resourcefulbees:resourcefulbees-forge-1.19.2:1.0.0-alpha.21")
//below are required dependencies for resourceful bees to work.
runtimeOnly fg.deobf("com.teamresourceful.resourcefullib:resourcefullib-forge-1.19.2:1.1.23")
runtimeOnly fg.deobf("com.teamresourceful.resourcefulconfig:resourcefulconfig-forge-1.19.2:1.0.20")
runtimeOnly fg.deobf("software.bernie.geckolib:geckolib-forge-1.19:3.1.40")
runtimeOnly fg.deobf("net.roguelogix.phosphophyllite:Phosphophyllite:0.6.0-beta.7")
}
TODO: Update this to include Architectury and Fabric