This commit is contained in:
Aleksey 2020-10-11 00:21:34 +03:00
commit 8aab4fa033
145 changed files with 1369 additions and 1510 deletions

View file

@ -38,15 +38,23 @@ public class BlockPlant extends BlockBaseNotFull implements IRenderTypeable, Fer
private static final VoxelShape SHAPE = Block.createCuboidShape(4, 0, 4, 12, 14, 12); private static final VoxelShape SHAPE = Block.createCuboidShape(4, 0, 4, 12, 14, 12);
public BlockPlant() { public BlockPlant() {
super(FabricBlockSettings.of(Material.PLANT) this(false);
}
public BlockPlant(int light) {
this(false, light);
}
public BlockPlant(boolean replaceable) {
super(FabricBlockSettings.of(replaceable ? Material.PLANT : Material.REPLACEABLE_PLANT)
.breakByTool(FabricToolTags.SHEARS) .breakByTool(FabricToolTags.SHEARS)
.sounds(BlockSoundGroup.GRASS) .sounds(BlockSoundGroup.GRASS)
.breakByHand(true) .breakByHand(true)
.noCollision()); .noCollision());
} }
public BlockPlant(int light) { public BlockPlant(boolean replaceable, int light) {
super(FabricBlockSettings.of(Material.PLANT) super(FabricBlockSettings.of(replaceable ? Material.PLANT : Material.REPLACEABLE_PLANT)
.breakByTool(FabricToolTags.SHEARS) .breakByTool(FabricToolTags.SHEARS)
.sounds(BlockSoundGroup.GRASS) .sounds(BlockSoundGroup.GRASS)
.lightLevel(light) .lightLevel(light)

View file

@ -17,12 +17,10 @@ import me.shedaniel.rei.api.widgets.Widgets;
import me.shedaniel.rei.gui.entries.RecipeEntry; import me.shedaniel.rei.gui.entries.RecipeEntry;
import me.shedaniel.rei.gui.entries.SimpleRecipeEntry; import me.shedaniel.rei.gui.entries.SimpleRecipeEntry;
import me.shedaniel.rei.gui.widget.Widget; import me.shedaniel.rei.gui.widget.Widget;
import net.minecraft.client.gui.DrawableHelper; import net.minecraft.client.gui.DrawableHelper;
import net.minecraft.client.util.math.MatrixStack; import net.minecraft.client.util.math.MatrixStack;
import net.minecraft.text.TranslatableText; import net.minecraft.text.TranslatableText;
import net.minecraft.util.Identifier; import net.minecraft.util.Identifier;
import ru.betterend.recipe.AlloyingRecipe; import ru.betterend.recipe.AlloyingRecipe;
import ru.betterend.registry.BlockRegistry; import ru.betterend.registry.BlockRegistry;
import ru.betterend.util.LangUtil; import ru.betterend.util.LangUtil;

View file

@ -24,6 +24,7 @@ import net.minecraft.util.math.Box;
import net.minecraft.world.LocalDifficulty; import net.minecraft.world.LocalDifficulty;
import net.minecraft.world.ServerWorldAccess; import net.minecraft.world.ServerWorldAccess;
import net.minecraft.world.World; import net.minecraft.world.World;
import net.minecraft.world.biome.Biome;
import ru.betterend.registry.BiomeRegistry; import ru.betterend.registry.BiomeRegistry;
import ru.betterend.util.ISlime; import ru.betterend.util.ISlime;
@ -105,7 +106,12 @@ public class EntityEndSlime extends SlimeEntity {
} }
public static boolean canSpawn(EntityType<EntityEndSlime> type, ServerWorldAccess world, SpawnReason spawnReason, BlockPos pos, Random random) { public static boolean canSpawn(EntityType<EntityEndSlime> type, ServerWorldAccess world, SpawnReason spawnReason, BlockPos pos, Random random) {
return notManyEntities(world, pos, 32, 3) && isWaterNear(world, pos, 32); return isPermanentBiome(world, pos) || (notManyEntities(world, pos, 32, 3) && isWaterNear(world, pos, 32, 8));
}
private static boolean isPermanentBiome(ServerWorldAccess world, BlockPos pos) {
Biome biome = world.getBiome(pos);
return BiomeRegistry.getFromBiome(biome) == BiomeRegistry.CHORUS_FOREST;
} }
private static boolean notManyEntities(ServerWorldAccess world, BlockPos pos, int radius, int maxCount) { private static boolean notManyEntities(ServerWorldAccess world, BlockPos pos, int radius, int maxCount) {
@ -114,12 +120,12 @@ public class EntityEndSlime extends SlimeEntity {
return list.size() <= maxCount; return list.size() <= maxCount;
} }
private static boolean isWaterNear(ServerWorldAccess world, BlockPos pos, int radius) { private static boolean isWaterNear(ServerWorldAccess world, BlockPos pos, int radius, int radius2) {
for (int x = pos.getX() - radius; x <= pos.getX() + radius; x++) { for (int x = pos.getX() - radius; x <= pos.getX() + radius; x++) {
POS.setX(x); POS.setX(x);
for (int z = pos.getZ() - radius; z <= pos.getZ() + radius; z++) { for (int z = pos.getZ() - radius; z <= pos.getZ() + radius; z++) {
POS.setZ(z); POS.setZ(z);
for (int y = pos.getY() - radius; y <= pos.getY() + radius; y++) { for (int y = pos.getY() - radius2; y <= pos.getY() + radius2; y++) {
POS.setY(y); POS.setY(y);
if (world.getBlockState(POS).getBlock() == Blocks.WATER) { if (world.getBlockState(POS).getBlock() == Blocks.WATER) {
return true; return true;

View file

@ -12,6 +12,7 @@ import net.minecraft.util.registry.RegistryKey;
import net.minecraft.world.biome.Biome; import net.minecraft.world.biome.Biome;
import net.minecraft.world.biome.Biome.Category; import net.minecraft.world.biome.Biome.Category;
import net.minecraft.world.biome.BiomeKeys; import net.minecraft.world.biome.BiomeKeys;
import ru.betterend.world.biome.BiomeChorusForest;
import ru.betterend.world.biome.BiomeFoggyMushroomland; import ru.betterend.world.biome.BiomeFoggyMushroomland;
import ru.betterend.world.biome.EndBiome; import ru.betterend.world.biome.EndBiome;
import ru.betterend.world.generator.BiomePicker; import ru.betterend.world.generator.BiomePicker;
@ -30,6 +31,7 @@ public class BiomeRegistry {
public static final EndBiome END_MIDLANDS = registerBiome(BiomeKeys.END_MIDLANDS, BiomeType.LAND, false); public static final EndBiome END_MIDLANDS = registerBiome(BiomeKeys.END_MIDLANDS, BiomeType.LAND, false);
public static final EndBiome SMALL_END_ISLANDS = registerBiome(BiomeKeys.SMALL_END_ISLANDS, BiomeType.VOID, true); public static final EndBiome SMALL_END_ISLANDS = registerBiome(BiomeKeys.SMALL_END_ISLANDS, BiomeType.VOID, true);
public static final EndBiome FOGGY_MUSHROOMLAND = registerBiome(new BiomeFoggyMushroomland(), BiomeType.LAND); public static final EndBiome FOGGY_MUSHROOMLAND = registerBiome(new BiomeFoggyMushroomland(), BiomeType.LAND);
public static final EndBiome CHORUS_FOREST = registerBiome(new BiomeChorusForest(), BiomeType.LAND);
public static void register() {} public static void register() {}

View file

@ -29,6 +29,7 @@ import ru.betterend.blocks.EndStoneSmelter;
import ru.betterend.blocks.EnderBlock; import ru.betterend.blocks.EnderBlock;
import ru.betterend.blocks.TerminiteBlock; import ru.betterend.blocks.TerminiteBlock;
import ru.betterend.blocks.basis.BlockGlowingFur; import ru.betterend.blocks.basis.BlockGlowingFur;
import ru.betterend.blocks.basis.BlockPlant;
import ru.betterend.blocks.basis.BlockVine; import ru.betterend.blocks.basis.BlockVine;
import ru.betterend.blocks.complex.WoodenMaterial; import ru.betterend.blocks.complex.WoodenMaterial;
import ru.betterend.tab.CreativeTab; import ru.betterend.tab.CreativeTab;
@ -38,10 +39,12 @@ public class BlockRegistry {
public static final Block ENDSTONE_DUST = registerBlock("endstone_dust", new BlockEndstoneDust()); public static final Block ENDSTONE_DUST = registerBlock("endstone_dust", new BlockEndstoneDust());
public static final Block END_MYCELIUM = registerBlock("end_mycelium", new BlockTerrain(MaterialColor.LIGHT_BLUE)); public static final Block END_MYCELIUM = registerBlock("end_mycelium", new BlockTerrain(MaterialColor.LIGHT_BLUE));
public static final Block END_MOSS = registerBlock("end_moss", new BlockTerrain(MaterialColor.CYAN)); public static final Block END_MOSS = registerBlock("end_moss", new BlockTerrain(MaterialColor.CYAN));
public static final Block CHORUS_NYLIUM = registerBlock("chorus_nylium", new BlockTerrain(MaterialColor.MAGENTA));
// Roads // // Roads //
public static final Block END_MYCELIUM_PATH = registerBlock("end_mycelium_path", new BlockPath(END_MYCELIUM)); public static final Block END_MYCELIUM_PATH = registerBlock("end_mycelium_path", new BlockPath(END_MYCELIUM));
public static final Block END_MOSS_PATH = registerBlock("end_moss_path", new BlockPath(END_MOSS)); public static final Block END_MOSS_PATH = registerBlock("end_moss_path", new BlockPath(END_MOSS));
public static final Block CHORUS_NYLIUM_PATH = registerBlock("chorus_nylium_path", new BlockPath(CHORUS_NYLIUM));
// Rocks // // Rocks //
public static final Block FLAVOLITE = registerBlock("flavolite", new BlockStone(MaterialColor.SAND)); public static final Block FLAVOLITE = registerBlock("flavolite", new BlockStone(MaterialColor.SAND));
@ -52,6 +55,7 @@ public class BlockRegistry {
public static final Block MOSSY_GLOWSHROOM_HYMENOPHORE = registerBlock("mossy_glowshroom_hymenophore", new BlockMossyGlowshroomHymenophore()); public static final Block MOSSY_GLOWSHROOM_HYMENOPHORE = registerBlock("mossy_glowshroom_hymenophore", new BlockMossyGlowshroomHymenophore());
public static final Block MOSSY_GLOWSHROOM_FUR = registerBlock("mossy_glowshroom_fur", new BlockGlowingFur(MOSSY_GLOWSHROOM_SAPLING, 16)); public static final Block MOSSY_GLOWSHROOM_FUR = registerBlock("mossy_glowshroom_fur", new BlockGlowingFur(MOSSY_GLOWSHROOM_SAPLING, 16));
public static final WoodenMaterial MOSSY_GLOWSHROOM = new WoodenMaterial("mossy_glowshroom", MaterialColor.GRAY, MaterialColor.WOOD); public static final WoodenMaterial MOSSY_GLOWSHROOM = new WoodenMaterial("mossy_glowshroom", MaterialColor.GRAY, MaterialColor.WOOD);
public static final WoodenMaterial CHORUS = new WoodenMaterial("chorus", MaterialColor.MAGENTA, MaterialColor.PURPLE);
// Small Plants // // Small Plants //
public static final Block UMBRELLA_MOSS = registerBlock("umbrella_moss", new BlockUmbrellaMoss()); public static final Block UMBRELLA_MOSS = registerBlock("umbrella_moss", new BlockUmbrellaMoss());
@ -67,6 +71,8 @@ public class BlockRegistry {
public static final Block END_LILY = registerBlockNI("end_lily", new BlockEndLily()); public static final Block END_LILY = registerBlockNI("end_lily", new BlockEndLily());
public static final Block END_LILY_SEED = registerBlock("end_lily_seed", new BlockEndLilySeed()); public static final Block END_LILY_SEED = registerBlock("end_lily_seed", new BlockEndLilySeed());
public static final Block CHORUS_GRASS = registerBlock("chorus_grass", new BlockPlant(true));
// Vines // // Vines //
public static final Block DENSE_VINE = registerBlock("dense_vine", new BlockVine(15, true)); public static final Block DENSE_VINE = registerBlock("dense_vine", new BlockVine(15, true));

View file

@ -22,6 +22,7 @@ public class BlockTagRegistry {
public static void register() { public static void register() {
addSurfaceBlock(BlockRegistry.END_MOSS); addSurfaceBlock(BlockRegistry.END_MOSS);
addSurfaceBlock(BlockRegistry.END_MYCELIUM); addSurfaceBlock(BlockRegistry.END_MYCELIUM);
addSurfaceBlock(BlockRegistry.CHORUS_NYLIUM);
TagHelper.addTag(GEN_TERRAIN, BlockRegistry.ENDER_ORE); TagHelper.addTag(GEN_TERRAIN, BlockRegistry.ENDER_ORE);
} }

View file

@ -16,11 +16,13 @@ public class FeatureRegistry {
public static final EndFeature UMBRELLA_MOSS = new EndFeature("umbrella_moss", new DoublePlantFeature(BlockRegistry.UMBRELLA_MOSS, BlockRegistry.UMBRELLA_MOSS_TALL, 5), 5); public static final EndFeature UMBRELLA_MOSS = new EndFeature("umbrella_moss", new DoublePlantFeature(BlockRegistry.UMBRELLA_MOSS, BlockRegistry.UMBRELLA_MOSS_TALL, 5), 5);
public static final EndFeature CREEPING_MOSS = new EndFeature("creeping_moss", new SinglePlantFeature(BlockRegistry.CREEPING_MOSS, 5), 5); public static final EndFeature CREEPING_MOSS = new EndFeature("creeping_moss", new SinglePlantFeature(BlockRegistry.CREEPING_MOSS, 5), 5);
public static final EndFeature BLUE_VINE = new EndFeature("blue_vine", new BlueVineFeature(), 1); public static final EndFeature BLUE_VINE = new EndFeature("blue_vine", new BlueVineFeature(), 1);
public static final EndFeature CHORUS_GRASS = new EndFeature("chorus_grass", new SinglePlantFeature(BlockRegistry.CHORUS_GRASS, 4), 4);
public static final EndFeature DENSE_VINE = new EndFeature("dense_vine", new VineFeature(BlockRegistry.DENSE_VINE, 24), 3); public static final EndFeature DENSE_VINE = new EndFeature("dense_vine", new VineFeature(BlockRegistry.DENSE_VINE, 24), 3);
// Features // // Features //
public static final EndFeature END_LAKE = EndFeature.makeLakeFeature("end_lake", new EndLakeFeature(), 4); public static final EndFeature END_LAKE = EndFeature.makeLakeFeature("end_lake", new EndLakeFeature(), 4);
public static final EndFeature RARE_END_LAKE = EndFeature.makeLakeFeature("rare_end_lake", new EndLakeFeature(), 40);
// Ores // // Ores //
public static final EndFeature ENDER_ORE = EndFeature.makeOreFeature("ender_ore", BlockRegistry.ENDER_ORE, 6, 3, 0, 4, 96); public static final EndFeature ENDER_ORE = EndFeature.makeOreFeature("ender_ore", BlockRegistry.ENDER_ORE, 6, 3, 0, 4, 96);

View file

@ -0,0 +1,25 @@
package ru.betterend.world.biome;
import net.minecraft.entity.EntityType;
import ru.betterend.registry.BlockRegistry;
import ru.betterend.registry.EntityRegistry;
import ru.betterend.registry.FeatureRegistry;
import ru.betterend.registry.StructureRegistry;
public class BiomeChorusForest extends EndBiome {
public BiomeChorusForest() {
super(new BiomeDefinition("chorus_forest")
.setFogColor(87, 26, 87)
.setFogDensity(3)
.setSurface(BlockRegistry.CHORUS_NYLIUM)
//.setParticles(ParticleRegistry.GLOWING_SPHERE, 0.001F)
//.setLoop(SoundRegistry.AMBIENT_FOGGY_MUSHROOMLAND)
//.setMusic(SoundRegistry.MUSIC_FOGGY_MUSHROOMLAND)
.addStructureFeature(StructureRegistry.GIANT_MOSSY_GLOWSHROOM)
.addFeature(FeatureRegistry.ENDER_ORE)
.addFeature(FeatureRegistry.RARE_END_LAKE)
.addFeature(FeatureRegistry.CHORUS_GRASS)
.addMobSpawn(EntityRegistry.END_SLIME, 5, 1, 2)
.addMobSpawn(EntityType.ENDERMAN, 50, 1, 4));
}
}

View file

@ -8,15 +8,18 @@ import net.minecraft.fluid.FluidState;
import net.minecraft.util.math.BlockPos; import net.minecraft.util.math.BlockPos;
import net.minecraft.util.math.BlockPos.Mutable; import net.minecraft.util.math.BlockPos.Mutable;
import net.minecraft.world.StructureWorldAccess; import net.minecraft.world.StructureWorldAccess;
import net.minecraft.world.WorldAccess;
import net.minecraft.world.gen.chunk.ChunkGenerator; import net.minecraft.world.gen.chunk.ChunkGenerator;
import net.minecraft.world.gen.feature.DefaultFeatureConfig; import net.minecraft.world.gen.feature.DefaultFeatureConfig;
import ru.betterend.blocks.BlockEndLily; import ru.betterend.blocks.BlockEndLily;
import ru.betterend.blocks.BlockProperties.TripleShape; import ru.betterend.blocks.BlockProperties.TripleShape;
import ru.betterend.noise.OpenSimplexNoise; import ru.betterend.noise.OpenSimplexNoise;
import ru.betterend.registry.BiomeRegistry;
import ru.betterend.registry.BlockRegistry; import ru.betterend.registry.BlockRegistry;
import ru.betterend.registry.BlockTagRegistry; import ru.betterend.registry.BlockTagRegistry;
import ru.betterend.util.BlocksHelper; import ru.betterend.util.BlocksHelper;
import ru.betterend.util.MHelper; import ru.betterend.util.MHelper;
import ru.betterend.world.biome.EndBiome;
public class EndLakeFeature extends DefaultFeature { public class EndLakeFeature extends DefaultFeature {
private static final BlockState END_STONE = Blocks.END_STONE.getDefaultState(); private static final BlockState END_STONE = Blocks.END_STONE.getDefaultState();
@ -165,18 +168,10 @@ public class EndLakeFeature extends DefaultFeature {
if (world.getBlockState(pos).getBlock().isIn(BlockTagRegistry.GEN_TERRAIN)) if (world.getBlockState(pos).getBlock().isIn(BlockTagRegistry.GEN_TERRAIN))
{ {
BlocksHelper.setWithoutUpdate(world, POS.down(), BlockRegistry.ENDSTONE_DUST.getDefaultState()); BlocksHelper.setWithoutUpdate(world, POS.down(), BlockRegistry.ENDSTONE_DUST.getDefaultState());
if (y < waterLevel - 1 && random.nextInt(3) == 0 && ((x + z) & 1) == 0) { if (random.nextInt(3) == 0 && pos.getY() < waterLevel - 1) {
if (NOISE.eval(x * 0.1, z * 0.1, 0) > 0) { EndBiome biome = BiomeRegistry.getFromBiome(world.getBiome(POS));
BlocksHelper.setWithoutUpdate(world, POS, BlockRegistry.BUBBLE_CORAL.getDefaultState()); if (biome == BiomeRegistry.FOGGY_MUSHROOMLAND) {
} generateFoggyMushroomland(world, x, z, waterLevel);
else if (NOISE.eval(x * 0.1, z * 0.1, 1) > 0) {
world.setBlockState(POS, BlockRegistry.END_LILY.getDefaultState().with(BlockEndLily.SHAPE, TripleShape.BOTTOM), 0);
BlockPos up = POS.up();
while (up.getY() < waterLevel) {
BlocksHelper.setWithoutUpdate(world, up, BlockRegistry.END_LILY.getDefaultState().with(BlockEndLily.SHAPE, TripleShape.MIDDLE));
up = up.up();
}
BlocksHelper.setWithoutUpdate(world, up, BlockRegistry.END_LILY.getDefaultState().with(BlockEndLily.SHAPE, TripleShape.TOP));
} }
} }
} }
@ -214,4 +209,19 @@ public class EndLakeFeature extends DefaultFeature {
return true; return true;
} }
private void generateFoggyMushroomland(WorldAccess world, int x, int z, int waterLevel) {
if (NOISE.eval(x * 0.1, z * 0.1, 0) > 0) {
BlocksHelper.setWithoutUpdate(world, POS, BlockRegistry.BUBBLE_CORAL.getDefaultState());
}
else if (NOISE.eval(x * 0.1, z * 0.1, 1) > 0) {
world.setBlockState(POS, BlockRegistry.END_LILY.getDefaultState().with(BlockEndLily.SHAPE, TripleShape.BOTTOM), 0);
BlockPos up = POS.up();
while (up.getY() < waterLevel) {
BlocksHelper.setWithoutUpdate(world, up, BlockRegistry.END_LILY.getDefaultState().with(BlockEndLily.SHAPE, TripleShape.MIDDLE));
up = up.up();
}
BlocksHelper.setWithoutUpdate(world, up, BlockRegistry.END_LILY.getDefaultState().with(BlockEndLily.SHAPE, TripleShape.TOP));
}
}
} }

View file

@ -1,16 +1,16 @@
{ {
"variants": { "variants": {
"axis=x": { "axis=x": {
"model": "betterend:block/%name%_log", "model": "betterend:block/chorus_bark",
"x": 90, "x": 90,
"y": 90 "y": 90
}, },
"axis=y": { "axis=y": {
"model": "betterend:block/%name%_log" "model": "betterend:block/chorus_bark"
}, },
"axis=z": { "axis=z": {
"model": "betterend:block/%name%_log", "model": "betterend:block/chorus_bark",
"x": 90 "x": 90
} }
} }
} }

View file

@ -1,56 +1,56 @@
{ {
"variants": { "variants": {
"facing=down,open=false": { "facing=down,open=false": {
"model": "betterend:block/%name%_barrel", "model": "betterend:block/chorus_barrel",
"x": 180 "x": 180
}, },
"facing=down,open=true": { "facing=down,open=true": {
"model": "betterend:block/%name%_barrel_open", "model": "betterend:block/chorus_barrel_open",
"x": 180 "x": 180
}, },
"facing=east,open=false": { "facing=east,open=false": {
"model": "betterend:block/%name%_barrel", "model": "betterend:block/chorus_barrel",
"x": 90, "x": 90,
"y": 90 "y": 90
}, },
"facing=east,open=true": { "facing=east,open=true": {
"model": "betterend:block/%name%_barrel_open", "model": "betterend:block/chorus_barrel_open",
"x": 90, "x": 90,
"y": 90 "y": 90
}, },
"facing=north,open=false": { "facing=north,open=false": {
"model": "betterend:block/%name%_barrel", "model": "betterend:block/chorus_barrel",
"x": 90 "x": 90
}, },
"facing=north,open=true": { "facing=north,open=true": {
"model": "betterend:block/%name%_barrel_open", "model": "betterend:block/chorus_barrel_open",
"x": 90 "x": 90
}, },
"facing=south,open=false": { "facing=south,open=false": {
"model": "betterend:block/%name%_barrel", "model": "betterend:block/chorus_barrel",
"x": 90, "x": 90,
"y": 180 "y": 180
}, },
"facing=south,open=true": { "facing=south,open=true": {
"model": "betterend:block/%name%_barrel_open", "model": "betterend:block/chorus_barrel_open",
"x": 90, "x": 90,
"y": 180 "y": 180
}, },
"facing=up,open=false": { "facing=up,open=false": {
"model": "betterend:block/%name%_barrel" "model": "betterend:block/chorus_barrel"
}, },
"facing=up,open=true": { "facing=up,open=true": {
"model": "betterend:block/%name%_barrel_open" "model": "betterend:block/chorus_barrel_open"
}, },
"facing=west,open=false": { "facing=west,open=false": {
"model": "betterend:block/%name%_barrel", "model": "betterend:block/chorus_barrel",
"x": 90, "x": 90,
"y": 270 "y": 270
}, },
"facing=west,open=true": { "facing=west,open=true": {
"model": "betterend:block/%name%_barrel_open", "model": "betterend:block/chorus_barrel_open",
"x": 90, "x": 90,
"y": 270 "y": 270
} }
} }
} }

View file

@ -1,118 +1,118 @@
{ {
"variants": { "variants": {
"face=ceiling,facing=east,powered=false": { "face=ceiling,facing=east,powered=false": {
"model": "betterend:block/%name%_button", "model": "betterend:block/chorus_button",
"x": 180, "x": 180,
"y": 270 "y": 270
}, },
"face=ceiling,facing=east,powered=true": { "face=ceiling,facing=east,powered=true": {
"model": "betterend:block/%name%_button_pressed", "model": "betterend:block/chorus_button_pressed",
"x": 180, "x": 180,
"y": 270 "y": 270
}, },
"face=ceiling,facing=north,powered=false": { "face=ceiling,facing=north,powered=false": {
"model": "betterend:block/%name%_button", "model": "betterend:block/chorus_button",
"x": 180, "x": 180,
"y": 180 "y": 180
}, },
"face=ceiling,facing=north,powered=true": { "face=ceiling,facing=north,powered=true": {
"model": "betterend:block/%name%_button_pressed", "model": "betterend:block/chorus_button_pressed",
"x": 180, "x": 180,
"y": 180 "y": 180
}, },
"face=ceiling,facing=south,powered=false": { "face=ceiling,facing=south,powered=false": {
"model": "betterend:block/%name%_button", "model": "betterend:block/chorus_button",
"x": 180 "x": 180
}, },
"face=ceiling,facing=south,powered=true": { "face=ceiling,facing=south,powered=true": {
"model": "betterend:block/%name%_button_pressed", "model": "betterend:block/chorus_button_pressed",
"x": 180 "x": 180
}, },
"face=ceiling,facing=west,powered=false": { "face=ceiling,facing=west,powered=false": {
"model": "betterend:block/%name%_button", "model": "betterend:block/chorus_button",
"x": 180, "x": 180,
"y": 90 "y": 90
}, },
"face=ceiling,facing=west,powered=true": { "face=ceiling,facing=west,powered=true": {
"model": "betterend:block/%name%_button_pressed", "model": "betterend:block/chorus_button_pressed",
"x": 180, "x": 180,
"y": 90 "y": 90
}, },
"face=floor,facing=east,powered=false": { "face=floor,facing=east,powered=false": {
"model": "betterend:block/%name%_button", "model": "betterend:block/chorus_button",
"y": 90 "y": 90
}, },
"face=floor,facing=east,powered=true": { "face=floor,facing=east,powered=true": {
"model": "betterend:block/%name%_button_pressed", "model": "betterend:block/chorus_button_pressed",
"y": 90 "y": 90
}, },
"face=floor,facing=north,powered=false": { "face=floor,facing=north,powered=false": {
"model": "betterend:block/%name%_button" "model": "betterend:block/chorus_button"
}, },
"face=floor,facing=north,powered=true": { "face=floor,facing=north,powered=true": {
"model": "betterend:block/%name%_button_pressed" "model": "betterend:block/chorus_button_pressed"
}, },
"face=floor,facing=south,powered=false": { "face=floor,facing=south,powered=false": {
"model": "betterend:block/%name%_button", "model": "betterend:block/chorus_button",
"y": 180 "y": 180
}, },
"face=floor,facing=south,powered=true": { "face=floor,facing=south,powered=true": {
"model": "betterend:block/%name%_button_pressed", "model": "betterend:block/chorus_button_pressed",
"y": 180 "y": 180
}, },
"face=floor,facing=west,powered=false": { "face=floor,facing=west,powered=false": {
"model": "betterend:block/%name%_button", "model": "betterend:block/chorus_button",
"y": 270 "y": 270
}, },
"face=floor,facing=west,powered=true": { "face=floor,facing=west,powered=true": {
"model": "betterend:block/%name%_button_pressed", "model": "betterend:block/chorus_button_pressed",
"y": 270 "y": 270
}, },
"face=wall,facing=east,powered=false": { "face=wall,facing=east,powered=false": {
"model": "betterend:block/%name%_button", "model": "betterend:block/chorus_button",
"uvlock": true, "uvlock": true,
"x": 90, "x": 90,
"y": 90 "y": 90
}, },
"face=wall,facing=east,powered=true": { "face=wall,facing=east,powered=true": {
"model": "betterend:block/%name%_button_pressed", "model": "betterend:block/chorus_button_pressed",
"uvlock": true, "uvlock": true,
"x": 90, "x": 90,
"y": 90 "y": 90
}, },
"face=wall,facing=north,powered=false": { "face=wall,facing=north,powered=false": {
"model": "betterend:block/%name%_button", "model": "betterend:block/chorus_button",
"uvlock": true, "uvlock": true,
"x": 90 "x": 90
}, },
"face=wall,facing=north,powered=true": { "face=wall,facing=north,powered=true": {
"model": "betterend:block/%name%_button_pressed", "model": "betterend:block/chorus_button_pressed",
"uvlock": true, "uvlock": true,
"x": 90 "x": 90
}, },
"face=wall,facing=south,powered=false": { "face=wall,facing=south,powered=false": {
"model": "betterend:block/%name%_button", "model": "betterend:block/chorus_button",
"uvlock": true, "uvlock": true,
"x": 90, "x": 90,
"y": 180 "y": 180
}, },
"face=wall,facing=south,powered=true": { "face=wall,facing=south,powered=true": {
"model": "betterend:block/%name%_button_pressed", "model": "betterend:block/chorus_button_pressed",
"uvlock": true, "uvlock": true,
"x": 90, "x": 90,
"y": 180 "y": 180
}, },
"face=wall,facing=west,powered=false": { "face=wall,facing=west,powered=false": {
"model": "betterend:block/%name%_button", "model": "betterend:block/chorus_button",
"uvlock": true, "uvlock": true,
"x": 90, "x": 90,
"y": 270 "y": 270
}, },
"face=wall,facing=west,powered=true": { "face=wall,facing=west,powered=true": {
"model": "betterend:block/%name%_button_pressed", "model": "betterend:block/chorus_button_pressed",
"uvlock": true, "uvlock": true,
"x": 90, "x": 90,
"y": 270 "y": 270
} }
} }
} }

View file

@ -0,0 +1,7 @@
{
"variants": {
"": {
"model": "betterend:block/chorus_empty"
}
}
}

View file

@ -0,0 +1,7 @@
{
"variants": {
"": {
"model": "betterend:block/chorus_crafting_table"
}
}
}

View file

@ -1,124 +1,124 @@
{ {
"variants": { "variants": {
"facing=east,half=lower,hinge=left,open=false": { "facing=east,half=lower,hinge=left,open=false": {
"model": "betterend:block/%name%_door_bottom" "model": "betterend:block/chorus_door_bottom"
}, },
"facing=east,half=lower,hinge=left,open=true": { "facing=east,half=lower,hinge=left,open=true": {
"model": "betterend:block/%name%_door_bottom_hinge", "model": "betterend:block/chorus_door_bottom_hinge",
"y": 90 "y": 90
}, },
"facing=east,half=lower,hinge=right,open=false": { "facing=east,half=lower,hinge=right,open=false": {
"model": "betterend:block/%name%_door_bottom_hinge" "model": "betterend:block/chorus_door_bottom_hinge"
}, },
"facing=east,half=lower,hinge=right,open=true": { "facing=east,half=lower,hinge=right,open=true": {
"model": "betterend:block/%name%_door_bottom", "model": "betterend:block/chorus_door_bottom",
"y": 270 "y": 270
}, },
"facing=east,half=upper,hinge=left,open=false": { "facing=east,half=upper,hinge=left,open=false": {
"model": "betterend:block/%name%_door_top" "model": "betterend:block/chorus_door_top"
}, },
"facing=east,half=upper,hinge=left,open=true": { "facing=east,half=upper,hinge=left,open=true": {
"model": "betterend:block/%name%_door_top_hinge", "model": "betterend:block/chorus_door_top_hinge",
"y": 90 "y": 90
}, },
"facing=east,half=upper,hinge=right,open=false": { "facing=east,half=upper,hinge=right,open=false": {
"model": "betterend:block/%name%_door_top_hinge" "model": "betterend:block/chorus_door_top_hinge"
}, },
"facing=east,half=upper,hinge=right,open=true": { "facing=east,half=upper,hinge=right,open=true": {
"model": "betterend:block/%name%_door_top", "model": "betterend:block/chorus_door_top",
"y": 270 "y": 270
}, },
"facing=north,half=lower,hinge=left,open=false": { "facing=north,half=lower,hinge=left,open=false": {
"model": "betterend:block/%name%_door_bottom", "model": "betterend:block/chorus_door_bottom",
"y": 270 "y": 270
}, },
"facing=north,half=lower,hinge=left,open=true": { "facing=north,half=lower,hinge=left,open=true": {
"model": "betterend:block/%name%_door_bottom_hinge" "model": "betterend:block/chorus_door_bottom_hinge"
}, },
"facing=north,half=lower,hinge=right,open=false": { "facing=north,half=lower,hinge=right,open=false": {
"model": "betterend:block/%name%_door_bottom_hinge", "model": "betterend:block/chorus_door_bottom_hinge",
"y": 270 "y": 270
}, },
"facing=north,half=lower,hinge=right,open=true": { "facing=north,half=lower,hinge=right,open=true": {
"model": "betterend:block/%name%_door_bottom", "model": "betterend:block/chorus_door_bottom",
"y": 180 "y": 180
}, },
"facing=north,half=upper,hinge=left,open=false": { "facing=north,half=upper,hinge=left,open=false": {
"model": "betterend:block/%name%_door_top", "model": "betterend:block/chorus_door_top",
"y": 270 "y": 270
}, },
"facing=north,half=upper,hinge=left,open=true": { "facing=north,half=upper,hinge=left,open=true": {
"model": "betterend:block/%name%_door_top_hinge" "model": "betterend:block/chorus_door_top_hinge"
}, },
"facing=north,half=upper,hinge=right,open=false": { "facing=north,half=upper,hinge=right,open=false": {
"model": "betterend:block/%name%_door_top_hinge", "model": "betterend:block/chorus_door_top_hinge",
"y": 270 "y": 270
}, },
"facing=north,half=upper,hinge=right,open=true": { "facing=north,half=upper,hinge=right,open=true": {
"model": "betterend:block/%name%_door_top", "model": "betterend:block/chorus_door_top",
"y": 180 "y": 180
}, },
"facing=south,half=lower,hinge=left,open=false": { "facing=south,half=lower,hinge=left,open=false": {
"model": "betterend:block/%name%_door_bottom", "model": "betterend:block/chorus_door_bottom",
"y": 90 "y": 90
}, },
"facing=south,half=lower,hinge=left,open=true": { "facing=south,half=lower,hinge=left,open=true": {
"model": "betterend:block/%name%_door_bottom_hinge", "model": "betterend:block/chorus_door_bottom_hinge",
"y": 180 "y": 180
}, },
"facing=south,half=lower,hinge=right,open=false": { "facing=south,half=lower,hinge=right,open=false": {
"model": "betterend:block/%name%_door_bottom_hinge", "model": "betterend:block/chorus_door_bottom_hinge",
"y": 90 "y": 90
}, },
"facing=south,half=lower,hinge=right,open=true": { "facing=south,half=lower,hinge=right,open=true": {
"model": "betterend:block/%name%_door_bottom" "model": "betterend:block/chorus_door_bottom"
}, },
"facing=south,half=upper,hinge=left,open=false": { "facing=south,half=upper,hinge=left,open=false": {
"model": "betterend:block/%name%_door_top", "model": "betterend:block/chorus_door_top",
"y": 90 "y": 90
}, },
"facing=south,half=upper,hinge=left,open=true": { "facing=south,half=upper,hinge=left,open=true": {
"model": "betterend:block/%name%_door_top_hinge", "model": "betterend:block/chorus_door_top_hinge",
"y": 180 "y": 180
}, },
"facing=south,half=upper,hinge=right,open=false": { "facing=south,half=upper,hinge=right,open=false": {
"model": "betterend:block/%name%_door_top_hinge", "model": "betterend:block/chorus_door_top_hinge",
"y": 90 "y": 90
}, },
"facing=south,half=upper,hinge=right,open=true": { "facing=south,half=upper,hinge=right,open=true": {
"model": "betterend:block/%name%_door_top" "model": "betterend:block/chorus_door_top"
}, },
"facing=west,half=lower,hinge=left,open=false": { "facing=west,half=lower,hinge=left,open=false": {
"model": "betterend:block/%name%_door_bottom", "model": "betterend:block/chorus_door_bottom",
"y": 180 "y": 180
}, },
"facing=west,half=lower,hinge=left,open=true": { "facing=west,half=lower,hinge=left,open=true": {
"model": "betterend:block/%name%_door_bottom_hinge", "model": "betterend:block/chorus_door_bottom_hinge",
"y": 270 "y": 270
}, },
"facing=west,half=lower,hinge=right,open=false": { "facing=west,half=lower,hinge=right,open=false": {
"model": "betterend:block/%name%_door_bottom_hinge", "model": "betterend:block/chorus_door_bottom_hinge",
"y": 180 "y": 180
}, },
"facing=west,half=lower,hinge=right,open=true": { "facing=west,half=lower,hinge=right,open=true": {
"model": "betterend:block/%name%_door_bottom", "model": "betterend:block/chorus_door_bottom",
"y": 90 "y": 90
}, },
"facing=west,half=upper,hinge=left,open=false": { "facing=west,half=upper,hinge=left,open=false": {
"model": "betterend:block/%name%_door_top", "model": "betterend:block/chorus_door_top",
"y": 180 "y": 180
}, },
"facing=west,half=upper,hinge=left,open=true": { "facing=west,half=upper,hinge=left,open=true": {
"model": "betterend:block/%name%_door_top_hinge", "model": "betterend:block/chorus_door_top_hinge",
"y": 270 "y": 270
}, },
"facing=west,half=upper,hinge=right,open=false": { "facing=west,half=upper,hinge=right,open=false": {
"model": "betterend:block/%name%_door_top_hinge", "model": "betterend:block/chorus_door_top_hinge",
"y": 180 "y": 180
}, },
"facing=west,half=upper,hinge=right,open=true": { "facing=west,half=upper,hinge=right,open=true": {
"model": "betterend:block/%name%_door_top", "model": "betterend:block/chorus_door_top",
"y": 90 "y": 90
} }
} }
} }

View file

@ -1,48 +1,48 @@
{ {
"multipart": [ "multipart": [
{ {
"apply": { "apply": {
"model": "betterend:block/%name%_fence_post" "model": "betterend:block/chorus_fence_post"
} }
}, },
{ {
"apply": { "apply": {
"model": "betterend:block/%name%_fence_side", "model": "betterend:block/chorus_fence_side",
"uvlock": true "uvlock": true
}, },
"when": { "when": {
"north": true "north": true
} }
}, },
{ {
"apply": { "apply": {
"model": "betterend:block/%name%_fence_side", "model": "betterend:block/chorus_fence_side",
"uvlock": true, "uvlock": true,
"y": 90 "y": 90
}, },
"when": { "when": {
"east": true "east": true
} }
}, },
{ {
"apply": { "apply": {
"model": "betterend:block/%name%_fence_side", "model": "betterend:block/chorus_fence_side",
"uvlock": true, "uvlock": true,
"y": 180 "y": 180
}, },
"when": { "when": {
"south": true "south": true
} }
}, },
{ {
"apply": { "apply": {
"model": "betterend:block/%name%_fence_side", "model": "betterend:block/chorus_fence_side",
"uvlock": true, "uvlock": true,
"y": 270 "y": 270
}, },
"when": { "when": {
"west": true "west": true
} }
} }
] ]
} }

View file

@ -1,80 +1,80 @@
{ {
"variants": { "variants": {
"facing=east,in_wall=false,open=false": { "facing=east,in_wall=false,open=false": {
"model": "betterend:block/%name%_fence_gate_closed", "model": "betterend:block/chorus_fence_gate_closed",
"uvlock": true, "uvlock": true,
"y": 270 "y": 270
}, },
"facing=east,in_wall=false,open=true": { "facing=east,in_wall=false,open=true": {
"model": "betterend:block/%name%_fence_gate_open", "model": "betterend:block/chorus_fence_gate_open",
"uvlock": true, "uvlock": true,
"y": 270 "y": 270
}, },
"facing=east,in_wall=true,open=false": { "facing=east,in_wall=true,open=false": {
"model": "betterend:block/%name%_wall_gate_closed", "model": "betterend:block/chorus_wall_gate_closed",
"uvlock": true, "uvlock": true,
"y": 270 "y": 270
}, },
"facing=east,in_wall=true,open=true": { "facing=east,in_wall=true,open=true": {
"model": "betterend:block/%name%_wall_gate_open", "model": "betterend:block/chorus_wall_gate_open",
"uvlock": true, "uvlock": true,
"y": 270 "y": 270
}, },
"facing=north,in_wall=false,open=false": { "facing=north,in_wall=false,open=false": {
"model": "betterend:block/%name%_fence_gate_closed", "model": "betterend:block/chorus_fence_gate_closed",
"uvlock": true, "uvlock": true,
"y": 180 "y": 180
}, },
"facing=north,in_wall=false,open=true": { "facing=north,in_wall=false,open=true": {
"model": "betterend:block/%name%_fence_gate_open", "model": "betterend:block/chorus_fence_gate_open",
"uvlock": true, "uvlock": true,
"y": 180 "y": 180
}, },
"facing=north,in_wall=true,open=false": { "facing=north,in_wall=true,open=false": {
"model": "betterend:block/%name%_wall_gate_closed", "model": "betterend:block/chorus_wall_gate_closed",
"uvlock": true, "uvlock": true,
"y": 180 "y": 180
}, },
"facing=north,in_wall=true,open=true": { "facing=north,in_wall=true,open=true": {
"model": "betterend:block/%name%_wall_gate_open", "model": "betterend:block/chorus_wall_gate_open",
"uvlock": true, "uvlock": true,
"y": 180 "y": 180
}, },
"facing=south,in_wall=false,open=false": { "facing=south,in_wall=false,open=false": {
"model": "betterend:block/%name%_fence_gate_closed", "model": "betterend:block/chorus_fence_gate_closed",
"uvlock": true "uvlock": true
}, },
"facing=south,in_wall=false,open=true": { "facing=south,in_wall=false,open=true": {
"model": "betterend:block/%name%_fence_gate_open", "model": "betterend:block/chorus_fence_gate_open",
"uvlock": true "uvlock": true
}, },
"facing=south,in_wall=true,open=false": { "facing=south,in_wall=true,open=false": {
"model": "betterend:block/%name%_wall_gate_closed", "model": "betterend:block/chorus_wall_gate_closed",
"uvlock": true "uvlock": true
}, },
"facing=south,in_wall=true,open=true": { "facing=south,in_wall=true,open=true": {
"model": "betterend:block/%name%_wall_gate_open", "model": "betterend:block/chorus_wall_gate_open",
"uvlock": true "uvlock": true
}, },
"facing=west,in_wall=false,open=false": { "facing=west,in_wall=false,open=false": {
"model": "betterend:block/%name%_fence_gate_closed", "model": "betterend:block/chorus_fence_gate_closed",
"uvlock": true, "uvlock": true,
"y": 90 "y": 90
}, },
"facing=west,in_wall=false,open=true": { "facing=west,in_wall=false,open=true": {
"model": "betterend:block/%name%_fence_gate_open", "model": "betterend:block/chorus_fence_gate_open",
"uvlock": true, "uvlock": true,
"y": 90 "y": 90
}, },
"facing=west,in_wall=true,open=false": { "facing=west,in_wall=true,open=false": {
"model": "betterend:block/%name%_wall_gate_closed", "model": "betterend:block/chorus_wall_gate_closed",
"uvlock": true, "uvlock": true,
"y": 90 "y": 90
}, },
"facing=west,in_wall=true,open=true": { "facing=west,in_wall=true,open=true": {
"model": "betterend:block/%name%_wall_gate_open", "model": "betterend:block/chorus_wall_gate_open",
"uvlock": true, "uvlock": true,
"y": 90 "y": 90
} }
} }
} }

View file

@ -0,0 +1,38 @@
{
"variants": {
"": [
{ "model": "betterend:block/chorus_grass_01" },
{ "model": "betterend:block/chorus_grass_02" },
{ "model": "betterend:block/chorus_grass_03" },
{ "model": "betterend:block/chorus_grass_04" },
{ "model": "betterend:block/chorus_grass_05" },
{ "model": "betterend:block/chorus_grass_06" },
{ "model": "betterend:block/chorus_grass_07" },
{ "model": "betterend:block/chorus_grass_08" },
{ "model": "betterend:block/chorus_grass_01", "y": 90 },
{ "model": "betterend:block/chorus_grass_02", "y": 90 },
{ "model": "betterend:block/chorus_grass_03", "y": 90 },
{ "model": "betterend:block/chorus_grass_04", "y": 90 },
{ "model": "betterend:block/chorus_grass_05", "y": 90 },
{ "model": "betterend:block/chorus_grass_06", "y": 90 },
{ "model": "betterend:block/chorus_grass_07", "y": 90 },
{ "model": "betterend:block/chorus_grass_08", "y": 90 },
{ "model": "betterend:block/chorus_grass_01", "y": 180 },
{ "model": "betterend:block/chorus_grass_02", "y": 180 },
{ "model": "betterend:block/chorus_grass_03", "y": 180 },
{ "model": "betterend:block/chorus_grass_04", "y": 180 },
{ "model": "betterend:block/chorus_grass_05", "y": 180 },
{ "model": "betterend:block/chorus_grass_06", "y": 180 },
{ "model": "betterend:block/chorus_grass_07", "y": 180 },
{ "model": "betterend:block/chorus_grass_08", "y": 180 },
{ "model": "betterend:block/chorus_grass_01", "y": 270 },
{ "model": "betterend:block/chorus_grass_02", "y": 270 },
{ "model": "betterend:block/chorus_grass_03", "y": 270 },
{ "model": "betterend:block/chorus_grass_04", "y": 270 },
{ "model": "betterend:block/chorus_grass_05", "y": 270 },
{ "model": "betterend:block/chorus_grass_06", "y": 270 },
{ "model": "betterend:block/chorus_grass_07", "y": 270 },
{ "model": "betterend:block/chorus_grass_08", "y": 270 }
]
}
}

View file

@ -0,0 +1,19 @@
{
"variants": {
"facing=east": {
"model": "betterend:block/chorus_ladder",
"y": 90
},
"facing=north": {
"model": "betterend:block/chorus_ladder"
},
"facing=south": {
"model": "betterend:block/chorus_ladder",
"y": 180
},
"facing=west": {
"model": "betterend:block/chorus_ladder",
"y": 270
}
}
}

View file

@ -1,16 +1,16 @@
{ {
"variants": { "variants": {
"axis=x": { "axis=x": {
"model": "betterend:block/%name%_bark", "model": "betterend:block/chorus_log",
"x": 90, "x": 90,
"y": 90 "y": 90
}, },
"axis=y": { "axis=y": {
"model": "betterend:block/%name%_bark" "model": "betterend:block/chorus_log"
}, },
"axis=z": { "axis=z": {
"model": "betterend:block/%name%_bark", "model": "betterend:block/chorus_log",
"x": 90 "x": 90
} }
} }
} }

View file

@ -0,0 +1,10 @@
{
"variants": {
"": [
{ "model": "betterend:block/chorus_nylium" },
{ "model": "betterend:block/chorus_nylium", "y": 90 },
{ "model": "betterend:block/chorus_nylium", "y": 180 },
{ "model": "betterend:block/chorus_nylium", "y": 270 }
]
}
}

View file

@ -0,0 +1,10 @@
{
"variants": {
"": [
{ "model": "betterend:block/chorus_nylium_path" },
{ "model": "betterend:block/chorus_nylium_path", "y": 90 },
{ "model": "betterend:block/chorus_nylium_path", "y": 180 },
{ "model": "betterend:block/chorus_nylium_path", "y": 270 }
]
}
}

View file

@ -0,0 +1,7 @@
{
"variants": {
"": {
"model": "betterend:block/chorus_planks"
}
}
}

View file

@ -0,0 +1,10 @@
{
"variants": {
"powered=false": {
"model": "betterend:block/chorus_pressure_plate_up"
},
"powered=true": {
"model": "betterend:block/chorus_pressure_plate_down"
}
}
}

View file

@ -0,0 +1,7 @@
{
"variants": {
"": {
"model": "betterend:block/chorus_empty"
}
}
}

View file

@ -1,15 +1,15 @@
{ {
"variants": { "variants": {
"type=bottom": { "type=bottom": {
"model": "betterend:block/%name%_half_slab" "model": "betterend:block/chorus_half_slab"
}, },
"type=double": { "type=double": {
"model": "betterend:block/%name%_planks" "model": "betterend:block/chorus_planks"
}, },
"type=top": { "type=top": {
"model": "betterend:block/%name%_half_slab", "model": "betterend:block/chorus_half_slab",
"uvlock": true, "uvlock": true,
"x": 180 "x": 180
} }
} }
} }

View file

@ -1,209 +1,209 @@
{ {
"variants": { "variants": {
"facing=east,half=bottom,shape=inner_left": { "facing=east,half=bottom,shape=inner_left": {
"model": "betterend:block/%name%_inner_stairs", "model": "betterend:block/chorus_inner_stairs",
"uvlock": true, "uvlock": true,
"y": 270 "y": 270
}, },
"facing=east,half=bottom,shape=inner_right": { "facing=east,half=bottom,shape=inner_right": {
"model": "betterend:block/%name%_inner_stairs" "model": "betterend:block/chorus_inner_stairs"
}, },
"facing=east,half=bottom,shape=outer_left": { "facing=east,half=bottom,shape=outer_left": {
"model": "betterend:block/%name%_outer_stairs", "model": "betterend:block/chorus_outer_stairs",
"uvlock": true, "uvlock": true,
"y": 270 "y": 270
}, },
"facing=east,half=bottom,shape=outer_right": { "facing=east,half=bottom,shape=outer_right": {
"model": "betterend:block/%name%_outer_stairs" "model": "betterend:block/chorus_outer_stairs"
}, },
"facing=east,half=bottom,shape=straight": { "facing=east,half=bottom,shape=straight": {
"model": "betterend:block/%name%_stairs" "model": "betterend:block/chorus_stairs"
}, },
"facing=east,half=top,shape=inner_left": { "facing=east,half=top,shape=inner_left": {
"model": "betterend:block/%name%_inner_stairs", "model": "betterend:block/chorus_inner_stairs",
"uvlock": true, "uvlock": true,
"x": 180 "x": 180
}, },
"facing=east,half=top,shape=inner_right": { "facing=east,half=top,shape=inner_right": {
"model": "betterend:block/%name%_inner_stairs", "model": "betterend:block/chorus_inner_stairs",
"uvlock": true, "uvlock": true,
"x": 180, "x": 180,
"y": 90 "y": 90
}, },
"facing=east,half=top,shape=outer_left": { "facing=east,half=top,shape=outer_left": {
"model": "betterend:block/%name%_outer_stairs", "model": "betterend:block/chorus_outer_stairs",
"uvlock": true, "uvlock": true,
"x": 180 "x": 180
}, },
"facing=east,half=top,shape=outer_right": { "facing=east,half=top,shape=outer_right": {
"model": "betterend:block/%name%_outer_stairs", "model": "betterend:block/chorus_outer_stairs",
"uvlock": true, "uvlock": true,
"x": 180, "x": 180,
"y": 90 "y": 90
}, },
"facing=east,half=top,shape=straight": { "facing=east,half=top,shape=straight": {
"model": "betterend:block/%name%_stairs", "model": "betterend:block/chorus_stairs",
"uvlock": true, "uvlock": true,
"x": 180 "x": 180
}, },
"facing=north,half=bottom,shape=inner_left": { "facing=north,half=bottom,shape=inner_left": {
"model": "betterend:block/%name%_inner_stairs", "model": "betterend:block/chorus_inner_stairs",
"uvlock": true, "uvlock": true,
"y": 180 "y": 180
}, },
"facing=north,half=bottom,shape=inner_right": { "facing=north,half=bottom,shape=inner_right": {
"model": "betterend:block/%name%_inner_stairs", "model": "betterend:block/chorus_inner_stairs",
"uvlock": true, "uvlock": true,
"y": 270 "y": 270
}, },
"facing=north,half=bottom,shape=outer_left": { "facing=north,half=bottom,shape=outer_left": {
"model": "betterend:block/%name%_outer_stairs", "model": "betterend:block/chorus_outer_stairs",
"uvlock": true, "uvlock": true,
"y": 180 "y": 180
}, },
"facing=north,half=bottom,shape=outer_right": { "facing=north,half=bottom,shape=outer_right": {
"model": "betterend:block/%name%_outer_stairs", "model": "betterend:block/chorus_outer_stairs",
"uvlock": true, "uvlock": true,
"y": 270 "y": 270
}, },
"facing=north,half=bottom,shape=straight": { "facing=north,half=bottom,shape=straight": {
"model": "betterend:block/%name%_stairs", "model": "betterend:block/chorus_stairs",
"uvlock": true, "uvlock": true,
"y": 270 "y": 270
}, },
"facing=north,half=top,shape=inner_left": { "facing=north,half=top,shape=inner_left": {
"model": "betterend:block/%name%_inner_stairs", "model": "betterend:block/chorus_inner_stairs",
"uvlock": true, "uvlock": true,
"x": 180, "x": 180,
"y": 270 "y": 270
}, },
"facing=north,half=top,shape=inner_right": { "facing=north,half=top,shape=inner_right": {
"model": "betterend:block/%name%_inner_stairs", "model": "betterend:block/chorus_inner_stairs",
"uvlock": true, "uvlock": true,
"x": 180 "x": 180
}, },
"facing=north,half=top,shape=outer_left": { "facing=north,half=top,shape=outer_left": {
"model": "betterend:block/%name%_outer_stairs", "model": "betterend:block/chorus_outer_stairs",
"uvlock": true, "uvlock": true,
"x": 180, "x": 180,
"y": 270 "y": 270
}, },
"facing=north,half=top,shape=outer_right": { "facing=north,half=top,shape=outer_right": {
"model": "betterend:block/%name%_outer_stairs", "model": "betterend:block/chorus_outer_stairs",
"uvlock": true, "uvlock": true,
"x": 180 "x": 180
}, },
"facing=north,half=top,shape=straight": { "facing=north,half=top,shape=straight": {
"model": "betterend:block/%name%_stairs", "model": "betterend:block/chorus_stairs",
"uvlock": true, "uvlock": true,
"x": 180, "x": 180,
"y": 270 "y": 270
}, },
"facing=south,half=bottom,shape=inner_left": { "facing=south,half=bottom,shape=inner_left": {
"model": "betterend:block/%name%_inner_stairs" "model": "betterend:block/chorus_inner_stairs"
}, },
"facing=south,half=bottom,shape=inner_right": { "facing=south,half=bottom,shape=inner_right": {
"model": "betterend:block/%name%_inner_stairs", "model": "betterend:block/chorus_inner_stairs",
"uvlock": true, "uvlock": true,
"y": 90 "y": 90
}, },
"facing=south,half=bottom,shape=outer_left": { "facing=south,half=bottom,shape=outer_left": {
"model": "betterend:block/%name%_outer_stairs" "model": "betterend:block/chorus_outer_stairs"
}, },
"facing=south,half=bottom,shape=outer_right": { "facing=south,half=bottom,shape=outer_right": {
"model": "betterend:block/%name%_outer_stairs", "model": "betterend:block/chorus_outer_stairs",
"uvlock": true, "uvlock": true,
"y": 90 "y": 90
}, },
"facing=south,half=bottom,shape=straight": { "facing=south,half=bottom,shape=straight": {
"model": "betterend:block/%name%_stairs", "model": "betterend:block/chorus_stairs",
"uvlock": true, "uvlock": true,
"y": 90 "y": 90
}, },
"facing=south,half=top,shape=inner_left": { "facing=south,half=top,shape=inner_left": {
"model": "betterend:block/%name%_inner_stairs", "model": "betterend:block/chorus_inner_stairs",
"uvlock": true, "uvlock": true,
"x": 180, "x": 180,
"y": 90 "y": 90
}, },
"facing=south,half=top,shape=inner_right": { "facing=south,half=top,shape=inner_right": {
"model": "betterend:block/%name%_inner_stairs", "model": "betterend:block/chorus_inner_stairs",
"uvlock": true, "uvlock": true,
"x": 180, "x": 180,
"y": 180 "y": 180
}, },
"facing=south,half=top,shape=outer_left": { "facing=south,half=top,shape=outer_left": {
"model": "betterend:block/%name%_outer_stairs", "model": "betterend:block/chorus_outer_stairs",
"uvlock": true, "uvlock": true,
"x": 180, "x": 180,
"y": 90 "y": 90
}, },
"facing=south,half=top,shape=outer_right": { "facing=south,half=top,shape=outer_right": {
"model": "betterend:block/%name%_outer_stairs", "model": "betterend:block/chorus_outer_stairs",
"uvlock": true, "uvlock": true,
"x": 180, "x": 180,
"y": 180 "y": 180
}, },
"facing=south,half=top,shape=straight": { "facing=south,half=top,shape=straight": {
"model": "betterend:block/%name%_stairs", "model": "betterend:block/chorus_stairs",
"uvlock": true, "uvlock": true,
"x": 180, "x": 180,
"y": 90 "y": 90
}, },
"facing=west,half=bottom,shape=inner_left": { "facing=west,half=bottom,shape=inner_left": {
"model": "betterend:block/%name%_inner_stairs", "model": "betterend:block/chorus_inner_stairs",
"uvlock": true, "uvlock": true,
"y": 90 "y": 90
}, },
"facing=west,half=bottom,shape=inner_right": { "facing=west,half=bottom,shape=inner_right": {
"model": "betterend:block/%name%_inner_stairs", "model": "betterend:block/chorus_inner_stairs",
"uvlock": true, "uvlock": true,
"y": 180 "y": 180
}, },
"facing=west,half=bottom,shape=outer_left": { "facing=west,half=bottom,shape=outer_left": {
"model": "betterend:block/%name%_outer_stairs", "model": "betterend:block/chorus_outer_stairs",
"uvlock": true, "uvlock": true,
"y": 90 "y": 90
}, },
"facing=west,half=bottom,shape=outer_right": { "facing=west,half=bottom,shape=outer_right": {
"model": "betterend:block/%name%_outer_stairs", "model": "betterend:block/chorus_outer_stairs",
"uvlock": true, "uvlock": true,
"y": 180 "y": 180
}, },
"facing=west,half=bottom,shape=straight": { "facing=west,half=bottom,shape=straight": {
"model": "betterend:block/%name%_stairs", "model": "betterend:block/chorus_stairs",
"uvlock": true, "uvlock": true,
"y": 180 "y": 180
}, },
"facing=west,half=top,shape=inner_left": { "facing=west,half=top,shape=inner_left": {
"model": "betterend:block/%name%_inner_stairs", "model": "betterend:block/chorus_inner_stairs",
"uvlock": true, "uvlock": true,
"x": 180, "x": 180,
"y": 180 "y": 180
}, },
"facing=west,half=top,shape=inner_right": { "facing=west,half=top,shape=inner_right": {
"model": "betterend:block/%name%_inner_stairs", "model": "betterend:block/chorus_inner_stairs",
"uvlock": true, "uvlock": true,
"x": 180, "x": 180,
"y": 270 "y": 270
}, },
"facing=west,half=top,shape=outer_left": { "facing=west,half=top,shape=outer_left": {
"model": "betterend:block/%name%_outer_stairs", "model": "betterend:block/chorus_outer_stairs",
"uvlock": true, "uvlock": true,
"x": 180, "x": 180,
"y": 180 "y": 180
}, },
"facing=west,half=top,shape=outer_right": { "facing=west,half=top,shape=outer_right": {
"model": "betterend:block/%name%_outer_stairs", "model": "betterend:block/chorus_outer_stairs",
"uvlock": true, "uvlock": true,
"x": 180, "x": 180,
"y": 270 "y": 270
}, },
"facing=west,half=top,shape=straight": { "facing=west,half=top,shape=straight": {
"model": "betterend:block/%name%_stairs", "model": "betterend:block/chorus_stairs",
"uvlock": true, "uvlock": true,
"x": 180, "x": 180,
"y": 180 "y": 180
} }
} }
} }

View file

@ -0,0 +1,16 @@
{
"variants": {
"axis=x": {
"model": "betterend:block/chorus_stripped_bark",
"x": 90,
"y": 90
},
"axis=y": {
"model": "betterend:block/chorus_stripped_bark"
},
"axis=z": {
"model": "betterend:block/chorus_stripped_bark",
"x": 90
}
}
}

View file

@ -0,0 +1,16 @@
{
"variants": {
"axis=x": {
"model": "betterend:block/chorus_stripped_log",
"x": 90,
"y": 90
},
"axis=y": {
"model": "betterend:block/chorus_stripped_log"
},
"axis=z": {
"model": "betterend:block/chorus_stripped_log",
"x": 90
}
}
}

View file

@ -1,77 +1,77 @@
{ {
"variants": { "variants": {
"facing=east,half=bottom,open=false": { "facing=east,half=bottom,open=false": {
"model": "betterend:block/%name%_trapdoor", "model": "betterend:block/chorus_trapdoor",
"y": 90 "y": 90
}, },
"facing=east,half=bottom,open=true": { "facing=east,half=bottom,open=true": {
"model": "betterend:block/%name%_trapdoor", "model": "betterend:block/chorus_trapdoor",
"x": 90, "x": 90,
"y": 90 "y": 90
}, },
"facing=east,half=top,open=false": { "facing=east,half=top,open=false": {
"model": "betterend:block/%name%_trapdoor", "model": "betterend:block/chorus_trapdoor",
"x": 180, "x": 180,
"y": 90 "y": 90
}, },
"facing=east,half=top,open=true": { "facing=east,half=top,open=true": {
"model": "betterend:block/%name%_trapdoor", "model": "betterend:block/chorus_trapdoor",
"x": 270, "x": 270,
"y": 270 "y": 270
}, },
"facing=north,half=bottom,open=false": { "facing=north,half=bottom,open=false": {
"model": "betterend:block/%name%_trapdoor" "model": "betterend:block/chorus_trapdoor"
}, },
"facing=north,half=bottom,open=true": { "facing=north,half=bottom,open=true": {
"model": "betterend:block/%name%_trapdoor", "model": "betterend:block/chorus_trapdoor",
"x": 90 "x": 90
}, },
"facing=north,half=top,open=false": { "facing=north,half=top,open=false": {
"model": "betterend:block/%name%_trapdoor", "model": "betterend:block/chorus_trapdoor",
"x": 180 "x": 180
}, },
"facing=north,half=top,open=true": { "facing=north,half=top,open=true": {
"model": "betterend:block/%name%_trapdoor", "model": "betterend:block/chorus_trapdoor",
"x": 270, "x": 270,
"y": 180 "y": 180
}, },
"facing=south,half=bottom,open=false": { "facing=south,half=bottom,open=false": {
"model": "betterend:block/%name%_trapdoor", "model": "betterend:block/chorus_trapdoor",
"y": 180 "y": 180
}, },
"facing=south,half=bottom,open=true": { "facing=south,half=bottom,open=true": {
"model": "betterend:block/%name%_trapdoor", "model": "betterend:block/chorus_trapdoor",
"x": 90, "x": 90,
"y": 180 "y": 180
}, },
"facing=south,half=top,open=false": { "facing=south,half=top,open=false": {
"model": "betterend:block/%name%_trapdoor", "model": "betterend:block/chorus_trapdoor",
"x": 180, "x": 180,
"y": 180 "y": 180
}, },
"facing=south,half=top,open=true": { "facing=south,half=top,open=true": {
"model": "betterend:block/%name%_trapdoor", "model": "betterend:block/chorus_trapdoor",
"x": 270, "x": 270,
"y": 0 "y": 0
}, },
"facing=west,half=bottom,open=false": { "facing=west,half=bottom,open=false": {
"model": "betterend:block/%name%_trapdoor", "model": "betterend:block/chorus_trapdoor",
"y": 270 "y": 270
}, },
"facing=west,half=bottom,open=true": { "facing=west,half=bottom,open=true": {
"model": "betterend:block/%name%_trapdoor", "model": "betterend:block/chorus_trapdoor",
"x": 90, "x": 90,
"y": 270 "y": 270
}, },
"facing=west,half=top,open=false": { "facing=west,half=top,open=false": {
"model": "betterend:block/%name%_trapdoor", "model": "betterend:block/chorus_trapdoor",
"x": 180, "x": 180,
"y": 270 "y": 270
}, },
"facing=west,half=top,open=true": { "facing=west,half=top,open=true": {
"model": "betterend:block/%name%_trapdoor", "model": "betterend:block/chorus_trapdoor",
"x": 270, "x": 270,
"y": 90 "y": 90
} }
} }
} }

View file

@ -98,5 +98,24 @@
"block.betterend.bubble_coral": "Bubble Coral", "block.betterend.bubble_coral": "Bubble Coral",
"block.betterend.aurora_crystal": "Aurora Crystal", "block.betterend.aurora_crystal": "Aurora Crystal",
"category.rei.damage.amount&dmg": "Tool damage: %s" "category.rei.damage.amount&dmg": "Tool damage: %s",
"block.betterend.chorus_bark": "Chorus Bark",
"block.betterend.chorus_barrel": "Chorus Barrel",
"block.betterend.chorus_button": "Chorus Button",
"block.betterend.chorus_chest": "Chorus Chest",
"block.betterend.chorus_crafting_table": "Chorus Crafting Table",
"block.betterend.chorus_door": "Chorus Door",
"block.betterend.chorus_fence": "Chorus Fence",
"block.betterend.chorus_gate": "Chorus Gate",
"block.betterend.chorus_ladder": "Chorus Ladder",
"block.betterend.chorus_log": "Chorus Log",
"block.betterend.chorus_planks": "Chorus Planks",
"block.betterend.chorus_plate": "Chorus Plate",
"block.betterend.chorus_sign": "Chorus Sign",
"block.betterend.chorus_slab": "Chorus Slab",
"block.betterend.chorus_stairs": "Chorus Stairs",
"block.betterend.chorus_stripped_bark": "Chorus Stripped Bark",
"block.betterend.chorus_stripped_log": "Chorus Stripped Log",
"block.betterend.chorus_trapdoor": "Chorus Trapdoor"
} }

View file

@ -1,6 +1,6 @@
{ {
"parent": "block/cube_all", "parent": "block/cube_all",
"textures": { "textures": {
"all": "betterend:block/%name%_planks" "all": "betterend:block/chorus_log_side"
} }
} }

View file

@ -0,0 +1,8 @@
{
"parent": "minecraft:block/cube_bottom_top",
"textures": {
"bottom": "betterend:block/chorus_barrel_bottom",
"side": "betterend:block/chorus_barrel_side",
"top": "betterend:block/chorus_barrel_top"
}
}

View file

@ -0,0 +1,8 @@
{
"parent": "minecraft:block/cube_bottom_top",
"textures": {
"bottom": "betterend:block/chorus_barrel_bottom",
"side": "betterend:block/chorus_barrel_side",
"top": "betterend:block/chorus_barrel_top_open"
}
}

View file

@ -1,6 +1,6 @@
{ {
"parent": "block/button", "parent": "block/button",
"textures": { "textures": {
"texture": "betterend:block/%name%_planks" "texture": "betterend:block/chorus_planks"
} }
} }

View file

@ -1,6 +1,6 @@
{ {
"parent": "block/button_inventory", "parent": "block/button_inventory",
"textures": { "textures": {
"texture": "betterend:block/%name%_planks" "texture": "betterend:block/chorus_planks"
} }
} }

View file

@ -1,6 +1,6 @@
{ {
"parent": "block/button_pressed", "parent": "block/button_pressed",
"textures": { "textures": {
"texture": "betterend:block/%name%_planks" "texture": "betterend:block/chorus_planks"
} }
} }

View file

@ -0,0 +1,12 @@
{
"parent": "minecraft:block/cube",
"textures": {
"down": "betterend:block/chorus_crafting_table_bottom",
"east": "betterend:block/chorus_crafting_table_side",
"north": "betterend:block/chorus_crafting_table_front",
"particle": "betterend:block/chorus_crafting_table_front",
"south": "betterend:block/chorus_crafting_table_side",
"up": "betterend:block/chorus_crafting_table_top",
"west": "betterend:block/chorus_crafting_table_front"
}
}

View file

@ -0,0 +1,7 @@
{
"parent": "betterend:block/sided_door_bottom",
"textures": {
"facade": "betterend:block/chorus_door_bottom",
"side": "betterend:block/chorus_door_side"
}
}

View file

@ -0,0 +1,7 @@
{
"parent": "betterend:block/sided_door_bottom_rh",
"textures": {
"facade": "betterend:block/chorus_door_bottom",
"side": "betterend:block/chorus_door_side"
}
}

View file

@ -0,0 +1,7 @@
{
"parent": "betterend:block/sided_door_top",
"textures": {
"facade": "betterend:block/chorus_door_top",
"side": "betterend:block/chorus_door_side"
}
}

View file

@ -0,0 +1,7 @@
{
"parent": "betterend:block/sided_door_top_rh",
"textures": {
"facade": "betterend:block/chorus_door_top",
"side": "betterend:block/chorus_door_side"
}
}

View file

@ -0,0 +1,5 @@
{
"textures": {
"particle": "betterend:block/chorus_planks"
}
}

View file

@ -1,6 +1,6 @@
{ {
"parent": "block/template_fence_gate", "parent": "block/template_fence_gate",
"textures": { "textures": {
"texture": "betterend:block/%name%_planks" "texture": "betterend:block/chorus_planks"
} }
} }

View file

@ -1,6 +1,6 @@
{ {
"parent": "block/template_fence_gate_open", "parent": "block/template_fence_gate_open",
"textures": { "textures": {
"texture": "betterend:block/%name%_planks" "texture": "betterend:block/chorus_planks"
} }
} }

View file

@ -1,6 +1,6 @@
{ {
"parent": "block/fence_inventory", "parent": "block/fence_inventory",
"textures": { "textures": {
"texture": "betterend:block/%name%_planks" "texture": "betterend:block/chorus_planks"
} }
} }

View file

@ -1,6 +1,6 @@
{ {
"parent": "block/fence_post", "parent": "block/fence_post",
"textures": { "textures": {
"texture": "betterend:block/%name%_planks" "texture": "betterend:block/chorus_planks"
} }
} }

View file

@ -1,6 +1,6 @@
{ {
"parent": "block/fence_side", "parent": "block/fence_side",
"textures": { "textures": {
"texture": "betterend:block/%name%_planks" "texture": "betterend:block/chorus_planks"
} }
} }

View file

@ -0,0 +1,6 @@
{
"parent": "block/cross",
"textures": {
"cross": "betterend:block/chorus_grass_01"
}
}

View file

@ -0,0 +1,6 @@
{
"parent": "block/cross",
"textures": {
"cross": "betterend:block/chorus_grass_02"
}
}

View file

@ -0,0 +1,6 @@
{
"parent": "block/cross",
"textures": {
"cross": "betterend:block/chorus_grass_03"
}
}

View file

@ -0,0 +1,6 @@
{
"parent": "block/cross",
"textures": {
"cross": "betterend:block/chorus_grass_04"
}
}

View file

@ -0,0 +1,6 @@
{
"parent": "betterend:block/crop_block",
"textures": {
"texture": "betterend:block/chorus_grass_01"
}
}

View file

@ -0,0 +1,6 @@
{
"parent": "betterend:block/crop_block",
"textures": {
"texture": "betterend:block/chorus_grass_02"
}
}

View file

@ -0,0 +1,6 @@
{
"parent": "betterend:block/crop_block",
"textures": {
"texture": "betterend:block/chorus_grass_03"
}
}

View file

@ -0,0 +1,6 @@
{
"parent": "betterend:block/crop_block",
"textures": {
"texture": "betterend:block/chorus_grass_04"
}
}

View file

@ -0,0 +1,8 @@
{
"parent": "block/slab",
"textures": {
"bottom": "betterend:block/chorus_planks",
"side": "betterend:block/chorus_planks",
"top": "betterend:block/chorus_planks"
}
}

View file

@ -0,0 +1,8 @@
{
"parent": "block/inner_stairs",
"textures": {
"bottom": "betterend:block/chorus_planks",
"side": "betterend:block/chorus_planks",
"top": "betterend:block/chorus_planks"
}
}

View file

@ -1,6 +1,6 @@
{ {
"parent": "betterend:block/ladder", "parent": "betterend:block/ladder",
"textures": { "textures": {
"texture": "betterend:block/%name%_ladder" "texture": "betterend:block/chorus_ladder"
} }
} }

View file

@ -0,0 +1,12 @@
{
"parent": "block/cube",
"textures": {
"down": "betterend:block/chorus_log_top",
"east": "betterend:block/chorus_log_side",
"north": "betterend:block/chorus_log_side",
"particle": "betterend:block/chorus_log_side",
"south": "betterend:block/chorus_log_side",
"up": "betterend:block/chorus_log_top",
"west": "betterend:block/chorus_log_side"
}
}

View file

@ -0,0 +1,12 @@
{
"parent": "block/cube",
"textures": {
"down": "block/end_stone",
"east": "betterend:block/chorus_nylium_side",
"north": "betterend:block/chorus_nylium_side",
"particle": "betterend:block/chorus_nylium_side",
"south": "betterend:block/chorus_nylium_side",
"up": "betterend:block/chorus_nylium_top",
"west": "betterend:block/chorus_nylium_side"
}
}

View file

@ -0,0 +1,7 @@
{ "parent": "betterend:block/path",
"textures": {
"top": "betterend:block/chorus_nylium_path_top",
"side": "betterend:block/chorus_nylium_side",
"bottom": "block/end_stone"
}
}

View file

@ -0,0 +1,8 @@
{
"parent": "block/outer_stairs",
"textures": {
"bottom": "betterend:block/chorus_planks",
"side": "betterend:block/chorus_planks",
"top": "betterend:block/chorus_planks"
}
}

View file

@ -1,6 +1,6 @@
{ {
"parent": "block/cube_all", "parent": "block/cube_all",
"textures": { "textures": {
"all": "betterend:block/%name%_log_side" "all": "betterend:block/chorus_planks"
} }
} }

View file

@ -1,6 +1,6 @@
{ {
"parent": "block/pressure_plate_down", "parent": "block/pressure_plate_down",
"textures": { "textures": {
"texture": "betterend:block/%name%_planks" "texture": "betterend:block/chorus_planks"
} }
} }

View file

@ -1,6 +1,6 @@
{ {
"parent": "block/pressure_plate_up", "parent": "block/pressure_plate_up",
"textures": { "textures": {
"texture": "betterend:block/%name%_planks" "texture": "betterend:block/chorus_planks"
} }
} }

View file

@ -0,0 +1,8 @@
{
"parent": "block/stairs",
"textures": {
"bottom": "betterend:block/chorus_planks",
"side": "betterend:block/chorus_planks",
"top": "betterend:block/chorus_planks"
}
}

View file

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

View file

@ -0,0 +1,12 @@
{
"parent": "block/cube",
"textures": {
"down": "betterend:block/chorus_stripped_log_top",
"east": "betterend:block/chorus_stripped_log_side",
"north": "betterend:block/chorus_stripped_log_side",
"particle": "betterend:block/chorus_stripped_log_side",
"south": "betterend:block/chorus_stripped_log_side",
"up": "betterend:block/chorus_stripped_log_top",
"west": "betterend:block/chorus_stripped_log_side"
}
}

View file

@ -0,0 +1,7 @@
{
"parent": "betterend:block/sided_trapdoor",
"textures": {
"texture": "betterend:block/chorus_trapdoor",
"side": "betterend:block/chorus_door_side"
}
}

View file

@ -1,6 +1,6 @@
{ {
"parent": "block/template_fence_gate_wall", "parent": "block/template_fence_gate_wall",
"textures": { "textures": {
"texture": "betterend:block/%name%_planks" "texture": "betterend:block/chorus_planks"
} }
} }

View file

@ -1,6 +1,6 @@
{ {
"parent": "block/template_fence_gate_wall_open", "parent": "block/template_fence_gate_wall_open",
"textures": { "textures": {
"texture": "betterend:block/%name%_planks" "texture": "betterend:block/chorus_planks"
} }
} }

View file

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

View file

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

View file

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

View file

@ -1,6 +1,6 @@
{ {
"parent": "betterend:block/chest_item", "parent": "betterend:block/chest_item",
"textures": { "textures": {
"texture": "betterend:entity/chest/%name%_chest" "texture": "betterend:entity/chest/chorus_chest"
} }
} }

View file

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

View file

@ -1,6 +1,6 @@
{ {
"parent": "item/generated", "parent": "item/generated",
"textures": { "textures": {
"layer0": "betterend:item/%name%_door" "layer0": "betterend:item/chorus_door"
} }
} }

View file

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

View file

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

View file

@ -0,0 +1,6 @@
{
"parent": "item/generated",
"textures": {
"layer0": "betterend:block/chorus_grass_01"
}
}

View file

@ -1,6 +1,6 @@
{ {
"parent": "item/generated", "parent": "item/generated",
"textures": { "textures": {
"layer0": "betterend:item/%name%_sign" "layer0": "betterend:block/chorus_ladder"
} }
} }

View file

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

View file

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

View file

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

View file

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

View file

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

View file

@ -1,6 +1,6 @@
{ {
"parent": "item/generated", "parent": "item/generated",
"textures": { "textures": {
"layer0": "betterend:block/%name%_ladder" "layer0": "betterend:item/chorus_sign"
} }
} }

View file

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

View file

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

View file

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

View file

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

View file

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

Binary file not shown.

After

Width:  |  Height:  |  Size: 2 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.1 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 722 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.1 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 480 B

Some files were not shown because too many files have changed in this diff Show more