Tree rename

This commit is contained in:
paulevsGitch 2020-10-13 01:07:47 +03:00
parent bde2ac8291
commit 8286b914d7
138 changed files with 1225 additions and 1263 deletions

View file

@ -59,7 +59,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); public static final WoodenMaterial PYTHADENDRON = new WoodenMaterial("pythadendron", 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());

View file

@ -1,7 +1,7 @@
package ru.betterend.registry; package ru.betterend.registry;
import ru.betterend.world.features.BlueVineFeature; import ru.betterend.world.features.BlueVineFeature;
import ru.betterend.world.features.ChorusTreeFeature; import ru.betterend.world.features.PythadendronTreeFeature;
import ru.betterend.world.features.DoublePlantFeature; import ru.betterend.world.features.DoublePlantFeature;
import ru.betterend.world.features.EndFeature; import ru.betterend.world.features.EndFeature;
import ru.betterend.world.features.EndLakeFeature; import ru.betterend.world.features.EndLakeFeature;
@ -12,7 +12,7 @@ import ru.betterend.world.features.VineFeature;
public class FeatureRegistry { public class FeatureRegistry {
// Trees // // Trees //
public static final EndFeature MOSSY_GLOWSHROOM = new EndFeature("mossy_glowshroom", new MossyGlowshroomFeature(), 3); public static final EndFeature MOSSY_GLOWSHROOM = new EndFeature("mossy_glowshroom", new MossyGlowshroomFeature(), 3);
public static final EndFeature CHORUS_TREE = new EndFeature("chorus_tree", new ChorusTreeFeature(), 1); public static final EndFeature PYTHADENDRON_TREE = new EndFeature("pythadendron_tree", new PythadendronTreeFeature(), 1);
// Plants // // Plants //
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);

View file

@ -16,7 +16,7 @@ public class BiomeChorusForest extends EndBiome {
//.setMusic(SoundRegistry.MUSIC_FOGGY_MUSHROOMLAND) //.setMusic(SoundRegistry.MUSIC_FOGGY_MUSHROOMLAND)
.addFeature(FeatureRegistry.ENDER_ORE) .addFeature(FeatureRegistry.ENDER_ORE)
.addFeature(FeatureRegistry.RARE_END_LAKE) .addFeature(FeatureRegistry.RARE_END_LAKE)
.addFeature(FeatureRegistry.CHORUS_TREE) .addFeature(FeatureRegistry.PYTHADENDRON_TREE)
.addFeature(FeatureRegistry.CHORUS_GRASS) .addFeature(FeatureRegistry.CHORUS_GRASS)
.addMobSpawn(EntityRegistry.END_SLIME, 5, 1, 2) .addMobSpawn(EntityRegistry.END_SLIME, 5, 1, 2)
.addMobSpawn(EntityType.ENDERMAN, 50, 1, 4)); .addMobSpawn(EntityType.ENDERMAN, 50, 1, 4));

View file

@ -21,7 +21,7 @@ import ru.betterend.util.sdf.SDF;
import ru.betterend.util.sdf.operator.SDFScale; import ru.betterend.util.sdf.operator.SDFScale;
import ru.betterend.util.sdf.operator.SDFUnion; import ru.betterend.util.sdf.operator.SDFUnion;
public class ChorusTreeFeature extends DefaultFeature { public class PythadendronTreeFeature extends DefaultFeature {
private static final Function<BlockState, Boolean> REPLACE; private static final Function<BlockState, Boolean> REPLACE;
@Override @Override
@ -36,14 +36,14 @@ public class ChorusTreeFeature extends DefaultFeature {
branch(splines, last.getX(), last.getY(), last.getZ(), size * 0.6F, MHelper.randRange(0, MHelper.PI2, random), random, MHelper.floor(Math.log(size) * 1.5F)); branch(splines, last.getX(), last.getY(), last.getZ(), size * 0.6F, MHelper.randRange(0, MHelper.PI2, random), random, MHelper.floor(Math.log(size) * 1.5F));
SDF function = SplineHelper.buildSDF(spline, 1.4F, 0.8F, (bpos) -> { SDF function = SplineHelper.buildSDF(spline, 1.4F, 0.8F, (bpos) -> {
return BlockRegistry.CHORUS.bark.getDefaultState(); return BlockRegistry.PYTHADENDRON.bark.getDefaultState();
}); });
for (List<Vector3f> sp: splines) { for (List<Vector3f> sp: splines) {
float width = 0.8F - (sp.get(0).getY() - size) / 40; float width = 0.8F - (sp.get(0).getY() - size) / 40;
if (size > 0F) { if (size > 0F) {
SDF funcSp = SplineHelper.buildSDF(sp, width, width, (bpos) -> { SDF funcSp = SplineHelper.buildSDF(sp, width, width, (bpos) -> {
return BlockRegistry.CHORUS.bark.getDefaultState(); return BlockRegistry.PYTHADENDRON.bark.getDefaultState();
}); });
function = new SDFUnion().setSourceA(function).setSourceB(funcSp); function = new SDFUnion().setSourceA(function).setSourceB(funcSp);
} }

View file

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

View file

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

View file

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

View file

@ -1,19 +0,0 @@
{
"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 +0,0 @@
{
"variants": {
"axis=x": [
{ "model": "betterend:block/chorus_log", "x": 90, "y": 90 },
{ "model": "betterend:block/chorus_log_2", "x": 90, "y": 90 }
],
"axis=y": [
{ "model": "betterend:block/chorus_log" },
{ "model": "betterend:block/chorus_log_2" }
],
"axis=z": [
{ "model": "betterend:block/chorus_log", "x": 90 },
{ "model": "betterend:block/chorus_log_2", "x": 90 }
]
}
}

View file

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

View file

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

View file

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

View file

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

View file

@ -1,16 +0,0 @@
{
"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

@ -1,16 +0,0 @@
{
"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

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

View file

@ -1,56 +1,56 @@
{ {
"variants": { "variants": {
"facing=down,open=false": { "facing=down,open=false": {
"model": "betterend:block/chorus_barrel", "model": "betterend:block/pythadendron_barrel",
"x": 180 "x": 180
}, },
"facing=down,open=true": { "facing=down,open=true": {
"model": "betterend:block/chorus_barrel_open", "model": "betterend:block/pythadendron_barrel_open",
"x": 180 "x": 180
}, },
"facing=east,open=false": { "facing=east,open=false": {
"model": "betterend:block/chorus_barrel", "model": "betterend:block/pythadendron_barrel",
"x": 90, "x": 90,
"y": 90 "y": 90
}, },
"facing=east,open=true": { "facing=east,open=true": {
"model": "betterend:block/chorus_barrel_open", "model": "betterend:block/pythadendron_barrel_open",
"x": 90, "x": 90,
"y": 90 "y": 90
}, },
"facing=north,open=false": { "facing=north,open=false": {
"model": "betterend:block/chorus_barrel", "model": "betterend:block/pythadendron_barrel",
"x": 90 "x": 90
}, },
"facing=north,open=true": { "facing=north,open=true": {
"model": "betterend:block/chorus_barrel_open", "model": "betterend:block/pythadendron_barrel_open",
"x": 90 "x": 90
}, },
"facing=south,open=false": { "facing=south,open=false": {
"model": "betterend:block/chorus_barrel", "model": "betterend:block/pythadendron_barrel",
"x": 90, "x": 90,
"y": 180 "y": 180
}, },
"facing=south,open=true": { "facing=south,open=true": {
"model": "betterend:block/chorus_barrel_open", "model": "betterend:block/pythadendron_barrel_open",
"x": 90, "x": 90,
"y": 180 "y": 180
}, },
"facing=up,open=false": { "facing=up,open=false": {
"model": "betterend:block/chorus_barrel" "model": "betterend:block/pythadendron_barrel"
}, },
"facing=up,open=true": { "facing=up,open=true": {
"model": "betterend:block/chorus_barrel_open" "model": "betterend:block/pythadendron_barrel_open"
}, },
"facing=west,open=false": { "facing=west,open=false": {
"model": "betterend:block/chorus_barrel", "model": "betterend:block/pythadendron_barrel",
"x": 90, "x": 90,
"y": 270 "y": 270
}, },
"facing=west,open=true": { "facing=west,open=true": {
"model": "betterend:block/chorus_barrel_open", "model": "betterend:block/pythadendron_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/chorus_button", "model": "betterend:block/pythadendron_button",
"x": 180, "x": 180,
"y": 270 "y": 270
}, },
"face=ceiling,facing=east,powered=true": { "face=ceiling,facing=east,powered=true": {
"model": "betterend:block/chorus_button_pressed", "model": "betterend:block/pythadendron_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/chorus_button", "model": "betterend:block/pythadendron_button",
"x": 180, "x": 180,
"y": 180 "y": 180
}, },
"face=ceiling,facing=north,powered=true": { "face=ceiling,facing=north,powered=true": {
"model": "betterend:block/chorus_button_pressed", "model": "betterend:block/pythadendron_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/chorus_button", "model": "betterend:block/pythadendron_button",
"x": 180 "x": 180
}, },
"face=ceiling,facing=south,powered=true": { "face=ceiling,facing=south,powered=true": {
"model": "betterend:block/chorus_button_pressed", "model": "betterend:block/pythadendron_button_pressed",
"x": 180 "x": 180
}, },
"face=ceiling,facing=west,powered=false": { "face=ceiling,facing=west,powered=false": {
"model": "betterend:block/chorus_button", "model": "betterend:block/pythadendron_button",
"x": 180, "x": 180,
"y": 90 "y": 90
}, },
"face=ceiling,facing=west,powered=true": { "face=ceiling,facing=west,powered=true": {
"model": "betterend:block/chorus_button_pressed", "model": "betterend:block/pythadendron_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/chorus_button", "model": "betterend:block/pythadendron_button",
"y": 90 "y": 90
}, },
"face=floor,facing=east,powered=true": { "face=floor,facing=east,powered=true": {
"model": "betterend:block/chorus_button_pressed", "model": "betterend:block/pythadendron_button_pressed",
"y": 90 "y": 90
}, },
"face=floor,facing=north,powered=false": { "face=floor,facing=north,powered=false": {
"model": "betterend:block/chorus_button" "model": "betterend:block/pythadendron_button"
}, },
"face=floor,facing=north,powered=true": { "face=floor,facing=north,powered=true": {
"model": "betterend:block/chorus_button_pressed" "model": "betterend:block/pythadendron_button_pressed"
}, },
"face=floor,facing=south,powered=false": { "face=floor,facing=south,powered=false": {
"model": "betterend:block/chorus_button", "model": "betterend:block/pythadendron_button",
"y": 180 "y": 180
}, },
"face=floor,facing=south,powered=true": { "face=floor,facing=south,powered=true": {
"model": "betterend:block/chorus_button_pressed", "model": "betterend:block/pythadendron_button_pressed",
"y": 180 "y": 180
}, },
"face=floor,facing=west,powered=false": { "face=floor,facing=west,powered=false": {
"model": "betterend:block/chorus_button", "model": "betterend:block/pythadendron_button",
"y": 270 "y": 270
}, },
"face=floor,facing=west,powered=true": { "face=floor,facing=west,powered=true": {
"model": "betterend:block/chorus_button_pressed", "model": "betterend:block/pythadendron_button_pressed",
"y": 270 "y": 270
}, },
"face=wall,facing=east,powered=false": { "face=wall,facing=east,powered=false": {
"model": "betterend:block/chorus_button", "model": "betterend:block/pythadendron_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/chorus_button_pressed", "model": "betterend:block/pythadendron_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/chorus_button", "model": "betterend:block/pythadendron_button",
"uvlock": true, "uvlock": true,
"x": 90 "x": 90
}, },
"face=wall,facing=north,powered=true": { "face=wall,facing=north,powered=true": {
"model": "betterend:block/chorus_button_pressed", "model": "betterend:block/pythadendron_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/chorus_button", "model": "betterend:block/pythadendron_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/chorus_button_pressed", "model": "betterend:block/pythadendron_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/chorus_button", "model": "betterend:block/pythadendron_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/chorus_button_pressed", "model": "betterend:block/pythadendron_button_pressed",
"uvlock": true, "uvlock": true,
"x": 90, "x": 90,
"y": 270 "y": 270
} }
} }
} }

View file

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

View file

@ -0,0 +1,7 @@
{
"variants": {
"": {
"model": "betterend:block/pythadendron_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/chorus_door_bottom" "model": "betterend:block/pythadendron_door_bottom"
}, },
"facing=east,half=lower,hinge=left,open=true": { "facing=east,half=lower,hinge=left,open=true": {
"model": "betterend:block/chorus_door_bottom_hinge", "model": "betterend:block/pythadendron_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/chorus_door_bottom_hinge" "model": "betterend:block/pythadendron_door_bottom_hinge"
}, },
"facing=east,half=lower,hinge=right,open=true": { "facing=east,half=lower,hinge=right,open=true": {
"model": "betterend:block/chorus_door_bottom", "model": "betterend:block/pythadendron_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/chorus_door_top" "model": "betterend:block/pythadendron_door_top"
}, },
"facing=east,half=upper,hinge=left,open=true": { "facing=east,half=upper,hinge=left,open=true": {
"model": "betterend:block/chorus_door_top_hinge", "model": "betterend:block/pythadendron_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/chorus_door_top_hinge" "model": "betterend:block/pythadendron_door_top_hinge"
}, },
"facing=east,half=upper,hinge=right,open=true": { "facing=east,half=upper,hinge=right,open=true": {
"model": "betterend:block/chorus_door_top", "model": "betterend:block/pythadendron_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/chorus_door_bottom", "model": "betterend:block/pythadendron_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/chorus_door_bottom_hinge" "model": "betterend:block/pythadendron_door_bottom_hinge"
}, },
"facing=north,half=lower,hinge=right,open=false": { "facing=north,half=lower,hinge=right,open=false": {
"model": "betterend:block/chorus_door_bottom_hinge", "model": "betterend:block/pythadendron_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/chorus_door_bottom", "model": "betterend:block/pythadendron_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/chorus_door_top", "model": "betterend:block/pythadendron_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/chorus_door_top_hinge" "model": "betterend:block/pythadendron_door_top_hinge"
}, },
"facing=north,half=upper,hinge=right,open=false": { "facing=north,half=upper,hinge=right,open=false": {
"model": "betterend:block/chorus_door_top_hinge", "model": "betterend:block/pythadendron_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/chorus_door_top", "model": "betterend:block/pythadendron_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/chorus_door_bottom", "model": "betterend:block/pythadendron_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/chorus_door_bottom_hinge", "model": "betterend:block/pythadendron_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/chorus_door_bottom_hinge", "model": "betterend:block/pythadendron_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/chorus_door_bottom" "model": "betterend:block/pythadendron_door_bottom"
}, },
"facing=south,half=upper,hinge=left,open=false": { "facing=south,half=upper,hinge=left,open=false": {
"model": "betterend:block/chorus_door_top", "model": "betterend:block/pythadendron_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/chorus_door_top_hinge", "model": "betterend:block/pythadendron_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/chorus_door_top_hinge", "model": "betterend:block/pythadendron_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/chorus_door_top" "model": "betterend:block/pythadendron_door_top"
}, },
"facing=west,half=lower,hinge=left,open=false": { "facing=west,half=lower,hinge=left,open=false": {
"model": "betterend:block/chorus_door_bottom", "model": "betterend:block/pythadendron_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/chorus_door_bottom_hinge", "model": "betterend:block/pythadendron_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/chorus_door_bottom_hinge", "model": "betterend:block/pythadendron_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/chorus_door_bottom", "model": "betterend:block/pythadendron_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/chorus_door_top", "model": "betterend:block/pythadendron_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/chorus_door_top_hinge", "model": "betterend:block/pythadendron_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/chorus_door_top_hinge", "model": "betterend:block/pythadendron_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/chorus_door_top", "model": "betterend:block/pythadendron_door_top",
"y": 90 "y": 90
} }
} }
} }

View file

@ -1,48 +1,48 @@
{ {
"multipart": [ "multipart": [
{ {
"apply": { "apply": {
"model": "betterend:block/chorus_fence_post" "model": "betterend:block/pythadendron_fence_post"
} }
}, },
{ {
"apply": { "apply": {
"model": "betterend:block/chorus_fence_side", "model": "betterend:block/pythadendron_fence_side",
"uvlock": true "uvlock": true
}, },
"when": { "when": {
"north": true "north": true
} }
}, },
{ {
"apply": { "apply": {
"model": "betterend:block/chorus_fence_side", "model": "betterend:block/pythadendron_fence_side",
"uvlock": true, "uvlock": true,
"y": 90 "y": 90
}, },
"when": { "when": {
"east": true "east": true
} }
}, },
{ {
"apply": { "apply": {
"model": "betterend:block/chorus_fence_side", "model": "betterend:block/pythadendron_fence_side",
"uvlock": true, "uvlock": true,
"y": 180 "y": 180
}, },
"when": { "when": {
"south": true "south": true
} }
}, },
{ {
"apply": { "apply": {
"model": "betterend:block/chorus_fence_side", "model": "betterend:block/pythadendron_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/chorus_fence_gate_closed", "model": "betterend:block/pythadendron_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/chorus_fence_gate_open", "model": "betterend:block/pythadendron_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/chorus_wall_gate_closed", "model": "betterend:block/pythadendron_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/chorus_wall_gate_open", "model": "betterend:block/pythadendron_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/chorus_fence_gate_closed", "model": "betterend:block/pythadendron_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/chorus_fence_gate_open", "model": "betterend:block/pythadendron_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/chorus_wall_gate_closed", "model": "betterend:block/pythadendron_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/chorus_wall_gate_open", "model": "betterend:block/pythadendron_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/chorus_fence_gate_closed", "model": "betterend:block/pythadendron_fence_gate_closed",
"uvlock": true "uvlock": true
}, },
"facing=south,in_wall=false,open=true": { "facing=south,in_wall=false,open=true": {
"model": "betterend:block/chorus_fence_gate_open", "model": "betterend:block/pythadendron_fence_gate_open",
"uvlock": true "uvlock": true
}, },
"facing=south,in_wall=true,open=false": { "facing=south,in_wall=true,open=false": {
"model": "betterend:block/chorus_wall_gate_closed", "model": "betterend:block/pythadendron_wall_gate_closed",
"uvlock": true "uvlock": true
}, },
"facing=south,in_wall=true,open=true": { "facing=south,in_wall=true,open=true": {
"model": "betterend:block/chorus_wall_gate_open", "model": "betterend:block/pythadendron_wall_gate_open",
"uvlock": true "uvlock": true
}, },
"facing=west,in_wall=false,open=false": { "facing=west,in_wall=false,open=false": {
"model": "betterend:block/chorus_fence_gate_closed", "model": "betterend:block/pythadendron_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/chorus_fence_gate_open", "model": "betterend:block/pythadendron_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/chorus_wall_gate_closed", "model": "betterend:block/pythadendron_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/chorus_wall_gate_open", "model": "betterend:block/pythadendron_wall_gate_open",
"uvlock": true, "uvlock": true,
"y": 90 "y": 90
} }
} }
} }

View file

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

View file

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

View file

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

View file

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

View file

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

View file

@ -0,0 +1,15 @@
{
"variants": {
"type=bottom": {
"model": "betterend:block/pythadendron_half_slab"
},
"type=double": {
"model": "betterend:block/pythadendron_planks"
},
"type=top": {
"model": "betterend:block/pythadendron_half_slab",
"uvlock": true,
"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/chorus_inner_stairs", "model": "betterend:block/pythadendron_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/chorus_inner_stairs" "model": "betterend:block/pythadendron_inner_stairs"
}, },
"facing=east,half=bottom,shape=outer_left": { "facing=east,half=bottom,shape=outer_left": {
"model": "betterend:block/chorus_outer_stairs", "model": "betterend:block/pythadendron_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/chorus_outer_stairs" "model": "betterend:block/pythadendron_outer_stairs"
}, },
"facing=east,half=bottom,shape=straight": { "facing=east,half=bottom,shape=straight": {
"model": "betterend:block/chorus_stairs" "model": "betterend:block/pythadendron_stairs"
}, },
"facing=east,half=top,shape=inner_left": { "facing=east,half=top,shape=inner_left": {
"model": "betterend:block/chorus_inner_stairs", "model": "betterend:block/pythadendron_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/chorus_inner_stairs", "model": "betterend:block/pythadendron_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/chorus_outer_stairs", "model": "betterend:block/pythadendron_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/chorus_outer_stairs", "model": "betterend:block/pythadendron_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/chorus_stairs", "model": "betterend:block/pythadendron_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/chorus_inner_stairs", "model": "betterend:block/pythadendron_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/chorus_inner_stairs", "model": "betterend:block/pythadendron_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/chorus_outer_stairs", "model": "betterend:block/pythadendron_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/chorus_outer_stairs", "model": "betterend:block/pythadendron_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/chorus_stairs", "model": "betterend:block/pythadendron_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/chorus_inner_stairs", "model": "betterend:block/pythadendron_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/chorus_inner_stairs", "model": "betterend:block/pythadendron_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/chorus_outer_stairs", "model": "betterend:block/pythadendron_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/chorus_outer_stairs", "model": "betterend:block/pythadendron_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/chorus_stairs", "model": "betterend:block/pythadendron_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/chorus_inner_stairs" "model": "betterend:block/pythadendron_inner_stairs"
}, },
"facing=south,half=bottom,shape=inner_right": { "facing=south,half=bottom,shape=inner_right": {
"model": "betterend:block/chorus_inner_stairs", "model": "betterend:block/pythadendron_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/chorus_outer_stairs" "model": "betterend:block/pythadendron_outer_stairs"
}, },
"facing=south,half=bottom,shape=outer_right": { "facing=south,half=bottom,shape=outer_right": {
"model": "betterend:block/chorus_outer_stairs", "model": "betterend:block/pythadendron_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/chorus_stairs", "model": "betterend:block/pythadendron_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/chorus_inner_stairs", "model": "betterend:block/pythadendron_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/chorus_inner_stairs", "model": "betterend:block/pythadendron_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/chorus_outer_stairs", "model": "betterend:block/pythadendron_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/chorus_outer_stairs", "model": "betterend:block/pythadendron_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/chorus_stairs", "model": "betterend:block/pythadendron_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/chorus_inner_stairs", "model": "betterend:block/pythadendron_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/chorus_inner_stairs", "model": "betterend:block/pythadendron_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/chorus_outer_stairs", "model": "betterend:block/pythadendron_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/chorus_outer_stairs", "model": "betterend:block/pythadendron_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/chorus_stairs", "model": "betterend:block/pythadendron_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/chorus_inner_stairs", "model": "betterend:block/pythadendron_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/chorus_inner_stairs", "model": "betterend:block/pythadendron_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/chorus_outer_stairs", "model": "betterend:block/pythadendron_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/chorus_outer_stairs", "model": "betterend:block/pythadendron_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/chorus_stairs", "model": "betterend:block/pythadendron_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/pythadendron_stripped_bark",
"x": 90,
"y": 90
},
"axis=y": {
"model": "betterend:block/pythadendron_stripped_bark"
},
"axis=z": {
"model": "betterend:block/pythadendron_stripped_bark",
"x": 90
}
}
}

View file

@ -0,0 +1,16 @@
{
"variants": {
"axis=x": {
"model": "betterend:block/pythadendron_stripped_log",
"x": 90,
"y": 90
},
"axis=y": {
"model": "betterend:block/pythadendron_stripped_log"
},
"axis=z": {
"model": "betterend:block/pythadendron_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/chorus_trapdoor", "model": "betterend:block/pythadendron_trapdoor",
"y": 90 "y": 90
}, },
"facing=east,half=bottom,open=true": { "facing=east,half=bottom,open=true": {
"model": "betterend:block/chorus_trapdoor", "model": "betterend:block/pythadendron_trapdoor",
"x": 90, "x": 90,
"y": 90 "y": 90
}, },
"facing=east,half=top,open=false": { "facing=east,half=top,open=false": {
"model": "betterend:block/chorus_trapdoor", "model": "betterend:block/pythadendron_trapdoor",
"x": 180, "x": 180,
"y": 90 "y": 90
}, },
"facing=east,half=top,open=true": { "facing=east,half=top,open=true": {
"model": "betterend:block/chorus_trapdoor", "model": "betterend:block/pythadendron_trapdoor",
"x": 270, "x": 270,
"y": 270 "y": 270
}, },
"facing=north,half=bottom,open=false": { "facing=north,half=bottom,open=false": {
"model": "betterend:block/chorus_trapdoor" "model": "betterend:block/pythadendron_trapdoor"
}, },
"facing=north,half=bottom,open=true": { "facing=north,half=bottom,open=true": {
"model": "betterend:block/chorus_trapdoor", "model": "betterend:block/pythadendron_trapdoor",
"x": 90 "x": 90
}, },
"facing=north,half=top,open=false": { "facing=north,half=top,open=false": {
"model": "betterend:block/chorus_trapdoor", "model": "betterend:block/pythadendron_trapdoor",
"x": 180 "x": 180
}, },
"facing=north,half=top,open=true": { "facing=north,half=top,open=true": {
"model": "betterend:block/chorus_trapdoor", "model": "betterend:block/pythadendron_trapdoor",
"x": 270, "x": 270,
"y": 180 "y": 180
}, },
"facing=south,half=bottom,open=false": { "facing=south,half=bottom,open=false": {
"model": "betterend:block/chorus_trapdoor", "model": "betterend:block/pythadendron_trapdoor",
"y": 180 "y": 180
}, },
"facing=south,half=bottom,open=true": { "facing=south,half=bottom,open=true": {
"model": "betterend:block/chorus_trapdoor", "model": "betterend:block/pythadendron_trapdoor",
"x": 90, "x": 90,
"y": 180 "y": 180
}, },
"facing=south,half=top,open=false": { "facing=south,half=top,open=false": {
"model": "betterend:block/chorus_trapdoor", "model": "betterend:block/pythadendron_trapdoor",
"x": 180, "x": 180,
"y": 180 "y": 180
}, },
"facing=south,half=top,open=true": { "facing=south,half=top,open=true": {
"model": "betterend:block/chorus_trapdoor", "model": "betterend:block/pythadendron_trapdoor",
"x": 270, "x": 270,
"y": 0 "y": 0
}, },
"facing=west,half=bottom,open=false": { "facing=west,half=bottom,open=false": {
"model": "betterend:block/chorus_trapdoor", "model": "betterend:block/pythadendron_trapdoor",
"y": 270 "y": 270
}, },
"facing=west,half=bottom,open=true": { "facing=west,half=bottom,open=true": {
"model": "betterend:block/chorus_trapdoor", "model": "betterend:block/pythadendron_trapdoor",
"x": 90, "x": 90,
"y": 270 "y": 270
}, },
"facing=west,half=top,open=false": { "facing=west,half=top,open=false": {
"model": "betterend:block/chorus_trapdoor", "model": "betterend:block/pythadendron_trapdoor",
"x": 180, "x": 180,
"y": 270 "y": 270
}, },
"facing=west,half=top,open=true": { "facing=west,half=top,open=true": {
"model": "betterend:block/chorus_trapdoor", "model": "betterend:block/pythadendron_trapdoor",
"x": 270, "x": 270,
"y": 90 "y": 90
} }
} }
} }

View file

@ -101,24 +101,24 @@
"category.rei.damage.amount&dmg": "Tool damage: %s", "category.rei.damage.amount&dmg": "Tool damage: %s",
"block.betterend.chorus_bark": "Chorus Bark", "block.betterend.pythadendron_bark": "Pythadendron Bark",
"block.betterend.chorus_barrel": "Chorus Barrel", "block.betterend.pythadendron_barrel": "Pythadendron Barrel",
"block.betterend.chorus_button": "Chorus Button", "block.betterend.pythadendron_button": "Pythadendron Button",
"block.betterend.chorus_chest": "Chorus Chest", "block.betterend.pythadendron_chest": "Pythadendron Chest",
"block.betterend.chorus_crafting_table": "Chorus Crafting Table", "block.betterend.pythadendron_crafting_table": "Pythadendron Crafting Table",
"block.betterend.chorus_door": "Chorus Door", "block.betterend.pythadendron_door": "Pythadendron Door",
"block.betterend.chorus_fence": "Chorus Fence", "block.betterend.pythadendron_fence": "Pythadendron Fence",
"block.betterend.chorus_gate": "Chorus Gate", "block.betterend.pythadendron_gate": "Pythadendron Gate",
"block.betterend.chorus_ladder": "Chorus Ladder", "block.betterend.pythadendron_ladder": "Pythadendron Ladder",
"block.betterend.chorus_log": "Chorus Log", "block.betterend.pythadendron_log": "Pythadendron Log",
"block.betterend.chorus_planks": "Chorus Planks", "block.betterend.pythadendron_planks": "Pythadendron Planks",
"block.betterend.chorus_plate": "Chorus Plate", "block.betterend.pythadendron_plate": "Pythadendron Plate",
"block.betterend.chorus_sign": "Chorus Sign", "block.betterend.pythadendron_sign": "Pythadendron Sign",
"block.betterend.chorus_slab": "Chorus Slab", "block.betterend.pythadendron_slab": "Pythadendron Slab",
"block.betterend.chorus_stairs": "Chorus Stairs", "block.betterend.pythadendron_stairs": "Pythadendron Stairs",
"block.betterend.chorus_stripped_bark": "Chorus Stripped Bark", "block.betterend.pythadendron_stripped_bark": "Pythadendron Stripped Bark",
"block.betterend.chorus_stripped_log": "Chorus Stripped Log", "block.betterend.pythadendron_stripped_log": "Pythadendron Stripped Log",
"block.betterend.chorus_trapdoor": "Chorus Trapdoor", "block.betterend.pythadendron_trapdoor": "Pythadendron Trapdoor",
"block.betterend.chorus_nylium": "Chorus Nylium", "block.betterend.chorus_nylium": "Chorus Nylium",
"block.betterend.chorus_nylium_path": "Chorus Nylium Path", "block.betterend.chorus_nylium_path": "Chorus Nylium Path",

View file

@ -101,24 +101,24 @@
"category.rei.damage.amount&dmg": "Износ инструмента: %s", "category.rei.damage.amount&dmg": "Износ инструмента: %s",
"block.betterend.chorus_bark": "Кора хоруса", "block.betterend.pythadendron_bark": "Кора пифадендрона",
"block.betterend.chorus_barrel": "Бочка из хоруса", "block.betterend.pythadendron_barrel": "Бочка из пифадендрона",
"block.betterend.chorus_button": "Кнопка из хоруса", "block.betterend.pythadendron_button": "Кнопка из пифадендрона",
"block.betterend.chorus_chest": "Сундук из хоруса", "block.betterend.pythadendron_chest": "Сундук из пифадендрона",
"block.betterend.chorus_crafting_table": "Верстак из хоруса", "block.betterend.pythadendron_crafting_table": "Верстак из пифадендрона",
"block.betterend.chorus_door": "Дверь из хоруса", "block.betterend.pythadendron_door": "Дверь из пифадендрона",
"block.betterend.chorus_fence": "Забор из хоруса", "block.betterend.pythadendron_fence": "Забор из пифадендрона",
"block.betterend.chorus_gate": "Калитка из хоруса", "block.betterend.pythadendron_gate": "Калитка из пифадендрона",
"block.betterend.chorus_ladder": "Лестница из хоруса", "block.betterend.pythadendron_ladder": "Лестница из пифадендрона",
"block.betterend.chorus_log": "Бревно хоруса", "block.betterend.pythadendron_log": "Бревно пифадендрона",
"block.betterend.chorus_planks": "Доски хоруса", "block.betterend.pythadendron_planks": "Доски пифадендрона",
"block.betterend.chorus_plate": "Нажимная плита из хоруса", "block.betterend.pythadendron_plate": "Нажимная плита из пифадендрона",
"block.betterend.chorus_sign": "Табличка из хоруса", "block.betterend.pythadendron_sign": "Табличка из пифадендрона",
"block.betterend.chorus_slab": "Плита из хоруса", "block.betterend.pythadendron_slab": "Плита из пифадендрона",
"block.betterend.chorus_stairs": "Ступени из хоруса", "block.betterend.pythadendron_stairs": "Ступени из пифадендрона",
"block.betterend.chorus_stripped_bark": "Обтёсанная кора хоруса", "block.betterend.pythadendron_stripped_bark": "Обтёсанная кора пифадендрона",
"block.betterend.chorus_stripped_log": "Обтёсанное бревно хоруса", "block.betterend.pythadendron_stripped_log": "Обтёсанное бревно пифадендрона",
"block.betterend.chorus_trapdoor": "Люк из хоруса", "block.betterend.pythadendron_trapdoor": "Люк из пифадендрона",
"block.betterend.chorus_nylium": "Нилий хоруса", "block.betterend.chorus_nylium": "Нилий хоруса",
"block.betterend.chorus_nylium_path": "Тропа из нилия хоруса", "block.betterend.chorus_nylium_path": "Тропа из нилия хоруса",

View file

@ -1,8 +0,0 @@
{
"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

@ -1,8 +0,0 @@
{
"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 +0,0 @@
{
"parent": "block/button",
"textures": {
"texture": "betterend:block/chorus_planks"
}
}

View file

@ -1,12 +0,0 @@
{
"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

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

@ -1,12 +0,0 @@
{
"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

@ -1,7 +0,0 @@
{
"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/cube_all", "parent": "block/cube_all",
"textures": { "textures": {
"all": "betterend:block/chorus_planks" "all": "betterend:block/pythadendron_log_side"
} }
} }

View file

@ -0,0 +1,8 @@
{
"parent": "minecraft:block/cube_bottom_top",
"textures": {
"bottom": "betterend:block/pythadendron_barrel_bottom",
"side": "betterend:block/pythadendron_barrel_side",
"top": "betterend:block/pythadendron_barrel_top"
}
}

View file

@ -0,0 +1,8 @@
{
"parent": "minecraft:block/cube_bottom_top",
"textures": {
"bottom": "betterend:block/pythadendron_barrel_bottom",
"side": "betterend:block/pythadendron_barrel_side",
"top": "betterend:block/pythadendron_barrel_top_open"
}
}

View file

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

View file

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

View file

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

View file

@ -0,0 +1,12 @@
{
"parent": "minecraft:block/cube",
"textures": {
"down": "betterend:block/pythadendron_crafting_table_bottom",
"east": "betterend:block/pythadendron_crafting_table_side",
"north": "betterend:block/pythadendron_crafting_table_front",
"particle": "betterend:block/pythadendron_crafting_table_front",
"south": "betterend:block/pythadendron_crafting_table_side",
"up": "betterend:block/pythadendron_crafting_table_top",
"west": "betterend:block/pythadendron_crafting_table_front"
}
}

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

@ -1,34 +1,34 @@
{ {
"parent": "block/cube", "parent": "block/cube",
"textures": { "textures": {
"top": "betterend:block/chorus_log_top", "top": "betterend:block/pythadendron_log_top",
"side": "betterend:block/chorus_log_side_2", "side": "betterend:block/pythadendron_log_side_1",
"glow": "betterend:block/chorus_log_side_glow_2", "glow": "betterend:block/pythadendron_log_side_glow_1",
"particle": "#side" "particle": "#side"
}, },
"elements": [ "elements": [
{ {
"from": [ 0, 0, 0 ], "from": [ 0, 0, 0 ],
"to": [ 16, 16, 16 ], "to": [ 16, 16, 16 ],
"faces": { "faces": {
"down": { "uv": [ 0, 0, 16, 16 ], "texture": "#top", "cullface": "down" }, "down": { "uv": [ 0, 0, 16, 16 ], "texture": "#top", "cullface": "down" },
"up": { "uv": [ 0, 0, 16, 16 ], "texture": "#top", "cullface": "up" }, "up": { "uv": [ 0, 0, 16, 16 ], "texture": "#top", "cullface": "up" },
"north": { "uv": [ 0, 0, 16, 16 ], "texture": "#side", "cullface": "north" }, "north": { "uv": [ 0, 0, 16, 16 ], "texture": "#side", "cullface": "north" },
"south": { "uv": [ 0, 0, 16, 16 ], "texture": "#side", "cullface": "south" }, "south": { "uv": [ 0, 0, 16, 16 ], "texture": "#side", "cullface": "south" },
"west": { "uv": [ 0, 0, 16, 16 ], "texture": "#side", "cullface": "west" }, "west": { "uv": [ 0, 0, 16, 16 ], "texture": "#side", "cullface": "west" },
"east": { "uv": [ 0, 0, 16, 16 ], "texture": "#side", "cullface": "east" } "east": { "uv": [ 0, 0, 16, 16 ], "texture": "#side", "cullface": "east" }
} }
}, },
{ {
"from": [ 0, 0, 0 ], "from": [ 0, 0, 0 ],
"to": [ 16, 16, 16 ], "to": [ 16, 16, 16 ],
"shade": false, "shade": false,
"faces": { "faces": {
"north": { "uv": [ 0, 0, 16, 16 ], "texture": "#glow", "cullface": "north" }, "north": { "uv": [ 0, 0, 16, 16 ], "texture": "#glow", "cullface": "north" },
"south": { "uv": [ 0, 0, 16, 16 ], "texture": "#glow", "cullface": "south" }, "south": { "uv": [ 0, 0, 16, 16 ], "texture": "#glow", "cullface": "south" },
"west": { "uv": [ 0, 0, 16, 16 ], "texture": "#glow", "cullface": "west" }, "west": { "uv": [ 0, 0, 16, 16 ], "texture": "#glow", "cullface": "west" },
"east": { "uv": [ 0, 0, 16, 16 ], "texture": "#glow", "cullface": "east" } "east": { "uv": [ 0, 0, 16, 16 ], "texture": "#glow", "cullface": "east" }
} }
} }
] ]
} }

View file

@ -1,34 +1,34 @@
{ {
"parent": "block/cube", "parent": "block/cube",
"textures": { "textures": {
"top": "betterend:block/chorus_log_top", "top": "betterend:block/pythadendron_log_top",
"side": "betterend:block/chorus_log_side_1", "side": "betterend:block/pythadendron_log_side_2",
"glow": "betterend:block/chorus_log_side_glow_1", "glow": "betterend:block/pythadendron_log_side_glow_2",
"particle": "#side" "particle": "#side"
}, },
"elements": [ "elements": [
{ {
"from": [ 0, 0, 0 ], "from": [ 0, 0, 0 ],
"to": [ 16, 16, 16 ], "to": [ 16, 16, 16 ],
"faces": { "faces": {
"down": { "uv": [ 0, 0, 16, 16 ], "texture": "#top", "cullface": "down" }, "down": { "uv": [ 0, 0, 16, 16 ], "texture": "#top", "cullface": "down" },
"up": { "uv": [ 0, 0, 16, 16 ], "texture": "#top", "cullface": "up" }, "up": { "uv": [ 0, 0, 16, 16 ], "texture": "#top", "cullface": "up" },
"north": { "uv": [ 0, 0, 16, 16 ], "texture": "#side", "cullface": "north" }, "north": { "uv": [ 0, 0, 16, 16 ], "texture": "#side", "cullface": "north" },
"south": { "uv": [ 0, 0, 16, 16 ], "texture": "#side", "cullface": "south" }, "south": { "uv": [ 0, 0, 16, 16 ], "texture": "#side", "cullface": "south" },
"west": { "uv": [ 0, 0, 16, 16 ], "texture": "#side", "cullface": "west" }, "west": { "uv": [ 0, 0, 16, 16 ], "texture": "#side", "cullface": "west" },
"east": { "uv": [ 0, 0, 16, 16 ], "texture": "#side", "cullface": "east" } "east": { "uv": [ 0, 0, 16, 16 ], "texture": "#side", "cullface": "east" }
} }
}, },
{ {
"from": [ 0, 0, 0 ], "from": [ 0, 0, 0 ],
"to": [ 16, 16, 16 ], "to": [ 16, 16, 16 ],
"shade": false, "shade": false,
"faces": { "faces": {
"north": { "uv": [ 0, 0, 16, 16 ], "texture": "#glow", "cullface": "north" }, "north": { "uv": [ 0, 0, 16, 16 ], "texture": "#glow", "cullface": "north" },
"south": { "uv": [ 0, 0, 16, 16 ], "texture": "#glow", "cullface": "south" }, "south": { "uv": [ 0, 0, 16, 16 ], "texture": "#glow", "cullface": "south" },
"west": { "uv": [ 0, 0, 16, 16 ], "texture": "#glow", "cullface": "west" }, "west": { "uv": [ 0, 0, 16, 16 ], "texture": "#glow", "cullface": "west" },
"east": { "uv": [ 0, 0, 16, 16 ], "texture": "#glow", "cullface": "east" } "east": { "uv": [ 0, 0, 16, 16 ], "texture": "#glow", "cullface": "east" }
} }
} }
] ]
} }

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

@ -0,0 +1,7 @@
{
"parent": "betterend:block/sided_trapdoor",
"textures": {
"texture": "betterend:block/pythadendron_trapdoor",
"side": "betterend:block/pythadendron_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/chorus_planks" "texture": "betterend:block/pythadendron_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/chorus_planks" "texture": "betterend:block/pythadendron_planks"
} }
} }

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

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