-
Notifications
You must be signed in to change notification settings - Fork 15
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
+Added raw tin ore block, and associated recipes *Changed deepslate tin ore to make the deepslate noises instead of regular stone noises
- Loading branch information
1 parent
7849be4
commit ac432c4
Showing
11 changed files
with
71 additions
and
1 deletion.
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
5 changes: 5 additions & 0 deletions
5
src/main/resources/assets/crossroads/blockstates/block_raw_tin.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,5 @@ | ||
{ | ||
"variants": { | ||
"": { "model": "crossroads:block/block_raw_tin" } | ||
} | ||
} |
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
6 changes: 6 additions & 0 deletions
6
src/main/resources/assets/crossroads/models/block/block_raw_tin.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,6 @@ | ||
{ | ||
"parent": "block/cube_all", | ||
"textures": { | ||
"all": "crossroads:block/block_raw_tin" | ||
} | ||
} |
10 changes: 10 additions & 0 deletions
10
src/main/resources/assets/crossroads/models/item/block_raw_tin.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,10 @@ | ||
{ | ||
"parent": "crossroads:block/block_raw_tin", | ||
"display": { | ||
"thirdperson": { | ||
"rotation": [ 10, -45, 170], | ||
"translation": [ 0, 1.5, -2.75], | ||
"scale": [ 0.375, 0.375, 0.375] | ||
} | ||
} | ||
} |
Binary file added
BIN
+1.21 KB
src/main/resources/assets/crossroads/textures/block/block_raw_tin.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
17 changes: 17 additions & 0 deletions
17
src/main/resources/data/crossroads/recipes/base_materials/raw_tin_block.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,17 @@ | ||
{ | ||
"type": "minecraft:crafting_shaped", | ||
"result": { | ||
"item": "crossroads:block_raw_tin", | ||
"count": 1 | ||
}, | ||
"pattern": [ | ||
"***", | ||
"***", | ||
"***" | ||
], | ||
"key": { | ||
"*": { | ||
"tag": "forge:raw_materials/tin" | ||
} | ||
} | ||
} |
15 changes: 15 additions & 0 deletions
15
src/main/resources/data/crossroads/recipes/base_materials/tin_raw_block.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,15 @@ | ||
{ | ||
"type": "minecraft:crafting_shaped", | ||
"result": { | ||
"item": "crossroads:raw_tin", | ||
"count": 9 | ||
}, | ||
"pattern": [ | ||
"*" | ||
], | ||
"key": { | ||
"*": { | ||
"tag": "forge:storage_blocks/raw_tin" | ||
} | ||
} | ||
} |
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
6 changes: 6 additions & 0 deletions
6
src/main/resources/data/forge/tags/blocks/storage_blocks/raw_tin.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,6 @@ | ||
{ | ||
"replace": false, | ||
"values": [ | ||
"crossroads:block_raw_tin" | ||
] | ||
} |
6 changes: 6 additions & 0 deletions
6
src/main/resources/data/forge/tags/items/storage_blocks/raw_tin.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,6 @@ | ||
{ | ||
"replace": false, | ||
"values": [ | ||
"crossroads:block_raw_tin" | ||
] | ||
} |