updated assets trying to get the itemnbtcrucible rendering to work
This commit is contained in:
@@ -11,7 +11,7 @@ forge_version=14.23.4.2744
|
|||||||
mcp_mappings=snapshot_20171003
|
mcp_mappings=snapshot_20171003
|
||||||
mc_version=1.12.2
|
mc_version=1.12.2
|
||||||
|
|
||||||
primal_version=0.6.69+
|
primal_version=0.6+
|
||||||
jei_version=4.8+
|
jei_version=4.8+
|
||||||
waila_version=1.7.0-B3
|
waila_version=1.7.0-B3
|
||||||
apple_version=2.1+
|
apple_version=2.1+
|
||||||
|
|||||||
@@ -86,8 +86,9 @@ public class NBTCrucible extends BlockContainer implements ITileEntityProvider {
|
|||||||
if (tile.ingList.get(i-1).isEmpty()) {
|
if (tile.ingList.get(i-1).isEmpty()) {
|
||||||
tile.ingList.set(i-1, pItem1);
|
tile.ingList.set(i-1, pItem1);
|
||||||
pItem.shrink(1);
|
pItem.shrink(1);
|
||||||
world.setBlockState(pos, state.withProperty(PrimalAPI.States.LAYERS, i), 2);
|
|
||||||
tile.setHot(i);
|
tile.setHot(i);
|
||||||
|
world.setBlockState(pos, state.withProperty(PrimalAPI.States.LAYERS, i), 2);
|
||||||
|
System.out.println(i);
|
||||||
tile.update();
|
tile.update();
|
||||||
tile.markDirty();
|
tile.markDirty();
|
||||||
return true;
|
return true;
|
||||||
|
|||||||
@@ -31,17 +31,56 @@ public class ItemNBTCrucible extends ItemBlock {
|
|||||||
@SideOnly(Side.CLIENT)
|
@SideOnly(Side.CLIENT)
|
||||||
public float apply(ItemStack item, @Nullable World worldIn, @Nullable EntityLivingBase entityIn)
|
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 (item.hasTagCompound()) {
|
||||||
if (getHot(item)){
|
System.out.println("We have a tag compound");
|
||||||
//System.out.println("Should be Red");
|
if (getHot(item) == 0){
|
||||||
|
return 0.0f;
|
||||||
|
}
|
||||||
|
if (getHot(item) == 1){
|
||||||
return 0.1f;
|
return 0.1f;
|
||||||
}
|
}
|
||||||
|
if (getHot(item) == 2){
|
||||||
|
return 0.2f;
|
||||||
}
|
}
|
||||||
if (item.hasTagCompound()) {
|
if (getHot(item) == 3){
|
||||||
if (!getHot(item)){
|
return 0.3f;
|
||||||
//System.out.println("Should be Brown");
|
}
|
||||||
return 0.0f;
|
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;
|
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.isEmpty()) {
|
||||||
if (stack.hasTagCompound()) {
|
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
|
@Override
|
||||||
|
|||||||
@@ -88,7 +88,7 @@ public class TileBloomery extends TileBaseSlot implements ITickable {
|
|||||||
this.markDirty();
|
this.markDirty();
|
||||||
}
|
}
|
||||||
if (cookCounter >= (recipe.getCookTime()/4) && !this.getSlotStack(1).getSubCompound("BlockEntityTag").getBoolean("status")) {
|
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");
|
System.out.println("hot");
|
||||||
this.updateBlock();
|
this.updateBlock();
|
||||||
this.markDirty();
|
this.markDirty();
|
||||||
|
|||||||
@@ -13,7 +13,8 @@
|
|||||||
"textures": {
|
"textures": {
|
||||||
"particle": "forgecraft:blocks/stone_slab",
|
"particle": "forgecraft:blocks/stone_slab",
|
||||||
"texture": "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"
|
"model": "forgecraft:castingcrucible1"
|
||||||
},
|
},
|
||||||
@@ -55,7 +56,7 @@
|
|||||||
"texture": "forgecraft:blocks/stone_slab_hot",
|
"texture": "forgecraft:blocks/stone_slab_hot",
|
||||||
"texture1": "forgecraft:blocks/crucible_cooked"
|
"texture1": "forgecraft:blocks/crucible_cooked"
|
||||||
},
|
},
|
||||||
"model": "forgecraft:castingcrucible4"
|
"model": "forgecraft:castingcrucible"
|
||||||
},
|
},
|
||||||
"7": {
|
"7": {
|
||||||
"textures": {
|
"textures": {
|
||||||
@@ -127,7 +128,7 @@
|
|||||||
"texture": "forgecraft:blocks/stone_slab_hot",
|
"texture": "forgecraft:blocks/stone_slab_hot",
|
||||||
"texture1": "forgecraft:items/hot_bronze"
|
"texture1": "forgecraft:items/hot_bronze"
|
||||||
},
|
},
|
||||||
"model": "forgecraft:castingcrucible4"
|
"model": "forgecraft:castingcrucible"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,9 +1,10 @@
|
|||||||
{
|
{
|
||||||
"__comment": "Designed by Kitsushadow with Cubik Studio - https://cubik.studio",
|
"__comment": "Designed by Kitsushadow with Cubik Studio - https://cubik.studio",
|
||||||
"textures": {
|
"textures": {
|
||||||
"particle": "blocks/stone_slab",
|
"particle": "forgecraft:blocks/stone_slab",
|
||||||
"texture": "blocks/stone_slab",
|
"texture": "forgecraft:blocks/stone_slab",
|
||||||
"texture1": "blocks/stone_slab"
|
"texture1": "forgecraft:blocks/stone_slab",
|
||||||
|
"texture3": "forgecraft:blocks/dirty_sand"
|
||||||
},
|
},
|
||||||
"elements": [
|
"elements": [
|
||||||
{
|
{
|
||||||
@@ -124,11 +125,179 @@
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"__comment": "PlaneY10",
|
"__comment": "Box17",
|
||||||
"from": [ 6, 2.5, 6 ],
|
"from": [ 6, 1.5, 6 ],
|
||||||
"to": [ 10, 2.501, 10 ],
|
"to": [ 7, 2.5, 7 ],
|
||||||
"faces": {
|
"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" }
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
|
|||||||
@@ -1,9 +1,10 @@
|
|||||||
{
|
{
|
||||||
"__comment": "Designed by Kitsushadow with Cubik Studio - https://cubik.studio",
|
"__comment": "Designed by Kitsushadow with Cubik Studio - https://cubik.studio",
|
||||||
"textures": {
|
"textures": {
|
||||||
"particle": "blocks/stone_slab",
|
"particle": "forgecraft:blocks/stone_slab",
|
||||||
"texture": "blocks/stone_slab",
|
"texture": "forgecraft:blocks/stone_slab",
|
||||||
"texture1": "blocks/stone_slab"
|
"texture1": "forgecraft:blocks/stone_slab",
|
||||||
|
"texture3": "forgecraft:blocks/dirty_sand"
|
||||||
},
|
},
|
||||||
"elements": [
|
"elements": [
|
||||||
{
|
{
|
||||||
@@ -124,11 +125,179 @@
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"__comment": "PlaneY10",
|
"__comment": "Box17",
|
||||||
"from": [ 6, 3.5, 6 ],
|
"from": [ 6, 2.5, 9 ],
|
||||||
"to": [ 10, 3.501, 10 ],
|
"to": [ 7, 3.5, 10 ],
|
||||||
"faces": {
|
"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" }
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
|
|||||||
@@ -1,9 +1,10 @@
|
|||||||
{
|
{
|
||||||
"__comment": "Designed by Kitsushadow with Cubik Studio - https://cubik.studio",
|
"__comment": "Designed by Kitsushadow with Cubik Studio - https://cubik.studio",
|
||||||
"textures": {
|
"textures": {
|
||||||
"particle": "blocks/stone_slab",
|
"particle": "forgecraft:blocks/stone_slab",
|
||||||
"texture": "blocks/stone_slab",
|
"texture": "forgecraft:blocks/stone_slab",
|
||||||
"texture1": "blocks/stone_slab"
|
"texture1": "forgecraft:blocks/stone_slab",
|
||||||
|
"texture3": "forgecraft:blocks/dirty_sand"
|
||||||
},
|
},
|
||||||
"elements": [
|
"elements": [
|
||||||
{
|
{
|
||||||
@@ -124,11 +125,179 @@
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"__comment": "PlaneY10",
|
"__comment": "Box17",
|
||||||
"from": [ 6, 4.5, 6 ],
|
"from": [ 9, 3.5, 9 ],
|
||||||
"to": [ 10, 4.501, 10 ],
|
"to": [ 10, 4.5, 10 ],
|
||||||
"faces": {
|
"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" }
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
|
|||||||
@@ -1,9 +1,10 @@
|
|||||||
{
|
{
|
||||||
"__comment": "Designed by Kitsushadow with Cubik Studio - https://cubik.studio",
|
"__comment": "Designed by Kitsushadow with Cubik Studio - https://cubik.studio",
|
||||||
"textures": {
|
"textures": {
|
||||||
"particle": "blocks/stone_slab",
|
"particle": "forgecraft:blocks/stone_slab",
|
||||||
"texture": "blocks/stone_slab",
|
"texture": "forgecraft:blocks/stone_slab",
|
||||||
"texture1": "blocks/stone_slab"
|
"texture1": "forgecraft:blocks/stone_slab",
|
||||||
|
"texture3": "forgecraft:blocks/dirty_sand"
|
||||||
},
|
},
|
||||||
"elements": [
|
"elements": [
|
||||||
{
|
{
|
||||||
@@ -124,11 +125,179 @@
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"__comment": "PlaneY10",
|
"__comment": "Box17",
|
||||||
"from": [ 6, 5.5, 6 ],
|
"from": [ 9, 4.5, 6 ],
|
||||||
"to": [ 10, 5.501, 10 ],
|
"to": [ 10, 5.5, 7 ],
|
||||||
"faces": {
|
"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" }
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
|
|||||||
@@ -1,9 +1,10 @@
|
|||||||
{
|
{
|
||||||
"__comment": "Designed by Kitsushadow with Cubik Studio - https://cubik.studio",
|
"__comment": "Designed by Kitsushadow with Cubik Studio - https://cubik.studio",
|
||||||
"textures": {
|
"textures": {
|
||||||
"particle": "blocks/stone_slab",
|
"particle": "forgecraft:blocks/stone_slab",
|
||||||
"texture": "blocks/stone_slab",
|
"texture": "forgecraft:blocks/stone_slab",
|
||||||
"texture1": "blocks/stone_slab"
|
"texture1": "forgecraft:blocks/stone_slab",
|
||||||
|
"texture3": "forgecraft:blocks/dirty_sand"
|
||||||
},
|
},
|
||||||
"elements": [
|
"elements": [
|
||||||
{
|
{
|
||||||
@@ -124,11 +125,179 @@
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"__comment": "PlaneY10",
|
"__comment": "Box17",
|
||||||
"from": [ 6, 6.5, 6 ],
|
"from": [ 6, 5.5, 6 ],
|
||||||
"to": [ 10, 6.501, 10 ],
|
"to": [ 7, 6.5, 7 ],
|
||||||
"faces": {
|
"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" }
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
|
|||||||
@@ -1,5 +1,5 @@
|
|||||||
{
|
{
|
||||||
"parent": "forgecraft:block/crucibleshut",
|
"parent": "forgecraft:emptycrucible",
|
||||||
"textures": {
|
"textures": {
|
||||||
"particle": "forgecraft:blocks/stone_slab",
|
"particle": "forgecraft:blocks/stone_slab",
|
||||||
"texture": "forgecraft:blocks/stone_slab"
|
"texture": "forgecraft:blocks/stone_slab"
|
||||||
|
|||||||
@@ -1,5 +1,5 @@
|
|||||||
{
|
{
|
||||||
"parent": "forgecraft:block/crucibleshut",
|
"parent": "forgecraft:emptycrucible",
|
||||||
"textures": {
|
"textures": {
|
||||||
"particle": "forgecraft:blocks/stone_slab",
|
"particle": "forgecraft:blocks/stone_slab",
|
||||||
"texture": "forgecraft:blocks/stone_slab"
|
"texture": "forgecraft:blocks/stone_slab"
|
||||||
|
|||||||
@@ -1,7 +1,9 @@
|
|||||||
{
|
{
|
||||||
"parent": "forgecraft:block/crucibleshut",
|
"parent": "forgecraft:castingcrucible1",
|
||||||
"textures": {
|
"textures": {
|
||||||
"particle": "forgecraft:blocks/stone_slab_hot",
|
"particle": "forgecraft:blocks/stone_slab",
|
||||||
"texture": "forgecraft:blocks/stone_slab_hot"
|
"texture": "forgecraft:blocks/stone_slab",
|
||||||
|
"texture1": "forgecraft:blocks/dirty_sand",
|
||||||
|
"texture3": "forgecraft:blocks/dirty_sand"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -4,8 +4,8 @@
|
|||||||
"particle": "blocks/planks_oak",
|
"particle": "blocks/planks_oak",
|
||||||
"texture": "blocks/planks_oak",
|
"texture": "blocks/planks_oak",
|
||||||
"texture1": "blocks/stone_slab",
|
"texture1": "blocks/stone_slab",
|
||||||
"texture2": "blocks/stone_slab_hot",
|
"texture2": "forgecraft:blocks/stone_slab_hot",
|
||||||
"texture3": "blocks/dirty_sand"
|
"texture3": "forgecraft:blocks/dirty_sand"
|
||||||
},
|
},
|
||||||
"elements": [
|
"elements": [
|
||||||
{
|
{
|
||||||
|
|||||||
@@ -4,8 +4,8 @@
|
|||||||
"particle": "blocks/planks_oak",
|
"particle": "blocks/planks_oak",
|
||||||
"texture": "blocks/planks_oak",
|
"texture": "blocks/planks_oak",
|
||||||
"texture1": "blocks/stone_slab",
|
"texture1": "blocks/stone_slab",
|
||||||
"texture2": "blocks/stone_slab_hot",
|
"texture2": "forgecraft:blocks/stone_slab_hot",
|
||||||
"texture3": "blocks/dirty_sand"
|
"texture3": "forgecraft:blocks/dirty_sand"
|
||||||
},
|
},
|
||||||
"elements": [
|
"elements": [
|
||||||
{
|
{
|
||||||
|
|||||||
@@ -1,11 +1,11 @@
|
|||||||
{
|
{
|
||||||
"__comment": "Designed by Kitsushadow with Cubik Studio - https://cubik.studio",
|
"__comment": "Designed by Kitsushadow with Cubik Studio - https://cubik.studio",
|
||||||
"textures": {
|
"textures": {
|
||||||
"particle": "blocks/planks_oak",
|
"particle": "forgecraft:blocks/planks_oak",
|
||||||
"texture": "blocks/planks_oak",
|
"texture": "forgecraft:blocks/planks_oak",
|
||||||
"texture1": "blocks/stone_slab",
|
"texture1": "forgecraft:blocks/stone_slab",
|
||||||
"texture2": "blocks/stone_slab_hot",
|
"texture2": "forgecraft:blocks/stone_slab_hot",
|
||||||
"texture3": "blocks/dirty_sand"
|
"texture3": "forgecraft:blocks/dirty_sand"
|
||||||
},
|
},
|
||||||
"elements": [
|
"elements": [
|
||||||
{
|
{
|
||||||
|
|||||||
@@ -1,11 +1,11 @@
|
|||||||
{
|
{
|
||||||
"__comment": "Designed by Kitsushadow with Cubik Studio - https://cubik.studio",
|
"__comment": "Designed by Kitsushadow with Cubik Studio - https://cubik.studio",
|
||||||
"textures": {
|
"textures": {
|
||||||
"particle": "blocks/planks_oak",
|
"particle": "forgecraft:blocks/planks_oak",
|
||||||
"texture": "blocks/planks_oak",
|
"texture": "forgecraft:blocks/planks_oak",
|
||||||
"texture1": "blocks/stone_slab",
|
"texture1": "forgecraft:blocks/stone_slab",
|
||||||
"texture2": "blocks/stone_slab_hot",
|
"texture2": "forgecraft:blocks/stone_slab_hot",
|
||||||
"texture3": "blocks/dirty_sand"
|
"texture3": "forgecraft:blocks/dirty_sand"
|
||||||
},
|
},
|
||||||
"elements": [
|
"elements": [
|
||||||
{
|
{
|
||||||
|
|||||||
@@ -1,11 +1,11 @@
|
|||||||
{
|
{
|
||||||
"__comment": "Designed by Kitsushadow with Cubik Studio - https://cubik.studio",
|
"__comment": "Designed by Kitsushadow with Cubik Studio - https://cubik.studio",
|
||||||
"textures": {
|
"textures": {
|
||||||
"particle": "blocks/planks_oak",
|
"particle": "forgecraft:blocks/planks_oak",
|
||||||
"texture": "blocks/planks_oak",
|
"texture": "forgecraft:blocks/planks_oak",
|
||||||
"texture1": "blocks/stone_slab",
|
"texture1": "forgecraft:blocks/stone_slab",
|
||||||
"texture2": "blocks/stone_slab_hot",
|
"texture2": "forgecraft:blocks/stone_slab_hot",
|
||||||
"texture3": "blocks/dirty_sand"
|
"texture3": "forgecraft:blocks/dirty_sand"
|
||||||
},
|
},
|
||||||
"elements": [
|
"elements": [
|
||||||
{
|
{
|
||||||
|
|||||||
Binary file not shown.
|
Before Width: | Height: | Size: 640 B After Width: | Height: | Size: 719 B |
Reference in New Issue
Block a user