Skip to content

Commit

Permalink
v1.2.0-beta3
Browse files Browse the repository at this point in the history
TheClassic36 committed Nov 6, 2024
1 parent 167aab6 commit 97a6017
Showing 9 changed files with 130 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/ISSUE_TEMPLATE/bug_report.yml
Original file line number Diff line number Diff line change
@@ -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:
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -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).
32 changes: 32 additions & 0 deletions data/unpacking/advancement/recipes/misc/brick_block_to_brick.json
Original file line number Diff line number Diff line change
@@ -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"
]
]
}
Original file line number Diff line number Diff line change
@@ -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"
]
]
}
Original file line number Diff line number Diff line change
@@ -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"
]
]
}
10 changes: 10 additions & 0 deletions data/unpacking/recipe/brick_block_to_brick.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
{
"type": "crafting_shapeless",
"ingredients": [
"minecraft:bricks"
],
"result": {
"id": "minecraft:brick",
"count": 4
}
}
10 changes: 10 additions & 0 deletions data/unpacking/recipe/nether_brick_block_to_nether_brick.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
{
"type": "crafting_shapeless",
"ingredients": [
"minecraft:nether_bricks"
],
"result": {
"id": "minecraft:nether_brick",
"count": 4
}
}
10 changes: 10 additions & 0 deletions data/unpacking/recipe/resin_brick_block_to_resin_brick.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
{
"type": "crafting_shapeless",
"ingredients": [
"minecraft:resin_bricks"
],
"result": {
"id": "minecraft:resin_brick",
"count": 4
}
}
4 changes: 2 additions & 2 deletions pack.mcmeta
Original file line number Diff line number Diff line change
@@ -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"
}
}

0 comments on commit 97a6017

Please sign in to comment.