Skip to content

Commit

Permalink
rename everything
Browse files Browse the repository at this point in the history
  • Loading branch information
PssbleTrngle committed Aug 18, 2022
1 parent a734205 commit 03cb4c9
Show file tree
Hide file tree
Showing 63 changed files with 157 additions and 407 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,8 +39,8 @@ jobs:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
upload_url: ${{ github.event.release.upload_url }}
asset_path: build/libs/thermomix-${{ github.event.release.tag_name }}.jar
asset_name: thermomix-${{ github.event.release.tag_name }}.jar
asset_path: build/libs/sliceanddice-${{ github.event.release.tag_name }}.jar
asset_name: sliceanddice-${{ github.event.release.tag_name }}.jar
asset_content_type: application/java-archive

- name: publish to github packages
Expand Down
16 changes: 8 additions & 8 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,25 +3,25 @@
[OVERWEIGHT_FARMING]: https://www.curseforge.com/minecraft/mc-mods/overweight-farming
[NEAPOLITAN]: https://www.curseforge.com/minecraft/mc-mods/neapolitan

# Thermomix
# Slicer

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)
![](https://raw.githubusercontent.com/PssbleTrngle/SliceAndDice/1.18.x/screenshots/slicer.png)

### Automatic Cutting

The Main feature of the mod is the _Thermomix_, a machine similar to the _Mechanical Mixer_ or _Mechanical Press_ from Create.
The Main feature of the mod is the _Slicer_, 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.
By default, only knives and axes are allowed, but this behaviour can be overwritten by modifying the `sliceanddice: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)
![](https://raw.githubusercontent.com/PssbleTrngle/SliceAndDice/1.18.x/screenshots/cooking.png)

### Sprinkler

Expand All @@ -33,13 +33,13 @@ Different fluids can have different effects. For now, only lava & water do somet

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)
![](https://raw.githubusercontent.com/PssbleTrngle/SliceAndDice/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)
![](https://raw.githubusercontent.com/PssbleTrngle/SliceAndDice/1.18.x/screenshots/strip.png)
![](https://raw.githubusercontent.com/PssbleTrngle/SliceAndDice/1.18.x/screenshots/wax.png)
6 changes: 3 additions & 3 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ minecraft {
property 'mixin.env.refMapRemappingFile', "${projectDir}/build/createSrgToMcp/output.srg"

mods {
thermomix {
sliceanddice {
source sourceSets.main
}
}
Expand All @@ -76,7 +76,7 @@ minecraft {
property 'mixin.env.refMapRemappingFile', "${projectDir}/build/createSrgToMcp/output.srg"

mods {
thermomix {
sliceanddice {
source sourceSets.main
}
}
Expand All @@ -96,7 +96,7 @@ minecraft {
args '--mod', project.mod_id, '--all', '--output', file('src/generated/resources/'), '--existing', file('src/main/resources')

mods {
thermomix {
sliceanddice {
source sourceSets.main
}
}
Expand Down
4 changes: 2 additions & 2 deletions gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ mc_version=1.18.2
mappings_channel=official
forge_version=40.1.60

mod_id=thermomix
mod_id=sliceanddice
mod_version=0.0.0-dev
release_type=release

Expand All @@ -20,6 +20,6 @@ blueprint_version=5.4.3
neapolitan_version=3881528
overweight_farming_version=3919202

repository=pssbletrngle/thermomix
repository=pssbletrngle/sliceanddice
modrinth_project_id=GmjmRQ0A
curseforge_project_id=659674
File renamed without changes
17 changes: 0 additions & 17 deletions src/generated/resources/.cache/cache

This file was deleted.

This file was deleted.

This file was deleted.

This file was deleted.

This file was deleted.

This file was deleted.

This file was deleted.

This file was deleted.

This file was deleted.

This file was deleted.

This file was deleted.

This file was deleted.

This file was deleted.

This file was deleted.

22 changes: 0 additions & 22 deletions src/generated/resources/data/thermomix/recipes/sprinkler.json

This file was deleted.

22 changes: 0 additions & 22 deletions src/generated/resources/data/thermomix/recipes/thermomix.json

This file was deleted.

Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
package com.possible_triangle.thermomix;
package com.possible_triangle.sliceanddice;

import net.minecraftforge.fml.common.Mod;
import net.minecraftforge.fml.javafmlmod.FMLJavaModLoadingContext;

@Mod(ThermomixMod.MOD_ID)
public class ThermomixMod {
@Mod(SliceAndDice.MOD_ID)
public class SliceAndDice {

public static final String MOD_ID = "thermomix";
public static final String MOD_ID = "sliceanddice";

public ThermomixMod() {
public SliceAndDice() {
var eventBus = FMLJavaModLoadingContext.get().getModEventBus();
Content.INSTANCE.register(eventBus);
}
Expand Down
Loading

0 comments on commit 03cb4c9

Please sign in to comment.