diff --git a/.github/workflows/release-from-tag.yml b/.github/workflows/release-from-tag.yml index b226de4..cbf6757 100644 --- a/.github/workflows/release-from-tag.yml +++ b/.github/workflows/release-from-tag.yml @@ -1,4 +1,4 @@ -name: Create Release Archive +name: Create Release with Archive from Tag on: push: @@ -13,6 +13,13 @@ jobs: - name: Checkout repository uses: actions/checkout@v3 + - name: Find and Replace Version Placeholders + uses: jacobtomlinson/gha-find-replace@v3 + with: + find: "<>" + replace: "${{ github.ref_name }}" + regex: false + - name: Create Archive run: zip -r LoopsRecipes.zip pack.mcmeta pack.png data/ diff --git a/README.md b/README.md index f4e165e..0114ba5 100644 --- a/README.md +++ b/README.md @@ -1,14 +1,41 @@ + + +# ![LoopsRecipes](images/icon/icon.png) LoopsRecipes + # LoopsRecipes A collection of custom Minecraft crafting recipes -Current recipes: +## Crafting recipes + +Can be found in [RECIPES.md](RECIPES.md) + +## Installation + +1. Download the latest release from [here](https://github.com/Loopios7/LoopsRecipes/releases/latest) +2. Place the downloaded file in your world's datapacks folder +3. Run `/reload` or restart your world +4. Enjoy! + + +## Uninstallation + + + +1. Remove the datapack from your world's datapacks folder +2. Run `/reload` or restart your world + +## Suggestions + +If you have any suggestions, please open an issue [here](https://github.com/Loopios7/LoopsRecipes/issues/new/choose) + +## Changelog + +Can be found in [CHANGELOG.md](CHANGELOG.md) + +## TODO -- Craftable saddles -- Convert deepslate to cobbled deepslate -- Convert stone to cobblestone -- Unpack blocks of amethyst to amethyst shards -- More nether bricks -- More red nether bricks -- Unpackable glowstone -- Craft hoppers using barrels instead of chests +- [ ] Add more recipes +- [ ] Add functions to give all recipes +- [ ] Add functions to clear inventory of all recipes diff --git a/RECIPES.md b/RECIPES.md new file mode 100644 index 0000000..76a2b7d --- /dev/null +++ b/RECIPES.md @@ -0,0 +1,52 @@ +# Crafting recipes + +## Crafting table + +### Craftables + +#### Craftable saddle + + +![Craftable saddle](images/crafting_table/craftables/saddle.png) + +#### Craftable hoppers using barrels + + +![Craftable hoppers using barrels](images/crafting_table/craftables/hopper.png) + +#### Craftable Smooth Stone + + +![Craftable Smooth Stone](images/crafting_table/craftables/smooth_stone.png) + +### Unpackables + +#### Amethyst block to amethyst shards + +![Amethyst block to amethyst shards](images/crafting_table/unpackables/amethyst_shard.png) + +#### Glowstone block to glowstone dust ![Glowstone block to glowstone dust](images/crafting_table/unpackables/glowstone_dust.png) + +### Converters + +#### Deepslate to cobbled deepslate + + +![Deepslate to cobbled deepslate](images/crafting_table/converters/cobbled_deepslate.png) + +#### Stone to cobblestone + + +![Stone to cobblestone](images/crafting_table/converters/cobblestone.png) + +### More Blocks + +#### More nether bricks + + +![More nether bricks](images/crafting_table/more_blocks/nether_bricks.png) + +#### More red nether bricks + + +![More red nether bricks](images/crafting_table/more_blocks/red_nether_bricks.png) diff --git a/images/crafting_table/unpackables/amethyst_shard.png b/images/crafting_table/unpackables/amethyst_shard.png new file mode 100644 index 0000000..5522a4a Binary files /dev/null and b/images/crafting_table/unpackables/amethyst_shard.png differ diff --git a/images/crafting_table/unpackables/glowstone_dust.png b/images/crafting_table/unpackables/glowstone_dust.png new file mode 100644 index 0000000..9818760 Binary files /dev/null and b/images/crafting_table/unpackables/glowstone_dust.png differ diff --git a/images/icon/icon.afdesign b/images/icon/icon.afdesign new file mode 100644 index 0000000..57cc466 Binary files /dev/null and b/images/icon/icon.afdesign differ diff --git a/pack.mcmeta b/pack.mcmeta index e458192..2725136 100644 --- a/pack.mcmeta +++ b/pack.mcmeta @@ -1,6 +1,6 @@ { "pack": { "pack_format": 10, - "description": "§aCustom Recipes v1.8\n§bBy @Loopios7" + "description": "§aCustom Recipes - <>\n§bBy @Loopios7" } }