From a73420542386ddfdc26fec4030bc3c4653663d8e Mon Sep 17 00:00:00 2001 From: PssbleTrngle Date: Wed, 17 Aug 2022 23:49:59 +0200 Subject: [PATCH] readme --- README.md | 44 ++++++++++++++++++++++++++++++++++++++++++++ build.gradle | 5 +++-- 2 files changed, 47 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index dbb16aa..281864c 100644 --- a/README.md +++ b/README.md @@ -1 +1,45 @@ +[FARMERS_DELIGHT]: https://www.curseforge.com/minecraft/mc-mods/farmers-delight +[CREATE]: https://www.curseforge.com/minecraft/mc-mods/create +[OVERWEIGHT_FARMING]: https://www.curseforge.com/minecraft/mc-mods/overweight-farming +[NEAPOLITAN]: https://www.curseforge.com/minecraft/mc-mods/neapolitan + # Thermomix + +This mod enables a variety of features to create better compatibility between mostly [Farmer's Delight][FARMERS_DELIGHT] and [Create][CREATE]. +While it is designed to work with Farmer's Delight, it does work without it and also adds some compatibility features for other mods. + +![](https://raw.githubusercontent.com/PssbleTrngle/Thermomix/1.18.x/screenshots/thermomix.png) + +### Automatic Cutting + +The Main feature of the mod is the _Thermomix_, a machine similar to the _Mechanical Mixer_ or _Mechanical Press_ from Create. +It automatically registers all cutting recipes from Farmer's Delight. In that sense, it is an automatic _Cutting Board_. +In order to use it, the correct tool has to be placed into the machine, using `Right-Click`. +By default, only knives and axes are allowed, but this behaviour can be overwritten by modifying the `thermomix:allowed_tools` item tag. + +### Automatic Cooking + +All recipes from Farmer's delight requiring the Cooking Pot are added as heated mixing recipes. + +![](https://raw.githubusercontent.com/PssbleTrngle/Thermomix/1.18.x/screenshots/cooking.png) + +### Sprinkler + +The Sprinkler is a block which, when provided with a fluid using a pipe, will distribute it in a small are below. +Different fluids can have different effects. For now, only lava & water do something. + +- Lava applies a small amount of fire damage to entities below +- Water makes the area below wet, making the world think it's raining there. + +The latter is meant to enable growing of _Banana Fonds_ from [Neapolitan][NEAPOLITAN] without being dependent on the weather, but it could possibly have other effects on other mods too. + +![](https://raw.githubusercontent.com/PssbleTrngle/Thermomix/1.18.x/screenshots/sprinkler.png) + +### Overweight Farming + +If present, some compatibility features for [Overweight Farming][OVERWEIGHT_FARMING] is added. +This includes waxing recipes using the deployer, +as well as showing the axe-stripping of overweight crops in JEI. + +![](https://raw.githubusercontent.com/PssbleTrngle/Thermomix/1.18.x/screenshots/strip.png) +![](https://raw.githubusercontent.com/PssbleTrngle/Thermomix/1.18.x/screenshots/wax.png) \ No newline at end of file diff --git a/build.gradle b/build.gradle index c4ed665..5c226b0 100644 --- a/build.gradle +++ b/build.gradle @@ -208,7 +208,8 @@ if (ENV.CURSEFORGE_TOKEN) curseforge { relations { requiredDependency 'create' requiredDependency 'kotlin-for-forge' - requiredDependency 'farmers-delight' + optionalDependency 'farmers-delight' + optionalDependency 'overweight-farming' } } } @@ -227,7 +228,7 @@ if (ENV.MODRINTH_TOKEN) modrinth { dependencies { required.project "ordsPcFz" required.project "LNytGWDc" - required.project "R2OftAxM" + optional.project "R2OftAxM" } }