diff --git a/.github/ISSUE_TEMPLATE/bug_report.yml b/.github/ISSUE_TEMPLATE/bug_report.yml index 3887a43..1f71a49 100644 --- a/.github/ISSUE_TEMPLATE/bug_report.yml +++ b/.github/ISSUE_TEMPLATE/bug_report.yml @@ -18,7 +18,7 @@ body: label: Version description: Which version of Better Unpackables are you using? If it's not listed, please update! options: - - v1.2.0-beta4 + - v1.2.0-beta5 - v1.1.2+mod - v1.1.2 validations: @@ -36,7 +36,7 @@ body: attributes: label: Mod Loader Version description: If running as a mod, which mod loader & Fabric API version are you using? - placeholder: "Example: Fabric Loader v0.16.9 with Fabric API v0.108.0 for Minecraft 1.21.3" + placeholder: "Example: Fabric Loader v0.16.9 with Fabric API v0.109.0 for Minecraft 1.21.3" validations: required: false - type: textarea diff --git a/README.md b/README.md index 9ad003d..757634b 100644 --- a/README.md +++ b/README.md @@ -24,7 +24,7 @@ Recipes in this data pack/mod can be found [here on the wiki](https://github.com | Minecraft Version | Better Unpackables Version | | :--: | :--: | -| 1.21.4 (24w44a - 24w46a) | [v1.2.0-beta4](https://github.com/Classic36-Media/Better-Unpackables/releases/tag/v1.2.0-beta4) | +| 1.21.4 (24w46a - 1.21.4-pre1) | [v1.2.0-beta5](https://github.com/Classic36-Media/Better-Unpackables/releases/tag/v1.2.0-beta5) | | 1.21.2 - 1.21.3 | [v1.1.2](https://github.com/Classic36-Media/Better-Unpackables/releases/tag/v1.1.2) | Versions for older game updates and snapshots can be found [here](https://github.com/Classic36-Media/Better-Unpackables/wiki/Versions). diff --git a/credits.txt b/credits.txt index 8cadac2..79cc273 100644 --- a/credits.txt +++ b/credits.txt @@ -9,4 +9,8 @@ ACCEPTED SUGGESTIONS: babarsc - Wool to String recipe -https://github.com/Classic36-Media/Better-Unpackables/issues/1 \ No newline at end of file +https://github.com/Classic36-Media/Better-Unpackables/issues/1 + +trzejos +- Quartz Block to Nether Quartz recipe +https://github.com/Classic36-Media/Better-Unpackables/issues/2 \ No newline at end of file diff --git a/data/unpacking/advancement/recipes/misc/quartz_block_to_quartz.json b/data/unpacking/advancement/recipes/misc/quartz_block_to_quartz.json new file mode 100644 index 0000000..5ca3452 --- /dev/null +++ b/data/unpacking/advancement/recipes/misc/quartz_block_to_quartz.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "unpacking:quartz_block_to_quartz" + ] + }, + "criteria": { + "has_quartz_block": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "item": "minecraft:quartz_block" + } + ] + } + }, + "has_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "unpacking:quartz_block_to_quartz" + } + } + }, + "requirements": [ + [ + "has_quartz_block", + "has_recipe" + ] + ] +} \ No newline at end of file diff --git a/data/unpacking/recipe/quartz_block_to_quartz.json b/data/unpacking/recipe/quartz_block_to_quartz.json new file mode 100644 index 0000000..f6dd6d8 --- /dev/null +++ b/data/unpacking/recipe/quartz_block_to_quartz.json @@ -0,0 +1,13 @@ +{ + "type": "minecraft:crafting_shaped", + "pattern": [ + "B" + ], + "key": { + "B": "minecraft:quartz_block" + }, + "result": { + "id": "minecraft:quartz", + "count": 4 + } +} \ No newline at end of file diff --git a/pack.mcmeta b/pack.mcmeta index f0ee013..09374bc 100644 --- a/pack.mcmeta +++ b/pack.mcmeta @@ -1,7 +1,7 @@ { "pack":{ - "pack_format": 58, - "supported_formats": {"min_inclusive": 58, "max_inclusive": 60}, - "description": "§bBetter Unpackables\n§7v1.2.0-b4 §8/ §f1.21.4 Snapshots" + "pack_format": 60, + "supported_formats": {"min_inclusive": 60, "max_inclusive": 60}, + "description": "§bBetter Unpackables\n§7v1.2.0-b5 §8/ §f1.21.4 Snapshots" } } \ No newline at end of file