Bulb moss
This commit is contained in:
parent
2bf4e01e9c
commit
3647125bad
15 changed files with 286 additions and 5 deletions
|
@ -220,6 +220,7 @@ public class EndBlocks {
|
|||
public static final Block CYAN_MOSS = registerBlock("cyan_moss", new BlockWallPlant());
|
||||
public static final Block TWISTED_MOSS = registerBlock("twisted_moss", new BlockWallPlant());
|
||||
public static final Block TUBE_WORM = registerBlock("tube_worm", new BlockUnderwaterWallPlant());
|
||||
public static final Block BULB_MOSS = registerBlock("bulb_moss", new BlockWallPlant(12));
|
||||
|
||||
// Crops //
|
||||
public static final Block SHADOW_BERRY = registerBlock("shadow_berry", new BlockShadowBerry());
|
||||
|
|
|
@ -90,6 +90,8 @@ public class EndFeatures {
|
|||
public static final EndFeature CYAN_MOSS_WOOD = new EndFeature("cyan_moss_wood", new WallPlantOnLogFeature(EndBlocks.CYAN_MOSS, 4), 25);
|
||||
public static final EndFeature TWISTED_MOSS = new EndFeature("twisted_moss", new WallPlantFeature(EndBlocks.TWISTED_MOSS, 6), 15);
|
||||
public static final EndFeature TWISTED_MOSS_WOOD = new EndFeature("twisted_moss_wood", new WallPlantOnLogFeature(EndBlocks.TWISTED_MOSS, 6), 25);
|
||||
public static final EndFeature BULB_MOSS = new EndFeature("bulb_moss", new WallPlantFeature(EndBlocks.BULB_MOSS, 6), 1);
|
||||
public static final EndFeature BULB_MOSS_WOOD = new EndFeature("bulb_moss_wood", new WallPlantOnLogFeature(EndBlocks.BULB_MOSS, 6), 15);
|
||||
|
||||
// Water //
|
||||
public static final EndFeature BUBBLE_CORAL = new EndFeature("bubble_coral", new UnderwaterPlantFeature(EndBlocks.BUBBLE_CORAL, 6), 10);
|
||||
|
|
|
@ -23,6 +23,8 @@ public class BiomeAmberLand extends EndBiome {
|
|||
.addFeature(EndFeatures.LANCELEAF)
|
||||
.addFeature(EndFeatures.GLOW_PILLAR)
|
||||
.addFeature(EndFeatures.AMBER_GRASS)
|
||||
.addFeature(EndFeatures.BULB_MOSS)
|
||||
.addFeature(EndFeatures.BULB_MOSS_WOOD)
|
||||
.addFeature(EndFeatures.CHARNIA_ORANGE)
|
||||
.addFeature(EndFeatures.CHARNIA_RED)
|
||||
.addStructureFeature(ConfiguredStructureFeatures.END_CITY)
|
||||
|
|
|
@ -0,0 +1,24 @@
|
|||
{
|
||||
"variants": {
|
||||
"facing=north": [
|
||||
{ "model": "betterend:block/bulb_moss_01", "y": 180 },
|
||||
{ "model": "betterend:block/bulb_moss_02", "y": 180 },
|
||||
{ "model": "betterend:block/bulb_moss_03", "y": 180 }
|
||||
],
|
||||
"facing=south": [
|
||||
{ "model": "betterend:block/bulb_moss_01" },
|
||||
{ "model": "betterend:block/bulb_moss_02" },
|
||||
{ "model": "betterend:block/bulb_moss_03" }
|
||||
],
|
||||
"facing=east": [
|
||||
{ "model": "betterend:block/bulb_moss_01", "y": 270 },
|
||||
{ "model": "betterend:block/bulb_moss_02", "y": 270 },
|
||||
{ "model": "betterend:block/bulb_moss_03", "y": 270 }
|
||||
],
|
||||
"facing=west": [
|
||||
{ "model": "betterend:block/bulb_moss_01", "y": 90 },
|
||||
{ "model": "betterend:block/bulb_moss_02", "y": 90 },
|
||||
{ "model": "betterend:block/bulb_moss_03", "y": 90 }
|
||||
]
|
||||
}
|
||||
}
|
|
@ -468,5 +468,7 @@
|
|||
"block.betterend.ancient_emerald_ice": "Ancient Emerald Ice",
|
||||
"block.betterend.dense_emerald_ice": "Dense Emerald Ice",
|
||||
"block.betterend.dense_snow": "Dense Snow",
|
||||
"block.betterend.emerald_ice": "Emerald Ice"
|
||||
"block.betterend.emerald_ice": "Emerald Ice",
|
||||
|
||||
"block.betterend.bulb_moss": "Bulb Moss"
|
||||
}
|
|
@ -470,5 +470,7 @@
|
|||
"block.betterend.ancient_emerald_ice": "Древний изумрудный лёд",
|
||||
"block.betterend.dense_emerald_ice": "Плотный изумрудный лёд",
|
||||
"block.betterend.dense_snow": "Плотный снег",
|
||||
"block.betterend.emerald_ice": "Изумрудный лёд"
|
||||
"block.betterend.emerald_ice": "Изумрудный лёд",
|
||||
|
||||
"block.betterend.bulb_moss": "Луковичный мох"
|
||||
}
|
|
@ -1,3 +0,0 @@
|
|||
{
|
||||
"defaultMaterial": "betterend:noao"
|
||||
}
|
|
@ -0,0 +1,14 @@
|
|||
{
|
||||
"defaultMap": {
|
||||
"spriteMap": [
|
||||
{
|
||||
"sprite": "betterend:block/bulb_moss_bulbs",
|
||||
"material": "betterend:waving_wall_glow_inc"
|
||||
},
|
||||
{
|
||||
"sprite": "betterend:block/bulb_moss_leaves",
|
||||
"material": "betterend:waving_wall"
|
||||
}
|
||||
]
|
||||
}
|
||||
}
|
|
@ -0,0 +1,3 @@
|
|||
{
|
||||
"material": "canvas:emissive_no_diffuse"
|
||||
}
|
|
@ -0,0 +1,98 @@
|
|||
{
|
||||
"__comment": "Designed by Paulevs with Cubik Studio - https://cubik.studio",
|
||||
"textures": {
|
||||
"texture": "betterend:block/bulb_moss_leaves",
|
||||
"texture2": "betterend:block/bulb_moss_bulbs",
|
||||
"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": "#texture2" },
|
||||
"up": { "uv": [ 0, 0, 16, 16 ], "texture": "#texture2", "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": "#texture2" },
|
||||
"south": { "uv": [ 0, 0, 16, 16 ], "texture": "#texture2", "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": "#texture2" },
|
||||
"up": { "uv": [ 0, 0, 16, 16 ], "texture": "#texture2", "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": "#texture2" },
|
||||
"south": { "uv": [ 0, 0, 16, 16 ], "texture": "#texture2", "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": "#texture2" },
|
||||
"up": { "uv": [ 0, 0, 16, 16 ], "texture": "#texture2", "rotation": 180 }
|
||||
}
|
||||
}
|
||||
]
|
||||
}
|
|
@ -0,0 +1,65 @@
|
|||
{
|
||||
"__comment": "Designed by Paulevs with Cubik Studio - https://cubik.studio",
|
||||
"textures": {
|
||||
"texture": "betterend:block/bulb_moss_leaves",
|
||||
"texture2": "betterend:block/bulb_moss_bulbs",
|
||||
"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": "#texture2" },
|
||||
"south": { "uv": [ 0, 0, 16, 16 ], "texture": "#texture2", "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": "#texture2" },
|
||||
"south": { "uv": [ 0, 0, 16, 16 ], "texture": "#texture2", "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": "#texture2" },
|
||||
"south": { "uv": [ 0, 0, 16, 16 ], "texture": "#texture2", "rotation": 180 }
|
||||
}
|
||||
}
|
||||
]
|
||||
}
|
|
@ -0,0 +1,65 @@
|
|||
{
|
||||
"__comment": "Designed by Paulevs with Cubik Studio - https://cubik.studio",
|
||||
"textures": {
|
||||
"texture": "betterend:block/bulb_moss_leaves",
|
||||
"texture2": "betterend:block/bulb_moss_bulbs",
|
||||
"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": "#texture2" },
|
||||
"south": { "uv": [ 0, 0, 16, 16 ], "texture": "#texture2", "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": "#texture2" },
|
||||
"south": { "uv": [ 0, 0, 16, 16 ], "texture": "#texture2", "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": "#texture2" },
|
||||
"south": { "uv": [ 0, 0, 16, 16 ], "texture": "#texture2", "rotation": 180 }
|
||||
}
|
||||
}
|
||||
]
|
||||
}
|
|
@ -0,0 +1,6 @@
|
|||
{
|
||||
"parent": "minecraft:item/generated",
|
||||
"textures": {
|
||||
"layer0": "betterend:block/bulb_moss_leaves"
|
||||
}
|
||||
}
|
Binary file not shown.
After Width: | Height: | Size: 2.1 KiB |
Binary file not shown.
After Width: | Height: | Size: 1.9 KiB |
Loading…
Add table
Add a link
Reference in a new issue