Moooooore pedestals!

This commit is contained in:
Aleksey 2020-10-29 16:11:13 +03:00
parent e6cafec945
commit 454fd1439b
41 changed files with 468 additions and 14 deletions

View file

@ -0,0 +1,22 @@
{
"variants": {
"state=default": {
"model": "betterend:block/purpur_pedestal_default"
},
"state=column": {
"model": "betterend:block/purpur_pedestal_column"
},
"state=column_top": {
"model": "betterend:block/purpur_pedestal_column_top"
},
"state=pedestal_top": {
"model": "betterend:block/purpur_pedestal_top"
},
"state=bottom": {
"model": "betterend:block/purpur_pedestal_bottom"
},
"state=pillar": {
"model": "betterend:block/purpur_pedestal_pillar"
}
}
}

View file

@ -0,0 +1,22 @@
{
"variants": {
"state=default": {
"model": "betterend:block/quartz_pedestal_default"
},
"state=column": {
"model": "betterend:block/quartz_pedestal_column"
},
"state=column_top": {
"model": "betterend:block/quartz_pedestal_column_top"
},
"state=pedestal_top": {
"model": "betterend:block/quartz_pedestal_top"
},
"state=bottom": {
"model": "betterend:block/quartz_pedestal_bottom"
},
"state=pillar": {
"model": "betterend:block/quartz_pedestal_pillar"
}
}
}

View file

@ -32,7 +32,7 @@
{
"__comment": "pillar",
"from": [ 3, 4, 3 ],
"to": [ 13, 14, 13 ],
"to": [ 13, 13, 13 ],
"faces": {
"north": { "uv": [ 3, 4, 13, 14 ], "texture": "#pillar" },
"south": { "uv": [ 3, 4, 13, 14 ], "texture": "#pillar" },
@ -40,6 +40,18 @@
"east": { "uv": [ 3, 4, 13, 14 ], "texture": "#pillar" }
}
},
{
"__comment": "top",
"from": [ 2, 13, 2 ],
"to": [ 14, 14, 14 ],
"faces": {
"down": { "uv": [ 2, 2, 14, 14 ], "texture": "#base" },
"north": { "uv": [ 2, 13, 14, 14 ], "texture": "#base" },
"south": { "uv": [ 2, 13, 14, 14 ], "texture": "#base" },
"west": { "uv": [ 2, 13, 14, 14 ], "texture": "#base" },
"east": { "uv": [ 2, 13, 14, 14 ], "texture": "#base" }
}
},
{
"__comment": "top",
"from": [ 1, 14, 1 ],

View file

@ -7,7 +7,7 @@
{
"__comment": "pillar",
"from": [ 3, 0, 3 ],
"to": [ 13, 14, 13 ],
"to": [ 13, 13, 13 ],
"faces": {
"north": { "uv": [ 3, 0, 13, 14 ], "texture": "#pillar" },
"south": { "uv": [ 3, 0, 13, 14 ], "texture": "#pillar" },
@ -15,6 +15,18 @@
"east": { "uv": [ 3, 0, 13, 14 ], "texture": "#pillar" }
}
},
{
"__comment": "top",
"from": [ 2, 13, 2 ],
"to": [ 14, 14, 14 ],
"faces": {
"down": { "uv": [ 2, 2, 14, 14 ], "texture": "#base" },
"north": { "uv": [ 2, 13, 14, 14 ], "texture": "#base" },
"south": { "uv": [ 2, 13, 14, 14 ], "texture": "#base" },
"west": { "uv": [ 2, 13, 14, 14 ], "texture": "#base" },
"east": { "uv": [ 2, 13, 14, 14 ], "texture": "#base" }
}
},
{
"__comment": "top",
"from": [ 1, 14, 1 ],

View file

@ -0,0 +1,8 @@
{
"parent": "betterend:block/pedestal_bottom",
"textures": {
"base": "minecraft:block/purpur_block",
"pillar": "minecraft:block/purpur_pillar",
"bottom": "minecraft:block/purpur_block"
}
}

View file

@ -0,0 +1,8 @@
{
"parent": "betterend:block/pedestal_column",
"textures": {
"base": "minecraft:block/purpur_block",
"pillar": "minecraft:block/purpur_pillar",
"bottom": "minecraft:block/purpur_block"
}
}

View file

@ -0,0 +1,7 @@
{
"parent": "betterend:block/pedestal_column_top",
"textures": {
"base": "minecraft:block/purpur_block",
"pillar": "minecraft:block/purpur_pillar"
}
}

View file

@ -0,0 +1,9 @@
{
"parent": "betterend:block/pedestal_default",
"textures": {
"top": "minecraft:block/purpur_pillar_top",
"base": "minecraft:block/purpur_block",
"pillar": "minecraft:block/purpur_pillar",
"bottom": "minecraft:block/purpur_block"
}
}

View file

@ -0,0 +1,6 @@
{
"parent": "betterend:block/pedestal_pillar",
"textures": {
"pillar": "minecraft:block/purpur_pillar"
}
}

View file

@ -0,0 +1,8 @@
{
"parent": "betterend:block/pedestal_top",
"textures": {
"top": "minecraft:block/purpur_pillar_top",
"base": "minecraft:block/purpur_block",
"pillar": "minecraft:block/purpur_pillar"
}
}

View file

@ -0,0 +1,8 @@
{
"parent": "betterend:block/pedestal_bottom",
"textures": {
"base": "minecraft:block/quartz_block_side",
"pillar": "minecraft:block/quartz_pillar",
"bottom": "minecraft:block/quartz_block_bottom"
}
}

View file

@ -0,0 +1,8 @@
{
"parent": "betterend:block/pedestal_column",
"textures": {
"base": "minecraft:block/quartz_block_side",
"pillar": "minecraft:block/quartz_pillar",
"bottom": "minecraft:block/quartz_block_bottom"
}
}

View file

@ -0,0 +1,7 @@
{
"parent": "betterend:block/pedestal_column_top",
"textures": {
"base": "minecraft:block/quartz_block_side",
"pillar": "minecraft:block/quartz_pillar"
}
}

View file

@ -0,0 +1,9 @@
{
"parent": "betterend:block/pedestal_default",
"textures": {
"top": "minecraft:block/quartz_pillar_top",
"base": "minecraft:block/quartz_block_side",
"pillar": "minecraft:block/quartz_pillar",
"bottom": "minecraft:block/quartz_block_bottom"
}
}

View file

@ -0,0 +1,6 @@
{
"parent": "betterend:block/pedestal_pillar",
"textures": {
"pillar": "minecraft:block/quartz_pillar"
}
}

View file

@ -0,0 +1,8 @@
{
"parent": "betterend:block/pedestal_top",
"textures": {
"top": "minecraft:block/quartz_pillar_top",
"base": "minecraft:block/quartz_block_side",
"pillar": "minecraft:block/quartz_pillar"
}
}

View file

@ -0,0 +1,3 @@
{
"parent": "betterend:block/purpur_pedestal_default"
}

View file

@ -0,0 +1,3 @@
{
"parent": "betterend:block/quartz_pedestal_default"
}

View file

@ -0,0 +1,8 @@
{
"parent": "betterend:block/pedestal_bottom",
"textures": {
"base": "%mod%:block/%base%",
"pillar": "%mod%:block/%pillar%",
"bottom": "%mod%:block/%bottom%"
}
}

View file

@ -0,0 +1,8 @@
{
"parent": "betterend:block/pedestal_column",
"textures": {
"base": "%mod%:block/%base%",
"pillar": "%mod%:block/%pillar%",
"bottom": "%mod%:block/%bottom%"
}
}

View file

@ -0,0 +1,7 @@
{
"parent": "betterend:block/pedestal_column_top",
"textures": {
"base": "%mod%:block/%base%",
"pillar": "%mod%:block/%pillar%"
}
}

View file

@ -0,0 +1,9 @@
{
"parent": "betterend:block/pedestal_default",
"textures": {
"top": "%mod%:block/%top%",
"base": "%mod%:block/%base%",
"pillar": "%mod%:block/%pillar%",
"bottom": "%mod%:block/%bottom%"
}
}

View file

@ -0,0 +1,6 @@
{
"parent": "betterend:block/pedestal_pillar",
"textures": {
"pillar": "%mod%:block/%pillar%"
}
}

View file

@ -0,0 +1,8 @@
{
"parent": "betterend:block/pedestal_top",
"textures": {
"top": "%mod%:block/%top%",
"base": "%mod%:block/%base%",
"pillar": "%mod%:block/%pillar%"
}
}

View file

@ -0,0 +1,22 @@
{
"variants": {
"state=default": {
"model": "betterend:pattern/%block%/%block%_default"
},
"state=column": {
"model": "betterend:pattern/%block%/%block%_column"
},
"state=column_top": {
"model": "betterend:pattern/%block%/%block%_column_top"
},
"state=pedestal_top": {
"model": "betterend:pattern/%block%/%block%_top"
},
"state=bottom": {
"model": "betterend:pattern/%block%/%block%_bottom"
},
"state=pillar": {
"model": "betterend:pattern/%block%/%block%_pillar"
}
}
}

Binary file not shown.

After

Width:  |  Height:  |  Size: 737 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 745 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 680 B