Umbralith (WIP)
|
@ -180,6 +180,7 @@ public class EndBlocks extends BlocksRegistry {
|
|||
public static final StoneMaterial VIRID_JADESTONE = new StoneMaterial("virid_jadestone", MaterialColor.COLOR_GREEN);
|
||||
public static final StoneMaterial AZURE_JADESTONE = new StoneMaterial("azure_jadestone", MaterialColor.COLOR_LIGHT_BLUE);
|
||||
public static final StoneMaterial SANDY_JADESTONE = new StoneMaterial("sandy_jadestone", MaterialColor.COLOR_YELLOW);
|
||||
public static final StoneMaterial UMBRALITH = new StoneMaterial("umbralith", MaterialColor.DEEPSLATE);
|
||||
public static final Block BRIMSTONE = registerBlock("brimstone", new BrimstoneBlock());
|
||||
public static final Block SULPHUR_CRYSTAL = registerBlock("sulphur_crystal", new SulphurCrystalBlock());
|
||||
public static final Block MISSING_TILE = registerBlock("missing_tile", new MissingTileBlock());
|
||||
|
|
|
@ -0,0 +1,11 @@
|
|||
{
|
||||
"variants": {
|
||||
"": [
|
||||
{ "model": "betterend:block/umbralith_1", "weight": 50 },
|
||||
{ "model": "betterend:block/umbralith_2", "weight": 40 },
|
||||
{ "model": "betterend:block/umbralith_3", "weight": 3 },
|
||||
{ "model": "betterend:block/umbralith_4", "weight": 2 },
|
||||
{ "model": "betterend:block/umbralith_5", "weight": 1 }
|
||||
]
|
||||
}
|
||||
}
|
|
@ -0,0 +1,6 @@
|
|||
{
|
||||
"parent": "block/cube_all",
|
||||
"textures": {
|
||||
"all": "betterend:block/umbralith_1"
|
||||
}
|
||||
}
|
|
@ -0,0 +1,6 @@
|
|||
{
|
||||
"parent": "block/cube_all",
|
||||
"textures": {
|
||||
"all": "betterend:block/umbralith_2"
|
||||
}
|
||||
}
|
|
@ -0,0 +1,6 @@
|
|||
{
|
||||
"parent": "block/cube_all",
|
||||
"textures": {
|
||||
"all": "betterend:block/umbralith_3"
|
||||
}
|
||||
}
|
|
@ -0,0 +1,6 @@
|
|||
{
|
||||
"parent": "block/cube_all",
|
||||
"textures": {
|
||||
"all": "betterend:block/umbralith_4"
|
||||
}
|
||||
}
|
|
@ -0,0 +1,6 @@
|
|||
{
|
||||
"parent": "block/cube_all",
|
||||
"textures": {
|
||||
"all": "betterend:block/umbralith_5"
|
||||
}
|
||||
}
|
|
@ -0,0 +1,3 @@
|
|||
{
|
||||
"parent": "betterend:block/umbralith_1"
|
||||
}
|
After Width: | Height: | Size: 265 B |
After Width: | Height: | Size: 617 B |
After Width: | Height: | Size: 308 B |
After Width: | Height: | Size: 170 B |
After Width: | Height: | Size: 307 B |
After Width: | Height: | Size: 171 B |
After Width: | Height: | Size: 312 B |
After Width: | Height: | Size: 199 B |
|
@ -45,7 +45,7 @@
|
|||
"fabricloader": ">=0.11.6",
|
||||
"fabric": ">=0.36.0",
|
||||
"minecraft": ">=1.17",
|
||||
"bclib": ">=0.2.3"
|
||||
"bclib": ">=0.2.4"
|
||||
},
|
||||
"suggests": {
|
||||
"byg": ">=1.1.3",
|
||||
|
|