diff --git a/.github/ISSUE_TEMPLATE/bug_report.yml b/.github/ISSUE_TEMPLATE/bug_report.yml index 0f15dd4..03b9fe2 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-beta2 + - v1.2.0-beta3 - v1.1.2+mod - v1.1.2 validations: diff --git a/README.md b/README.md index 2577b2b..43002bd 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) | [v1.2.0-beta2](https://github.com/Classic36-Media/Better-Unpackables/releases/tag/v1.2.0-beta2) | +| 1.21.4 (24w44a - 24w45a) | [v1.2.0-beta3](https://github.com/Classic36-Media/Better-Unpackables/releases/tag/v1.2.0-beta3) | | 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/data/unpacking/advancement/recipes/misc/brick_block_to_brick.json b/data/unpacking/advancement/recipes/misc/brick_block_to_brick.json new file mode 100644 index 0000000..7ae9fc6 --- /dev/null +++ b/data/unpacking/advancement/recipes/misc/brick_block_to_brick.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "unpacking:brick_block_to_brick" + ] + }, + "criteria": { + "has_brick_block": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "item": "minecraft:bricks" + } + ] + } + }, + "has_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "unpacking:brick_block_to_brick" + } + } + }, + "requirements": [ + [ + "has_brick_block", + "has_recipe" + ] + ] +} \ No newline at end of file diff --git a/data/unpacking/advancement/recipes/misc/nether_brick_block_to_nether_brick.json b/data/unpacking/advancement/recipes/misc/nether_brick_block_to_nether_brick.json new file mode 100644 index 0000000..f108d04 --- /dev/null +++ b/data/unpacking/advancement/recipes/misc/nether_brick_block_to_nether_brick.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "unpacking:nether_brick_block_to_nether_brick" + ] + }, + "criteria": { + "has_nether_brick_block": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "item": "minecraft:nether_bricks" + } + ] + } + }, + "has_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "unpacking:nether_brick_block_to_nether_brick" + } + } + }, + "requirements": [ + [ + "has_nether_brick_block", + "has_recipe" + ] + ] +} \ No newline at end of file diff --git a/data/unpacking/advancement/recipes/misc/resin_brick_block_to_resin_brick.json b/data/unpacking/advancement/recipes/misc/resin_brick_block_to_resin_brick.json new file mode 100644 index 0000000..22a6b39 --- /dev/null +++ b/data/unpacking/advancement/recipes/misc/resin_brick_block_to_resin_brick.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "unpacking:resin_brick_block_to_resin_brick" + ] + }, + "criteria": { + "has_resin_brick_block": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "item": "minecraft:resin_bricks" + } + ] + } + }, + "has_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "unpacking:resin_brick_block_to_resin_brick" + } + } + }, + "requirements": [ + [ + "has_resin_brick_block", + "has_recipe" + ] + ] +} \ No newline at end of file diff --git a/data/unpacking/recipe/brick_block_to_brick.json b/data/unpacking/recipe/brick_block_to_brick.json new file mode 100644 index 0000000..b9f538c --- /dev/null +++ b/data/unpacking/recipe/brick_block_to_brick.json @@ -0,0 +1,10 @@ +{ + "type": "crafting_shapeless", + "ingredients": [ + "minecraft:bricks" + ], + "result": { + "id": "minecraft:brick", + "count": 4 + } +} \ No newline at end of file diff --git a/data/unpacking/recipe/nether_brick_block_to_nether_brick.json b/data/unpacking/recipe/nether_brick_block_to_nether_brick.json new file mode 100644 index 0000000..e4eb742 --- /dev/null +++ b/data/unpacking/recipe/nether_brick_block_to_nether_brick.json @@ -0,0 +1,10 @@ +{ + "type": "crafting_shapeless", + "ingredients": [ + "minecraft:nether_bricks" + ], + "result": { + "id": "minecraft:nether_brick", + "count": 4 + } +} \ No newline at end of file diff --git a/data/unpacking/recipe/resin_brick_block_to_resin_brick.json b/data/unpacking/recipe/resin_brick_block_to_resin_brick.json new file mode 100644 index 0000000..5b5160f --- /dev/null +++ b/data/unpacking/recipe/resin_brick_block_to_resin_brick.json @@ -0,0 +1,10 @@ +{ + "type": "crafting_shapeless", + "ingredients": [ + "minecraft:resin_bricks" + ], + "result": { + "id": "minecraft:resin_brick", + "count": 4 + } +} \ No newline at end of file diff --git a/pack.mcmeta b/pack.mcmeta index c1ad160..8df4003 100644 --- a/pack.mcmeta +++ b/pack.mcmeta @@ -1,7 +1,7 @@ { "pack":{ "pack_format": 58, - "supported_formats": {"min_inclusive": 58, "max_inclusive": 58}, - "description": "§bBetter Unpackables\n§7v1.2.0-b2 §8/ §f1.21.4 Snapshots" + "supported_formats": {"min_inclusive": 58, "max_inclusive": 59}, + "description": "§bBetter Unpackables\n§7v1.2.0-b3 §8/ §f1.21.4 Snapshots" } } \ No newline at end of file