Umbralith (WIP)

This commit is contained in:
paulevsGitch 2021-07-19 12:48:31 +03:00
parent 55f7a858a6
commit 957c785c7d
18 changed files with 47 additions and 2 deletions

View file

@ -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());

View file

@ -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 }
]
}
}

View file

@ -0,0 +1,6 @@
{
"parent": "block/cube_all",
"textures": {
"all": "betterend:block/umbralith_1"
}
}

View file

@ -0,0 +1,6 @@
{
"parent": "block/cube_all",
"textures": {
"all": "betterend:block/umbralith_2"
}
}

View file

@ -0,0 +1,6 @@
{
"parent": "block/cube_all",
"textures": {
"all": "betterend:block/umbralith_3"
}
}

View file

@ -0,0 +1,6 @@
{
"parent": "block/cube_all",
"textures": {
"all": "betterend:block/umbralith_4"
}
}

View file

@ -0,0 +1,6 @@
{
"parent": "block/cube_all",
"textures": {
"all": "betterend:block/umbralith_5"
}
}

View file

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

Binary file not shown.

After

Width:  |  Height:  |  Size: 265 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 617 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 308 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 170 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 307 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 171 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 312 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 199 B

View file

@ -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",