Skip to content

Commit

Permalink
[~] Carried over patches from Forge
Browse files Browse the repository at this point in the history
  • Loading branch information
crispytwig committed May 19, 2024
1 parent 55762f4 commit 38e90b7
Show file tree
Hide file tree
Showing 55 changed files with 1,113 additions and 80 deletions.
33 changes: 33 additions & 0 deletions src/main/resources/data/bbb/advancements/recipes/acacia_wall.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
{
"parent": "minecraft:recipes/root",
"criteria": {
"has_logs": {
"conditions": {
"items": [
{
"tag": "minecraft:acacia_logs"
}
]
},
"trigger": "minecraft:inventory_changed"
},
"has_the_recipe": {
"conditions": {
"recipe": "bbb:acacia_wall"
},
"trigger": "minecraft:recipe_unlocked"
}
},
"requirements": [
[
"has_logs",
"has_the_recipe"
]
],
"rewards": {
"recipes": [
"bbb:acacia_wall"
]
},
"sends_telemetry_event": false
}
Original file line number Diff line number Diff line change
Expand Up @@ -2,13 +2,13 @@
"parent": "minecraft:recipes/root",
"criteria": {
"has_log": {
"conditions": {
"items": [
{
"tag": "minecraft:bamboo_logs"
}
]
},
"items": [
{
"items": [
"minecraft:stripped_bamboo_block"
]
}
],
"trigger": "minecraft:inventory_changed"
},
"has_the_recipe": {
Expand Down
33 changes: 33 additions & 0 deletions src/main/resources/data/bbb/advancements/recipes/bamboo_wall.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
{
"parent": "minecraft:recipes/root",
"criteria": {
"has_logs": {
"items": [
{
"items": [
"minecraft:stripped_bamboo_block"
]
}
],
"trigger": "minecraft:inventory_changed"
},
"has_the_recipe": {
"conditions": {
"recipe": "bbb:bamboo_wall"
},
"trigger": "minecraft:recipe_unlocked"
}
},
"requirements": [
[
"has_logs",
"has_the_recipe"
]
],
"rewards": {
"recipes": [
"bbb:bamboo_wall"
]
},
"sends_telemetry_event": false
}
33 changes: 33 additions & 0 deletions src/main/resources/data/bbb/advancements/recipes/birch_wall.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
{
"parent": "minecraft:recipes/root",
"criteria": {
"has_logs": {
"conditions": {
"items": [
{
"tag": "minecraft:birch_logs"
}
]
},
"trigger": "minecraft:inventory_changed"
},
"has_the_recipe": {
"conditions": {
"recipe": "bbb:birch_wall"
},
"trigger": "minecraft:recipe_unlocked"
}
},
"requirements": [
[
"has_logs",
"has_the_recipe"
]
],
"rewards": {
"recipes": [
"bbb:birch_wall"
]
},
"sends_telemetry_event": false
}
33 changes: 33 additions & 0 deletions src/main/resources/data/bbb/advancements/recipes/cherry_wall.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
{
"parent": "minecraft:recipes/root",
"criteria": {
"has_logs": {
"conditions": {
"items": [
{
"tag": "minecraft:cherry_logs"
}
]
},
"trigger": "minecraft:inventory_changed"
},
"has_the_recipe": {
"conditions": {
"recipe": "bbb:cherry_wall"
},
"trigger": "minecraft:recipe_unlocked"
}
},
"requirements": [
[
"has_logs",
"has_the_recipe"
]
],
"rewards": {
"recipes": [
"bbb:cherry_wall"
]
},
"sends_telemetry_event": false
}
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,9 @@
"conditions": {
"items": [
{
"tag": "minecraft:crimson_logs"
"items": [
"minecraft:stripped_crimson_stem"
]
}
]
},
Expand Down
35 changes: 35 additions & 0 deletions src/main/resources/data/bbb/advancements/recipes/crimson_wall.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
{
"parent": "minecraft:recipes/root",
"criteria": {
"has_logs": {
"conditions": {
"items": [
{
"items": [
"minecraft:stripped_crimson_stem"
]
}
]
},
"trigger": "minecraft:inventory_changed"
},
"has_the_recipe": {
"conditions": {
"recipe": "bbb:crimson_wall"
},
"trigger": "minecraft:recipe_unlocked"
}
},
"requirements": [
[
"has_logs",
"has_the_recipe"
]
],
"rewards": {
"recipes": [
"bbb:crimson_wall"
]
},
"sends_telemetry_event": false
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
{
"parent": "minecraft:recipes/root",
"criteria": {
"has_logs": {
"conditions": {
"items": [
{
"tag": "minecraft:dark_oak_logs"
}
]
},
"trigger": "minecraft:inventory_changed"
},
"has_the_recipe": {
"conditions": {
"recipe": "bbb:dark_oak_wall"
},
"trigger": "minecraft:recipe_unlocked"
}
},
"requirements": [
[
"has_logs",
"has_the_recipe"
]
],
"rewards": {
"recipes": [
"bbb:dark_oak_wall"
]
},
"sends_telemetry_event": false
}
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
{
"parent": "minecraft:recipes/root",
"criteria": {
"has_block": {
"has_ingot": {
"conditions": {
"items": [
{
"items": [
"minecraft:oak"
"minecraft:iron_ingot"
]
}
]
Expand All @@ -15,20 +15,20 @@
},
"has_the_recipe": {
"conditions": {
"recipe": "bbb:oak_column"
"recipe": "bbb:iron_fence"
},
"trigger": "minecraft:recipe_unlocked"
}
},
"requirements": [
[
"has_block",
"has_ingot",
"has_the_recipe"
]
],
"rewards": {
"recipes": [
"bbb:oak_column"
"bbb:iron_fence"
]
}
}
33 changes: 33 additions & 0 deletions src/main/resources/data/bbb/advancements/recipes/jungle_wall.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
{
"parent": "minecraft:recipes/root",
"criteria": {
"has_logs": {
"conditions": {
"items": [
{
"tag": "minecraft:jungle_logs"
}
]
},
"trigger": "minecraft:inventory_changed"
},
"has_the_recipe": {
"conditions": {
"recipe": "bbb:jungle_wall"
},
"trigger": "minecraft:recipe_unlocked"
}
},
"requirements": [
[
"has_logs",
"has_the_recipe"
]
],
"rewards": {
"recipes": [
"bbb:jungle_wall"
]
},
"sends_telemetry_event": false
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
{
"parent": "minecraft:recipes/root",
"criteria": {
"has_logs": {
"conditions": {
"items": [
{
"tag": "minecraft:mangrove_logs"
}
]
},
"trigger": "minecraft:inventory_changed"
},
"has_the_recipe": {
"conditions": {
"recipe": "bbb:mangrove_wall"
},
"trigger": "minecraft:recipe_unlocked"
}
},
"requirements": [
[
"has_logs",
"has_the_recipe"
]
],
"rewards": {
"recipes": [
"bbb:mangrove_wall"
]
},
"sends_telemetry_event": false
}
33 changes: 33 additions & 0 deletions src/main/resources/data/bbb/advancements/recipes/oak_wall.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
{
"parent": "minecraft:recipes/root",
"criteria": {
"has_logs": {
"conditions": {
"items": [
{
"tag": "minecraft:oak_logs"
}
]
},
"trigger": "minecraft:inventory_changed"
},
"has_the_recipe": {
"conditions": {
"recipe": "bbb:oak_wall"
},
"trigger": "minecraft:recipe_unlocked"
}
},
"requirements": [
[
"has_logs",
"has_the_recipe"
]
],
"rewards": {
"recipes": [
"bbb:oak_wall"
]
},
"sends_telemetry_event": false
}
Loading

0 comments on commit 38e90b7

Please sign in to comment.