-
Notifications
You must be signed in to change notification settings - Fork 3
Home
This is a Minecraft Forge mod which adds a Solar Cooker to the game.
- The Solar Cooker has a better game performance (less lags), because it uses the mechanisms of FastFurnace mod.
- Vanilla recipes can be disabled or blacklisted for the Solar Cooker.
- Additional recipes only for the Solar Cooker can be added with data packs.
This config defines which vanilla recipe type is used by the Solar Cooker.
Possible values:
-
"smoking"
(default value) "smelting"
"blasting"
With the config value vanillaRecipesEnabled
you can enable/disable the usage of the vanilla recipe type defined in vanillaRecipeType
. (default: enabled)
This config value is a comma seperated list of recipe ids which should not be used by the Solar Cooker.
Examples:
-
""
- no recipe is blacklisted (default value) -
"baked_potato"
- only Baked Potato recipe (of Furnace) is disabled inside of brick furnaces. -
"baked_potato,baked_potato_from_smoking,othermod:other_baked_food"
- Baked Potato recipes of Furnace and Smoker are disabled inside of brick furnaces as well as theother_baked_food
recipe of theothermod
mod.
Has only an effect if vanillaRecipesEnabled
is enabled.
You can set a cook time factor with the config option cookTimeFactor
.
Examples:
- 1.0 - same time as the vanilla recipe
- 0.5 - half the time
- 2.0 - twice the time
- 4.0 - fourth the time (default value)
This factor influences only the recipe types "smelting"
, "blasting"
, "smoking"
inside of the Solar Cooker.
Has only an effect if vanillaRecipesEnabled
is enabled.
It is possible to add special recipes for the Solar Cooker with data packs. All recipes have the same structure as the vanilla smelting recipes.
The only difference is the type
value.
Example:
{
"type": "solarcooker:solarcooking",
"ingredient": {
"item": "minecraft:iron_ore"
},
"result": "minecraft:iron_nugget",
"experience": 0.3,
"cookingtime": 600
}