forked from kloenk/ChiselDecor
-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix tools not breaking blocks appropriately
This moves `blocks` to `block` to fit the new datapack format This adds chisel blocks to needs_{material}_tool.json based on the source block (i.e. since Iron Blocks require a stone pickaxe to mine, then Chiseled Iron Blocks do too)
- Loading branch information
Showing
5 changed files
with
74 additions
and
0 deletions.
There are no files selected for viewing
File renamed without changes.
File renamed without changes.
File renamed without changes.
45 changes: 45 additions & 0 deletions
45
common/src/main/resources/data/minecraft/tags/block/needs_iron_tool.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,45 @@ | ||
{ | ||
"replace": false, | ||
"values": [ | ||
"chisel:bismuth/diamond_block", | ||
"chisel:bismuth/emerald_block", | ||
"chisel:brick/gold_block", | ||
"chisel:cart/gold_block", | ||
"chisel:cells/diamond_block", | ||
"chisel:cells/emerald_block", | ||
"chisel:chunky/emerald_block", | ||
"chisel:circular/emerald_block", | ||
"chisel:coin_heads/gold_block", | ||
"chisel:coin_tails/gold_block", | ||
"chisel:crate_dark/gold_block", | ||
"chisel:crate_light/gold_block", | ||
"chisel:crushed/diamond_block", | ||
"chisel:embossed/diamond_block", | ||
"chisel:four/diamond_block", | ||
"chisel:four/emerald_block", | ||
"chisel:fourornate/diamond_block", | ||
"chisel:fourornate/emerald_block", | ||
"chisel:gem/diamond_block", | ||
"chisel:goldborder/emerald_block", | ||
"chisel:largeingot/gold_block", | ||
"chisel:masonry/emerald_block", | ||
"chisel:ornate/emerald_block", | ||
"chisel:ornatelayer/diamond_block", | ||
"chisel:panel/emerald_block", | ||
"chisel:panelclassic/emerald_block", | ||
"chisel:plates/gold_block", | ||
"chisel:prism/emerald_block", | ||
"chisel:rivets/gold_block", | ||
"chisel:simple/diamond_block", | ||
"chisel:simple/gold_block", | ||
"chisel:smallingot/gold_block", | ||
"chisel:smooth/emerald_block", | ||
"chisel:space/diamond_block", | ||
"chisel:space/gold_block", | ||
"chisel:spaceblack/diamond_block", | ||
"chisel:spaceblack/gold_block", | ||
"chisel:star/gold_block", | ||
"chisel:zelda/diamond_block", | ||
"chisel:zelda/emerald_block" | ||
] | ||
} |
29 changes: 29 additions & 0 deletions
29
common/src/main/resources/data/minecraft/tags/block/needs_stone_tool.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,29 @@ | ||
{ | ||
"replace": false, | ||
"values": [ | ||
"chisel:brick/iron_block", | ||
"chisel:chunky/lapis_block", | ||
"chisel:coin_heads/iron_block", | ||
"chisel:coin_tails/iron_block", | ||
"chisel:crate_dark/iron_block", | ||
"chisel:crate_light/iron_block", | ||
"chisel:gears/iron_block", | ||
"chisel:large_tile/lapis_block", | ||
"chisel:largeingot/iron_block", | ||
"chisel:masonry/lapis_block", | ||
"chisel:moon/iron_block", | ||
"chisel:ornate/lapis_block", | ||
"chisel:ornatelayer/lapis_block", | ||
"chisel:panel/lapis_block", | ||
"chisel:panelclassic/lapis_block", | ||
"chisel:plates/iron_block", | ||
"chisel:rivets/iron_block", | ||
"chisel:simple/iron_block", | ||
"chisel:smallingot/iron_block", | ||
"chisel:smooth/lapis_block", | ||
"chisel:space/iron_block", | ||
"chisel:spaceblack/iron_block", | ||
"chisel:vents/iron_block", | ||
"chisel:zelda/lapis_block" | ||
] | ||
} |