fix #94
This commit is contained in:
parent
92a705987e
commit
b9e1472436
7 changed files with 41 additions and 0 deletions
|
@ -22,6 +22,8 @@ eb9f5185f4ff2aa06a224c164f770fc643a7a16a assets/hexcasting/blockstates/akashic_s
|
|||
aed50918bad8a7b00cd26e45d67eb509a04c9f6c assets/hexcasting/blockstates/amethyst_tiles.json
|
||||
27cedb7c1bb8fe4bc1c9b0ecb69678999ca08377 assets/hexcasting/blockstates/ancient_scroll_paper.json
|
||||
080fce1ae9fb8eeb7fc0cb7ad0a2db05b2ca3dc5 assets/hexcasting/blockstates/ancient_scroll_paper_lantern.json
|
||||
8e70731003d6ee1017f7a19b4d4d1b09384773b3 assets/hexcasting/blockstates/conjured.json
|
||||
8e70731003d6ee1017f7a19b4d4d1b09384773b3 assets/hexcasting/blockstates/conjured_block.json
|
||||
73febb72e52a34e4d7abaf243a69c2e22c644ee2 assets/hexcasting/blockstates/directrix_redstone.json
|
||||
2834b4ef19393aabf44d659d032d0cabe2c36a4f assets/hexcasting/blockstates/empty_directrix.json
|
||||
4d62b41c90cb0c5b94697e151c4aad964fb56727 assets/hexcasting/blockstates/empty_impetus.json
|
||||
|
@ -207,6 +209,8 @@ df940dd798240fac6fde700c57f8ae6aa43d1c9e assets/hexcasting/models/item/artifact.
|
|||
1a66f279c030ebd5ed6a596f63205094b2529819 assets/hexcasting/models/item/artifact_filled.json
|
||||
1b3a4bd9dd3c2af2894e0acc1d9d3c74d16c7625 assets/hexcasting/models/item/battery.json
|
||||
dc72e3345c4375b37f3624040c9a8df435c958d1 assets/hexcasting/models/item/charged_amethyst.json
|
||||
8d8fafd901f242f8f177694cff2b37524e1451f9 assets/hexcasting/models/item/conjured.json
|
||||
8d8fafd901f242f8f177694cff2b37524e1451f9 assets/hexcasting/models/item/conjured_block.json
|
||||
1dd6767c74cd7ce5fed8e66476af1358db3cf7ce assets/hexcasting/models/item/creative_unlocker.json
|
||||
b9916a82d647db5d3c505de2eb5f0a528169e1db assets/hexcasting/models/item/cypher.json
|
||||
5082df8eee8f56f8c0d74db71ccda37a165bc76f assets/hexcasting/models/item/cypher_filled.json
|
||||
|
|
|
@ -0,0 +1,7 @@
|
|||
{
|
||||
"variants": {
|
||||
"": {
|
||||
"model": "hexcasting:block/conjured"
|
||||
}
|
||||
}
|
||||
}
|
|
@ -0,0 +1,7 @@
|
|||
{
|
||||
"variants": {
|
||||
"": {
|
||||
"model": "hexcasting:block/conjured"
|
||||
}
|
||||
}
|
||||
}
|
|
@ -0,0 +1,6 @@
|
|||
{
|
||||
"parent": "minecraft:item/generated",
|
||||
"textures": {
|
||||
"layer0": "minecraft:item/amethyst_shard"
|
||||
}
|
||||
}
|
|
@ -0,0 +1,6 @@
|
|||
{
|
||||
"parent": "minecraft:item/generated",
|
||||
"textures": {
|
||||
"layer0": "minecraft:item/amethyst_shard"
|
||||
}
|
||||
}
|
|
@ -234,6 +234,10 @@ public class HexBlockStatesAndModels extends PaucalBlockStateAndModelProvider {
|
|||
var sconceModel = models().getExistingFile(modLoc("amethyst_sconce"));
|
||||
simpleBlock(HexBlocks.SCONCE, sconceModel);
|
||||
simpleBlockItem(HexBlocks.SCONCE, sconceModel);
|
||||
|
||||
var conjuredModel = models().getExistingFile(modLoc("conjured"));
|
||||
simpleBlock(HexBlocks.CONJURED_BLOCK, conjuredModel);
|
||||
simpleBlock(HexBlocks.CONJURED_LIGHT, conjuredModel);
|
||||
}
|
||||
|
||||
private void impetus(Block block, String name, String stub) {
|
||||
|
|
|
@ -35,6 +35,13 @@ public class HexItemModels extends PaucalItemModelProvider {
|
|||
brandishedItem(HexItems.JEWELER_HAMMER);
|
||||
simpleItem(HexItems.CREATIVE_UNLOCKER);
|
||||
|
||||
singleTexture(HexBlocks.CONJURED_BLOCK.getRegistryName().getPath(),
|
||||
new ResourceLocation("item/generated"),
|
||||
"layer0", new ResourceLocation("item/amethyst_shard"));
|
||||
singleTexture(HexBlocks.CONJURED_LIGHT.getRegistryName().getPath(),
|
||||
new ResourceLocation("item/generated"),
|
||||
"layer0", new ResourceLocation("item/amethyst_shard"));
|
||||
|
||||
simpleItem(modLoc("scroll_pristine"));
|
||||
simpleItem(modLoc("scroll_ancient"));
|
||||
getBuilder(HexItems.SCROLL.getRegistryName().getPath())
|
||||
|
|
Loading…
Reference in a new issue