Lanceleaf, more moss variation, translations
53
src/main/java/ru/betterend/blocks/BlockLanceleaf.java
Normal file
|
@ -0,0 +1,53 @@
|
|||
package ru.betterend.blocks;
|
||||
|
||||
import net.minecraft.block.Block;
|
||||
import net.minecraft.block.BlockState;
|
||||
import net.minecraft.block.Blocks;
|
||||
import net.minecraft.state.StateManager;
|
||||
import net.minecraft.state.property.EnumProperty;
|
||||
import net.minecraft.state.property.IntProperty;
|
||||
import net.minecraft.util.math.BlockPos;
|
||||
import net.minecraft.util.math.Direction;
|
||||
import net.minecraft.world.WorldAccess;
|
||||
import net.minecraft.world.WorldView;
|
||||
import ru.betterend.blocks.BlockProperties.PentaShape;
|
||||
import ru.betterend.blocks.basis.BlockPlant;
|
||||
import ru.betterend.registry.EndBlocks;
|
||||
|
||||
public class BlockLanceleaf extends BlockPlant {
|
||||
public static final EnumProperty<PentaShape> SHAPE = BlockProperties.PENTA_SHAPE;
|
||||
public static final IntProperty ROTATION = BlockProperties.ROTATION;
|
||||
|
||||
public BlockLanceleaf() {
|
||||
super();
|
||||
}
|
||||
|
||||
@Override
|
||||
protected void appendProperties(StateManager.Builder<Block, BlockState> stateManager) {
|
||||
stateManager.add(SHAPE, ROTATION);
|
||||
}
|
||||
|
||||
@Override
|
||||
public boolean canPlaceAt(BlockState state, WorldView world, BlockPos pos) {
|
||||
PentaShape shape = state.get(SHAPE);
|
||||
if (shape == PentaShape.TOP) {
|
||||
return world.getBlockState(pos.down()).isOf(this);
|
||||
}
|
||||
else if (shape == PentaShape.BOTTOM) {
|
||||
return world.getBlockState(pos.down()).isOf(EndBlocks.AMBER_MOSS) && world.getBlockState(pos.up()).isOf(this);
|
||||
}
|
||||
else {
|
||||
return world.getBlockState(pos.down()).isOf(this) && world.getBlockState(pos.up()).isOf(this);
|
||||
}
|
||||
}
|
||||
|
||||
@Override
|
||||
public BlockState getStateForNeighborUpdate(BlockState state, Direction facing, BlockState neighborState, WorldAccess world, BlockPos pos, BlockPos neighborPos) {
|
||||
if (!canPlaceAt(state, world, pos)) {
|
||||
return Blocks.AIR.getDefaultState();
|
||||
}
|
||||
else {
|
||||
return state;
|
||||
}
|
||||
}
|
||||
}
|
40
src/main/java/ru/betterend/blocks/BlockLanceleafSeed.java
Normal file
|
@ -0,0 +1,40 @@
|
|||
package ru.betterend.blocks;
|
||||
|
||||
import java.util.Random;
|
||||
|
||||
import net.minecraft.block.BlockState;
|
||||
import net.minecraft.util.math.BlockPos;
|
||||
import net.minecraft.util.math.Direction;
|
||||
import net.minecraft.util.math.BlockPos.Mutable;
|
||||
import net.minecraft.world.StructureWorldAccess;
|
||||
import ru.betterend.blocks.BlockProperties.PentaShape;
|
||||
import ru.betterend.blocks.basis.BlockPlantWithAge;
|
||||
import ru.betterend.registry.EndBlocks;
|
||||
import ru.betterend.util.BlocksHelper;
|
||||
import ru.betterend.util.MHelper;
|
||||
|
||||
public class BlockLanceleafSeed extends BlockPlantWithAge {
|
||||
@Override
|
||||
public void growAdult(StructureWorldAccess world, Random random, BlockPos pos) {
|
||||
int height = MHelper.randRange(4, 6, random);
|
||||
int h = BlocksHelper.upRay(world, pos, height + 2);
|
||||
if (h < height + 1) {
|
||||
return;
|
||||
}
|
||||
int rotation = random.nextInt(4);
|
||||
Mutable mut = new Mutable().set(pos);
|
||||
BlockState plant = EndBlocks.LANCELEAF.getDefaultState().with(BlockProperties.ROTATION, rotation);
|
||||
BlocksHelper.setWithoutUpdate(world, mut, plant.with(BlockProperties.PENTA_SHAPE, PentaShape.BOTTOM));
|
||||
BlocksHelper.setWithoutUpdate(world, mut.move(Direction.UP), plant.with(BlockProperties.PENTA_SHAPE, PentaShape.PRE_BOTTOM));
|
||||
for (int i = 2; i < height - 2; i++) {
|
||||
BlocksHelper.setWithoutUpdate(world, mut.move(Direction.UP), plant.with(BlockProperties.PENTA_SHAPE, PentaShape.MIDDLE));
|
||||
}
|
||||
BlocksHelper.setWithoutUpdate(world, mut.move(Direction.UP), plant.with(BlockProperties.PENTA_SHAPE, PentaShape.PRE_TOP));
|
||||
BlocksHelper.setWithoutUpdate(world, mut.move(Direction.UP), plant.with(BlockProperties.PENTA_SHAPE, PentaShape.TOP));
|
||||
}
|
||||
|
||||
@Override
|
||||
protected boolean isTerrain(BlockState state) {
|
||||
return state.isOf(EndBlocks.AMBER_MOSS);
|
||||
}
|
||||
}
|
|
@ -2,15 +2,18 @@ package ru.betterend.blocks;
|
|||
|
||||
import net.minecraft.state.property.BooleanProperty;
|
||||
import net.minecraft.state.property.EnumProperty;
|
||||
import net.minecraft.state.property.IntProperty;
|
||||
import net.minecraft.util.StringIdentifiable;
|
||||
|
||||
public class BlockProperties {
|
||||
public static final EnumProperty<TripleShape> TRIPLE_SHAPE = EnumProperty.of("shape", TripleShape.class);
|
||||
public final static EnumProperty<PedestalState> PEDESTAL_STATE = EnumProperty.of("state", PedestalState.class);
|
||||
public static final EnumProperty<HydraluxShape> HYDRALUX_SHAPE = EnumProperty.of("shape", HydraluxShape.class);
|
||||
public static final EnumProperty<PentaShape> PENTA_SHAPE = EnumProperty.of("shape", PentaShape.class);
|
||||
public static final BooleanProperty HAS_ITEM = BooleanProperty.of("has_item");
|
||||
public static final BooleanProperty HAS_LIGHT = BooleanProperty.of("has_light");
|
||||
public static final BooleanProperty ACTIVATED = BooleanProperty.of("active");
|
||||
public static final IntProperty ROTATION = IntProperty.of("rotation", 0, 3);
|
||||
|
||||
public static enum TripleShape implements StringIdentifiable {
|
||||
TOP("top"),
|
||||
|
@ -89,4 +92,28 @@ public class BlockProperties {
|
|||
return glow;
|
||||
}
|
||||
}
|
||||
|
||||
public static enum PentaShape implements StringIdentifiable {
|
||||
BOTTOM("bottom"),
|
||||
PRE_BOTTOM("pre_bottom"),
|
||||
MIDDLE("middle"),
|
||||
PRE_TOP("pre_top"),
|
||||
TOP("top");
|
||||
|
||||
private final String name;
|
||||
|
||||
PentaShape(String name) {
|
||||
this.name = name;
|
||||
}
|
||||
|
||||
@Override
|
||||
public String asString() {
|
||||
return name;
|
||||
}
|
||||
|
||||
@Override
|
||||
public String toString() {
|
||||
return name;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
@ -34,6 +34,7 @@ import net.minecraft.world.BlockView;
|
|||
import net.minecraft.world.World;
|
||||
import net.minecraft.world.WorldAccess;
|
||||
import net.minecraft.world.WorldView;
|
||||
import ru.betterend.blocks.BlockProperties;
|
||||
import ru.betterend.client.render.ERenderLayer;
|
||||
import ru.betterend.interfaces.IRenderTypeable;
|
||||
import ru.betterend.registry.EndTags;
|
||||
|
@ -41,7 +42,7 @@ import ru.betterend.util.BlocksHelper;
|
|||
|
||||
public class BlockDoublePlant extends BlockBaseNotFull implements IRenderTypeable, Fertilizable {
|
||||
private static final VoxelShape SHAPE = Block.createCuboidShape(4, 2, 4, 12, 16, 12);
|
||||
public static final IntProperty ROTATION = IntProperty.of("rotation", 0, 3);
|
||||
public static final IntProperty ROTATION = BlockProperties.ROTATION;
|
||||
public static final BooleanProperty TOP = BooleanProperty.of("top");
|
||||
|
||||
public BlockDoublePlant() {
|
||||
|
|
|
@ -36,6 +36,8 @@ import ru.betterend.blocks.BlockHydraluxPetalColored;
|
|||
import ru.betterend.blocks.BlockHydraluxSapling;
|
||||
import ru.betterend.blocks.BlockHydrothermalVent;
|
||||
import ru.betterend.blocks.BlockLacugroveSapling;
|
||||
import ru.betterend.blocks.BlockLanceleaf;
|
||||
import ru.betterend.blocks.BlockLanceleafSeed;
|
||||
import ru.betterend.blocks.BlockMengerSponge;
|
||||
import ru.betterend.blocks.BlockMengerSpongeWet;
|
||||
import ru.betterend.blocks.BlockMossyGlowshroomCap;
|
||||
|
@ -173,6 +175,9 @@ public class EndBlocks {
|
|||
public static final Block BLUE_VINE_LANTERN = registerBlock("blue_vine_lantern", new BlockBlueVineLantern());
|
||||
public static final Block BLUE_VINE_FUR = registerBlock("blue_vine_fur", new BlockFur(BLUE_VINE_SEED, 15, 3));
|
||||
|
||||
public static final Block LANCELEAF_SEED = registerBlock("lanceleaf_seed", new BlockLanceleafSeed());
|
||||
public static final Block LANCELEAF = registerBlockNI("lanceleaf", new BlockLanceleaf());
|
||||
|
||||
public static final Block BUBBLE_CORAL = registerBlock("bubble_coral", new BlockBubbleCoral());
|
||||
public static final Block MENGER_SPONGE = registerBlock("menger_sponge", new BlockMengerSponge());
|
||||
public static final Block MENGER_SPONGE_WET = registerBlock("menger_sponge_wet", new BlockMengerSpongeWet());
|
||||
|
|
|
@ -20,6 +20,7 @@ import ru.betterend.world.features.EndLilyFeature;
|
|||
import ru.betterend.world.features.EndLotusFeature;
|
||||
import ru.betterend.world.features.EndLotusLeafFeature;
|
||||
import ru.betterend.world.features.HydraluxFeature;
|
||||
import ru.betterend.world.features.LanceleafFeature;
|
||||
import ru.betterend.world.features.MengerSpongeFeature;
|
||||
import ru.betterend.world.features.SinglePlantFeature;
|
||||
import ru.betterend.world.features.UnderwaterPlantFeature;
|
||||
|
@ -70,6 +71,7 @@ public class EndFeatures {
|
|||
public static final EndFeature BUSHY_GRASS = new EndFeature("bushy_grass", new SinglePlantFeature(EndBlocks.BUSHY_GRASS, 8, false), 20);
|
||||
public static final EndFeature BUSHY_GRASS_WG = new EndFeature("bushy_grass_wg", new SinglePlantFeature(EndBlocks.BUSHY_GRASS, 5), 10);
|
||||
public static final EndFeature AMBER_GRASS = new EndFeature("amber_grass", new SinglePlantFeature(EndBlocks.AMBER_GRASS, 6), 9);
|
||||
public static final EndFeature LANCELEAF = new EndFeature("lanceleaf", new LanceleafFeature(), 1);
|
||||
|
||||
// Vines //
|
||||
public static final EndFeature DENSE_VINE = new EndFeature("dense_vine", new VineFeature(EndBlocks.DENSE_VINE, 24), 3);
|
||||
|
|
|
@ -26,13 +26,15 @@ public class TranslationHelper {
|
|||
JsonObject translationEn = gson.fromJson(new InputStreamReader(streamEn), JsonObject.class);
|
||||
JsonObject translationRu = gson.fromJson(new InputStreamReader(streamRu), JsonObject.class);
|
||||
|
||||
EndItems.getModBlocks().forEach((block) -> {
|
||||
String name = block.getName().getString();
|
||||
if (!translationEn.has(name)) {
|
||||
missingNamesEn.add(name);
|
||||
}
|
||||
if (!translationRu.has(name)) {
|
||||
missingNamesRu.add(name);
|
||||
Registry.BLOCK.forEach((block) -> {
|
||||
if (Registry.BLOCK.getId(block).getNamespace().equals(BetterEnd.MOD_ID)) {
|
||||
String name = block.getName().getString();
|
||||
if (!translationEn.has(name)) {
|
||||
missingNamesEn.add(name);
|
||||
}
|
||||
if (!translationRu.has(name)) {
|
||||
missingNamesRu.add(name);
|
||||
}
|
||||
}
|
||||
});
|
||||
|
||||
|
|
|
@ -15,6 +15,7 @@ public class BiomeAmberLand extends EndBiome {
|
|||
.addFeature(EndFeatures.AMBER_ORE)
|
||||
.addFeature(EndFeatures.END_LAKE_RARE)
|
||||
.addFeature(EndFeatures.HELIX_TREE)
|
||||
.addFeature(EndFeatures.LANCELEAF)
|
||||
.addFeature(EndFeatures.AMBER_GRASS)
|
||||
.addFeature(EndFeatures.CHARNIA_ORANGE)
|
||||
.addFeature(EndFeatures.CHARNIA_RED)
|
||||
|
|
|
@ -0,0 +1,25 @@
|
|||
package ru.betterend.world.features;
|
||||
|
||||
import java.util.Random;
|
||||
|
||||
import net.minecraft.util.math.BlockPos;
|
||||
import net.minecraft.world.StructureWorldAccess;
|
||||
import ru.betterend.blocks.basis.BlockPlantWithAge;
|
||||
import ru.betterend.registry.EndBlocks;
|
||||
|
||||
public class LanceleafFeature extends ScatterFeature {
|
||||
public LanceleafFeature() {
|
||||
super(5);
|
||||
}
|
||||
|
||||
@Override
|
||||
public boolean canGenerate(StructureWorldAccess world, Random random, BlockPos center, BlockPos blockPos, float radius) {
|
||||
return EndBlocks.LANCELEAF_SEED.canPlaceAt(AIR, world, blockPos);
|
||||
}
|
||||
|
||||
@Override
|
||||
public void generate(StructureWorldAccess world, Random random, BlockPos blockPos) {
|
||||
BlockPlantWithAge seed = ((BlockPlantWithAge) EndBlocks.LANCELEAF_SEED);
|
||||
seed.growAdult(world, random, blockPos);
|
||||
}
|
||||
}
|
|
@ -74,10 +74,10 @@ public class HelixTreeFeature extends DefaultFeature {
|
|||
for (int i = 0; i <= 20; i++) {
|
||||
float radius = i * 0.1F - 1;
|
||||
radius *= radius;
|
||||
radius = (1 - radius) * 4F * scale;
|
||||
radius = (1 - radius) * 8F * scale;
|
||||
dx = (float) Math.sin(i * 0.25F + angle) * radius;
|
||||
dz = (float) Math.cos(i * 0.25F + angle) * radius;
|
||||
spline.add(new Vector3f(dx, i * scale, dz));
|
||||
spline.add(new Vector3f(dx, i * scale * 1.2F, dz));
|
||||
}
|
||||
|
||||
Vector3f start = new Vector3f();
|
||||
|
|
|
@ -1,10 +1,18 @@
|
|||
{
|
||||
"variants": {
|
||||
"": [
|
||||
{ "model": "betterend:block/amber_moss" },
|
||||
{ "model": "betterend:block/amber_moss", "y": 90 },
|
||||
{ "model": "betterend:block/amber_moss", "y": 180 },
|
||||
{ "model": "betterend:block/amber_moss", "y": 270 }
|
||||
{ "model": "betterend:block/amber_moss_1" },
|
||||
{ "model": "betterend:block/amber_moss_1", "y": 90 },
|
||||
{ "model": "betterend:block/amber_moss_1", "y": 180 },
|
||||
{ "model": "betterend:block/amber_moss_1", "y": 270 },
|
||||
{ "model": "betterend:block/amber_moss_2" },
|
||||
{ "model": "betterend:block/amber_moss_2", "y": 90 },
|
||||
{ "model": "betterend:block/amber_moss_2", "y": 180 },
|
||||
{ "model": "betterend:block/amber_moss_2", "y": 270 },
|
||||
{ "model": "betterend:block/amber_moss_3" },
|
||||
{ "model": "betterend:block/amber_moss_3", "y": 90 },
|
||||
{ "model": "betterend:block/amber_moss_3", "y": 180 },
|
||||
{ "model": "betterend:block/amber_moss_3", "y": 270 }
|
||||
]
|
||||
}
|
||||
}
|
||||
|
|
|
@ -1,10 +1,18 @@
|
|||
{
|
||||
"variants": {
|
||||
"": [
|
||||
{ "model": "betterend:block/amber_moss_path" },
|
||||
{ "model": "betterend:block/amber_moss_path", "y": 90 },
|
||||
{ "model": "betterend:block/amber_moss_path", "y": 180 },
|
||||
{ "model": "betterend:block/amber_moss_path", "y": 270 }
|
||||
{ "model": "betterend:block/amber_moss_path_1" },
|
||||
{ "model": "betterend:block/amber_moss_path_1", "y": 90 },
|
||||
{ "model": "betterend:block/amber_moss_path_1", "y": 180 },
|
||||
{ "model": "betterend:block/amber_moss_path_1", "y": 270 },
|
||||
{ "model": "betterend:block/amber_moss_path_2" },
|
||||
{ "model": "betterend:block/amber_moss_path_2", "y": 90 },
|
||||
{ "model": "betterend:block/amber_moss_path_2", "y": 180 },
|
||||
{ "model": "betterend:block/amber_moss_path_2", "y": 270 },
|
||||
{ "model": "betterend:block/amber_moss_path_3" },
|
||||
{ "model": "betterend:block/amber_moss_path_3", "y": 90 },
|
||||
{ "model": "betterend:block/amber_moss_path_3", "y": 180 },
|
||||
{ "model": "betterend:block/amber_moss_path_3", "y": 270 }
|
||||
]
|
||||
}
|
||||
}
|
||||
|
|
|
@ -0,0 +1,27 @@
|
|||
{
|
||||
"variants": {
|
||||
"rotation=0,shape=top": { "model": "betterend:block/lanceleaf_leaf_top" },
|
||||
"rotation=0,shape=pre_top": { "model": "betterend:block/lanceleaf_leaf_pre_top" },
|
||||
"rotation=0,shape=middle": { "model": "betterend:block/lanceleaf_leaf_middle" },
|
||||
"rotation=0,shape=pre_bottom": { "model": "betterend:block/lanceleaf_leaf_pre_bottom" },
|
||||
"rotation=0,shape=bottom": { "model": "betterend:block/lanceleaf_leaf_bottom" },
|
||||
|
||||
"rotation=1,shape=top": { "model": "betterend:block/lanceleaf_leaf_top", "y": 90 },
|
||||
"rotation=1,shape=pre_top": { "model": "betterend:block/lanceleaf_leaf_pre_top", "y": 90 },
|
||||
"rotation=1,shape=middle": { "model": "betterend:block/lanceleaf_leaf_middle", "y": 90 },
|
||||
"rotation=1,shape=pre_bottom": { "model": "betterend:block/lanceleaf_leaf_pre_bottom", "y": 90 },
|
||||
"rotation=1,shape=bottom": { "model": "betterend:block/lanceleaf_leaf_bottom", "y": 90 },
|
||||
|
||||
"rotation=2,shape=top": { "model": "betterend:block/lanceleaf_leaf_top", "y": 180 },
|
||||
"rotation=2,shape=pre_top": { "model": "betterend:block/lanceleaf_leaf_pre_top", "y": 180 },
|
||||
"rotation=2,shape=middle": { "model": "betterend:block/lanceleaf_leaf_middle", "y": 180 },
|
||||
"rotation=2,shape=pre_bottom": { "model": "betterend:block/lanceleaf_leaf_pre_bottom", "y": 180 },
|
||||
"rotation=2,shape=bottom": { "model": "betterend:block/lanceleaf_leaf_bottom", "y": 180 },
|
||||
|
||||
"rotation=3,shape=top": { "model": "betterend:block/lanceleaf_leaf_top", "y": 270 },
|
||||
"rotation=3,shape=pre_top": { "model": "betterend:block/lanceleaf_leaf_pre_top", "y": 270 },
|
||||
"rotation=3,shape=middle": { "model": "betterend:block/lanceleaf_leaf_middle", "y": 270 },
|
||||
"rotation=3,shape=pre_bottom": { "model": "betterend:block/lanceleaf_leaf_pre_bottom", "y": 270 },
|
||||
"rotation=3,shape=bottom": { "model": "betterend:block/lanceleaf_leaf_bottom", "y": 270 }
|
||||
}
|
||||
}
|
|
@ -428,5 +428,32 @@
|
|||
|
||||
"item.betterend.gelatine": "Gelatine",
|
||||
"item.betterend.sweet_berry_jelly": "Sweet Berry Jelly",
|
||||
"item.betterend.shadow_berry_jelly": "Shadow Berry Jelly"
|
||||
"item.betterend.shadow_berry_jelly": "Shadow Berry Jelly",
|
||||
|
||||
"block.betterend.amber_moss": "Amber Moss",
|
||||
"block.betterend.amber_moss_path": "Amber Moss Path",
|
||||
"block.betterend.helix_tree_bark": "Helix Tree Bark",
|
||||
"block.betterend.helix_tree_barrel": "Helix Tree Barrel",
|
||||
"block.betterend.helix_tree_bookshelf": "Helix Tree Bookshelf",
|
||||
"block.betterend.helix_tree_button": "Helix Tree Button",
|
||||
"block.betterend.helix_tree_chest": "Helix Tree Chest",
|
||||
"block.betterend.helix_tree_crafting_table": "Helix Tree Crafting Table",
|
||||
"block.betterend.helix_tree_door": "Helix Tree Door",
|
||||
"block.betterend.helix_tree_fence": "Helix Tree Fence",
|
||||
"block.betterend.helix_tree_gate": "Helix Tree Gate",
|
||||
"block.betterend.helix_tree_ladder": "Helix Tree Ladder",
|
||||
"block.betterend.helix_tree_leaves": "Helix Tree Leaves",
|
||||
"block.betterend.helix_tree_log": "Helix Tree Log",
|
||||
"block.betterend.helix_tree_planks": "Helix Tree Planks",
|
||||
"block.betterend.helix_tree_plate": "Helix Tree Plate",
|
||||
"block.betterend.helix_tree_sapling": "Helix Tree Sapling",
|
||||
"block.betterend.helix_tree_sign": "Helix Tree Sign",
|
||||
"block.betterend.helix_tree_slab": "Helix Tree Slab",
|
||||
"block.betterend.helix_tree_stairs": "Helix Tree Stairs",
|
||||
"block.betterend.helix_tree_stripped_bark": "Helix Tree Stripped Bark",
|
||||
"block.betterend.helix_tree_stripped_log": "Helix Tree Stripped Log",
|
||||
"block.betterend.helix_tree_trapdoor": "Helix Tree Trapdoor",
|
||||
"block.betterend.lanceleaf": "Lanceleaf",
|
||||
"block.betterend.lanceleaf_seed": "Lanceleaf Seed",
|
||||
"block.betterend.hydralux": "Hydralux"
|
||||
}
|
|
@ -430,5 +430,32 @@
|
|||
|
||||
"item.betterend.gelatine": "Желатин",
|
||||
"item.betterend.sweet_berry_jelly": "Желе из сладких ягод",
|
||||
"item.betterend.shadow_berry_jelly": "Желе из теневой ягоды"
|
||||
"item.betterend.shadow_berry_jelly": "Желе из теневой ягоды",
|
||||
|
||||
"block.betterend.amber_moss": "Янтарный мох",
|
||||
"block.betterend.amber_moss_path": "Тропа из янтарного мха",
|
||||
"block.betterend.helix_tree_bark": "Кора закрученного дерева",
|
||||
"block.betterend.helix_tree_barrel": "Бочка из закрученного дерева",
|
||||
"block.betterend.helix_tree_bookshelf": "Книжные полки из закрученного дерева",
|
||||
"block.betterend.helix_tree_button": "Кнопка из закрученного дерева",
|
||||
"block.betterend.helix_tree_chest": "Сундук из закрученного дерева",
|
||||
"block.betterend.helix_tree_crafting_table": "Верстак из закрученного дерева",
|
||||
"block.betterend.helix_tree_door": "Дверь из закрученного дерева",
|
||||
"block.betterend.helix_tree_fence": "Забор из закрученного дерева",
|
||||
"block.betterend.helix_tree_gate": "Калитка из закрученного дерева",
|
||||
"block.betterend.helix_tree_ladder": "Лестница из закрученного дерева",
|
||||
"block.betterend.helix_tree_leaves": "Листья из закрученного дерева",
|
||||
"block.betterend.helix_tree_log": "Бревно закрученного дерева",
|
||||
"block.betterend.helix_tree_planks": "Доски закрученного дерева",
|
||||
"block.betterend.helix_tree_plate": "Нажимная плита из закрученного дерева",
|
||||
"block.betterend.helix_tree_sapling": "Саженец закрученного дерева",
|
||||
"block.betterend.helix_tree_sign": "Табличка из закрученного дерева",
|
||||
"block.betterend.helix_tree_slab": "Плита из закрученного дерева",
|
||||
"block.betterend.helix_tree_stairs": "Ступени из закрученного дерева",
|
||||
"block.betterend.helix_tree_stripped_bark": "Обтёсанная кора закрученного дерева",
|
||||
"block.betterend.helix_tree_stripped_log": "Обтёсанное бревно закрученного дерева",
|
||||
"block.betterend.helix_tree_trapdoor": "Люк из закрученного дерева",
|
||||
"block.betterend.lanceleaf": "Ланцелист",
|
||||
"block.betterend.lanceleaf_seed": "Семечко ланцелиста",
|
||||
"block.betterend.hydralux": "Гидралюкс"
|
||||
}
|
|
@ -1,12 +0,0 @@
|
|||
{
|
||||
"parent": "block/cube",
|
||||
"textures": {
|
||||
"down": "block/end_stone",
|
||||
"east": "betterend:block/amber_moss_side",
|
||||
"north": "betterend:block/amber_moss_side",
|
||||
"particle": "betterend:block/amber_moss_side",
|
||||
"south": "betterend:block/amber_moss_side",
|
||||
"up": "betterend:block/amber_moss_top",
|
||||
"west": "betterend:block/amber_moss_side"
|
||||
}
|
||||
}
|
|
@ -0,0 +1,12 @@
|
|||
{
|
||||
"parent": "block/cube",
|
||||
"textures": {
|
||||
"down": "block/end_stone",
|
||||
"east": "betterend:block/amber_moss_side_1",
|
||||
"north": "betterend:block/amber_moss_side_1",
|
||||
"particle": "betterend:block/amber_moss_side_1",
|
||||
"south": "betterend:block/amber_moss_side_1",
|
||||
"up": "betterend:block/amber_moss_top",
|
||||
"west": "betterend:block/amber_moss_side_1"
|
||||
}
|
||||
}
|
|
@ -0,0 +1,12 @@
|
|||
{
|
||||
"parent": "block/cube",
|
||||
"textures": {
|
||||
"down": "block/end_stone",
|
||||
"east": "betterend:block/amber_moss_side_2",
|
||||
"north": "betterend:block/amber_moss_side_2",
|
||||
"particle": "betterend:block/amber_moss_side_2",
|
||||
"south": "betterend:block/amber_moss_side_2",
|
||||
"up": "betterend:block/amber_moss_top",
|
||||
"west": "betterend:block/amber_moss_side_2"
|
||||
}
|
||||
}
|
|
@ -0,0 +1,12 @@
|
|||
{
|
||||
"parent": "block/cube",
|
||||
"textures": {
|
||||
"down": "block/end_stone",
|
||||
"east": "betterend:block/amber_moss_side_3",
|
||||
"north": "betterend:block/amber_moss_side_3",
|
||||
"particle": "betterend:block/amber_moss_side_3",
|
||||
"south": "betterend:block/amber_moss_side_3",
|
||||
"up": "betterend:block/amber_moss_top",
|
||||
"west": "betterend:block/amber_moss_side_3"
|
||||
}
|
||||
}
|
|
@ -1,7 +1,7 @@
|
|||
{ "parent": "betterend:block/path",
|
||||
"textures": {
|
||||
"top": "betterend:block/amber_moss_path_top",
|
||||
"side": "betterend:block/amber_moss_side",
|
||||
"side": "betterend:block/amber_moss_side_1",
|
||||
"bottom": "block/end_stone"
|
||||
}
|
||||
}
|
|
@ -0,0 +1,7 @@
|
|||
{ "parent": "betterend:block/path",
|
||||
"textures": {
|
||||
"top": "betterend:block/amber_moss_path_top",
|
||||
"side": "betterend:block/amber_moss_side_2",
|
||||
"bottom": "block/end_stone"
|
||||
}
|
||||
}
|
|
@ -0,0 +1,7 @@
|
|||
{ "parent": "betterend:block/path",
|
||||
"textures": {
|
||||
"top": "betterend:block/amber_moss_path_top",
|
||||
"side": "betterend:block/amber_moss_side_3",
|
||||
"bottom": "block/end_stone"
|
||||
}
|
||||
}
|
|
@ -0,0 +1,31 @@
|
|||
{
|
||||
"__comment": "Designed by Paulevs with Cubik Studio - https://cubik.studio",
|
||||
"textures": {
|
||||
"particle": "betterend:block/lanceleaf_stem",
|
||||
"texture": "betterend:block/lanceleaf_stem"
|
||||
},
|
||||
"elements": [
|
||||
{
|
||||
"__comment": "PlaneX10",
|
||||
"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": "PlaneX10",
|
||||
"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" }
|
||||
}
|
||||
}
|
||||
]
|
||||
}
|
|
@ -0,0 +1,20 @@
|
|||
{
|
||||
"__comment": "Designed by Paulevs with Cubik Studio - https://cubik.studio",
|
||||
"textures": {
|
||||
"particle": "betterend:block/lanceleaf_leaf_middle",
|
||||
"texture": "betterend:block/lanceleaf_leaf_middle"
|
||||
},
|
||||
"elements": [
|
||||
{
|
||||
"__comment": "PlaneX10",
|
||||
"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" }
|
||||
}
|
||||
}
|
||||
]
|
||||
}
|
|
@ -0,0 +1,32 @@
|
|||
{
|
||||
"__comment": "Designed by Paulevs with Cubik Studio - https://cubik.studio",
|
||||
"textures": {
|
||||
"particle": "betterend:block/lanceleaf_leaf_bottom",
|
||||
"texture": "betterend:block/lanceleaf_stem_top",
|
||||
"leaf": "betterend:block/lanceleaf_leaf_bottom"
|
||||
},
|
||||
"elements": [
|
||||
{
|
||||
"__comment": "PlaneX10",
|
||||
"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": "#leaf" },
|
||||
"east": { "uv": [ 0, 0, 16, 16 ], "texture": "#leaf" }
|
||||
}
|
||||
},
|
||||
{
|
||||
"__comment": "PlaneX10",
|
||||
"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" }
|
||||
}
|
||||
}
|
||||
]
|
||||
}
|
|
@ -0,0 +1,20 @@
|
|||
{
|
||||
"__comment": "Designed by Paulevs with Cubik Studio - https://cubik.studio",
|
||||
"textures": {
|
||||
"particle": "betterend:block/lanceleaf_leaf_pre_top",
|
||||
"texture": "betterend:block/lanceleaf_leaf_pre_top"
|
||||
},
|
||||
"elements": [
|
||||
{
|
||||
"__comment": "PlaneX10",
|
||||
"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" }
|
||||
}
|
||||
}
|
||||
]
|
||||
}
|
|
@ -0,0 +1,20 @@
|
|||
{
|
||||
"__comment": "Designed by Paulevs with Cubik Studio - https://cubik.studio",
|
||||
"textures": {
|
||||
"particle": "betterend:block/lanceleaf_leaf_top",
|
||||
"texture": "betterend:block/lanceleaf_leaf_top"
|
||||
},
|
||||
"elements": [
|
||||
{
|
||||
"__comment": "PlaneX10",
|
||||
"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" }
|
||||
}
|
||||
}
|
||||
]
|
||||
}
|
|
@ -0,0 +1,31 @@
|
|||
{
|
||||
"__comment": "Designed by Paulevs with Cubik Studio - https://cubik.studio",
|
||||
"textures": {
|
||||
"particle": "betterend:block/lanceleaf_stem",
|
||||
"texture": "betterend:block/lanceleaf_stem"
|
||||
},
|
||||
"elements": [
|
||||
{
|
||||
"__comment": "PlaneX10",
|
||||
"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": "PlaneX10",
|
||||
"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" }
|
||||
}
|
||||
}
|
||||
]
|
||||
}
|
|
@ -1,3 +1,3 @@
|
|||
{
|
||||
"parent": "betterend:block/amber_moss"
|
||||
"parent": "betterend:block/amber_moss_1"
|
||||
}
|
||||
|
|
|
@ -1,3 +1,3 @@
|
|||
{
|
||||
"parent": "betterend:block/amber_moss_path"
|
||||
"parent": "betterend:block/amber_moss_path_1"
|
||||
}
|
||||
|
|
Before Width: | Height: | Size: 701 B |
After Width: | Height: | Size: 2.1 KiB |
Before Width: | Height: | Size: 312 B |
After Width: | Height: | Size: 1.7 KiB |
After Width: | Height: | Size: 1.8 KiB |
After Width: | Height: | Size: 1.8 KiB |
Before Width: | Height: | Size: 270 B After Width: | Height: | Size: 1.8 KiB |
After Width: | Height: | Size: 1.7 KiB |
After Width: | Height: | Size: 1.7 KiB |
After Width: | Height: | Size: 1.9 KiB |
After Width: | Height: | Size: 2 KiB |
After Width: | Height: | Size: 1.7 KiB |
After Width: | Height: | Size: 1.8 KiB |