Ivis vine & moss
This commit is contained in:
parent
9231618094
commit
a5ba8a3985
20 changed files with 399 additions and 0 deletions
13
src/main/java/ru/betterend/integration/byg/BYGBlocks.java
Normal file
13
src/main/java/ru/betterend/integration/byg/BYGBlocks.java
Normal file
|
@ -0,0 +1,13 @@
|
||||||
|
package ru.betterend.integration.byg;
|
||||||
|
|
||||||
|
import net.minecraft.block.Block;
|
||||||
|
import ru.betterend.blocks.basis.BlockVine;
|
||||||
|
import ru.betterend.blocks.basis.BlockWallPlant;
|
||||||
|
import ru.betterend.registry.EndBlocks;
|
||||||
|
|
||||||
|
public class BYGBlocks {
|
||||||
|
public static final Block IVIS_MOSS = EndBlocks.registerBlock("ivis_moss", new BlockWallPlant());
|
||||||
|
public static final Block IVIS_VINE = EndBlocks.registerBlock("ivis_vine", new BlockVine());
|
||||||
|
|
||||||
|
public static void register() {}
|
||||||
|
}
|
|
@ -3,10 +3,16 @@ package ru.betterend.integration.byg;
|
||||||
import ru.betterend.integration.Integrations;
|
import ru.betterend.integration.Integrations;
|
||||||
import ru.betterend.world.features.EndFeature;
|
import ru.betterend.world.features.EndFeature;
|
||||||
import ru.betterend.world.features.SinglePlantFeature;
|
import ru.betterend.world.features.SinglePlantFeature;
|
||||||
|
import ru.betterend.world.features.VineFeature;
|
||||||
|
import ru.betterend.world.features.WallPlantFeature;
|
||||||
|
import ru.betterend.world.features.WallPlantOnLogFeature;
|
||||||
|
|
||||||
public class BYGFeatures {
|
public class BYGFeatures {
|
||||||
public static final EndFeature OLD_BULBIS_TREE = new EndFeature("old_bulbis_tree", new OldBulbisTreeFeature(), 1);
|
public static final EndFeature OLD_BULBIS_TREE = new EndFeature("old_bulbis_tree", new OldBulbisTreeFeature(), 1);
|
||||||
public static final EndFeature IVIS_SPROUT = new EndFeature("ivis_sprout", new SinglePlantFeature(Integrations.BYG.getBlock("ivis_sprout"), 6), 9);
|
public static final EndFeature IVIS_SPROUT = new EndFeature("ivis_sprout", new SinglePlantFeature(Integrations.BYG.getBlock("ivis_sprout"), 6), 9);
|
||||||
|
public static final EndFeature IVIS_VINE = new EndFeature("ivis_vine", new VineFeature(BYGBlocks.IVIS_VINE, 24), 5);
|
||||||
|
public static final EndFeature IVIS_MOSS = new EndFeature("ivis_moss", new WallPlantFeature(BYGBlocks.IVIS_MOSS, 6), 1);
|
||||||
|
public static final EndFeature IVIS_MOSS_WOOD = new EndFeature("ivis_moss_wood", new WallPlantOnLogFeature(BYGBlocks.IVIS_MOSS, 6), 15);
|
||||||
|
|
||||||
public static void register() {}
|
public static void register() {}
|
||||||
}
|
}
|
||||||
|
|
|
@ -13,6 +13,7 @@ public class BYGIntegration extends ModIntegration {
|
||||||
@Override
|
@Override
|
||||||
public void register() {
|
public void register() {
|
||||||
TagHelper.addTags(Integrations.BYG.getBlock("ivis_phylium"), EndTags.END_GROUND, EndTags.GEN_TERRAIN);
|
TagHelper.addTags(Integrations.BYG.getBlock("ivis_phylium"), EndTags.END_GROUND, EndTags.GEN_TERRAIN);
|
||||||
|
BYGBlocks.register();
|
||||||
BYGFeatures.register();
|
BYGFeatures.register();
|
||||||
BYGBiomes.register();
|
BYGBiomes.register();
|
||||||
}
|
}
|
||||||
|
|
|
@ -2,6 +2,7 @@ package ru.betterend.integration.byg;
|
||||||
|
|
||||||
import net.minecraft.particle.ParticleTypes;
|
import net.minecraft.particle.ParticleTypes;
|
||||||
import ru.betterend.integration.Integrations;
|
import ru.betterend.integration.Integrations;
|
||||||
|
import ru.betterend.registry.EndFeatures;
|
||||||
import ru.betterend.world.biome.BiomeDefinition;
|
import ru.betterend.world.biome.BiomeDefinition;
|
||||||
import ru.betterend.world.biome.EndBiome;
|
import ru.betterend.world.biome.EndBiome;
|
||||||
|
|
||||||
|
@ -14,6 +15,10 @@ public class OldBulbisGardens extends EndBiome {
|
||||||
.setParticles(ParticleTypes.REVERSE_PORTAL, 0.002F)
|
.setParticles(ParticleTypes.REVERSE_PORTAL, 0.002F)
|
||||||
.setSurface(Integrations.BYG.getBlock("ivis_phylium"))
|
.setSurface(Integrations.BYG.getBlock("ivis_phylium"))
|
||||||
.addFeature(BYGFeatures.OLD_BULBIS_TREE)
|
.addFeature(BYGFeatures.OLD_BULBIS_TREE)
|
||||||
|
.addFeature(EndFeatures.PURPLE_POLYPORE)
|
||||||
|
.addFeature(BYGFeatures.IVIS_MOSS_WOOD)
|
||||||
|
.addFeature(BYGFeatures.IVIS_MOSS)
|
||||||
|
.addFeature(BYGFeatures.IVIS_VINE)
|
||||||
.addFeature(BYGFeatures.IVIS_SPROUT));
|
.addFeature(BYGFeatures.IVIS_SPROUT));
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -0,0 +1,24 @@
|
||||||
|
{
|
||||||
|
"variants": {
|
||||||
|
"facing=north": [
|
||||||
|
{ "model": "betterend:block/ivis_moss_01", "y": 180 },
|
||||||
|
{ "model": "betterend:block/ivis_moss_02", "y": 180 },
|
||||||
|
{ "model": "betterend:block/ivis_moss_03", "y": 180 }
|
||||||
|
],
|
||||||
|
"facing=south": [
|
||||||
|
{ "model": "betterend:block/ivis_moss_01" },
|
||||||
|
{ "model": "betterend:block/ivis_moss_02" },
|
||||||
|
{ "model": "betterend:block/ivis_moss_03" }
|
||||||
|
],
|
||||||
|
"facing=east": [
|
||||||
|
{ "model": "betterend:block/ivis_moss_01", "y": 270 },
|
||||||
|
{ "model": "betterend:block/ivis_moss_02", "y": 270 },
|
||||||
|
{ "model": "betterend:block/ivis_moss_03", "y": 270 }
|
||||||
|
],
|
||||||
|
"facing=west": [
|
||||||
|
{ "model": "betterend:block/ivis_moss_01", "y": 90 },
|
||||||
|
{ "model": "betterend:block/ivis_moss_02", "y": 90 },
|
||||||
|
{ "model": "betterend:block/ivis_moss_03", "y": 90 }
|
||||||
|
]
|
||||||
|
}
|
||||||
|
}
|
|
@ -0,0 +1,13 @@
|
||||||
|
{
|
||||||
|
"variants": {
|
||||||
|
"shape=top": { "model": "betterend:block/ivis_vine_top" },
|
||||||
|
"shape=middle": [
|
||||||
|
{ "model": "betterend:block/ivis_vine_middle_1" },
|
||||||
|
{ "model": "betterend:block/ivis_vine_middle_2" }
|
||||||
|
],
|
||||||
|
"shape=bottom": [
|
||||||
|
{ "model": "betterend:block/ivis_vine_bottom_1" },
|
||||||
|
{ "model": "betterend:block/ivis_vine_bottom_2" }
|
||||||
|
]
|
||||||
|
}
|
||||||
|
}
|
|
@ -0,0 +1,97 @@
|
||||||
|
{
|
||||||
|
"__comment": "Designed by Paulevs with Cubik Studio - https://cubik.studio",
|
||||||
|
"textures": {
|
||||||
|
"texture": "betterend:block/ivis_moss",
|
||||||
|
"particle": "#texture"
|
||||||
|
},
|
||||||
|
"elements": [
|
||||||
|
{
|
||||||
|
"__comment": "PlaneY1",
|
||||||
|
"from": [ 3, 15, 0 ],
|
||||||
|
"to": [ 19, 15.001, 16 ],
|
||||||
|
"rotation": { "origin": [ 3, 15, 0 ], "axis": "x", "angle": 45 },
|
||||||
|
"shade": false,
|
||||||
|
"faces": {
|
||||||
|
"down": { "uv": [ 16, 0, 0, 16 ], "texture": "#texture" },
|
||||||
|
"up": { "uv": [ 0, 0, 16, 16 ], "texture": "#texture", "rotation": 180 }
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"__comment": "PlaneY1",
|
||||||
|
"from": [ 1, 11, 0 ],
|
||||||
|
"to": [ 17, 11.001, 16 ],
|
||||||
|
"rotation": { "origin": [ 1, 11, 0 ], "axis": "x", "angle": 45 },
|
||||||
|
"shade": false,
|
||||||
|
"faces": {
|
||||||
|
"down": { "uv": [ 16, 0, 0, 16 ], "texture": "#texture" },
|
||||||
|
"up": { "uv": [ 0, 0, 16, 16 ], "texture": "#texture", "rotation": 180 }
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"__comment": "PlaneY1",
|
||||||
|
"from": [ 1, -10, 0 ],
|
||||||
|
"to": [ 17, 6, 0.001 ],
|
||||||
|
"rotation": { "origin": [ 1, 6, 0 ], "axis": "x", "angle": -45 },
|
||||||
|
"shade": false,
|
||||||
|
"faces": {
|
||||||
|
"north": { "uv": [ 0, 16, 16, 0 ], "texture": "#texture" },
|
||||||
|
"south": { "uv": [ 0, 0, 16, 16 ], "texture": "#texture", "rotation": 180 }
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"__comment": "PlaneY1",
|
||||||
|
"from": [ -3, 13.5, 0 ],
|
||||||
|
"to": [ 13, 13.501, 16 ],
|
||||||
|
"rotation": { "origin": [ -3, 13.5, 0 ], "axis": "x", "angle": 45 },
|
||||||
|
"shade": false,
|
||||||
|
"faces": {
|
||||||
|
"down": { "uv": [ 16, 0, 0, 16 ], "texture": "#texture" },
|
||||||
|
"up": { "uv": [ 0, 0, 16, 16 ], "texture": "#texture", "rotation": 180 }
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"__comment": "PlaneY1",
|
||||||
|
"from": [ 1, 1, 0 ],
|
||||||
|
"to": [ 17, 1.001, 16 ],
|
||||||
|
"rotation": { "origin": [ 1, 1, 0 ], "axis": "x", "angle": 22.5 },
|
||||||
|
"shade": false,
|
||||||
|
"faces": {
|
||||||
|
"down": { "uv": [ 16, 0, 0, 16 ], "texture": "#texture" },
|
||||||
|
"up": { "uv": [ 0, 0, 16, 16 ], "texture": "#texture", "rotation": 180 }
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"__comment": "PlaneY1",
|
||||||
|
"from": [ -1, -9, 0 ],
|
||||||
|
"to": [ 15, 7, 0.001 ],
|
||||||
|
"rotation": { "origin": [ -1, 7, 0 ], "axis": "x", "angle": -45 },
|
||||||
|
"shade": false,
|
||||||
|
"faces": {
|
||||||
|
"north": { "uv": [ 0, 16, 16, 0 ], "texture": "#texture" },
|
||||||
|
"south": { "uv": [ 0, 0, 16, 16 ], "texture": "#texture", "rotation": 180 }
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"__comment": "PlaneY1",
|
||||||
|
"from": [ -1.5, 16, 0 ],
|
||||||
|
"to": [ 14.5, 16.001, 16 ],
|
||||||
|
"rotation": { "origin": [ -1.5, 16, 0 ], "axis": "x", "angle": 45 },
|
||||||
|
"shade": false,
|
||||||
|
"faces": {
|
||||||
|
"down": { "uv": [ 16, 0, 0, 16 ], "texture": "#texture" },
|
||||||
|
"up": { "uv": [ 0, 0, 16, 16 ], "texture": "#texture", "rotation": 180 }
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"__comment": "PlaneY1",
|
||||||
|
"from": [ -2, 0.5, 0 ],
|
||||||
|
"to": [ 14, 0.501, 16 ],
|
||||||
|
"rotation": { "origin": [ -2, 0.5, 0 ], "axis": "x", "angle": 22.5 },
|
||||||
|
"shade": false,
|
||||||
|
"faces": {
|
||||||
|
"down": { "uv": [ 16, 0, 0, 16 ], "texture": "#texture" },
|
||||||
|
"up": { "uv": [ 0, 0, 16, 16 ], "texture": "#texture", "rotation": 180 }
|
||||||
|
}
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
|
@ -0,0 +1,64 @@
|
||||||
|
{
|
||||||
|
"__comment": "Designed by Paulevs with Cubik Studio - https://cubik.studio",
|
||||||
|
"textures": {
|
||||||
|
"texture": "betterend:block/ivis_moss",
|
||||||
|
"particle": "#texture"
|
||||||
|
},
|
||||||
|
"elements": [
|
||||||
|
{
|
||||||
|
"__comment": "PlaneY1",
|
||||||
|
"from": [ 3, 15, 0 ],
|
||||||
|
"to": [ 19, 15.001, 16 ],
|
||||||
|
"rotation": { "origin": [ 3, 15, 0 ], "axis": "x", "angle": 45 },
|
||||||
|
"shade": false,
|
||||||
|
"faces": {
|
||||||
|
"down": { "uv": [ 16, 0, 0, 16 ], "texture": "#texture" },
|
||||||
|
"up": { "uv": [ 0, 0, 16, 16 ], "texture": "#texture", "rotation": 180 }
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"__comment": "PlaneY1",
|
||||||
|
"from": [ 0, -15, 0 ],
|
||||||
|
"to": [ 16, 1, 0.001 ],
|
||||||
|
"rotation": { "origin": [ 0, 1, 0 ], "axis": "x", "angle": -22.5 },
|
||||||
|
"shade": false,
|
||||||
|
"faces": {
|
||||||
|
"north": { "uv": [ 0, 16, 16, 0 ], "texture": "#texture" },
|
||||||
|
"south": { "uv": [ 0, 0, 16, 16 ], "texture": "#texture", "rotation": 180 }
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"__comment": "PlaneY1",
|
||||||
|
"from": [ -2, -12, 0 ],
|
||||||
|
"to": [ 14, 4, 0.001 ],
|
||||||
|
"rotation": { "origin": [ -2, 4, 0 ], "axis": "x", "angle": -45 },
|
||||||
|
"shade": false,
|
||||||
|
"faces": {
|
||||||
|
"north": { "uv": [ 0, 16, 16, 0 ], "texture": "#texture" },
|
||||||
|
"south": { "uv": [ 0, 0, 16, 16 ], "texture": "#texture", "rotation": 180 }
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"__comment": "PlaneY1",
|
||||||
|
"from": [ 0, -9, 0 ],
|
||||||
|
"to": [ 16, 7, 0.001 ],
|
||||||
|
"rotation": { "origin": [ 0, 7, 0 ], "axis": "x", "angle": -45 },
|
||||||
|
"shade": false,
|
||||||
|
"faces": {
|
||||||
|
"north": { "uv": [ 0, 16, 16, 0 ], "texture": "#texture" },
|
||||||
|
"south": { "uv": [ 0, 0, 16, 16 ], "texture": "#texture", "rotation": 180 }
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"__comment": "PlaneY1",
|
||||||
|
"from": [ 0, -3, 0 ],
|
||||||
|
"to": [ 16, 13, 0.001 ],
|
||||||
|
"rotation": { "origin": [ 0, 13, 0 ], "axis": "x", "angle": -22.5 },
|
||||||
|
"shade": false,
|
||||||
|
"faces": {
|
||||||
|
"north": { "uv": [ 0, 16, 16, 0 ], "texture": "#texture" },
|
||||||
|
"south": { "uv": [ 0, 0, 16, 16 ], "texture": "#texture", "rotation": 180 }
|
||||||
|
}
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
|
@ -0,0 +1,64 @@
|
||||||
|
{
|
||||||
|
"__comment": "Designed by Paulevs with Cubik Studio - https://cubik.studio",
|
||||||
|
"textures": {
|
||||||
|
"texture": "betterend:block/ivis_moss",
|
||||||
|
"particle": "#texture"
|
||||||
|
},
|
||||||
|
"elements": [
|
||||||
|
{
|
||||||
|
"__comment": "PlaneY1",
|
||||||
|
"from": [ -1, 0, 0 ],
|
||||||
|
"to": [ 15, 16, 0.001 ],
|
||||||
|
"rotation": { "origin": [ -1, 16, 0 ], "axis": "x", "angle": -22.5 },
|
||||||
|
"shade": false,
|
||||||
|
"faces": {
|
||||||
|
"north": { "uv": [ 0, 16, 16, 0 ], "texture": "#texture" },
|
||||||
|
"south": { "uv": [ 0, 0, 16, 16 ], "texture": "#texture", "rotation": 180 }
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"__comment": "PlaneY1",
|
||||||
|
"from": [ 2, -3, 0 ],
|
||||||
|
"to": [ 18, 13, 0.001 ],
|
||||||
|
"rotation": { "origin": [ 2, 13, 0 ], "axis": "x", "angle": -22.5 },
|
||||||
|
"shade": false,
|
||||||
|
"faces": {
|
||||||
|
"north": { "uv": [ 0, 16, 16, 0 ], "texture": "#texture" },
|
||||||
|
"south": { "uv": [ 0, 0, 16, 16 ], "texture": "#texture", "rotation": 180 }
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"__comment": "PlaneY1",
|
||||||
|
"from": [ 0, -8, 0 ],
|
||||||
|
"to": [ 16, 8, 0.001 ],
|
||||||
|
"rotation": { "origin": [ 0, 8, 0 ], "axis": "x", "angle": -22.5 },
|
||||||
|
"shade": false,
|
||||||
|
"faces": {
|
||||||
|
"north": { "uv": [ 0, 16, 16, 0 ], "texture": "#texture" },
|
||||||
|
"south": { "uv": [ 0, 0, 16, 16 ], "texture": "#texture", "rotation": 180 }
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"__comment": "PlaneY1",
|
||||||
|
"from": [ -3, -12, 0 ],
|
||||||
|
"to": [ 13, 4, 0.001 ],
|
||||||
|
"rotation": { "origin": [ -3, 4, 0 ], "axis": "x", "angle": -22.5 },
|
||||||
|
"shade": false,
|
||||||
|
"faces": {
|
||||||
|
"north": { "uv": [ 0, 16, 16, 0 ], "texture": "#texture" },
|
||||||
|
"south": { "uv": [ 0, 0, 16, 16 ], "texture": "#texture", "rotation": 180 }
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"__comment": "PlaneY1",
|
||||||
|
"from": [ 3, -15, 0 ],
|
||||||
|
"to": [ 19, 1, 0.001 ],
|
||||||
|
"rotation": { "origin": [ 3, 1, 0 ], "axis": "x", "angle": -22.5 },
|
||||||
|
"shade": false,
|
||||||
|
"faces": {
|
||||||
|
"north": { "uv": [ 0, 16, 16, 0 ], "texture": "#texture" },
|
||||||
|
"south": { "uv": [ 0, 0, 16, 16 ], "texture": "#texture", "rotation": 180 }
|
||||||
|
}
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
|
@ -0,0 +1,6 @@
|
||||||
|
{
|
||||||
|
"parent": "betterend:block/cross_no_distortion",
|
||||||
|
"textures": {
|
||||||
|
"texture": "betterend:block/ivis_vine_bottom"
|
||||||
|
}
|
||||||
|
}
|
|
@ -0,0 +1,6 @@
|
||||||
|
{
|
||||||
|
"parent": "betterend:block/cross_no_distortion_inverted",
|
||||||
|
"textures": {
|
||||||
|
"texture": "betterend:block/ivis_vine_bottom"
|
||||||
|
}
|
||||||
|
}
|
|
@ -0,0 +1,6 @@
|
||||||
|
{
|
||||||
|
"parent": "betterend:block/cross_no_distortion",
|
||||||
|
"textures": {
|
||||||
|
"texture": "betterend:block/ivis_vine"
|
||||||
|
}
|
||||||
|
}
|
|
@ -0,0 +1,6 @@
|
||||||
|
{
|
||||||
|
"parent": "betterend:block/cross_no_distortion_inverted",
|
||||||
|
"textures": {
|
||||||
|
"texture": "betterend:block/ivis_vine"
|
||||||
|
}
|
||||||
|
}
|
|
@ -0,0 +1,76 @@
|
||||||
|
{
|
||||||
|
"__comment": "Designed by Paulevs with Cubik Studio - https://cubik.studio",
|
||||||
|
"textures": {
|
||||||
|
"particle": "betterend:block/ivis_vine",
|
||||||
|
"texture": "betterend:block/ivis_vine",
|
||||||
|
"roots": "betterend:block/ivis_vine_roots"
|
||||||
|
},
|
||||||
|
"elements": [
|
||||||
|
{
|
||||||
|
"__comment": "PlaneX1",
|
||||||
|
"from": [ 2.375, 0, 2.25 ],
|
||||||
|
"to": [ 2.376, 16, 18.25 ],
|
||||||
|
"rotation": { "origin": [ 2.375, 0, 2.25 ], "axis": "y", "angle": 45 },
|
||||||
|
"shade": false,
|
||||||
|
"faces": {
|
||||||
|
"west": { "uv": [ 0, 0, 16, 16 ], "texture": "#texture" },
|
||||||
|
"east": { "uv": [ 0, 0, 16, 16 ], "texture": "#texture" }
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"__comment": "PlaneX1",
|
||||||
|
"from": [ 13.75, 0, 2.25 ],
|
||||||
|
"to": [ 13.751, 16, 18.25 ],
|
||||||
|
"rotation": { "origin": [ 13.75, 0, 2.25 ], "axis": "y", "angle": -45 },
|
||||||
|
"shade": false,
|
||||||
|
"faces": {
|
||||||
|
"west": { "uv": [ 0, 0, 16, 16 ], "texture": "#texture" },
|
||||||
|
"east": { "uv": [ 0, 0, 16, 16 ], "texture": "#texture" }
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"__comment": "PlaneX4",
|
||||||
|
"from": [ 5, 0, 0.5 ],
|
||||||
|
"to": [ 5.001, 16, 16.5 ],
|
||||||
|
"rotation": { "origin": [ 5, 0, 0.5 ], "axis": "y", "angle": 22.5 },
|
||||||
|
"shade": false,
|
||||||
|
"faces": {
|
||||||
|
"west": { "uv": [ 0, 16, 16, 0 ], "texture": "#roots" },
|
||||||
|
"east": { "uv": [ 0, 16, 16, 0 ], "texture": "#roots" }
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"__comment": "PlaneZ5",
|
||||||
|
"from": [ 0.5, 0, 11 ],
|
||||||
|
"to": [ 16.5, 16, 11.001 ],
|
||||||
|
"rotation": { "origin": [ 0.5, 0, 11 ], "axis": "y", "angle": 22.5 },
|
||||||
|
"shade": false,
|
||||||
|
"faces": {
|
||||||
|
"north": { "uv": [ 0, 16, 16, 0 ], "texture": "#roots" },
|
||||||
|
"south": { "uv": [ 0, 16, 16, 0 ], "texture": "#roots" }
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"__comment": "PlaneX4",
|
||||||
|
"from": [ 11, 0, 0.5 ],
|
||||||
|
"to": [ 11.001, 16, 16.5 ],
|
||||||
|
"rotation": { "origin": [ 11, 0, 0.5 ], "axis": "y", "angle": -22.5 },
|
||||||
|
"shade": false,
|
||||||
|
"faces": {
|
||||||
|
"west": { "uv": [ 0, 16, 16, 0 ], "texture": "#roots" },
|
||||||
|
"east": { "uv": [ 0, 16, 16, 0 ], "texture": "#roots" }
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"__comment": "PlaneZ5",
|
||||||
|
"from": [ 0.5, 0, 5 ],
|
||||||
|
"to": [ 16.5, 16, 5.001 ],
|
||||||
|
"rotation": { "origin": [ 0.5, 0, 5 ], "axis": "y", "angle": -22.5 },
|
||||||
|
"shade": false,
|
||||||
|
"faces": {
|
||||||
|
"north": { "uv": [ 0, 16, 16, 0 ], "texture": "#roots" },
|
||||||
|
"south": { "uv": [ 0, 16, 16, 0 ], "texture": "#roots" }
|
||||||
|
}
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
|
@ -0,0 +1,6 @@
|
||||||
|
{
|
||||||
|
"parent": "item/generated",
|
||||||
|
"textures": {
|
||||||
|
"layer0": "betterend:block/ivis_moss"
|
||||||
|
}
|
||||||
|
}
|
|
@ -0,0 +1,6 @@
|
||||||
|
{
|
||||||
|
"parent": "item/generated",
|
||||||
|
"textures": {
|
||||||
|
"layer0": "betterend:block/ivis_vine_bottom"
|
||||||
|
}
|
||||||
|
}
|
BIN
src/main/resources/assets/betterend/textures/block/ivis_moss.png
Normal file
BIN
src/main/resources/assets/betterend/textures/block/ivis_moss.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 1.6 KiB |
BIN
src/main/resources/assets/betterend/textures/block/ivis_vine.png
Normal file
BIN
src/main/resources/assets/betterend/textures/block/ivis_vine.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 1.7 KiB |
Binary file not shown.
After Width: | Height: | Size: 2 KiB |
Binary file not shown.
After Width: | Height: | Size: 2 KiB |
Loading…
Add table
Add a link
Reference in a new issue