-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
添加树脂块和强化树脂块及其相关制品的注册、方块模型、贴图、物品和掉落。但未添加合成表!
修复了冶矿台和制冰机不能shift快速转移的bug
- Loading branch information
1 parent
38a7e71
commit 4eca8b6
Showing
57 changed files
with
820 additions
and
36 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
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
20 changes: 17 additions & 3 deletions
20
src/main/resources/assets/emeraldcraft/blockstates/mossy_stone.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 |
---|---|---|
@@ -1,7 +1,21 @@ | ||
{ | ||
"variants": { | ||
"": { | ||
"model": "emeraldcraft:block/mossy_stone" | ||
} | ||
"": [ | ||
{ | ||
"model": "emeraldcraft:block/mossy_stone" | ||
}, | ||
{ | ||
"model": "emeraldcraft:block/mossy_stone", | ||
"y": 90 | ||
}, | ||
{ | ||
"model": "emeraldcraft:block/mossy_stone", | ||
"y": 180 | ||
}, | ||
{ | ||
"model": "emeraldcraft:block/mossy_stone", | ||
"y": 270 | ||
} | ||
] | ||
} | ||
} |
7 changes: 7 additions & 0 deletions
7
src/main/resources/assets/emeraldcraft/blockstates/reinforced_resin_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,7 @@ | ||
{ | ||
"variants": { | ||
"": { | ||
"model": "emeraldcraft:block/reinforced_resin_block" | ||
} | ||
} | ||
} |
13 changes: 13 additions & 0 deletions
13
src/main/resources/assets/emeraldcraft/blockstates/reinforced_resin_slab.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,13 @@ | ||
{ | ||
"variants": { | ||
"type=bottom": { | ||
"model": "emeraldcraft:block/reinforced_resin_slab" | ||
}, | ||
"type=double": { | ||
"model": "emeraldcraft:block/reinforced_resin_slab_double" | ||
}, | ||
"type=top": { | ||
"model": "emeraldcraft:block/reinforced_resin_slab_top" | ||
} | ||
} | ||
} |
Oops, something went wrong.