-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: 1.3.0: World of (coherent) Color
- Loading branch information
Showing
241 changed files
with
3,637 additions
and
2,970 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,28 +1,29 @@ | ||
<br/> | ||
|
||
<div align="center"> | ||
|
||
<a href="https://github.com/CallMeEchoCodes/Hollow"><img src="src/main/resources/assets/hollow/icon.png" alt="Logo" height="250"></a> | ||
|
||
### Hollow | ||
# Hollow | ||
|
||
A mod about hollow logs and hollow promises | ||
|
||
<img alt="fabric" height="40" src="https://cdn.jsdelivr.net/npm/@intergrav/devins-badges@3/assets/compact/supported/fabric_vector.svg"> | ||
<img alt="quilt" height="40" src="https://cdn.jsdelivr.net/npm/@intergrav/devins-badges@3/assets/compact/supported/quilt_vector.svg"> | ||
<img alt="forge" height="40" src="https://cdn.jsdelivr.net/npm/@intergrav/devins-badges@3/assets/compact/unsupported/forge_vector.svg"> | ||
<img alt="spirit" height="40" src="https://raw.githubusercontent.com/SpiritGameStudios/.github/main/assets/brand/badge/compact.svg"> | ||
</div> | ||
<img alt="Made by Spirit Studios" src="https://raw.githubusercontent.com/SpiritGameStudios/.github/main/assets/brand/badge/compact.svg"> | ||
|
||
## 📖 About | ||
*DISCLAIMER: Do not use the existence of this mod as an excuse to harass Mojang. The name is a joke, Mojang promised nothing.* | ||
|
||
Have you ever seen that one birch forest concept and thought, "Wow, I wish that was actually in the game"? Well then this mod is for you. | ||
|
||
Hollow adds in as many missing features as it can, fulfilling Mojang's hollow promises. | ||
Hollow adds in as many missing features as it can, fulfilling Mojang's "hollow" promises. | ||
|
||
## ❓ FAQ | ||
* Forge? <br/> | ||
No. Do not ask me for forge or you will be blocked instantly. | ||
No. Do not ask us for forge or neoforge support. It isn't happening. | ||
|
||
* Can I use this mod in a Mod Pack? <br/> | ||
Yes! Go ahead! Just make sure we are credited somewhere and don't reupload our .jar file. If you make a pack with one of our mods, we would love to know! Join our discord and tell us! | ||
|
||
* Do you plan to add `X`? <br/> | ||
If it's in one of the concept art images, probably. Some features take longer than others. | ||
If you want to suggest something, join the [discord](https://discord.gg/TTmx7d2axf). | ||
If it's in one of the concept art images, probably. Some features take longer than others. If you want to suggest something, join the [discord](https://discord.gg/TTmx7d2axf). | ||
|
||
* Can you port/backport to `X` version? <br/> | ||
Updating is a maybe. Seeing as I'm making this for fun, it comes down to whatever version I'm playing on at the time. For backports, probably not. I might do `1.19.2` as I play that a lot but other than that, no. | ||
Updates to new versions will probably happen at some point. Porting is hard and takes time so don't expect it instantly. | ||
Backports won't happen. Multiversion modding is hard, annoying, and not worth the effort. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,6 @@ | ||
org.gradle.jvmargs=-Xmx2G | ||
org.gradle.parallel=true | ||
|
||
mod.version = 1.2.5 | ||
mod.version = 1.3.0 | ||
mod.group = dev.spiritstudios | ||
mod.id = hollow | ||
|
||
deps.minecraft=1.21 | ||
deps.loader=0.15.11 | ||
deps.yarn=1.21+build.9 | ||
|
||
deps.fabricapi=0.103.0+1.21.1 | ||
deps.specter=1.0.2 | ||
mod.id = hollow |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,49 @@ | ||
[versions] | ||
fabric_loom = "1.9-SNAPSHOT" | ||
minotaur = "2.+" | ||
|
||
minecraft = "1.21" | ||
yarn = "1.21+build.9" | ||
|
||
fabric_loader = "0.16.5" | ||
fabric_api = "0.109.0+1.21.1" | ||
|
||
specter = "1.1.1" | ||
|
||
lambdynamiclights = "3.1.2+1.21.1" | ||
|
||
[plugins] | ||
fabric_loom = { id = "fabric-loom", version.ref = "fabric_loom" } | ||
minotaur = { id = "com.modrinth.minotaur", version.ref = "minotaur" } | ||
|
||
[libraries] | ||
minecraft = { group = "mojang", name = "minecraft", version.ref = "minecraft" } | ||
yarn = { group = "net.fabricmc", name = "yarn", version.ref = "yarn" } | ||
|
||
fabric_loader = { group = "net.fabricmc", name = "fabric-loader", version.ref = "fabric_loader" } | ||
fabric_api = { group = "net.fabricmc.fabric-api", name = "fabric-api", version.ref = "fabric_api" } | ||
|
||
specter_api = { group = "dev.spiritstudios.specter", name = "specter-api", version.ref = "specter" } | ||
specter_block = { group = "dev.spiritstudios.specter", name = "specter-block", version.ref = "specter" } | ||
specter_config = { group = "dev.spiritstudios.specter", name = "specter-config", version.ref = "specter" } | ||
specter_core = { group = "dev.spiritstudios.specter", name = "specter-core", version.ref = "specter" } | ||
specter_serialization = { group = "dev.spiritstudios.specter", name = "specter-serialization", version.ref = "specter" } | ||
specter_entity = { group = "dev.spiritstudios.specter", name = "specter-entity", version.ref = "specter" } | ||
specter_item = { group = "dev.spiritstudios.specter", name = "specter-item", version.ref = "specter" } | ||
specter_registry = { group = "dev.spiritstudios.specter", name = "specter-registry", version.ref = "specter" } | ||
specter_render = { group = "dev.spiritstudios.specter", name = "specter-render", version.ref = "specter" } | ||
specter_debug = { group = "dev.spiritstudios.specter", name = "specter-debug", version.ref = "specter" } | ||
|
||
lambdynamiclights = { group = "dev.lambdaurora.lambdynamiclights", name = "lambdynamiclights-runtime", version.ref = "lambdynamiclights" } | ||
|
||
[bundles] | ||
specter = [ | ||
"specter_block", | ||
"specter_config", | ||
"specter_core", | ||
"specter_entity", | ||
"specter_item", | ||
"specter_registry", | ||
"specter_render", | ||
"specter_serialization" | ||
] |
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,6 @@ | ||
pluginManagement { | ||
repositories { | ||
maven("https://maven.fabricmc.net/") | ||
mavenCentral() | ||
gradlePluginPortal() | ||
} | ||
} |
Oops, something went wrong.