-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Add recipes for nether bricks - Add loot table to ruined portal - Rename vanilla basalt to 'basalt columns' - Fix a crash when it snows in the overworld - Remove vanilla horse armor from some loot tables - Reduce frequency of glowstone spikes - Allow lava aqueducts to emit light - Make hellforges add more heat at higher internal temperatures (like crucibles)
- Loading branch information
1 parent
6bd63cc
commit 57ee292
Showing
20 changed files
with
374 additions
and
11 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,11 @@ | ||
This is the first build of Beneath for 1.20.1! | ||
# Changes | ||
|
||
- Fix knapping with nether rocks | ||
- Add recipes for nether bricks | ||
- Add loot table to ruined portal | ||
- Rename vanilla basalt to 'basalt columns' | ||
- Fix a crash when it snows in the overworld | ||
- Remove vanilla horse armor from some loot tables | ||
- Reduce frequency of glowstone spikes | ||
- Allow lava aqueducts to emit light | ||
- Make hellforges add more heat at higher internal temperatures (like crucibles) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
{ | ||
"__comment__": "This file was automatically created by mcresources", | ||
"block.minecraft.basalt": "Basalt Column", | ||
"block.minecraft.polished_basalt": "Polished Basalt Column" | ||
} |
35 changes: 35 additions & 0 deletions
35
src/main/resources/data/beneath/advancements/crafting/nether_brick.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,35 @@ | ||
{ | ||
"__comment__": "This file was automatically created by mcresources", | ||
"parent": "minecraft:recipes/root", | ||
"criteria": { | ||
"has_item": { | ||
"trigger": "minecraft:inventory_changed", | ||
"conditions": { | ||
"items": [ | ||
{ | ||
"items": [ | ||
"beneath:nether_pebble" | ||
] | ||
} | ||
] | ||
} | ||
}, | ||
"has_the_recipe": { | ||
"trigger": "minecraft:recipe_unlocked", | ||
"conditions": { | ||
"recipe": "beneath:crafting/nether_brick" | ||
} | ||
} | ||
}, | ||
"requirements": [ | ||
[ | ||
"has_item", | ||
"has_the_recipe" | ||
] | ||
], | ||
"rewards": { | ||
"recipes": [ | ||
"beneath:crafting/nether_brick" | ||
] | ||
} | ||
} |
35 changes: 35 additions & 0 deletions
35
src/main/resources/data/beneath/advancements/crafting/nether_bricks.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,35 @@ | ||
{ | ||
"__comment__": "This file was automatically created by mcresources", | ||
"parent": "minecraft:recipes/root", | ||
"criteria": { | ||
"has_item": { | ||
"trigger": "minecraft:inventory_changed", | ||
"conditions": { | ||
"items": [ | ||
{ | ||
"items": [ | ||
"minecraft:nether_brick" | ||
] | ||
} | ||
] | ||
} | ||
}, | ||
"has_the_recipe": { | ||
"trigger": "minecraft:recipe_unlocked", | ||
"conditions": { | ||
"recipe": "beneath:crafting/nether_bricks" | ||
} | ||
} | ||
}, | ||
"requirements": [ | ||
[ | ||
"has_item", | ||
"has_the_recipe" | ||
] | ||
], | ||
"rewards": { | ||
"recipes": [ | ||
"beneath:crafting/nether_bricks" | ||
] | ||
} | ||
} |
18 changes: 18 additions & 0 deletions
18
src/main/resources/data/beneath/recipes/crafting/nether_brick.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
{ | ||
"__comment__": "This file was automatically created by mcresources", | ||
"type": "tfc:damage_inputs_shapeless_crafting", | ||
"recipe": { | ||
"type": "minecraft:crafting_shapeless", | ||
"ingredients": [ | ||
{ | ||
"item": "beneath:nether_pebble" | ||
}, | ||
{ | ||
"tag": "tfc:chisels" | ||
} | ||
], | ||
"result": { | ||
"item": "minecraft:nether_brick" | ||
} | ||
} | ||
} |
21 changes: 21 additions & 0 deletions
21
src/main/resources/data/beneath/recipes/crafting/nether_bricks.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
{ | ||
"__comment__": "This file was automatically created by mcresources", | ||
"type": "minecraft:crafting_shaped", | ||
"pattern": [ | ||
"XMX", | ||
"MXM", | ||
"XMX" | ||
], | ||
"key": { | ||
"X": { | ||
"item": "minecraft:nether_brick" | ||
}, | ||
"M": { | ||
"tag": "tfc:mortar" | ||
} | ||
}, | ||
"result": { | ||
"item": "minecraft:nether_bricks", | ||
"count": 4 | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.