Merge branch 'master' of https://github.com/paulevsGitch/BetterEnd
This commit is contained in:
commit
c40c6ff014
15 changed files with 183 additions and 8 deletions
|
@ -0,0 +1,10 @@
|
|||
{
|
||||
"variants": {
|
||||
"": [
|
||||
{ "model": "betterend:block/end_moss_path" },
|
||||
{ "model": "betterend:block/end_moss_path", "y": 90 },
|
||||
{ "model": "betterend:block/end_moss_path", "y": 180 },
|
||||
{ "model": "betterend:block/end_moss_path", "y": 270 }
|
||||
]
|
||||
}
|
||||
}
|
|
@ -0,0 +1,10 @@
|
|||
{
|
||||
"variants": {
|
||||
"": [
|
||||
{ "model": "betterend:block/end_mycelium_path" },
|
||||
{ "model": "betterend:block/end_mycelium_path", "y": 90 },
|
||||
{ "model": "betterend:block/end_mycelium_path", "y": 180 },
|
||||
{ "model": "betterend:block/end_mycelium_path", "y": 270 }
|
||||
]
|
||||
}
|
||||
}
|
|
@ -4,6 +4,10 @@
|
|||
"block.betterend.end_mycelium": "End Mycelium",
|
||||
"block.betterend.end_moss": "End Moss",
|
||||
"block.betterend.endstone_dust": "End Stone Dust",
|
||||
|
||||
"block.betterend.end_mycelium_path": "End Mycelium Path",
|
||||
"block.betterend.end_moss_path": "End Moss Path",
|
||||
|
||||
"block.betterend.ender_ore": "Ender Ore",
|
||||
"block.betterend.terminite_block": "Terminite Block",
|
||||
"block.betterend.aeternium_block": "Aeternium Block",
|
||||
|
|
|
@ -4,6 +4,10 @@
|
|||
"block.betterend.end_mycelium": "Мицелий края",
|
||||
"block.betterend.end_moss": "Мох края",
|
||||
"block.betterend.endstone_dust": "Эндерняковая пыль",
|
||||
|
||||
"block.betterend.end_mycelium_path": "Дорога из мицелия края",
|
||||
"block.betterend.end_moss_path": "Дорога из мха края",
|
||||
|
||||
"block.betterend.ender_ore": "Руда Края",
|
||||
"block.betterend.terminite_block": "Блок Терминита",
|
||||
"block.betterend.aeternium_block": "Блок Этерия",
|
||||
|
|
|
@ -0,0 +1,7 @@
|
|||
{ "parent": "betterend:block/path",
|
||||
"textures": {
|
||||
"top": "betterend:block/end_moss_path_top",
|
||||
"side": "betterend:block/end_moss_side",
|
||||
"bottom": "block/end_stone"
|
||||
}
|
||||
}
|
|
@ -0,0 +1,7 @@
|
|||
{ "parent": "betterend:block/path",
|
||||
"textures": {
|
||||
"top": "betterend:block/end_mycelium_path_top",
|
||||
"side": "betterend:block/end_mycelium_side",
|
||||
"bottom": "block/end_stone"
|
||||
}
|
||||
}
|
18
src/main/resources/assets/betterend/models/block/path.json
Normal file
18
src/main/resources/assets/betterend/models/block/path.json
Normal file
|
@ -0,0 +1,18 @@
|
|||
{ "parent": "block/block",
|
||||
"textures": {
|
||||
"particle": "#side"
|
||||
},
|
||||
"elements": [
|
||||
{ "from": [ 0, 0, 0 ],
|
||||
"to": [ 16, 15, 16 ],
|
||||
"faces": {
|
||||
"down": { "uv": [ 0, 0, 16, 16 ], "texture": "#bottom", "cullface": "down" },
|
||||
"up": { "uv": [ 0, 0, 16, 16 ], "texture": "#top" },
|
||||
"north": { "uv": [ 0, 1, 16, 16 ], "texture": "#side", "cullface": "north" },
|
||||
"south": { "uv": [ 0, 1, 16, 16 ], "texture": "#side", "cullface": "south" },
|
||||
"west": { "uv": [ 0, 1, 16, 16 ], "texture": "#side", "cullface": "west" },
|
||||
"east": { "uv": [ 0, 1, 16, 16 ], "texture": "#side", "cullface": "east" }
|
||||
}
|
||||
}
|
||||
]
|
||||
}
|
|
@ -0,0 +1,3 @@
|
|||
{
|
||||
"parent": "betterend:block/end_moss_path"
|
||||
}
|
|
@ -0,0 +1,3 @@
|
|||
{
|
||||
"parent": "betterend:block/end_mycelium_path"
|
||||
}
|
Binary file not shown.
After Width: | Height: | Size: 2.3 KiB |
Binary file not shown.
After Width: | Height: | Size: 2 KiB |
Loading…
Add table
Add a link
Reference in a new issue