Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/telepathicgrunt/bumblezone
A bee dimension just for fun!
https://github.com/telepathicgrunt/bumblezone
bees dimension fabric-mod forge-mod minecraft minecraft-fabric-mod minecraft-forge-mod minecraft-mod minecraft-quilt-mod quilt-mod
Last synced: 5 days ago
JSON representation
A bee dimension just for fun!
- Host: GitHub
- URL: https://github.com/telepathicgrunt/bumblezone
- Owner: TelepathicGrunt
- License: lgpl-3.0
- Created: 2020-02-05T05:00:55.000Z (almost 5 years ago)
- Default Branch: 1.21-Arch
- Last Pushed: 2024-12-18T01:32:22.000Z (5 days ago)
- Last Synced: 2024-12-18T02:04:23.856Z (5 days ago)
- Topics: bees, dimension, fabric-mod, forge-mod, minecraft, minecraft-fabric-mod, minecraft-forge-mod, minecraft-mod, minecraft-quilt-mod, quilt-mod
- Language: Java
- Homepage: https://www.curseforge.com/minecraft/mc-mods/the-bumblezone-forge
- Size: 36.5 MB
- Stars: 185
- Watchers: 5
- Forks: 38
- Open Issues: 3
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- Funding: .github/FUNDING.yml
- License: LICENSE.txt
Awesome Lists containing this project
README
![The banner logo for The Bumblezone with a friendly and hostile bee shown below the mod name](https://github.com/TelepathicGrunt/Bumblezone/assets/40846040/968c8470-6ff7-4b11-8f45-da255d1de7ca)
# See the wiki for more details about this bee-tastic mod!
***
## COMPILEONLY MAVEN
For developers that want to add Bumblezone to their mod's workspace:
```gradle
repositories {
maven {
url "https://nexus.resourcefulbees.com/repository/telepathicgrunt/"
}
}
```
Don't forget to change <modversion> with the actual latest version of this mod like `7.5.0` for example. (See older branches's README.md for their stuff)
```gradle
dependencies {
...
NEOFORGE:
compileOnly "com.telepathicgrunt:Bumblezone:+1.20.6-neoforge"
FABRIC/QUILT:
modCompileOnly "com.telepathicgrunt:Bumblezone:+1.20.6-fabric"
ARCH COMMON MODULE:
modCompileOnly "com.telepathicgrunt:Bumblezone:+1.20.6-common"
}
```***
## IMPLEMENTATION MAVEN
For developers that want to add Bumblezone to their mod's workspace:
```gradle
repositories {
maven {
url = 'https://nexus.resourcefulbees.com/repository/maven-public/'
content {
includeGroup 'com.telepathicgrunt'
includeGroup 'earth.terrarium.athena'
includeGroup 'com.teamresourceful.resourcefullib'
}
}
// Fabric/Quilt only
maven {
url = 'https://api.modrinth.com/maven/'
content {
includeGroup 'maven.modrinth'
}
}
maven {
name = "Ladysnake Mods"
url = 'https://maven.ladysnake.org/releases'
}
}
```
Don't forget to change <modversion> with the actual latest version of this mod like `7.5.0` for example. (See older branches's README.md for their stuff)
```gradle
dependencies {
...
NEOFORGE:
implementation "com.telepathicgrunt:Bumblezone:+1.20.6-neoforge"
implementation "earth.terrarium.athena:athena-forge-1.20.5:3.4.0"
implementation "com.teamresourceful.resourcefullib:resourcefullib-forge-1.20.5:2.6.0-beta.7"
FABRIC/QUILT:
modImplementation "com.telepathicgrunt:Bumblezone:+1.20.6-fabric"
modImplementation "earth.terrarium.athena:athena-fabric-1.20.5:3.4.0"
implementation "com.teamresourceful.resourcefullib:resourcefullib-fabric-1.20.5:2.6.0-beta.7"
modImplementation "maven.modrinth:midnightlib:1.5.5-fabric"
ARCH COMMON MODULE:
modCompileOnly "com.telepathicgrunt:Bumblezone:+1.20.6-common"
}
```