LotusBrewingFuelsAPI
ModMIT

LotusBrewingFuelsAPI

Allows mods made by the Lotus dev team to customize brewing stand fuels.

22
Downloads
0
Followers
4 months ago
Updated
📦
1
Versions

📖About LotusBrewingFuelsAPI

Lotus Brewing Fuels API (LBFA) is a library mod that allows the mods developed by the Lotus team to customize the fuel items in brewing stands.

If you wish to use the mod yourself, setting it up is fairly straightforward. Simply add it as a dependency for your mod, and then create a json file at data//brewing_fuels/*.json. Any json files here that fit the required format will be accepted and used, and they can be named whatever you wish. To override the vanilla items, simply make a file at data/lbfa/brewing_fuels/vanilla.json. An example file is listed below:

{
  "brewing_fuels": [
    {
      "item": "minecraft:blaze_powder",
      "fuel": 20
    },
    {
      "item": "minecraft:charcoal",
      "fuel": 5
    }
  ]
}

The item value can be set to any item, and the fuel value can be set to an integer between 1 and 20. If the value specified is less than 1 or greater than 20, the mod should not break and it will simply default to 20.