Green Feathers is a fork of Feathers, a stamina mod for Minecraft. It add Stamina in the form of Feathers that can be consumed to do things by other mods through an API. Green Feathers provides the Stamina system, regeneration and methods to alter, spend, and otherwise make use of the system. It aims to be highly configurable and easy to use by other mods.
Simply drag and drop the mod downloaded from the files section URL PENDING into your mods folder after installing Minecraft Forge.
The mods folder is located at %appdata%/.minecraft/mods
.
Adding support to Green Feathers is easy. To import it, simply add this line to your build.gradle
file's repositories
.
repositories {
maven { url "https://www.cursemaven.com" }
}
And this to your project's dependencies.
dependencies {
implementation fg.deobf("curse.maven:feathers-PENDING:FILE_VERSION")
}
Where FILE_VERSION
is the file ID of the version you want to use. You can find this by opening the URL of an Feathers file download and looking at the url. The numbers at the end are the file ID.
Then simply run your gradle setup commands as normal, e.g. gradlew genEclipseRuns
then gradlew eclipse
.
You now have access to Feathers API and code! The API is pretty self explanatory but if you need any help, feel free to private message me here!
Pull requests are welcome. For major changes, please open an issue first to discuss what you would like to change.
Please make sure to update tests as appropriate.
Creative Commons Attribution-NonCommercial-ShareAlike 3.0 Unported License