diff --git a/kfc/gradle.properties b/kfc/gradle.properties index a6f3a2d5..9e3376d7 100644 --- a/kfc/gradle.properties +++ b/kfc/gradle.properties @@ -11,7 +11,7 @@ forge_version=14.23.4.2744 mcp_mappings=snapshot_20171003 mc_version=1.12.2 -primal_version=0.6.69+ +primal_version=0.6+ jei_version=4.8+ waila_version=1.7.0-B3 apple_version=2.1+ diff --git a/kfc/src/main/java/nmd/primal/forgecraft/blocks/Crucibles/NBTCrucible.java b/kfc/src/main/java/nmd/primal/forgecraft/blocks/Crucibles/NBTCrucible.java index 8d28d900..a5ea376b 100644 --- a/kfc/src/main/java/nmd/primal/forgecraft/blocks/Crucibles/NBTCrucible.java +++ b/kfc/src/main/java/nmd/primal/forgecraft/blocks/Crucibles/NBTCrucible.java @@ -86,8 +86,9 @@ public class NBTCrucible extends BlockContainer implements ITileEntityProvider { if (tile.ingList.get(i-1).isEmpty()) { tile.ingList.set(i-1, pItem1); pItem.shrink(1); - world.setBlockState(pos, state.withProperty(PrimalAPI.States.LAYERS, i), 2); tile.setHot(i); + world.setBlockState(pos, state.withProperty(PrimalAPI.States.LAYERS, i), 2); + System.out.println(i); tile.update(); tile.markDirty(); return true; diff --git a/kfc/src/main/java/nmd/primal/forgecraft/items/blocks/ItemNBTCrucible.java b/kfc/src/main/java/nmd/primal/forgecraft/items/blocks/ItemNBTCrucible.java index 98b0ea05..74ab35e9 100644 --- a/kfc/src/main/java/nmd/primal/forgecraft/items/blocks/ItemNBTCrucible.java +++ b/kfc/src/main/java/nmd/primal/forgecraft/items/blocks/ItemNBTCrucible.java @@ -31,17 +31,56 @@ public class ItemNBTCrucible extends ItemBlock { @SideOnly(Side.CLIENT) public float apply(ItemStack item, @Nullable World worldIn, @Nullable EntityLivingBase entityIn) { - //TODO get the item name + System.out.println("Is this even render code"); if (item.hasTagCompound()) { - if (getHot(item)){ - //System.out.println("Should be Red"); + System.out.println("We have a tag compound"); + if (getHot(item) == 0){ + return 0.0f; + } + if (getHot(item) == 1){ return 0.1f; } - } - if (item.hasTagCompound()) { - if (!getHot(item)){ - //System.out.println("Should be Brown"); - return 0.0f; + if (getHot(item) == 2){ + return 0.2f; + } + if (getHot(item) == 3){ + return 0.3f; + } + if (getHot(item) == 4){ + return 0.4f; + } + if (getHot(item) == 5){ + return 0.5f; + } + if (getHot(item) == 6){ + return 0.6f; + } + if (getHot(item) == 7){ + return 0.7f; + } + if (getHot(item) == 8){ + return 0.8f; + } + if (getHot(item) == 9){ + return 0.9f; + } + if (getHot(item) == 10){ + return 0.10f; + } + if (getHot(item) == 11){ + return 0.11f; + } + if (getHot(item) == 12){ + return 0.12f; + } + if (getHot(item) == 13){ + return 0.13f; + } + if (getHot(item) == 14){ + return 0.14f; + } + if (getHot(item) == 15){ + return 0.15f; } } return 0.0F; @@ -49,13 +88,14 @@ public class ItemNBTCrucible extends ItemBlock { }); } - public boolean getHot(ItemStack stack) { + public int getHot(ItemStack stack) { if(!stack.isEmpty()) { if (stack.hasTagCompound()) { - return stack.getSubCompound("BlockEntityTag").getBoolean("hot"); + System.out.println(stack.getSubCompound("BlockEntityTag").getInteger("hot")); + return stack.getSubCompound("BlockEntityTag").getInteger("hot"); } } - return false; + return 0; } @Override diff --git a/kfc/src/main/java/nmd/primal/forgecraft/tiles/TileBloomery.java b/kfc/src/main/java/nmd/primal/forgecraft/tiles/TileBloomery.java index c0301c84..9badae91 100644 --- a/kfc/src/main/java/nmd/primal/forgecraft/tiles/TileBloomery.java +++ b/kfc/src/main/java/nmd/primal/forgecraft/tiles/TileBloomery.java @@ -88,7 +88,7 @@ public class TileBloomery extends TileBaseSlot implements ITickable { this.markDirty(); } if (cookCounter >= (recipe.getCookTime()/4) && !this.getSlotStack(1).getSubCompound("BlockEntityTag").getBoolean("status")) { - this.getSlotStack(1).getSubCompound("BlockEntityTag").setBoolean("hot", true); + this.getSlotStack(1).getSubCompound("BlockEntityTag").setInteger("hot", 15); System.out.println("hot"); this.updateBlock(); this.markDirty(); diff --git a/kfc/src/main/resources/assets/forgecraft/blockstates/nbtcrucible.json b/kfc/src/main/resources/assets/forgecraft/blockstates/nbtcrucible.json index ca3aff6d..c2059be1 100644 --- a/kfc/src/main/resources/assets/forgecraft/blockstates/nbtcrucible.json +++ b/kfc/src/main/resources/assets/forgecraft/blockstates/nbtcrucible.json @@ -13,7 +13,8 @@ "textures": { "particle": "forgecraft:blocks/stone_slab", "texture": "forgecraft:blocks/stone_slab", - "texture1": "forgecraft:blocks/dirty_sand" + "texture1": "forgecraft:blocks/dirty_sand", + "texture3": "forgecraft:blocks/dirty_sand" }, "model": "forgecraft:castingcrucible1" }, @@ -55,7 +56,7 @@ "texture": "forgecraft:blocks/stone_slab_hot", "texture1": "forgecraft:blocks/crucible_cooked" }, - "model": "forgecraft:castingcrucible4" + "model": "forgecraft:castingcrucible" }, "7": { "textures": { @@ -127,7 +128,7 @@ "texture": "forgecraft:blocks/stone_slab_hot", "texture1": "forgecraft:items/hot_bronze" }, - "model": "forgecraft:castingcrucible4" + "model": "forgecraft:castingcrucible" } } } diff --git a/kfc/src/main/resources/assets/forgecraft/models/block/castingcrucible1.json b/kfc/src/main/resources/assets/forgecraft/models/block/castingcrucible1.json index be583ba8..077e7fba 100644 --- a/kfc/src/main/resources/assets/forgecraft/models/block/castingcrucible1.json +++ b/kfc/src/main/resources/assets/forgecraft/models/block/castingcrucible1.json @@ -1,9 +1,10 @@ { "__comment": "Designed by Kitsushadow with Cubik Studio - https://cubik.studio", "textures": { - "particle": "blocks/stone_slab", - "texture": "blocks/stone_slab", - "texture1": "blocks/stone_slab" + "particle": "forgecraft:blocks/stone_slab", + "texture": "forgecraft:blocks/stone_slab", + "texture1": "forgecraft:blocks/stone_slab", + "texture3": "forgecraft:blocks/dirty_sand" }, "elements": [ { @@ -124,11 +125,179 @@ } }, { - "__comment": "PlaneY10", - "from": [ 6, 2.5, 6 ], - "to": [ 10, 2.501, 10 ], + "__comment": "Box17", + "from": [ 6, 1.5, 6 ], + "to": [ 7, 2.5, 7 ], "faces": { - "up": { "uv": [ 6, 6, 10, 10 ], "texture": "#texture1" } + "up": { "uv": [ 6, 6, 7, 7 ], "texture": "#texture3" }, + "south": { "uv": [ 6, 6, 7, 7 ], "texture": "#texture3" }, + "east": { "uv": [ 6, 6, 7, 7 ], "texture": "#texture3" } + } + }, + { + "__comment": "Box17", + "from": [ 7, 1.5, 6 ], + "to": [ 8, 2.5, 7 ], + "faces": { + "up": { "uv": [ 7, 6, 8, 7 ], "texture": "#texture3" }, + "south": { "uv": [ 7, 6, 8, 7 ], "texture": "#texture3" }, + "west": { "uv": [ 7, 6, 8, 7 ], "texture": "#texture3" }, + "east": { "uv": [ 7, 6, 8, 7 ], "texture": "#texture3" } + } + }, + { + "__comment": "Box17", + "from": [ 8, 1.5, 6 ], + "to": [ 9, 2.5, 7 ], + "faces": { + "up": { "uv": [ 8, 6, 9, 7 ], "texture": "#texture3" }, + "south": { "uv": [ 8, 6, 9, 7 ], "texture": "#texture3" }, + "west": { "uv": [ 8, 6, 9, 7 ], "texture": "#texture3" }, + "east": { "uv": [ 8, 6, 9, 7 ], "texture": "#texture3" } + } + }, + { + "__comment": "Box17", + "from": [ 9, 2, 6 ], + "to": [ 10, 3, 7 ], + "faces": { + "up": { "uv": [ 9, 6, 10, 7 ], "texture": "#texture3" }, + "south": { "uv": [ 9, 6, 10, 7 ], "texture": "#texture3" }, + "west": { "uv": [ 9, 6, 10, 7 ], "texture": "#texture3" } + } + }, + { + "__comment": "Box17", + "from": [ 6, 1.5, 7 ], + "to": [ 7, 2.5, 8 ], + "faces": { + "up": { "uv": [ 6, 7, 7, 8 ], "texture": "#texture3" }, + "north": { "uv": [ 6, 7, 7, 8 ], "texture": "#texture3" }, + "south": { "uv": [ 6, 7, 7, 8 ], "texture": "#texture3" }, + "east": { "uv": [ 6, 7, 7, 8 ], "texture": "#texture3" } + } + }, + { + "__comment": "Box17", + "from": [ 7, 2, 7 ], + "to": [ 8, 3, 8 ], + "faces": { + "up": { "uv": [ 7, 7, 8, 8 ], "texture": "#texture3" }, + "north": { "uv": [ 7, 7, 8, 8 ], "texture": "#texture3" }, + "south": { "uv": [ 7, 7, 8, 8 ], "texture": "#texture3" }, + "west": { "uv": [ 7, 7, 8, 8 ], "texture": "#texture3" }, + "east": { "uv": [ 7, 7, 8, 8 ], "texture": "#texture3" } + } + }, + { + "__comment": "Box17", + "from": [ 8, 2, 7 ], + "to": [ 9, 3, 8 ], + "faces": { + "up": { "uv": [ 8, 7, 9, 8 ], "texture": "#texture3" }, + "north": { "uv": [ 8, 7, 9, 8 ], "texture": "#texture3" }, + "south": { "uv": [ 8, 7, 9, 8 ], "texture": "#texture3" }, + "west": { "uv": [ 8, 7, 9, 8 ], "texture": "#texture3" }, + "east": { "uv": [ 8, 7, 9, 8 ], "texture": "#texture3" } + } + }, + { + "__comment": "Box17", + "from": [ 9, 1.5, 7 ], + "to": [ 10, 2.5, 8 ], + "faces": { + "up": { "uv": [ 9, 7, 10, 8 ], "texture": "#texture3" }, + "north": { "uv": [ 9, 7, 10, 8 ], "texture": "#texture3" }, + "south": { "uv": [ 9, 7, 10, 8 ], "texture": "#texture3" }, + "west": { "uv": [ 9, 7, 10, 8 ], "texture": "#texture3" } + } + }, + { + "__comment": "Box17", + "from": [ 6, 1, 8 ], + "to": [ 7, 2, 9 ], + "faces": { + "up": { "uv": [ 6, 8, 7, 9 ], "texture": "#texture3" }, + "north": { "uv": [ 6, 8, 7, 9 ], "texture": "#texture3" }, + "south": { "uv": [ 6, 8, 7, 9 ], "texture": "#texture3" }, + "east": { "uv": [ 6, 8, 7, 9 ], "texture": "#texture3" } + } + }, + { + "__comment": "Box17", + "from": [ 6, 1, 9 ], + "to": [ 7, 2, 10 ], + "faces": { + "up": { "uv": [ 6, 9, 7, 10 ], "texture": "#texture3" }, + "north": { "uv": [ 6, 9, 7, 10 ], "texture": "#texture3" }, + "east": { "uv": [ 6, 9, 7, 10 ], "texture": "#texture3" } + } + }, + { + "__comment": "Box17", + "from": [ 7, 1, 9 ], + "to": [ 8, 2, 10 ], + "faces": { + "up": { "uv": [ 7, 9, 8, 10 ], "texture": "#texture3" }, + "north": { "uv": [ 7, 9, 8, 10 ], "texture": "#texture3" }, + "west": { "uv": [ 7, 9, 8, 10 ], "texture": "#texture3" }, + "east": { "uv": [ 7, 9, 8, 10 ], "texture": "#texture3" } + } + }, + { + "__comment": "Box17", + "from": [ 7, 1.5, 8 ], + "to": [ 8, 2.5, 9 ], + "faces": { + "up": { "uv": [ 7, 8, 8, 9 ], "texture": "#texture3" }, + "north": { "uv": [ 7, 8, 8, 9 ], "texture": "#texture3" }, + "south": { "uv": [ 7, 8, 8, 9 ], "texture": "#texture3" }, + "west": { "uv": [ 7, 8, 8, 9 ], "texture": "#texture3" }, + "east": { "uv": [ 7, 8, 8, 9 ], "texture": "#texture3" } + } + }, + { + "__comment": "Box17", + "from": [ 8, 1.5, 8 ], + "to": [ 9, 2.5, 9 ], + "faces": { + "up": { "uv": [ 8, 8, 9, 9 ], "texture": "#texture3" }, + "north": { "uv": [ 8, 8, 9, 9 ], "texture": "#texture3" }, + "south": { "uv": [ 8, 8, 9, 9 ], "texture": "#texture3" }, + "west": { "uv": [ 8, 8, 9, 9 ], "texture": "#texture3" }, + "east": { "uv": [ 8, 8, 9, 9 ], "texture": "#texture3" } + } + }, + { + "__comment": "Box17", + "from": [ 8, 1.5, 9 ], + "to": [ 9, 2.5, 10 ], + "faces": { + "up": { "uv": [ 8, 9, 9, 10 ], "texture": "#texture3" }, + "north": { "uv": [ 8, 9, 9, 10 ], "texture": "#texture3" }, + "west": { "uv": [ 8, 9, 9, 10 ], "texture": "#texture3" }, + "east": { "uv": [ 8, 9, 9, 10 ], "texture": "#texture3" } + } + }, + { + "__comment": "Box17", + "from": [ 9, 1, 9 ], + "to": [ 10, 2, 10 ], + "faces": { + "up": { "uv": [ 9, 9, 10, 10 ], "texture": "#texture3" }, + "north": { "uv": [ 9, 9, 10, 10 ], "texture": "#texture3" }, + "west": { "uv": [ 9, 9, 10, 10 ], "texture": "#texture3" } + } + }, + { + "__comment": "Box17", + "from": [ 9, 1.5, 8 ], + "to": [ 10, 2.5, 9 ], + "faces": { + "up": { "uv": [ 9, 8, 10, 9 ], "texture": "#texture3" }, + "north": { "uv": [ 9, 8, 10, 9 ], "texture": "#texture3" }, + "south": { "uv": [ 9, 8, 10, 9 ], "texture": "#texture3" }, + "west": { "uv": [ 9, 8, 10, 9 ], "texture": "#texture3" } } } ], diff --git a/kfc/src/main/resources/assets/forgecraft/models/block/castingcrucible2.json b/kfc/src/main/resources/assets/forgecraft/models/block/castingcrucible2.json index d7995cda..05ea2348 100644 --- a/kfc/src/main/resources/assets/forgecraft/models/block/castingcrucible2.json +++ b/kfc/src/main/resources/assets/forgecraft/models/block/castingcrucible2.json @@ -1,9 +1,10 @@ { "__comment": "Designed by Kitsushadow with Cubik Studio - https://cubik.studio", "textures": { - "particle": "blocks/stone_slab", - "texture": "blocks/stone_slab", - "texture1": "blocks/stone_slab" + "particle": "forgecraft:blocks/stone_slab", + "texture": "forgecraft:blocks/stone_slab", + "texture1": "forgecraft:blocks/stone_slab", + "texture3": "forgecraft:blocks/dirty_sand" }, "elements": [ { @@ -124,11 +125,179 @@ } }, { - "__comment": "PlaneY10", - "from": [ 6, 3.5, 6 ], - "to": [ 10, 3.501, 10 ], + "__comment": "Box17", + "from": [ 6, 2.5, 9 ], + "to": [ 7, 3.5, 10 ], "faces": { - "up": { "uv": [ 6, 6, 10, 10 ], "texture": "#texture1" } + "up": { "uv": [ 6, 6, 7, 7 ], "texture": "#texture3", "rotation": 270 }, + "north": { "uv": [ 6, 6, 7, 7 ], "texture": "#texture3" }, + "east": { "uv": [ 6, 6, 7, 7 ], "texture": "#texture3" } + } + }, + { + "__comment": "Box17", + "from": [ 6, 3, 8 ], + "to": [ 7, 4, 9 ], + "faces": { + "up": { "uv": [ 7, 6, 8, 7 ], "texture": "#texture3", "rotation": 270 }, + "north": { "uv": [ 7, 6, 8, 7 ], "texture": "#texture3" }, + "south": { "uv": [ 7, 6, 8, 7 ], "texture": "#texture3" }, + "east": { "uv": [ 7, 6, 8, 7 ], "texture": "#texture3" } + } + }, + { + "__comment": "Box17", + "from": [ 6, 2.5, 7 ], + "to": [ 7, 3.5, 8 ], + "faces": { + "up": { "uv": [ 8, 6, 9, 7 ], "texture": "#texture3", "rotation": 270 }, + "north": { "uv": [ 8, 6, 9, 7 ], "texture": "#texture3" }, + "south": { "uv": [ 8, 6, 9, 7 ], "texture": "#texture3" }, + "east": { "uv": [ 8, 6, 9, 7 ], "texture": "#texture3" } + } + }, + { + "__comment": "Box17", + "from": [ 6, 2.5, 6 ], + "to": [ 7, 3.5, 7 ], + "faces": { + "up": { "uv": [ 9, 6, 10, 7 ], "texture": "#texture3", "rotation": 270 }, + "south": { "uv": [ 9, 6, 10, 7 ], "texture": "#texture3" }, + "east": { "uv": [ 9, 6, 10, 7 ], "texture": "#texture3" } + } + }, + { + "__comment": "Box17", + "from": [ 7, 3, 9 ], + "to": [ 8, 4, 10 ], + "faces": { + "up": { "uv": [ 6, 7, 7, 8 ], "texture": "#texture3", "rotation": 270 }, + "north": { "uv": [ 6, 7, 7, 8 ], "texture": "#texture3" }, + "west": { "uv": [ 6, 7, 7, 8 ], "texture": "#texture3" }, + "east": { "uv": [ 6, 7, 7, 8 ], "texture": "#texture3" } + } + }, + { + "__comment": "Box17", + "from": [ 7, 3.5, 8 ], + "to": [ 8, 4.5, 9 ], + "faces": { + "up": { "uv": [ 7, 7, 8, 8 ], "texture": "#texture3", "rotation": 270 }, + "north": { "uv": [ 7, 7, 8, 8 ], "texture": "#texture3" }, + "south": { "uv": [ 7, 7, 8, 8 ], "texture": "#texture3" }, + "west": { "uv": [ 7, 7, 8, 8 ], "texture": "#texture3" }, + "east": { "uv": [ 7, 7, 8, 8 ], "texture": "#texture3" } + } + }, + { + "__comment": "Box17", + "from": [ 7, 3, 7 ], + "to": [ 8, 4, 8 ], + "faces": { + "up": { "uv": [ 8, 7, 9, 8 ], "texture": "#texture3", "rotation": 270 }, + "north": { "uv": [ 8, 7, 9, 8 ], "texture": "#texture3" }, + "south": { "uv": [ 8, 7, 9, 8 ], "texture": "#texture3" }, + "west": { "uv": [ 8, 7, 9, 8 ], "texture": "#texture3" }, + "east": { "uv": [ 8, 7, 9, 8 ], "texture": "#texture3" } + } + }, + { + "__comment": "Box17", + "from": [ 7, 2.5, 6 ], + "to": [ 8, 3.5, 7 ], + "faces": { + "up": { "uv": [ 9, 7, 10, 8 ], "texture": "#texture3", "rotation": 270 }, + "south": { "uv": [ 9, 7, 10, 8 ], "texture": "#texture3" }, + "west": { "uv": [ 9, 7, 10, 8 ], "texture": "#texture3" }, + "east": { "uv": [ 9, 7, 10, 8 ], "texture": "#texture3" } + } + }, + { + "__comment": "Box17", + "from": [ 8, 2.5, 9 ], + "to": [ 9, 3.5, 10 ], + "faces": { + "up": { "uv": [ 6, 8, 7, 9 ], "texture": "#texture3", "rotation": 270 }, + "north": { "uv": [ 6, 8, 7, 9 ], "texture": "#texture3" }, + "west": { "uv": [ 6, 8, 7, 9 ], "texture": "#texture3" }, + "east": { "uv": [ 6, 8, 7, 9 ], "texture": "#texture3" } + } + }, + { + "__comment": "Box17", + "from": [ 9, 2.5, 9 ], + "to": [ 10, 3.5, 10 ], + "faces": { + "up": { "uv": [ 6, 9, 7, 10 ], "texture": "#texture3", "rotation": 270 }, + "north": { "uv": [ 6, 9, 7, 10 ], "texture": "#texture3" }, + "west": { "uv": [ 6, 9, 7, 10 ], "texture": "#texture3" } + } + }, + { + "__comment": "Box17", + "from": [ 9, 2.5, 8 ], + "to": [ 10, 3.5, 9 ], + "faces": { + "up": { "uv": [ 7, 9, 8, 10 ], "texture": "#texture3", "rotation": 270 }, + "north": { "uv": [ 7, 9, 8, 10 ], "texture": "#texture3" }, + "south": { "uv": [ 7, 9, 8, 10 ], "texture": "#texture3" }, + "west": { "uv": [ 7, 9, 8, 10 ], "texture": "#texture3" } + } + }, + { + "__comment": "Box17", + "from": [ 8, 3, 8 ], + "to": [ 9, 4, 9 ], + "faces": { + "up": { "uv": [ 7, 8, 8, 9 ], "texture": "#texture3", "rotation": 270 }, + "north": { "uv": [ 7, 8, 8, 9 ], "texture": "#texture3" }, + "south": { "uv": [ 7, 8, 8, 9 ], "texture": "#texture3" }, + "west": { "uv": [ 7, 8, 8, 9 ], "texture": "#texture3" }, + "east": { "uv": [ 7, 8, 8, 9 ], "texture": "#texture3" } + } + }, + { + "__comment": "Box17", + "from": [ 8, 3, 7 ], + "to": [ 9, 4, 8 ], + "faces": { + "up": { "uv": [ 8, 8, 9, 9 ], "texture": "#texture3", "rotation": 270 }, + "north": { "uv": [ 8, 8, 9, 9 ], "texture": "#texture3" }, + "south": { "uv": [ 8, 8, 9, 9 ], "texture": "#texture3" }, + "west": { "uv": [ 8, 8, 9, 9 ], "texture": "#texture3" }, + "east": { "uv": [ 8, 8, 9, 9 ], "texture": "#texture3" } + } + }, + { + "__comment": "Box17", + "from": [ 9, 3, 7 ], + "to": [ 10, 4, 8 ], + "faces": { + "up": { "uv": [ 8, 9, 9, 10 ], "texture": "#texture3", "rotation": 270 }, + "north": { "uv": [ 8, 9, 9, 10 ], "texture": "#texture3" }, + "south": { "uv": [ 8, 9, 9, 10 ], "texture": "#texture3" }, + "west": { "uv": [ 8, 9, 9, 10 ], "texture": "#texture3" } + } + }, + { + "__comment": "Box17", + "from": [ 9, 2.5, 6 ], + "to": [ 10, 3.5, 7 ], + "faces": { + "up": { "uv": [ 9, 9, 10, 10 ], "texture": "#texture3", "rotation": 270 }, + "south": { "uv": [ 9, 9, 10, 10 ], "texture": "#texture3" }, + "west": { "uv": [ 9, 9, 10, 10 ], "texture": "#texture3" } + } + }, + { + "__comment": "Box17", + "from": [ 8, 3, 6 ], + "to": [ 9, 4, 7 ], + "faces": { + "up": { "uv": [ 9, 8, 10, 9 ], "texture": "#texture3", "rotation": 270 }, + "south": { "uv": [ 9, 8, 10, 9 ], "texture": "#texture3" }, + "west": { "uv": [ 9, 8, 10, 9 ], "texture": "#texture3" }, + "east": { "uv": [ 9, 8, 10, 9 ], "texture": "#texture3" } } } ], diff --git a/kfc/src/main/resources/assets/forgecraft/models/block/castingcrucible3.json b/kfc/src/main/resources/assets/forgecraft/models/block/castingcrucible3.json index 2218e67f..8a06bb3a 100644 --- a/kfc/src/main/resources/assets/forgecraft/models/block/castingcrucible3.json +++ b/kfc/src/main/resources/assets/forgecraft/models/block/castingcrucible3.json @@ -1,9 +1,10 @@ { "__comment": "Designed by Kitsushadow with Cubik Studio - https://cubik.studio", "textures": { - "particle": "blocks/stone_slab", - "texture": "blocks/stone_slab", - "texture1": "blocks/stone_slab" + "particle": "forgecraft:blocks/stone_slab", + "texture": "forgecraft:blocks/stone_slab", + "texture1": "forgecraft:blocks/stone_slab", + "texture3": "forgecraft:blocks/dirty_sand" }, "elements": [ { @@ -124,11 +125,179 @@ } }, { - "__comment": "PlaneY10", - "from": [ 6, 4.5, 6 ], - "to": [ 10, 4.501, 10 ], + "__comment": "Box17", + "from": [ 9, 3.5, 9 ], + "to": [ 10, 4.5, 10 ], "faces": { - "up": { "uv": [ 6, 6, 10, 10 ], "texture": "#texture1" } + "up": { "uv": [ 6, 6, 7, 7 ], "texture": "#texture3", "rotation": 180 }, + "north": { "uv": [ 6, 6, 7, 7 ], "texture": "#texture3" }, + "west": { "uv": [ 6, 6, 7, 7 ], "texture": "#texture3" } + } + }, + { + "__comment": "Box17", + "from": [ 8, 4, 9 ], + "to": [ 9, 5, 10 ], + "faces": { + "up": { "uv": [ 7, 6, 8, 7 ], "texture": "#texture3", "rotation": 180 }, + "north": { "uv": [ 7, 6, 8, 7 ], "texture": "#texture3" }, + "west": { "uv": [ 7, 6, 8, 7 ], "texture": "#texture3" }, + "east": { "uv": [ 7, 6, 8, 7 ], "texture": "#texture3" } + } + }, + { + "__comment": "Box17", + "from": [ 7, 3.5, 9 ], + "to": [ 8, 4.5, 10 ], + "faces": { + "up": { "uv": [ 8, 6, 9, 7 ], "texture": "#texture3", "rotation": 180 }, + "north": { "uv": [ 8, 6, 9, 7 ], "texture": "#texture3" }, + "west": { "uv": [ 8, 6, 9, 7 ], "texture": "#texture3" }, + "east": { "uv": [ 8, 6, 9, 7 ], "texture": "#texture3" } + } + }, + { + "__comment": "Box17", + "from": [ 6, 3.5, 9 ], + "to": [ 7, 4.5, 10 ], + "faces": { + "up": { "uv": [ 9, 6, 10, 7 ], "texture": "#texture3", "rotation": 180 }, + "north": { "uv": [ 9, 6, 10, 7 ], "texture": "#texture3" }, + "east": { "uv": [ 9, 6, 10, 7 ], "texture": "#texture3" } + } + }, + { + "__comment": "Box17", + "from": [ 9, 4, 8 ], + "to": [ 10, 5, 9 ], + "faces": { + "up": { "uv": [ 6, 7, 7, 8 ], "texture": "#texture3", "rotation": 180 }, + "north": { "uv": [ 6, 7, 7, 8 ], "texture": "#texture3" }, + "south": { "uv": [ 6, 7, 7, 8 ], "texture": "#texture3" }, + "west": { "uv": [ 6, 7, 7, 8 ], "texture": "#texture3" } + } + }, + { + "__comment": "Box17", + "from": [ 8, 4.5, 8 ], + "to": [ 9, 5.5, 9 ], + "faces": { + "up": { "uv": [ 7, 7, 8, 8 ], "texture": "#texture3", "rotation": 180 }, + "north": { "uv": [ 7, 7, 8, 8 ], "texture": "#texture3" }, + "south": { "uv": [ 7, 7, 8, 8 ], "texture": "#texture3" }, + "west": { "uv": [ 7, 7, 8, 8 ], "texture": "#texture3" }, + "east": { "uv": [ 7, 7, 8, 8 ], "texture": "#texture3" } + } + }, + { + "__comment": "Box17", + "from": [ 7, 4, 8 ], + "to": [ 8, 5, 9 ], + "faces": { + "up": { "uv": [ 8, 7, 9, 8 ], "texture": "#texture3", "rotation": 180 }, + "north": { "uv": [ 8, 7, 9, 8 ], "texture": "#texture3" }, + "south": { "uv": [ 8, 7, 9, 8 ], "texture": "#texture3" }, + "west": { "uv": [ 8, 7, 9, 8 ], "texture": "#texture3" }, + "east": { "uv": [ 8, 7, 9, 8 ], "texture": "#texture3" } + } + }, + { + "__comment": "Box17", + "from": [ 6, 3.5, 8 ], + "to": [ 7, 4.5, 9 ], + "faces": { + "up": { "uv": [ 9, 7, 10, 8 ], "texture": "#texture3", "rotation": 180 }, + "north": { "uv": [ 9, 7, 10, 8 ], "texture": "#texture3" }, + "south": { "uv": [ 9, 7, 10, 8 ], "texture": "#texture3" }, + "east": { "uv": [ 9, 7, 10, 8 ], "texture": "#texture3" } + } + }, + { + "__comment": "Box17", + "from": [ 9, 3.5, 7 ], + "to": [ 10, 4.5, 8 ], + "faces": { + "up": { "uv": [ 6, 8, 7, 9 ], "texture": "#texture3", "rotation": 180 }, + "north": { "uv": [ 6, 8, 7, 9 ], "texture": "#texture3" }, + "south": { "uv": [ 6, 8, 7, 9 ], "texture": "#texture3" }, + "west": { "uv": [ 6, 8, 7, 9 ], "texture": "#texture3" } + } + }, + { + "__comment": "Box17", + "from": [ 9, 3.5, 6 ], + "to": [ 10, 4.5, 7 ], + "faces": { + "up": { "uv": [ 6, 9, 7, 10 ], "texture": "#texture3", "rotation": 180 }, + "south": { "uv": [ 6, 9, 7, 10 ], "texture": "#texture3" }, + "west": { "uv": [ 6, 9, 7, 10 ], "texture": "#texture3" } + } + }, + { + "__comment": "Box17", + "from": [ 8, 3.5, 6 ], + "to": [ 9, 4.5, 7 ], + "faces": { + "up": { "uv": [ 7, 9, 8, 10 ], "texture": "#texture3", "rotation": 180 }, + "south": { "uv": [ 7, 9, 8, 10 ], "texture": "#texture3" }, + "west": { "uv": [ 7, 9, 8, 10 ], "texture": "#texture3" }, + "east": { "uv": [ 7, 9, 8, 10 ], "texture": "#texture3" } + } + }, + { + "__comment": "Box17", + "from": [ 8, 4, 7 ], + "to": [ 9, 5, 8 ], + "faces": { + "up": { "uv": [ 7, 8, 8, 9 ], "texture": "#texture3", "rotation": 180 }, + "north": { "uv": [ 7, 8, 8, 9 ], "texture": "#texture3" }, + "south": { "uv": [ 7, 8, 8, 9 ], "texture": "#texture3" }, + "west": { "uv": [ 7, 8, 8, 9 ], "texture": "#texture3" }, + "east": { "uv": [ 7, 8, 8, 9 ], "texture": "#texture3" } + } + }, + { + "__comment": "Box17", + "from": [ 7, 4, 7 ], + "to": [ 8, 5, 8 ], + "faces": { + "up": { "uv": [ 8, 8, 9, 9 ], "texture": "#texture3", "rotation": 180 }, + "north": { "uv": [ 8, 8, 9, 9 ], "texture": "#texture3" }, + "south": { "uv": [ 8, 8, 9, 9 ], "texture": "#texture3" }, + "west": { "uv": [ 8, 8, 9, 9 ], "texture": "#texture3" }, + "east": { "uv": [ 8, 8, 9, 9 ], "texture": "#texture3" } + } + }, + { + "__comment": "Box17", + "from": [ 7, 4, 6 ], + "to": [ 8, 5, 7 ], + "faces": { + "up": { "uv": [ 8, 9, 9, 10 ], "texture": "#texture3", "rotation": 180 }, + "south": { "uv": [ 8, 9, 9, 10 ], "texture": "#texture3" }, + "west": { "uv": [ 8, 9, 9, 10 ], "texture": "#texture3" }, + "east": { "uv": [ 8, 9, 9, 10 ], "texture": "#texture3" } + } + }, + { + "__comment": "Box17", + "from": [ 6, 3.5, 6 ], + "to": [ 7, 4.5, 7 ], + "faces": { + "up": { "uv": [ 9, 9, 10, 10 ], "texture": "#texture3", "rotation": 180 }, + "south": { "uv": [ 9, 9, 10, 10 ], "texture": "#texture3" }, + "east": { "uv": [ 9, 9, 10, 10 ], "texture": "#texture3" } + } + }, + { + "__comment": "Box17", + "from": [ 6, 4, 7 ], + "to": [ 7, 5, 8 ], + "faces": { + "up": { "uv": [ 9, 8, 10, 9 ], "texture": "#texture3", "rotation": 180 }, + "north": { "uv": [ 9, 8, 10, 9 ], "texture": "#texture3" }, + "south": { "uv": [ 9, 8, 10, 9 ], "texture": "#texture3" }, + "east": { "uv": [ 9, 8, 10, 9 ], "texture": "#texture3" } } } ], diff --git a/kfc/src/main/resources/assets/forgecraft/models/block/castingcrucible4.json b/kfc/src/main/resources/assets/forgecraft/models/block/castingcrucible4.json index 1f1b75fd..476a50cd 100644 --- a/kfc/src/main/resources/assets/forgecraft/models/block/castingcrucible4.json +++ b/kfc/src/main/resources/assets/forgecraft/models/block/castingcrucible4.json @@ -1,9 +1,10 @@ { "__comment": "Designed by Kitsushadow with Cubik Studio - https://cubik.studio", "textures": { - "particle": "blocks/stone_slab", - "texture": "blocks/stone_slab", - "texture1": "blocks/stone_slab" + "particle": "forgecraft:blocks/stone_slab", + "texture": "forgecraft:blocks/stone_slab", + "texture1": "forgecraft:blocks/stone_slab", + "texture3": "forgecraft:blocks/dirty_sand" }, "elements": [ { @@ -124,11 +125,179 @@ } }, { - "__comment": "PlaneY10", - "from": [ 6, 5.5, 6 ], - "to": [ 10, 5.501, 10 ], + "__comment": "Box17", + "from": [ 9, 4.5, 6 ], + "to": [ 10, 5.5, 7 ], "faces": { - "up": { "uv": [ 6, 6, 10, 10 ], "texture": "#texture1" } + "up": { "uv": [ 6, 6, 7, 7 ], "texture": "#texture3", "rotation": 90 }, + "south": { "uv": [ 6, 6, 7, 7 ], "texture": "#texture3" }, + "west": { "uv": [ 6, 6, 7, 7 ], "texture": "#texture3" } + } + }, + { + "__comment": "Box17", + "from": [ 9, 5, 7 ], + "to": [ 10, 6, 8 ], + "faces": { + "up": { "uv": [ 7, 6, 8, 7 ], "texture": "#texture3", "rotation": 90 }, + "north": { "uv": [ 7, 6, 8, 7 ], "texture": "#texture3" }, + "south": { "uv": [ 7, 6, 8, 7 ], "texture": "#texture3" }, + "west": { "uv": [ 7, 6, 8, 7 ], "texture": "#texture3" } + } + }, + { + "__comment": "Box17", + "from": [ 9, 4.5, 8 ], + "to": [ 10, 5.5, 9 ], + "faces": { + "up": { "uv": [ 8, 6, 9, 7 ], "texture": "#texture3", "rotation": 90 }, + "north": { "uv": [ 8, 6, 9, 7 ], "texture": "#texture3" }, + "south": { "uv": [ 8, 6, 9, 7 ], "texture": "#texture3" }, + "west": { "uv": [ 8, 6, 9, 7 ], "texture": "#texture3" } + } + }, + { + "__comment": "Box17", + "from": [ 9, 4.5, 9 ], + "to": [ 10, 5.5, 10 ], + "faces": { + "up": { "uv": [ 9, 6, 10, 7 ], "texture": "#texture3", "rotation": 90 }, + "north": { "uv": [ 9, 6, 10, 7 ], "texture": "#texture3" }, + "west": { "uv": [ 9, 6, 10, 7 ], "texture": "#texture3" } + } + }, + { + "__comment": "Box17", + "from": [ 8, 5, 6 ], + "to": [ 9, 6, 7 ], + "faces": { + "up": { "uv": [ 6, 7, 7, 8 ], "texture": "#texture3", "rotation": 90 }, + "south": { "uv": [ 6, 7, 7, 8 ], "texture": "#texture3" }, + "west": { "uv": [ 6, 7, 7, 8 ], "texture": "#texture3" }, + "east": { "uv": [ 6, 7, 7, 8 ], "texture": "#texture3" } + } + }, + { + "__comment": "Box17", + "from": [ 8, 5.5, 7 ], + "to": [ 9, 6.5, 8 ], + "faces": { + "up": { "uv": [ 7, 7, 8, 8 ], "texture": "#texture3", "rotation": 90 }, + "north": { "uv": [ 7, 7, 8, 8 ], "texture": "#texture3" }, + "south": { "uv": [ 7, 7, 8, 8 ], "texture": "#texture3" }, + "west": { "uv": [ 7, 7, 8, 8 ], "texture": "#texture3" }, + "east": { "uv": [ 7, 7, 8, 8 ], "texture": "#texture3" } + } + }, + { + "__comment": "Box17", + "from": [ 8, 5, 8 ], + "to": [ 9, 6, 9 ], + "faces": { + "up": { "uv": [ 8, 7, 9, 8 ], "texture": "#texture3", "rotation": 90 }, + "north": { "uv": [ 8, 7, 9, 8 ], "texture": "#texture3" }, + "south": { "uv": [ 8, 7, 9, 8 ], "texture": "#texture3" }, + "west": { "uv": [ 8, 7, 9, 8 ], "texture": "#texture3" }, + "east": { "uv": [ 8, 7, 9, 8 ], "texture": "#texture3" } + } + }, + { + "__comment": "Box17", + "from": [ 8, 4.5, 9 ], + "to": [ 9, 5.5, 10 ], + "faces": { + "up": { "uv": [ 9, 7, 10, 8 ], "texture": "#texture3", "rotation": 90 }, + "north": { "uv": [ 9, 7, 10, 8 ], "texture": "#texture3" }, + "west": { "uv": [ 9, 7, 10, 8 ], "texture": "#texture3" }, + "east": { "uv": [ 9, 7, 10, 8 ], "texture": "#texture3" } + } + }, + { + "__comment": "Box17", + "from": [ 7, 4.5, 6 ], + "to": [ 8, 5.5, 7 ], + "faces": { + "up": { "uv": [ 6, 8, 7, 9 ], "texture": "#texture3", "rotation": 90 }, + "south": { "uv": [ 6, 8, 7, 9 ], "texture": "#texture3" }, + "west": { "uv": [ 6, 8, 7, 9 ], "texture": "#texture3" }, + "east": { "uv": [ 6, 8, 7, 9 ], "texture": "#texture3" } + } + }, + { + "__comment": "Box17", + "from": [ 6, 4.5, 6 ], + "to": [ 7, 5.5, 7 ], + "faces": { + "up": { "uv": [ 6, 9, 7, 10 ], "texture": "#texture3", "rotation": 90 }, + "south": { "uv": [ 6, 9, 7, 10 ], "texture": "#texture3" }, + "east": { "uv": [ 6, 9, 7, 10 ], "texture": "#texture3" } + } + }, + { + "__comment": "Box17", + "from": [ 6, 4.5, 7 ], + "to": [ 7, 5.5, 8 ], + "faces": { + "up": { "uv": [ 7, 9, 8, 10 ], "texture": "#texture3", "rotation": 90 }, + "north": { "uv": [ 7, 9, 8, 10 ], "texture": "#texture3" }, + "south": { "uv": [ 7, 9, 8, 10 ], "texture": "#texture3" }, + "east": { "uv": [ 7, 9, 8, 10 ], "texture": "#texture3" } + } + }, + { + "__comment": "Box17", + "from": [ 7, 5, 7 ], + "to": [ 8, 6, 8 ], + "faces": { + "up": { "uv": [ 7, 8, 8, 9 ], "texture": "#texture3", "rotation": 90 }, + "north": { "uv": [ 7, 8, 8, 9 ], "texture": "#texture3" }, + "south": { "uv": [ 7, 8, 8, 9 ], "texture": "#texture3" }, + "west": { "uv": [ 7, 8, 8, 9 ], "texture": "#texture3" }, + "east": { "uv": [ 7, 8, 8, 9 ], "texture": "#texture3" } + } + }, + { + "__comment": "Box17", + "from": [ 7, 5, 8 ], + "to": [ 8, 6, 9 ], + "faces": { + "up": { "uv": [ 8, 8, 9, 9 ], "texture": "#texture3", "rotation": 90 }, + "north": { "uv": [ 8, 8, 9, 9 ], "texture": "#texture3" }, + "south": { "uv": [ 8, 8, 9, 9 ], "texture": "#texture3" }, + "west": { "uv": [ 8, 8, 9, 9 ], "texture": "#texture3" }, + "east": { "uv": [ 8, 8, 9, 9 ], "texture": "#texture3" } + } + }, + { + "__comment": "Box17", + "from": [ 6, 5, 8 ], + "to": [ 7, 6, 9 ], + "faces": { + "up": { "uv": [ 8, 9, 9, 10 ], "texture": "#texture3", "rotation": 90 }, + "north": { "uv": [ 8, 9, 9, 10 ], "texture": "#texture3" }, + "south": { "uv": [ 8, 9, 9, 10 ], "texture": "#texture3" }, + "east": { "uv": [ 8, 9, 9, 10 ], "texture": "#texture3" } + } + }, + { + "__comment": "Box17", + "from": [ 6, 4.5, 9 ], + "to": [ 7, 5.5, 10 ], + "faces": { + "up": { "uv": [ 9, 9, 10, 10 ], "texture": "#texture3", "rotation": 90 }, + "north": { "uv": [ 9, 9, 10, 10 ], "texture": "#texture3" }, + "east": { "uv": [ 9, 9, 10, 10 ], "texture": "#texture3" } + } + }, + { + "__comment": "Box17", + "from": [ 7, 5, 9 ], + "to": [ 8, 6, 10 ], + "faces": { + "up": { "uv": [ 9, 8, 10, 9 ], "texture": "#texture3", "rotation": 90 }, + "north": { "uv": [ 9, 8, 10, 9 ], "texture": "#texture3" }, + "west": { "uv": [ 9, 8, 10, 9 ], "texture": "#texture3" }, + "east": { "uv": [ 9, 8, 10, 9 ], "texture": "#texture3" } } } ], diff --git a/kfc/src/main/resources/assets/forgecraft/models/block/castingcrucible5.json b/kfc/src/main/resources/assets/forgecraft/models/block/castingcrucible5.json index 35e69c61..ddcf55df 100644 --- a/kfc/src/main/resources/assets/forgecraft/models/block/castingcrucible5.json +++ b/kfc/src/main/resources/assets/forgecraft/models/block/castingcrucible5.json @@ -1,9 +1,10 @@ { "__comment": "Designed by Kitsushadow with Cubik Studio - https://cubik.studio", "textures": { - "particle": "blocks/stone_slab", - "texture": "blocks/stone_slab", - "texture1": "blocks/stone_slab" + "particle": "forgecraft:blocks/stone_slab", + "texture": "forgecraft:blocks/stone_slab", + "texture1": "forgecraft:blocks/stone_slab", + "texture3": "forgecraft:blocks/dirty_sand" }, "elements": [ { @@ -124,11 +125,179 @@ } }, { - "__comment": "PlaneY10", - "from": [ 6, 6.5, 6 ], - "to": [ 10, 6.501, 10 ], + "__comment": "Box17", + "from": [ 6, 5.5, 6 ], + "to": [ 7, 6.5, 7 ], "faces": { - "up": { "uv": [ 6, 6, 10, 10 ], "texture": "#texture1" } + "up": { "uv": [ 6, 6, 7, 7 ], "texture": "#texture3" }, + "south": { "uv": [ 6, 6, 7, 7 ], "texture": "#texture3" }, + "east": { "uv": [ 6, 6, 7, 7 ], "texture": "#texture3" } + } + }, + { + "__comment": "Box17", + "from": [ 7, 6, 6 ], + "to": [ 8, 7, 7 ], + "faces": { + "up": { "uv": [ 7, 6, 8, 7 ], "texture": "#texture3" }, + "south": { "uv": [ 7, 6, 8, 7 ], "texture": "#texture3" }, + "west": { "uv": [ 7, 6, 8, 7 ], "texture": "#texture3" }, + "east": { "uv": [ 7, 6, 8, 7 ], "texture": "#texture3" } + } + }, + { + "__comment": "Box17", + "from": [ 8, 5.5, 6 ], + "to": [ 9, 6.5, 7 ], + "faces": { + "up": { "uv": [ 8, 6, 9, 7 ], "texture": "#texture3" }, + "south": { "uv": [ 8, 6, 9, 7 ], "texture": "#texture3" }, + "west": { "uv": [ 8, 6, 9, 7 ], "texture": "#texture3" }, + "east": { "uv": [ 8, 6, 9, 7 ], "texture": "#texture3" } + } + }, + { + "__comment": "Box17", + "from": [ 9, 5.5, 6 ], + "to": [ 10, 6.5, 7 ], + "faces": { + "up": { "uv": [ 9, 6, 10, 7 ], "texture": "#texture3" }, + "south": { "uv": [ 9, 6, 10, 7 ], "texture": "#texture3" }, + "west": { "uv": [ 9, 6, 10, 7 ], "texture": "#texture3" } + } + }, + { + "__comment": "Box17", + "from": [ 6, 6, 7 ], + "to": [ 7, 7, 8 ], + "faces": { + "up": { "uv": [ 6, 7, 7, 8 ], "texture": "#texture3" }, + "north": { "uv": [ 6, 7, 7, 8 ], "texture": "#texture3" }, + "south": { "uv": [ 6, 7, 7, 8 ], "texture": "#texture3" }, + "east": { "uv": [ 6, 7, 7, 8 ], "texture": "#texture3" } + } + }, + { + "__comment": "Box17", + "from": [ 7, 6.5, 7 ], + "to": [ 8, 7.5, 8 ], + "faces": { + "up": { "uv": [ 7, 7, 8, 8 ], "texture": "#texture3" }, + "north": { "uv": [ 7, 7, 8, 8 ], "texture": "#texture3" }, + "south": { "uv": [ 7, 7, 8, 8 ], "texture": "#texture3" }, + "west": { "uv": [ 7, 7, 8, 8 ], "texture": "#texture3" }, + "east": { "uv": [ 7, 7, 8, 8 ], "texture": "#texture3" } + } + }, + { + "__comment": "Box17", + "from": [ 8, 6, 7 ], + "to": [ 9, 7, 8 ], + "faces": { + "up": { "uv": [ 8, 7, 9, 8 ], "texture": "#texture3" }, + "north": { "uv": [ 8, 7, 9, 8 ], "texture": "#texture3" }, + "south": { "uv": [ 8, 7, 9, 8 ], "texture": "#texture3" }, + "west": { "uv": [ 8, 7, 9, 8 ], "texture": "#texture3" }, + "east": { "uv": [ 8, 7, 9, 8 ], "texture": "#texture3" } + } + }, + { + "__comment": "Box17", + "from": [ 9, 5.5, 7 ], + "to": [ 10, 6.5, 8 ], + "faces": { + "up": { "uv": [ 9, 7, 10, 8 ], "texture": "#texture3" }, + "north": { "uv": [ 9, 7, 10, 8 ], "texture": "#texture3" }, + "south": { "uv": [ 9, 7, 10, 8 ], "texture": "#texture3" }, + "west": { "uv": [ 9, 7, 10, 8 ], "texture": "#texture3" } + } + }, + { + "__comment": "Box17", + "from": [ 6, 5.5, 8 ], + "to": [ 7, 6.5, 9 ], + "faces": { + "up": { "uv": [ 6, 8, 7, 9 ], "texture": "#texture3" }, + "north": { "uv": [ 6, 8, 7, 9 ], "texture": "#texture3" }, + "south": { "uv": [ 6, 8, 7, 9 ], "texture": "#texture3" }, + "east": { "uv": [ 6, 8, 7, 9 ], "texture": "#texture3" } + } + }, + { + "__comment": "Box17", + "from": [ 6, 5.5, 9 ], + "to": [ 7, 6.5, 10 ], + "faces": { + "up": { "uv": [ 6, 9, 7, 10 ], "texture": "#texture3" }, + "north": { "uv": [ 6, 9, 7, 10 ], "texture": "#texture3" }, + "east": { "uv": [ 6, 9, 7, 10 ], "texture": "#texture3" } + } + }, + { + "__comment": "Box17", + "from": [ 7, 5.5, 9 ], + "to": [ 8, 6.5, 10 ], + "faces": { + "up": { "uv": [ 7, 9, 8, 10 ], "texture": "#texture3" }, + "north": { "uv": [ 7, 9, 8, 10 ], "texture": "#texture3" }, + "west": { "uv": [ 7, 9, 8, 10 ], "texture": "#texture3" }, + "east": { "uv": [ 7, 9, 8, 10 ], "texture": "#texture3" } + } + }, + { + "__comment": "Box17", + "from": [ 7, 6, 8 ], + "to": [ 8, 7, 9 ], + "faces": { + "up": { "uv": [ 7, 8, 8, 9 ], "texture": "#texture3" }, + "north": { "uv": [ 7, 8, 8, 9 ], "texture": "#texture3" }, + "south": { "uv": [ 7, 8, 8, 9 ], "texture": "#texture3" }, + "west": { "uv": [ 7, 8, 8, 9 ], "texture": "#texture3" }, + "east": { "uv": [ 7, 8, 8, 9 ], "texture": "#texture3" } + } + }, + { + "__comment": "Box17", + "from": [ 8, 6, 8 ], + "to": [ 9, 7, 9 ], + "faces": { + "up": { "uv": [ 8, 8, 9, 9 ], "texture": "#texture3" }, + "north": { "uv": [ 8, 8, 9, 9 ], "texture": "#texture3" }, + "south": { "uv": [ 8, 8, 9, 9 ], "texture": "#texture3" }, + "west": { "uv": [ 8, 8, 9, 9 ], "texture": "#texture3" }, + "east": { "uv": [ 8, 8, 9, 9 ], "texture": "#texture3" } + } + }, + { + "__comment": "Box17", + "from": [ 8, 6, 9 ], + "to": [ 9, 7, 10 ], + "faces": { + "up": { "uv": [ 8, 9, 9, 10 ], "texture": "#texture3" }, + "north": { "uv": [ 8, 9, 9, 10 ], "texture": "#texture3" }, + "west": { "uv": [ 8, 9, 9, 10 ], "texture": "#texture3" }, + "east": { "uv": [ 8, 9, 9, 10 ], "texture": "#texture3" } + } + }, + { + "__comment": "Box17", + "from": [ 9, 5.5, 9 ], + "to": [ 10, 6.5, 10 ], + "faces": { + "up": { "uv": [ 9, 9, 10, 10 ], "texture": "#texture3" }, + "north": { "uv": [ 9, 9, 10, 10 ], "texture": "#texture3" }, + "west": { "uv": [ 9, 9, 10, 10 ], "texture": "#texture3" } + } + }, + { + "__comment": "Box17", + "from": [ 9, 6, 8 ], + "to": [ 10, 7, 9 ], + "faces": { + "up": { "uv": [ 9, 8, 10, 9 ], "texture": "#texture3" }, + "north": { "uv": [ 9, 8, 10, 9 ], "texture": "#texture3" }, + "south": { "uv": [ 9, 8, 10, 9 ], "texture": "#texture3" }, + "west": { "uv": [ 9, 8, 10, 9 ], "texture": "#texture3" } } } ], diff --git a/kfc/src/main/resources/assets/forgecraft/models/item/itemnbtcrucible.json b/kfc/src/main/resources/assets/forgecraft/models/item/itemnbtcrucible.json index 5c5daf60..a3ccc212 100644 --- a/kfc/src/main/resources/assets/forgecraft/models/item/itemnbtcrucible.json +++ b/kfc/src/main/resources/assets/forgecraft/models/item/itemnbtcrucible.json @@ -1,5 +1,5 @@ { - "parent": "forgecraft:block/crucibleshut", + "parent": "forgecraft:emptycrucible", "textures": { "particle": "forgecraft:blocks/stone_slab", "texture": "forgecraft:blocks/stone_slab" diff --git a/kfc/src/main/resources/assets/forgecraft/models/item/nbtcrucible/nbtcrucible_0.json b/kfc/src/main/resources/assets/forgecraft/models/item/nbtcrucible/nbtcrucible_0.json index 11dc9a16..0d591c1d 100644 --- a/kfc/src/main/resources/assets/forgecraft/models/item/nbtcrucible/nbtcrucible_0.json +++ b/kfc/src/main/resources/assets/forgecraft/models/item/nbtcrucible/nbtcrucible_0.json @@ -1,5 +1,5 @@ { - "parent": "forgecraft:block/crucibleshut", + "parent": "forgecraft:emptycrucible", "textures": { "particle": "forgecraft:blocks/stone_slab", "texture": "forgecraft:blocks/stone_slab" diff --git a/kfc/src/main/resources/assets/forgecraft/models/item/nbtcrucible/nbtcrucible_1.json b/kfc/src/main/resources/assets/forgecraft/models/item/nbtcrucible/nbtcrucible_1.json index dc40087f..bf6a467a 100644 --- a/kfc/src/main/resources/assets/forgecraft/models/item/nbtcrucible/nbtcrucible_1.json +++ b/kfc/src/main/resources/assets/forgecraft/models/item/nbtcrucible/nbtcrucible_1.json @@ -1,7 +1,9 @@ { - "parent": "forgecraft:block/crucibleshut", + "parent": "forgecraft:castingcrucible1", "textures": { - "particle": "forgecraft:blocks/stone_slab_hot", - "texture": "forgecraft:blocks/stone_slab_hot" + "particle": "forgecraft:blocks/stone_slab", + "texture": "forgecraft:blocks/stone_slab", + "texture1": "forgecraft:blocks/dirty_sand", + "texture3": "forgecraft:blocks/dirty_sand" } } \ No newline at end of file diff --git a/kfc/src/main/resources/assets/forgecraft/models/item/slottedtongs_crucible1.json b/kfc/src/main/resources/assets/forgecraft/models/item/slottedtongs_crucible1.json index 53ed5a0b..f0afccdc 100644 --- a/kfc/src/main/resources/assets/forgecraft/models/item/slottedtongs_crucible1.json +++ b/kfc/src/main/resources/assets/forgecraft/models/item/slottedtongs_crucible1.json @@ -4,8 +4,8 @@ "particle": "blocks/planks_oak", "texture": "blocks/planks_oak", "texture1": "blocks/stone_slab", - "texture2": "blocks/stone_slab_hot", - "texture3": "blocks/dirty_sand" + "texture2": "forgecraft:blocks/stone_slab_hot", + "texture3": "forgecraft:blocks/dirty_sand" }, "elements": [ { diff --git a/kfc/src/main/resources/assets/forgecraft/models/item/slottedtongs_crucible2.json b/kfc/src/main/resources/assets/forgecraft/models/item/slottedtongs_crucible2.json index 708159c3..d487a79a 100644 --- a/kfc/src/main/resources/assets/forgecraft/models/item/slottedtongs_crucible2.json +++ b/kfc/src/main/resources/assets/forgecraft/models/item/slottedtongs_crucible2.json @@ -4,8 +4,8 @@ "particle": "blocks/planks_oak", "texture": "blocks/planks_oak", "texture1": "blocks/stone_slab", - "texture2": "blocks/stone_slab_hot", - "texture3": "blocks/dirty_sand" + "texture2": "forgecraft:blocks/stone_slab_hot", + "texture3": "forgecraft:blocks/dirty_sand" }, "elements": [ { diff --git a/kfc/src/main/resources/assets/forgecraft/models/item/slottedtongs_crucible3.json b/kfc/src/main/resources/assets/forgecraft/models/item/slottedtongs_crucible3.json index 28f1b22d..48aaf201 100644 --- a/kfc/src/main/resources/assets/forgecraft/models/item/slottedtongs_crucible3.json +++ b/kfc/src/main/resources/assets/forgecraft/models/item/slottedtongs_crucible3.json @@ -1,11 +1,11 @@ { "__comment": "Designed by Kitsushadow with Cubik Studio - https://cubik.studio", "textures": { - "particle": "blocks/planks_oak", - "texture": "blocks/planks_oak", - "texture1": "blocks/stone_slab", - "texture2": "blocks/stone_slab_hot", - "texture3": "blocks/dirty_sand" + "particle": "forgecraft:blocks/planks_oak", + "texture": "forgecraft:blocks/planks_oak", + "texture1": "forgecraft:blocks/stone_slab", + "texture2": "forgecraft:blocks/stone_slab_hot", + "texture3": "forgecraft:blocks/dirty_sand" }, "elements": [ { diff --git a/kfc/src/main/resources/assets/forgecraft/models/item/slottedtongs_crucible4.json b/kfc/src/main/resources/assets/forgecraft/models/item/slottedtongs_crucible4.json index 8be8928c..5ede4246 100644 --- a/kfc/src/main/resources/assets/forgecraft/models/item/slottedtongs_crucible4.json +++ b/kfc/src/main/resources/assets/forgecraft/models/item/slottedtongs_crucible4.json @@ -1,11 +1,11 @@ { "__comment": "Designed by Kitsushadow with Cubik Studio - https://cubik.studio", "textures": { - "particle": "blocks/planks_oak", - "texture": "blocks/planks_oak", - "texture1": "blocks/stone_slab", - "texture2": "blocks/stone_slab_hot", - "texture3": "blocks/dirty_sand" + "particle": "forgecraft:blocks/planks_oak", + "texture": "forgecraft:blocks/planks_oak", + "texture1": "forgecraft:blocks/stone_slab", + "texture2": "forgecraft:blocks/stone_slab_hot", + "texture3": "forgecraft:blocks/dirty_sand" }, "elements": [ { diff --git a/kfc/src/main/resources/assets/forgecraft/models/item/slottedtongs_crucible5.json b/kfc/src/main/resources/assets/forgecraft/models/item/slottedtongs_crucible5.json index 081a1114..90098b62 100644 --- a/kfc/src/main/resources/assets/forgecraft/models/item/slottedtongs_crucible5.json +++ b/kfc/src/main/resources/assets/forgecraft/models/item/slottedtongs_crucible5.json @@ -1,11 +1,11 @@ { "__comment": "Designed by Kitsushadow with Cubik Studio - https://cubik.studio", "textures": { - "particle": "blocks/planks_oak", - "texture": "blocks/planks_oak", - "texture1": "blocks/stone_slab", - "texture2": "blocks/stone_slab_hot", - "texture3": "blocks/dirty_sand" + "particle": "forgecraft:blocks/planks_oak", + "texture": "forgecraft:blocks/planks_oak", + "texture1": "forgecraft:blocks/stone_slab", + "texture2": "forgecraft:blocks/stone_slab_hot", + "texture3": "forgecraft:blocks/dirty_sand" }, "elements": [ { diff --git a/kfc/src/main/resources/assets/forgecraft/textures/blocks/dirty_sand.png b/kfc/src/main/resources/assets/forgecraft/textures/blocks/dirty_sand.png index af79323f..d028ad17 100644 Binary files a/kfc/src/main/resources/assets/forgecraft/textures/blocks/dirty_sand.png and b/kfc/src/main/resources/assets/forgecraft/textures/blocks/dirty_sand.png differ