Migrate some things to DataGen
This commit is contained in:
parent
58f23e8758
commit
1015b36ee5
199 changed files with 237 additions and 2938 deletions
|
@ -82,7 +82,7 @@ public class DeprecatedModBlocks
|
|||
|
||||
public static RegistryObject<Block> registerDeprecated(RegistryObject<Block> blk)
|
||||
{
|
||||
ITEMS.register(blk.getId().getPath(), ()->new DeprecatedBlockItem(blk.get()));
|
||||
CreativeModeTabs.addToOTEModTab(ITEMS.register(blk.getId().getPath(), ()->new DeprecatedBlockItem(blk.get())));
|
||||
|
||||
return blk;
|
||||
}
|
||||
|
|
|
@ -76,7 +76,7 @@ public class ModBlocks {
|
|||
|
||||
public static RegistryObject<Block> registerWithItem(RegistryObject<Block> blk, Item.Properties props)
|
||||
{
|
||||
ITEMS.register(blk.getId().getPath(), ()->new BlockItem(blk.get(), props));
|
||||
CreativeModeTabs.addToOTEModTab(ITEMS.register(blk.getId().getPath(), ()->new BlockItem(blk.get(), props)));
|
||||
|
||||
return blk;
|
||||
}
|
||||
|
|
|
@ -1,62 +0,0 @@
|
|||
package dev.zontreck.otemod.blocks.entity;
|
||||
|
||||
import com.mojang.blaze3d.vertex.VertexConsumer;
|
||||
import net.minecraft.core.BlockPos;
|
||||
import net.minecraft.core.Direction;
|
||||
import net.minecraft.nbt.CompoundTag;
|
||||
import net.minecraft.world.level.block.Block;
|
||||
import net.minecraft.world.level.block.entity.BlockEntity;
|
||||
import net.minecraft.world.level.block.entity.BlockEntityType;
|
||||
import net.minecraft.world.level.block.state.BlockState;
|
||||
import org.joml.Matrix4f;
|
||||
|
||||
import java.util.Arrays;
|
||||
|
||||
public class ParallaxWindowEntity extends BlockEntity
|
||||
{
|
||||
public enum SkyType
|
||||
{
|
||||
Level1
|
||||
}
|
||||
|
||||
public ParallaxWindowEntity(BlockPos pPos, BlockState pBlockState) {
|
||||
super(ModEntities.PARALLAX_WINDOW_ENTITY.get(), pPos, pBlockState);
|
||||
}
|
||||
|
||||
private SkyType skyType = SkyType.Level1;
|
||||
|
||||
public SkyType getSkyType() {
|
||||
return skyType;
|
||||
}
|
||||
|
||||
|
||||
@Override
|
||||
protected void saveAdditional(CompoundTag compoundTag) {
|
||||
compoundTag.putString("skyType", this.skyType.name());
|
||||
}
|
||||
|
||||
@Override
|
||||
public void load(CompoundTag compoundTag) {
|
||||
if (!compoundTag.contains("skyType")) {
|
||||
return;
|
||||
}
|
||||
this.skyType = SkyType.valueOf(compoundTag.getString("skyType"));
|
||||
}
|
||||
|
||||
|
||||
private final Boolean[] shouldRender = new Boolean[6];
|
||||
|
||||
public boolean shouldRenderFace(Direction direction) {
|
||||
int index = direction.ordinal();
|
||||
|
||||
if (shouldRender[index] == null) {
|
||||
shouldRender[index] = level == null || Block.shouldRenderFace(getBlockState(), level, getBlockPos(), direction, getBlockPos().relative(direction));
|
||||
}
|
||||
|
||||
return shouldRender[index];
|
||||
}
|
||||
|
||||
public void neighborChanged() {
|
||||
Arrays.fill(shouldRender, null);
|
||||
}
|
||||
}
|
|
@ -1,49 +0,0 @@
|
|||
package dev.zontreck.otemod.client.renderer;
|
||||
|
||||
import com.mojang.blaze3d.vertex.PoseStack;
|
||||
import com.mojang.blaze3d.vertex.VertexConsumer;
|
||||
import dev.zontreck.otemod.blocks.ParallaxWindow;
|
||||
import dev.zontreck.otemod.blocks.entity.ParallaxWindowEntity;
|
||||
import net.minecraft.client.renderer.MultiBufferSource;
|
||||
import net.minecraft.client.renderer.RenderType;
|
||||
import net.minecraft.client.renderer.blockentity.BlockEntityRenderer;
|
||||
import net.minecraft.core.Direction;
|
||||
import org.joml.Matrix4f;
|
||||
|
||||
public class ParallaxWindowEntityRenderer implements BlockEntityRenderer<ParallaxWindowEntity>
|
||||
{
|
||||
|
||||
@Override
|
||||
public void render(ParallaxWindowEntity parallaxWindowEntity, float v, PoseStack poseStack, MultiBufferSource multiBufferSource, int i, int i1) {
|
||||
|
||||
Matrix4f m4f = poseStack.last().pose();
|
||||
var renderType = switch (parallaxWindowEntity.getSkyType()) {
|
||||
|
||||
case Level1 -> RenderType.endPortal();
|
||||
};
|
||||
renderCube(parallaxWindowEntity, m4f, multiBufferSource.getBuffer(renderType));
|
||||
}
|
||||
|
||||
|
||||
private void renderCube(ParallaxWindowEntity entity, Matrix4f matrix, VertexConsumer buffer) {
|
||||
renderFace(entity, matrix, buffer, 0.0f, 1.0f, 0.0f, 1.0f, 1.0f, 1.0f, 1.0f, 1.0f, Direction.SOUTH);
|
||||
renderFace(entity, matrix, buffer, 0.0f, 1.0f, 1.0f, 0.0f, 0.0f, 0.0f, 0.0f, 0.0f, Direction.NORTH);
|
||||
renderFace(entity, matrix, buffer, 1.0f, 1.0f, 1.0f, 0.0f, 0.0f, 1.0f, 1.0f, 0.0f, Direction.EAST);
|
||||
renderFace(entity, matrix, buffer, 0.0f, 0.0f, 0.0f, 1.0f, 0.0f, 1.0f, 1.0f, 0.0f, Direction.WEST);
|
||||
renderFace(entity, matrix, buffer, 0.0f, 1.0f, 0.0f, 0.0f, 0.0f, 0.0f, 1.0f, 1.0f, Direction.DOWN);
|
||||
renderFace(entity, matrix, buffer, 0.0f, 1.0f, 1.0f, 1.0f, 1.0f, 1.0f, 0.0f, 0.0f, Direction.UP);
|
||||
}
|
||||
|
||||
private void renderFace(ParallaxWindowEntity entity, Matrix4f matrix, VertexConsumer buffer, float f, float g, float h, float i, float j, float k, float l, float m, Direction direction) {
|
||||
if (entity.shouldRenderFace(direction)) {
|
||||
buffer.vertex(matrix, f, h, j).endVertex();
|
||||
buffer.vertex(matrix, g, h, k).endVertex();
|
||||
buffer.vertex(matrix, g, i, l).endVertex();
|
||||
buffer.vertex(matrix, f, i, m).endVertex();
|
||||
}
|
||||
}
|
||||
@Override
|
||||
public int getViewDistance() {
|
||||
return 256;
|
||||
}
|
||||
}
|
|
@ -0,0 +1,34 @@
|
|||
package dev.zontreck.otemod.data;
|
||||
|
||||
import dev.zontreck.otemod.OTEMod;
|
||||
import net.minecraft.data.PackOutput;
|
||||
import net.minecraftforge.client.model.generators.BlockModelBuilder;
|
||||
import net.minecraftforge.client.model.generators.BlockModelProvider;
|
||||
import net.minecraftforge.common.data.ExistingFileHelper;
|
||||
|
||||
public class ModBlockModelsProvider extends BlockModelProvider
|
||||
{
|
||||
public ModBlockModelsProvider(PackOutput output, ExistingFileHelper helper)
|
||||
{
|
||||
super(output, OTEMod.MOD_ID, helper);
|
||||
}
|
||||
|
||||
@Override
|
||||
protected void registerModels() {
|
||||
|
||||
// Model file paths
|
||||
String cubeModel = "block/cube";
|
||||
String sideTexture = "#side";
|
||||
String frontTexture = "#front";
|
||||
|
||||
// Model Builder for your block
|
||||
cubeAll("rotatable", modLoc(cubeModel))
|
||||
.texture("particle", modLoc(sideTexture))
|
||||
.texture("down", modLoc(sideTexture))
|
||||
.texture("up", modLoc(sideTexture))
|
||||
.texture("north", modLoc(frontTexture))
|
||||
.texture("east", modLoc(sideTexture))
|
||||
.texture("south", modLoc(sideTexture))
|
||||
.texture("west", modLoc(sideTexture));
|
||||
}
|
||||
}
|
|
@ -0,0 +1,97 @@
|
|||
package dev.zontreck.otemod.data;
|
||||
|
||||
import dev.zontreck.otemod.OTEMod;
|
||||
import dev.zontreck.otemod.blocks.*;
|
||||
import dev.zontreck.otemod.items.DeprecatedModItems;
|
||||
import net.minecraft.data.PackOutput;
|
||||
import net.minecraft.resources.ResourceLocation;
|
||||
import net.minecraft.world.item.Item;
|
||||
import net.minecraft.world.level.block.Block;
|
||||
import net.minecraft.world.level.block.Blocks;
|
||||
import net.minecraft.world.level.block.SlabBlock;
|
||||
import net.minecraft.world.level.block.StairBlock;
|
||||
import net.minecraft.world.level.block.state.BlockBehaviour;
|
||||
import net.minecraftforge.client.model.generators.BlockStateProvider;
|
||||
import net.minecraftforge.client.model.generators.ModelFile;
|
||||
import net.minecraftforge.common.data.ExistingFileHelper;
|
||||
import net.minecraftforge.fml.common.Mod;
|
||||
import net.minecraftforge.registries.ForgeRegistries;
|
||||
import net.minecraftforge.registries.RegistryObject;
|
||||
|
||||
public class ModBlockStatesProvider extends BlockStateProvider
|
||||
{
|
||||
public ModBlockStatesProvider(PackOutput output, ExistingFileHelper existingFileHelper) {
|
||||
super(output, OTEMod.MOD_ID, existingFileHelper);
|
||||
}
|
||||
|
||||
@Override
|
||||
protected void registerStatesAndModels() {
|
||||
blockWithItem(ModBlocks.ETERNIUM_ORE_BLOCK);
|
||||
blockWithItem(ModBlocks.VAULT_STEEL_ORE_BLOCK);
|
||||
blockWithItem(ModBlocks.NETHER_VAULT_STEEL_ORE_BLOCK);
|
||||
blockWithItem(ModBlocks.ETERNIUM_BLOCK);
|
||||
blockWithItem(ModBlocks.DEEPSLATE_ETERNIUM_ORE_BLOCK);
|
||||
blockWithItem(ModBlocks.COMPRESSED_OBSIDIAN_BLOCK);
|
||||
blockWithItem(ModBlocks.LAYERED_COMPRESSED_OBSIDIAN_BLOCK);
|
||||
blockWithItem(ModBlocks.POOL_TILE);
|
||||
stairBlock(ModBlocks.POOL_TILE_STAIRS, ModBlocks.POOL_TILE);
|
||||
slabBlock(ModBlocks.POOL_TILE_SLAB, ModBlocks.POOL_TILE);
|
||||
blockWithItem(ModBlocks.POOL_LIGHT);
|
||||
blockWithItem(ModBlocks.DIRTY_POOL_TILE);
|
||||
stairBlock(ModBlocks.DIRTY_POOL_TILE_STAIRS, ModBlocks.DIRTY_POOL_TILE);
|
||||
slabBlock(ModBlocks.DIRTY_POOL_TILE_SLAB, ModBlocks.DIRTY_POOL_TILE);
|
||||
blockWithItem(ModBlocks.DIRTY_POOL_LIGHT);
|
||||
blockWithItem(ModBlocks.FILTHY_POOL_LIGHT);
|
||||
blockWithItem(ModBlocks.DARK_POOL_TILE);
|
||||
blockWithItem(ModBlocks.DARK_POOL_LIGHT);
|
||||
stairBlock(ModBlocks.DARK_POOL_TILE_STAIRS, ModBlocks.DARK_POOL_TILE);
|
||||
slabBlock(ModBlocks.DARK_POOL_TILE_SLAB, ModBlocks.DARK_POOL_TILE);
|
||||
blockWithItem(ModBlocks.BLUE_POOL_TILE);
|
||||
stairBlock(ModBlocks.BLUE_POOL_TILE_STAIRS, ModBlocks.BLUE_POOL_TILE);
|
||||
slabBlock(ModBlocks.BLUE_POOL_TILE_SLAB, ModBlocks.BLUE_POOL_TILE);
|
||||
blockWithItem(ModBlocks.BLUE_POOL_LIGHT);
|
||||
blockWithItem(ModBlocks.DIRTY_BLUE_POOL_TILE);
|
||||
stairBlock(ModBlocks.DIRTY_BLUE_POOL_TILE_STAIRS, ModBlocks.DIRTY_BLUE_POOL_TILE);
|
||||
slabBlock(ModBlocks.DIRTY_BLUE_POOL_TILE_SLAB, ModBlocks.DIRTY_BLUE_POOL_TILE);
|
||||
blockWithItem(ModBlocks.DIRTY_BLUE_POOL_LIGHT);
|
||||
blockWithItem(ModBlocks.FILTHY_BLUE_POOL_LIGHT);
|
||||
blockWithItem(ModBlocks.RED_POOL_TILE);
|
||||
stairBlock(ModBlocks.RED_POOL_TILE_STAIRS, ModBlocks.RED_POOL_TILE);
|
||||
slabBlock(ModBlocks.RED_POOL_TILE_SLAB, ModBlocks.RED_POOL_TILE);
|
||||
blockWithItem(ModBlocks.RED_POOL_LIGHT);
|
||||
blockWithItem(ModBlocks.DIRTY_RED_POOL_LIGHT);
|
||||
blockWithItem(ModBlocks.FILTHY_RED_POOL_LIGHT);
|
||||
blockWithItem(ModBlocks.DIRTY_RED_POOL_TILE);
|
||||
stairBlock(ModBlocks.DIRTY_RED_POOL_TILE_STAIRS, ModBlocks.DIRTY_RED_POOL_TILE);
|
||||
slabBlock(ModBlocks.DIRTY_RED_POOL_TILE_SLAB, ModBlocks.DIRTY_RED_POOL_TILE);
|
||||
}
|
||||
|
||||
private void blockWithItem(RegistryObject<Block> blockRegistryObject)
|
||||
{
|
||||
simpleBlockWithItem(blockRegistryObject.get(), cubeAll(blockRegistryObject.get()));
|
||||
}
|
||||
|
||||
private void stairBlock(RegistryObject<Block> blk, RegistryObject<Block> texture)
|
||||
{
|
||||
stairsBlock((StairBlock) blk.get(), blockTexture(texture.get()));
|
||||
simpleBlockItem(blk.get(), stairsModel(blk.get(), texture.get()));
|
||||
}
|
||||
|
||||
private String name(Block block) {
|
||||
return this.key(block).getPath();
|
||||
}
|
||||
private ResourceLocation key(Block block) {
|
||||
return ForgeRegistries.BLOCKS.getKey(block);
|
||||
}
|
||||
public ModelFile stairsModel(Block block, Block texture) {
|
||||
return this.models().stairs(name(block), blockTexture(texture), blockTexture(texture), blockTexture(texture));
|
||||
}
|
||||
public ModelFile slabModel(Block block, Block texture) {
|
||||
return this.models().slab(name(block), blockTexture(texture), blockTexture(texture), blockTexture(texture));
|
||||
}
|
||||
private void slabBlock(RegistryObject<Block> blk, RegistryObject<Block> texture)
|
||||
{
|
||||
slabBlock((SlabBlock) blk.get(), blockTexture(texture.get()), blockTexture(texture.get()));
|
||||
simpleBlockItem(blk.get(), slabModel(blk.get(), texture.get()));
|
||||
}
|
||||
}
|
26
src/main/java/dev/zontreck/otemod/data/ModDatagen.java
Normal file
26
src/main/java/dev/zontreck/otemod/data/ModDatagen.java
Normal file
|
@ -0,0 +1,26 @@
|
|||
package dev.zontreck.otemod.data;
|
||||
|
||||
|
||||
import dev.zontreck.otemod.OTEMod;
|
||||
import net.minecraft.data.DataGenerator;
|
||||
import net.minecraft.data.PackOutput;
|
||||
import net.minecraftforge.common.data.ExistingFileHelper;
|
||||
import net.minecraftforge.data.event.GatherDataEvent;
|
||||
import net.minecraftforge.eventbus.api.SubscribeEvent;
|
||||
import net.minecraftforge.fml.common.Mod;
|
||||
|
||||
@Mod.EventBusSubscriber(modid = OTEMod.MOD_ID, bus = Mod.EventBusSubscriber.Bus.MOD)
|
||||
public class ModDatagen
|
||||
{
|
||||
|
||||
@SubscribeEvent
|
||||
public static void gatherData(GatherDataEvent event)
|
||||
{
|
||||
DataGenerator gen = event.getGenerator();
|
||||
PackOutput output = gen.getPackOutput();
|
||||
|
||||
ExistingFileHelper helper = event.getExistingFileHelper();
|
||||
|
||||
gen.addProvider(event.includeClient(), new ModBlockStatesProvider(output, helper));
|
||||
}
|
||||
}
|
|
@ -0,0 +1,4 @@
|
|||
package dev.zontreck.otemod.data.loot;
|
||||
|
||||
public class ModBlockLootTablesProvider {
|
||||
}
|
|
@ -1,7 +0,0 @@
|
|||
{
|
||||
"variants": {
|
||||
"": {
|
||||
"model": "otemod:block/thresholds/pool/light/blue_pool_light"
|
||||
}
|
||||
}
|
||||
}
|
|
@ -1,7 +0,0 @@
|
|||
{
|
||||
"variants": {
|
||||
"": {
|
||||
"model": "otemod:block/thresholds/pool/tiles/blue_pool_tile"
|
||||
}
|
||||
}
|
||||
}
|
|
@ -1,209 +0,0 @@
|
|||
{
|
||||
"variants": {
|
||||
"facing=east,half=bottom,shape=inner_left": {
|
||||
"model": "otemod:block/thresholds/pool/stairs/blue_pool_tile_stairs_inner",
|
||||
"y": 270,
|
||||
"uvlock": true
|
||||
},
|
||||
"facing=east,half=bottom,shape=inner_right": {
|
||||
"model": "otemod:block/thresholds/pool/stairs/blue_pool_tile_stairs_inner"
|
||||
},
|
||||
"facing=east,half=bottom,shape=outer_left": {
|
||||
"model": "otemod:block/thresholds/pool/stairs/blue_pool_tile_stairs_outer",
|
||||
"y": 270,
|
||||
"uvlock": true
|
||||
},
|
||||
"facing=east,half=bottom,shape=outer_right": {
|
||||
"model": "otemod:block/thresholds/pool/stairs/blue_pool_tile_stairs_outer"
|
||||
},
|
||||
"facing=east,half=bottom,shape=straight": {
|
||||
"model": "otemod:block/thresholds/pool/stairs/blue_pool_tile_stairs"
|
||||
},
|
||||
"facing=east,half=top,shape=inner_left": {
|
||||
"model": "otemod:block/thresholds/pool/stairs/blue_pool_tile_stairs_inner",
|
||||
"x": 180,
|
||||
"uvlock": true
|
||||
},
|
||||
"facing=east,half=top,shape=inner_right": {
|
||||
"model": "otemod:block/thresholds/pool/stairs/blue_pool_tile_stairs_inner",
|
||||
"x": 180,
|
||||
"y": 90,
|
||||
"uvlock": true
|
||||
},
|
||||
"facing=east,half=top,shape=outer_left": {
|
||||
"model": "otemod:block/thresholds/pool/stairs/blue_pool_tile_stairs_outer",
|
||||
"x": 180,
|
||||
"uvlock": true
|
||||
},
|
||||
"facing=east,half=top,shape=outer_right": {
|
||||
"model": "otemod:block/thresholds/pool/stairs/blue_pool_tile_stairs_outer",
|
||||
"x": 180,
|
||||
"y": 90,
|
||||
"uvlock": true
|
||||
},
|
||||
"facing=east,half=top,shape=straight": {
|
||||
"model": "otemod:block/thresholds/pool/stairs/blue_pool_tile_stairs",
|
||||
"x": 180,
|
||||
"uvlock": true
|
||||
},
|
||||
"facing=north,half=bottom,shape=inner_left": {
|
||||
"model": "otemod:block/thresholds/pool/stairs/blue_pool_tile_stairs_inner",
|
||||
"y": 180,
|
||||
"uvlock": true
|
||||
},
|
||||
"facing=north,half=bottom,shape=inner_right": {
|
||||
"model": "otemod:block/thresholds/pool/stairs/blue_pool_tile_stairs_inner",
|
||||
"y": 270,
|
||||
"uvlock": true
|
||||
},
|
||||
"facing=north,half=bottom,shape=outer_left": {
|
||||
"model": "otemod:block/thresholds/pool/stairs/blue_pool_tile_stairs_outer",
|
||||
"y": 180,
|
||||
"uvlock": true
|
||||
},
|
||||
"facing=north,half=bottom,shape=outer_right": {
|
||||
"model": "otemod:block/thresholds/pool/stairs/blue_pool_tile_stairs_outer",
|
||||
"y": 270,
|
||||
"uvlock": true
|
||||
},
|
||||
"facing=north,half=bottom,shape=straight": {
|
||||
"model": "otemod:block/thresholds/pool/stairs/blue_pool_tile_stairs",
|
||||
"y": 270,
|
||||
"uvlock": true
|
||||
},
|
||||
"facing=north,half=top,shape=inner_left": {
|
||||
"model": "otemod:block/thresholds/pool/stairs/blue_pool_tile_stairs_inner",
|
||||
"x": 180,
|
||||
"y": 270,
|
||||
"uvlock": true
|
||||
},
|
||||
"facing=north,half=top,shape=inner_right": {
|
||||
"model": "otemod:block/thresholds/pool/stairs/blue_pool_tile_stairs_inner",
|
||||
"x": 180,
|
||||
"uvlock": true
|
||||
},
|
||||
"facing=north,half=top,shape=outer_left": {
|
||||
"model": "otemod:block/thresholds/pool/stairs/blue_pool_tile_stairs_outer",
|
||||
"x": 180,
|
||||
"y": 270,
|
||||
"uvlock": true
|
||||
},
|
||||
"facing=north,half=top,shape=outer_right": {
|
||||
"model": "otemod:block/thresholds/pool/stairs/blue_pool_tile_stairs_outer",
|
||||
"x": 180,
|
||||
"uvlock": true
|
||||
},
|
||||
"facing=north,half=top,shape=straight": {
|
||||
"model": "otemod:block/thresholds/pool/stairs/blue_pool_tile_stairs",
|
||||
"x": 180,
|
||||
"y": 270,
|
||||
"uvlock": true
|
||||
},
|
||||
"facing=south,half=bottom,shape=inner_left": {
|
||||
"model": "otemod:block/thresholds/pool/stairs/blue_pool_tile_stairs_inner"
|
||||
},
|
||||
"facing=south,half=bottom,shape=inner_right": {
|
||||
"model": "otemod:block/thresholds/pool/stairs/blue_pool_tile_stairs_inner",
|
||||
"y": 90,
|
||||
"uvlock": true
|
||||
},
|
||||
"facing=south,half=bottom,shape=outer_left": {
|
||||
"model": "otemod:block/thresholds/pool/stairs/blue_pool_tile_stairs_outer"
|
||||
},
|
||||
"facing=south,half=bottom,shape=outer_right": {
|
||||
"model": "otemod:block/thresholds/pool/stairs/blue_pool_tile_stairs_outer",
|
||||
"y": 90,
|
||||
"uvlock": true
|
||||
},
|
||||
"facing=south,half=bottom,shape=straight": {
|
||||
"model": "otemod:block/thresholds/pool/stairs/blue_pool_tile_stairs",
|
||||
"y": 90,
|
||||
"uvlock": true
|
||||
},
|
||||
"facing=south,half=top,shape=inner_left": {
|
||||
"model": "otemod:block/thresholds/pool/stairs/blue_pool_tile_stairs_inner",
|
||||
"x": 180,
|
||||
"y": 90,
|
||||
"uvlock": true
|
||||
},
|
||||
"facing=south,half=top,shape=inner_right": {
|
||||
"model": "otemod:block/thresholds/pool/stairs/blue_pool_tile_stairs_inner",
|
||||
"x": 180,
|
||||
"y": 180,
|
||||
"uvlock": true
|
||||
},
|
||||
"facing=south,half=top,shape=outer_left": {
|
||||
"model": "otemod:block/thresholds/pool/stairs/blue_pool_tile_stairs_outer",
|
||||
"x": 180,
|
||||
"y": 90,
|
||||
"uvlock": true
|
||||
},
|
||||
"facing=south,half=top,shape=outer_right": {
|
||||
"model": "otemod:block/thresholds/pool/stairs/blue_pool_tile_stairs_outer",
|
||||
"x": 180,
|
||||
"y": 180,
|
||||
"uvlock": true
|
||||
},
|
||||
"facing=south,half=top,shape=straight": {
|
||||
"model": "otemod:block/thresholds/pool/stairs/blue_pool_tile_stairs",
|
||||
"x": 180,
|
||||
"y": 90,
|
||||
"uvlock": true
|
||||
},
|
||||
"facing=west,half=bottom,shape=inner_left": {
|
||||
"model": "otemod:block/thresholds/pool/stairs/blue_pool_tile_stairs_inner",
|
||||
"y": 90,
|
||||
"uvlock": true
|
||||
},
|
||||
"facing=west,half=bottom,shape=inner_right": {
|
||||
"model": "otemod:block/thresholds/pool/stairs/blue_pool_tile_stairs_inner",
|
||||
"y": 180,
|
||||
"uvlock": true
|
||||
},
|
||||
"facing=west,half=bottom,shape=outer_left": {
|
||||
"model": "otemod:block/thresholds/pool/stairs/blue_pool_tile_stairs_outer",
|
||||
"y": 90,
|
||||
"uvlock": true
|
||||
},
|
||||
"facing=west,half=bottom,shape=outer_right": {
|
||||
"model": "otemod:block/thresholds/pool/stairs/blue_pool_tile_stairs_outer",
|
||||
"y": 180,
|
||||
"uvlock": true
|
||||
},
|
||||
"facing=west,half=bottom,shape=straight": {
|
||||
"model": "otemod:block/thresholds/pool/stairs/blue_pool_tile_stairs",
|
||||
"y": 180,
|
||||
"uvlock": true
|
||||
},
|
||||
"facing=west,half=top,shape=inner_left": {
|
||||
"model": "otemod:block/thresholds/pool/stairs/blue_pool_tile_stairs_inner",
|
||||
"x": 180,
|
||||
"y": 180,
|
||||
"uvlock": true
|
||||
},
|
||||
"facing=west,half=top,shape=inner_right": {
|
||||
"model": "otemod:block/thresholds/pool/stairs/blue_pool_tile_stairs_inner",
|
||||
"x": 180,
|
||||
"y": 270,
|
||||
"uvlock": true
|
||||
},
|
||||
"facing=west,half=top,shape=outer_left": {
|
||||
"model": "otemod:block/thresholds/pool/stairs/blue_pool_tile_stairs_outer",
|
||||
"x": 180,
|
||||
"y": 180,
|
||||
"uvlock": true
|
||||
},
|
||||
"facing=west,half=top,shape=outer_right": {
|
||||
"model": "otemod:block/thresholds/pool/stairs/blue_pool_tile_stairs_outer",
|
||||
"x": 180,
|
||||
"y": 270,
|
||||
"uvlock": true
|
||||
},
|
||||
"facing=west,half=top,shape=straight": {
|
||||
"model": "otemod:block/thresholds/pool/stairs/blue_pool_tile_stairs",
|
||||
"x": 180,
|
||||
"y": 180,
|
||||
"uvlock": true
|
||||
}
|
||||
}
|
||||
}
|
|
@ -1,7 +1,7 @@
|
|||
{
|
||||
"variants": {
|
||||
"": {
|
||||
"model": "otemod:block/clear_glass_block"
|
||||
"model": "otemod:block/deprecated"
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
@ -1,7 +0,0 @@
|
|||
{
|
||||
"variants": {
|
||||
"": {
|
||||
"model": "otemod:block/compressed_obsidian_block"
|
||||
}
|
||||
}
|
||||
}
|
|
@ -1,7 +0,0 @@
|
|||
{
|
||||
"variants": {
|
||||
"": {
|
||||
"model": "otemod:block/thresholds/pool/light/dark_pool_light"
|
||||
}
|
||||
}
|
||||
}
|
|
@ -1,7 +0,0 @@
|
|||
{
|
||||
"variants": {
|
||||
"": {
|
||||
"model": "otemod:block/thresholds/pool/tiles/dark_pool_tile"
|
||||
}
|
||||
}
|
||||
}
|
|
@ -1,209 +0,0 @@
|
|||
{
|
||||
"variants": {
|
||||
"facing=east,half=bottom,shape=inner_left": {
|
||||
"model": "otemod:block/thresholds/pool/stairs/dark_pool_tile_stairs_inner",
|
||||
"y": 270,
|
||||
"uvlock": true
|
||||
},
|
||||
"facing=east,half=bottom,shape=inner_right": {
|
||||
"model": "otemod:block/thresholds/pool/stairs/dark_pool_tile_stairs_inner"
|
||||
},
|
||||
"facing=east,half=bottom,shape=outer_left": {
|
||||
"model": "otemod:block/thresholds/pool/stairs/dark_pool_tile_stairs_outer",
|
||||
"y": 270,
|
||||
"uvlock": true
|
||||
},
|
||||
"facing=east,half=bottom,shape=outer_right": {
|
||||
"model": "otemod:block/thresholds/pool/stairs/dark_pool_tile_stairs_outer"
|
||||
},
|
||||
"facing=east,half=bottom,shape=straight": {
|
||||
"model": "otemod:block/thresholds/pool/stairs/dark_pool_tile_stairs"
|
||||
},
|
||||
"facing=east,half=top,shape=inner_left": {
|
||||
"model": "otemod:block/thresholds/pool/stairs/dark_pool_tile_stairs_inner",
|
||||
"x": 180,
|
||||
"uvlock": true
|
||||
},
|
||||
"facing=east,half=top,shape=inner_right": {
|
||||
"model": "otemod:block/thresholds/pool/stairs/dark_pool_tile_stairs_inner",
|
||||
"x": 180,
|
||||
"y": 90,
|
||||
"uvlock": true
|
||||
},
|
||||
"facing=east,half=top,shape=outer_left": {
|
||||
"model": "otemod:block/thresholds/pool/stairs/dark_pool_tile_stairs_outer",
|
||||
"x": 180,
|
||||
"uvlock": true
|
||||
},
|
||||
"facing=east,half=top,shape=outer_right": {
|
||||
"model": "otemod:block/thresholds/pool/stairs/dark_pool_tile_stairs_outer",
|
||||
"x": 180,
|
||||
"y": 90,
|
||||
"uvlock": true
|
||||
},
|
||||
"facing=east,half=top,shape=straight": {
|
||||
"model": "otemod:block/thresholds/pool/stairs/dark_pool_tile_stairs",
|
||||
"x": 180,
|
||||
"uvlock": true
|
||||
},
|
||||
"facing=north,half=bottom,shape=inner_left": {
|
||||
"model": "otemod:block/thresholds/pool/stairs/dark_pool_tile_stairs_inner",
|
||||
"y": 180,
|
||||
"uvlock": true
|
||||
},
|
||||
"facing=north,half=bottom,shape=inner_right": {
|
||||
"model": "otemod:block/thresholds/pool/stairs/dark_pool_tile_stairs_inner",
|
||||
"y": 270,
|
||||
"uvlock": true
|
||||
},
|
||||
"facing=north,half=bottom,shape=outer_left": {
|
||||
"model": "otemod:block/thresholds/pool/stairs/dark_pool_tile_stairs_outer",
|
||||
"y": 180,
|
||||
"uvlock": true
|
||||
},
|
||||
"facing=north,half=bottom,shape=outer_right": {
|
||||
"model": "otemod:block/thresholds/pool/stairs/dark_pool_tile_stairs_outer",
|
||||
"y": 270,
|
||||
"uvlock": true
|
||||
},
|
||||
"facing=north,half=bottom,shape=straight": {
|
||||
"model": "otemod:block/thresholds/pool/stairs/dark_pool_tile_stairs",
|
||||
"y": 270,
|
||||
"uvlock": true
|
||||
},
|
||||
"facing=north,half=top,shape=inner_left": {
|
||||
"model": "otemod:block/thresholds/pool/stairs/dark_pool_tile_stairs_inner",
|
||||
"x": 180,
|
||||
"y": 270,
|
||||
"uvlock": true
|
||||
},
|
||||
"facing=north,half=top,shape=inner_right": {
|
||||
"model": "otemod:block/thresholds/pool/stairs/dark_pool_tile_stairs_inner",
|
||||
"x": 180,
|
||||
"uvlock": true
|
||||
},
|
||||
"facing=north,half=top,shape=outer_left": {
|
||||
"model": "otemod:block/thresholds/pool/stairs/dark_pool_tile_stairs_outer",
|
||||
"x": 180,
|
||||
"y": 270,
|
||||
"uvlock": true
|
||||
},
|
||||
"facing=north,half=top,shape=outer_right": {
|
||||
"model": "otemod:block/thresholds/pool/stairs/dark_pool_tile_stairs_outer",
|
||||
"x": 180,
|
||||
"uvlock": true
|
||||
},
|
||||
"facing=north,half=top,shape=straight": {
|
||||
"model": "otemod:block/thresholds/pool/stairs/dark_pool_tile_stairs",
|
||||
"x": 180,
|
||||
"y": 270,
|
||||
"uvlock": true
|
||||
},
|
||||
"facing=south,half=bottom,shape=inner_left": {
|
||||
"model": "otemod:block/thresholds/pool/stairs/dark_pool_tile_stairs_inner"
|
||||
},
|
||||
"facing=south,half=bottom,shape=inner_right": {
|
||||
"model": "otemod:block/thresholds/pool/stairs/dark_pool_tile_stairs_inner",
|
||||
"y": 90,
|
||||
"uvlock": true
|
||||
},
|
||||
"facing=south,half=bottom,shape=outer_left": {
|
||||
"model": "otemod:block/thresholds/pool/stairs/dark_pool_tile_stairs_outer"
|
||||
},
|
||||
"facing=south,half=bottom,shape=outer_right": {
|
||||
"model": "otemod:block/thresholds/pool/stairs/dark_pool_tile_stairs_outer",
|
||||
"y": 90,
|
||||
"uvlock": true
|
||||
},
|
||||
"facing=south,half=bottom,shape=straight": {
|
||||
"model": "otemod:block/thresholds/pool/stairs/dark_pool_tile_stairs",
|
||||
"y": 90,
|
||||
"uvlock": true
|
||||
},
|
||||
"facing=south,half=top,shape=inner_left": {
|
||||
"model": "otemod:block/thresholds/pool/stairs/dark_pool_tile_stairs_inner",
|
||||
"x": 180,
|
||||
"y": 90,
|
||||
"uvlock": true
|
||||
},
|
||||
"facing=south,half=top,shape=inner_right": {
|
||||
"model": "otemod:block/thresholds/pool/stairs/dark_pool_tile_stairs_inner",
|
||||
"x": 180,
|
||||
"y": 180,
|
||||
"uvlock": true
|
||||
},
|
||||
"facing=south,half=top,shape=outer_left": {
|
||||
"model": "otemod:block/thresholds/pool/stairs/dark_pool_tile_stairs_outer",
|
||||
"x": 180,
|
||||
"y": 90,
|
||||
"uvlock": true
|
||||
},
|
||||
"facing=south,half=top,shape=outer_right": {
|
||||
"model": "otemod:block/thresholds/pool/stairs/dark_pool_tile_stairs_outer",
|
||||
"x": 180,
|
||||
"y": 180,
|
||||
"uvlock": true
|
||||
},
|
||||
"facing=south,half=top,shape=straight": {
|
||||
"model": "otemod:block/thresholds/pool/stairs/dark_pool_tile_stairs",
|
||||
"x": 180,
|
||||
"y": 90,
|
||||
"uvlock": true
|
||||
},
|
||||
"facing=west,half=bottom,shape=inner_left": {
|
||||
"model": "otemod:block/thresholds/pool/stairs/dark_pool_tile_stairs_inner",
|
||||
"y": 90,
|
||||
"uvlock": true
|
||||
},
|
||||
"facing=west,half=bottom,shape=inner_right": {
|
||||
"model": "otemod:block/thresholds/pool/stairs/dark_pool_tile_stairs_inner",
|
||||
"y": 180,
|
||||
"uvlock": true
|
||||
},
|
||||
"facing=west,half=bottom,shape=outer_left": {
|
||||
"model": "otemod:block/thresholds/pool/stairs/dark_pool_tile_stairs_outer",
|
||||
"y": 90,
|
||||
"uvlock": true
|
||||
},
|
||||
"facing=west,half=bottom,shape=outer_right": {
|
||||
"model": "otemod:block/thresholds/pool/stairs/dark_pool_tile_stairs_outer",
|
||||
"y": 180,
|
||||
"uvlock": true
|
||||
},
|
||||
"facing=west,half=bottom,shape=straight": {
|
||||
"model": "otemod:block/thresholds/pool/stairs/dark_pool_tile_stairs",
|
||||
"y": 180,
|
||||
"uvlock": true
|
||||
},
|
||||
"facing=west,half=top,shape=inner_left": {
|
||||
"model": "otemod:block/thresholds/pool/stairs/dark_pool_tile_stairs_inner",
|
||||
"x": 180,
|
||||
"y": 180,
|
||||
"uvlock": true
|
||||
},
|
||||
"facing=west,half=top,shape=inner_right": {
|
||||
"model": "otemod:block/thresholds/pool/stairs/dark_pool_tile_stairs_inner",
|
||||
"x": 180,
|
||||
"y": 270,
|
||||
"uvlock": true
|
||||
},
|
||||
"facing=west,half=top,shape=outer_left": {
|
||||
"model": "otemod:block/thresholds/pool/stairs/dark_pool_tile_stairs_outer",
|
||||
"x": 180,
|
||||
"y": 180,
|
||||
"uvlock": true
|
||||
},
|
||||
"facing=west,half=top,shape=outer_right": {
|
||||
"model": "otemod:block/thresholds/pool/stairs/dark_pool_tile_stairs_outer",
|
||||
"x": 180,
|
||||
"y": 270,
|
||||
"uvlock": true
|
||||
},
|
||||
"facing=west,half=top,shape=straight": {
|
||||
"model": "otemod:block/thresholds/pool/stairs/dark_pool_tile_stairs",
|
||||
"x": 180,
|
||||
"y": 180,
|
||||
"uvlock": true
|
||||
}
|
||||
}
|
||||
}
|
|
@ -1,7 +0,0 @@
|
|||
{
|
||||
"variants": {
|
||||
"": {
|
||||
"model": "otemod:block/deepslate_eternium_ore_block"
|
||||
}
|
||||
}
|
||||
}
|
|
@ -1,7 +1,7 @@
|
|||
{
|
||||
"variants": {
|
||||
"": {
|
||||
"model": "otemod:block/deepslate_ilusium_ore_block"
|
||||
"model": "otemod:block/deprecated"
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
@ -1,7 +0,0 @@
|
|||
{
|
||||
"variants": {
|
||||
"": {
|
||||
"model": "otemod:block/thresholds/pool/light/dirty_blue_pool_light"
|
||||
}
|
||||
}
|
||||
}
|
|
@ -1,7 +0,0 @@
|
|||
{
|
||||
"variants": {
|
||||
"": {
|
||||
"model": "otemod:block/thresholds/pool/tiles/dirty_blue_pool_tile"
|
||||
}
|
||||
}
|
||||
}
|
|
@ -1,209 +0,0 @@
|
|||
{
|
||||
"variants": {
|
||||
"facing=east,half=bottom,shape=inner_left": {
|
||||
"model": "otemod:block/thresholds/pool/stairs/dirty_blue_pool_tile_stairs_inner",
|
||||
"y": 270,
|
||||
"uvlock": true
|
||||
},
|
||||
"facing=east,half=bottom,shape=inner_right": {
|
||||
"model": "otemod:block/thresholds/pool/stairs/dirty_blue_pool_tile_stairs_inner"
|
||||
},
|
||||
"facing=east,half=bottom,shape=outer_left": {
|
||||
"model": "otemod:block/thresholds/pool/stairs/dirty_blue_pool_tile_stairs_outer",
|
||||
"y": 270,
|
||||
"uvlock": true
|
||||
},
|
||||
"facing=east,half=bottom,shape=outer_right": {
|
||||
"model": "otemod:block/thresholds/pool/stairs/dirty_blue_pool_tile_stairs_outer"
|
||||
},
|
||||
"facing=east,half=bottom,shape=straight": {
|
||||
"model": "otemod:block/thresholds/pool/stairs/dirty_blue_pool_tile_stairs"
|
||||
},
|
||||
"facing=east,half=top,shape=inner_left": {
|
||||
"model": "otemod:block/thresholds/pool/stairs/dirty_blue_pool_tile_stairs_inner",
|
||||
"x": 180,
|
||||
"uvlock": true
|
||||
},
|
||||
"facing=east,half=top,shape=inner_right": {
|
||||
"model": "otemod:block/thresholds/pool/stairs/dirty_blue_pool_tile_stairs_inner",
|
||||
"x": 180,
|
||||
"y": 90,
|
||||
"uvlock": true
|
||||
},
|
||||
"facing=east,half=top,shape=outer_left": {
|
||||
"model": "otemod:block/thresholds/pool/stairs/dirty_blue_pool_tile_stairs_outer",
|
||||
"x": 180,
|
||||
"uvlock": true
|
||||
},
|
||||
"facing=east,half=top,shape=outer_right": {
|
||||
"model": "otemod:block/thresholds/pool/stairs/dirty_blue_pool_tile_stairs_outer",
|
||||
"x": 180,
|
||||
"y": 90,
|
||||
"uvlock": true
|
||||
},
|
||||
"facing=east,half=top,shape=straight": {
|
||||
"model": "otemod:block/thresholds/pool/stairs/dirty_blue_pool_tile_stairs",
|
||||
"x": 180,
|
||||
"uvlock": true
|
||||
},
|
||||
"facing=north,half=bottom,shape=inner_left": {
|
||||
"model": "otemod:block/thresholds/pool/stairs/dirty_blue_pool_tile_stairs_inner",
|
||||
"y": 180,
|
||||
"uvlock": true
|
||||
},
|
||||
"facing=north,half=bottom,shape=inner_right": {
|
||||
"model": "otemod:block/thresholds/pool/stairs/dirty_blue_pool_tile_stairs_inner",
|
||||
"y": 270,
|
||||
"uvlock": true
|
||||
},
|
||||
"facing=north,half=bottom,shape=outer_left": {
|
||||
"model": "otemod:block/thresholds/pool/stairs/dirty_blue_pool_tile_stairs_outer",
|
||||
"y": 180,
|
||||
"uvlock": true
|
||||
},
|
||||
"facing=north,half=bottom,shape=outer_right": {
|
||||
"model": "otemod:block/thresholds/pool/stairs/dirty_blue_pool_tile_stairs_outer",
|
||||
"y": 270,
|
||||
"uvlock": true
|
||||
},
|
||||
"facing=north,half=bottom,shape=straight": {
|
||||
"model": "otemod:block/thresholds/pool/stairs/dirty_blue_pool_tile_stairs",
|
||||
"y": 270,
|
||||
"uvlock": true
|
||||
},
|
||||
"facing=north,half=top,shape=inner_left": {
|
||||
"model": "otemod:block/thresholds/pool/stairs/dirty_blue_pool_tile_stairs_inner",
|
||||
"x": 180,
|
||||
"y": 270,
|
||||
"uvlock": true
|
||||
},
|
||||
"facing=north,half=top,shape=inner_right": {
|
||||
"model": "otemod:block/thresholds/pool/stairs/dirty_blue_pool_tile_stairs_inner",
|
||||
"x": 180,
|
||||
"uvlock": true
|
||||
},
|
||||
"facing=north,half=top,shape=outer_left": {
|
||||
"model": "otemod:block/thresholds/pool/stairs/dirty_blue_pool_tile_stairs_outer",
|
||||
"x": 180,
|
||||
"y": 270,
|
||||
"uvlock": true
|
||||
},
|
||||
"facing=north,half=top,shape=outer_right": {
|
||||
"model": "otemod:block/thresholds/pool/stairs/dirty_blue_pool_tile_stairs_outer",
|
||||
"x": 180,
|
||||
"uvlock": true
|
||||
},
|
||||
"facing=north,half=top,shape=straight": {
|
||||
"model": "otemod:block/thresholds/pool/stairs/dirty_blue_pool_tile_stairs",
|
||||
"x": 180,
|
||||
"y": 270,
|
||||
"uvlock": true
|
||||
},
|
||||
"facing=south,half=bottom,shape=inner_left": {
|
||||
"model": "otemod:block/thresholds/pool/stairs/dirty_blue_pool_tile_stairs_inner"
|
||||
},
|
||||
"facing=south,half=bottom,shape=inner_right": {
|
||||
"model": "otemod:block/thresholds/pool/stairs/dirty_blue_pool_tile_stairs_inner",
|
||||
"y": 90,
|
||||
"uvlock": true
|
||||
},
|
||||
"facing=south,half=bottom,shape=outer_left": {
|
||||
"model": "otemod:block/thresholds/pool/stairs/dirty_blue_pool_tile_stairs_outer"
|
||||
},
|
||||
"facing=south,half=bottom,shape=outer_right": {
|
||||
"model": "otemod:block/thresholds/pool/stairs/dirty_blue_pool_tile_stairs_outer",
|
||||
"y": 90,
|
||||
"uvlock": true
|
||||
},
|
||||
"facing=south,half=bottom,shape=straight": {
|
||||
"model": "otemod:block/thresholds/pool/stairs/dirty_blue_pool_tile_stairs",
|
||||
"y": 90,
|
||||
"uvlock": true
|
||||
},
|
||||
"facing=south,half=top,shape=inner_left": {
|
||||
"model": "otemod:block/thresholds/pool/stairs/dirty_blue_pool_tile_stairs_inner",
|
||||
"x": 180,
|
||||
"y": 90,
|
||||
"uvlock": true
|
||||
},
|
||||
"facing=south,half=top,shape=inner_right": {
|
||||
"model": "otemod:block/thresholds/pool/stairs/dirty_blue_pool_tile_stairs_inner",
|
||||
"x": 180,
|
||||
"y": 180,
|
||||
"uvlock": true
|
||||
},
|
||||
"facing=south,half=top,shape=outer_left": {
|
||||
"model": "otemod:block/thresholds/pool/stairs/dirty_blue_pool_tile_stairs_outer",
|
||||
"x": 180,
|
||||
"y": 90,
|
||||
"uvlock": true
|
||||
},
|
||||
"facing=south,half=top,shape=outer_right": {
|
||||
"model": "otemod:block/thresholds/pool/stairs/dirty_blue_pool_tile_stairs_outer",
|
||||
"x": 180,
|
||||
"y": 180,
|
||||
"uvlock": true
|
||||
},
|
||||
"facing=south,half=top,shape=straight": {
|
||||
"model": "otemod:block/thresholds/pool/stairs/dirty_blue_pool_tile_stairs",
|
||||
"x": 180,
|
||||
"y": 90,
|
||||
"uvlock": true
|
||||
},
|
||||
"facing=west,half=bottom,shape=inner_left": {
|
||||
"model": "otemod:block/thresholds/pool/stairs/dirty_blue_pool_tile_stairs_inner",
|
||||
"y": 90,
|
||||
"uvlock": true
|
||||
},
|
||||
"facing=west,half=bottom,shape=inner_right": {
|
||||
"model": "otemod:block/thresholds/pool/stairs/dirty_blue_pool_tile_stairs_inner",
|
||||
"y": 180,
|
||||
"uvlock": true
|
||||
},
|
||||
"facing=west,half=bottom,shape=outer_left": {
|
||||
"model": "otemod:block/thresholds/pool/stairs/dirty_blue_pool_tile_stairs_outer",
|
||||
"y": 90,
|
||||
"uvlock": true
|
||||
},
|
||||
"facing=west,half=bottom,shape=outer_right": {
|
||||
"model": "otemod:block/thresholds/pool/stairs/dirty_blue_pool_tile_stairs_outer",
|
||||
"y": 180,
|
||||
"uvlock": true
|
||||
},
|
||||
"facing=west,half=bottom,shape=straight": {
|
||||
"model": "otemod:block/thresholds/pool/stairs/dirty_blue_pool_tile_stairs",
|
||||
"y": 180,
|
||||
"uvlock": true
|
||||
},
|
||||
"facing=west,half=top,shape=inner_left": {
|
||||
"model": "otemod:block/thresholds/pool/stairs/dirty_blue_pool_tile_stairs_inner",
|
||||
"x": 180,
|
||||
"y": 180,
|
||||
"uvlock": true
|
||||
},
|
||||
"facing=west,half=top,shape=inner_right": {
|
||||
"model": "otemod:block/thresholds/pool/stairs/dirty_blue_pool_tile_stairs_inner",
|
||||
"x": 180,
|
||||
"y": 270,
|
||||
"uvlock": true
|
||||
},
|
||||
"facing=west,half=top,shape=outer_left": {
|
||||
"model": "otemod:block/thresholds/pool/stairs/dirty_blue_pool_tile_stairs_outer",
|
||||
"x": 180,
|
||||
"y": 180,
|
||||
"uvlock": true
|
||||
},
|
||||
"facing=west,half=top,shape=outer_right": {
|
||||
"model": "otemod:block/thresholds/pool/stairs/dirty_blue_pool_tile_stairs_outer",
|
||||
"x": 180,
|
||||
"y": 270,
|
||||
"uvlock": true
|
||||
},
|
||||
"facing=west,half=top,shape=straight": {
|
||||
"model": "otemod:block/thresholds/pool/stairs/dirty_blue_pool_tile_stairs",
|
||||
"x": 180,
|
||||
"y": 180,
|
||||
"uvlock": true
|
||||
}
|
||||
}
|
||||
}
|
|
@ -1,7 +0,0 @@
|
|||
{
|
||||
"variants": {
|
||||
"": {
|
||||
"model": "otemod:block/thresholds/pool/light/dirty_pool_light"
|
||||
}
|
||||
}
|
||||
}
|
|
@ -1,7 +0,0 @@
|
|||
{
|
||||
"variants": {
|
||||
"": {
|
||||
"model": "otemod:block/thresholds/pool/tiles/dirty_pool_tile"
|
||||
}
|
||||
}
|
||||
}
|
|
@ -1,209 +0,0 @@
|
|||
{
|
||||
"variants": {
|
||||
"facing=east,half=bottom,shape=inner_left": {
|
||||
"model": "otemod:block/thresholds/pool/stairs/dirty_pool_tile_stairs_inner",
|
||||
"y": 270,
|
||||
"uvlock": true
|
||||
},
|
||||
"facing=east,half=bottom,shape=inner_right": {
|
||||
"model": "otemod:block/thresholds/pool/stairs/dirty_pool_tile_stairs_inner"
|
||||
},
|
||||
"facing=east,half=bottom,shape=outer_left": {
|
||||
"model": "otemod:block/thresholds/pool/stairs/dirty_pool_tile_stairs_outer",
|
||||
"y": 270,
|
||||
"uvlock": true
|
||||
},
|
||||
"facing=east,half=bottom,shape=outer_right": {
|
||||
"model": "otemod:block/thresholds/pool/stairs/dirty_pool_tile_stairs_outer"
|
||||
},
|
||||
"facing=east,half=bottom,shape=straight": {
|
||||
"model": "otemod:block/thresholds/pool/stairs/dirty_pool_tile_stairs"
|
||||
},
|
||||
"facing=east,half=top,shape=inner_left": {
|
||||
"model": "otemod:block/thresholds/pool/stairs/dirty_pool_tile_stairs_inner",
|
||||
"x": 180,
|
||||
"uvlock": true
|
||||
},
|
||||
"facing=east,half=top,shape=inner_right": {
|
||||
"model": "otemod:block/thresholds/pool/stairs/dirty_pool_tile_stairs_inner",
|
||||
"x": 180,
|
||||
"y": 90,
|
||||
"uvlock": true
|
||||
},
|
||||
"facing=east,half=top,shape=outer_left": {
|
||||
"model": "otemod:block/thresholds/pool/stairs/dirty_pool_tile_stairs_outer",
|
||||
"x": 180,
|
||||
"uvlock": true
|
||||
},
|
||||
"facing=east,half=top,shape=outer_right": {
|
||||
"model": "otemod:block/thresholds/pool/stairs/dirty_pool_tile_stairs_outer",
|
||||
"x": 180,
|
||||
"y": 90,
|
||||
"uvlock": true
|
||||
},
|
||||
"facing=east,half=top,shape=straight": {
|
||||
"model": "otemod:block/thresholds/pool/stairs/dirty_pool_tile_stairs",
|
||||
"x": 180,
|
||||
"uvlock": true
|
||||
},
|
||||
"facing=north,half=bottom,shape=inner_left": {
|
||||
"model": "otemod:block/thresholds/pool/stairs/dirty_pool_tile_stairs_inner",
|
||||
"y": 180,
|
||||
"uvlock": true
|
||||
},
|
||||
"facing=north,half=bottom,shape=inner_right": {
|
||||
"model": "otemod:block/thresholds/pool/stairs/dirty_pool_tile_stairs_inner",
|
||||
"y": 270,
|
||||
"uvlock": true
|
||||
},
|
||||
"facing=north,half=bottom,shape=outer_left": {
|
||||
"model": "otemod:block/thresholds/pool/stairs/dirty_pool_tile_stairs_outer",
|
||||
"y": 180,
|
||||
"uvlock": true
|
||||
},
|
||||
"facing=north,half=bottom,shape=outer_right": {
|
||||
"model": "otemod:block/thresholds/pool/stairs/dirty_pool_tile_stairs_outer",
|
||||
"y": 270,
|
||||
"uvlock": true
|
||||
},
|
||||
"facing=north,half=bottom,shape=straight": {
|
||||
"model": "otemod:block/thresholds/pool/stairs/dirty_pool_tile_stairs",
|
||||
"y": 270,
|
||||
"uvlock": true
|
||||
},
|
||||
"facing=north,half=top,shape=inner_left": {
|
||||
"model": "otemod:block/thresholds/pool/stairs/dirty_pool_tile_stairs_inner",
|
||||
"x": 180,
|
||||
"y": 270,
|
||||
"uvlock": true
|
||||
},
|
||||
"facing=north,half=top,shape=inner_right": {
|
||||
"model": "otemod:block/thresholds/pool/stairs/dirty_pool_tile_stairs_inner",
|
||||
"x": 180,
|
||||
"uvlock": true
|
||||
},
|
||||
"facing=north,half=top,shape=outer_left": {
|
||||
"model": "otemod:block/thresholds/pool/stairs/dirty_pool_tile_stairs_outer",
|
||||
"x": 180,
|
||||
"y": 270,
|
||||
"uvlock": true
|
||||
},
|
||||
"facing=north,half=top,shape=outer_right": {
|
||||
"model": "otemod:block/thresholds/pool/stairs/dirty_pool_tile_stairs_outer",
|
||||
"x": 180,
|
||||
"uvlock": true
|
||||
},
|
||||
"facing=north,half=top,shape=straight": {
|
||||
"model": "otemod:block/thresholds/pool/stairs/dirty_pool_tile_stairs",
|
||||
"x": 180,
|
||||
"y": 270,
|
||||
"uvlock": true
|
||||
},
|
||||
"facing=south,half=bottom,shape=inner_left": {
|
||||
"model": "otemod:block/thresholds/pool/stairs/dirty_pool_tile_stairs_inner"
|
||||
},
|
||||
"facing=south,half=bottom,shape=inner_right": {
|
||||
"model": "otemod:block/thresholds/pool/stairs/dirty_pool_tile_stairs_inner",
|
||||
"y": 90,
|
||||
"uvlock": true
|
||||
},
|
||||
"facing=south,half=bottom,shape=outer_left": {
|
||||
"model": "otemod:block/thresholds/pool/stairs/dirty_pool_tile_stairs_outer"
|
||||
},
|
||||
"facing=south,half=bottom,shape=outer_right": {
|
||||
"model": "otemod:block/thresholds/pool/stairs/dirty_pool_tile_stairs_outer",
|
||||
"y": 90,
|
||||
"uvlock": true
|
||||
},
|
||||
"facing=south,half=bottom,shape=straight": {
|
||||
"model": "otemod:block/thresholds/pool/stairs/dirty_pool_tile_stairs",
|
||||
"y": 90,
|
||||
"uvlock": true
|
||||
},
|
||||
"facing=south,half=top,shape=inner_left": {
|
||||
"model": "otemod:block/thresholds/pool/stairs/dirty_pool_tile_stairs_inner",
|
||||
"x": 180,
|
||||
"y": 90,
|
||||
"uvlock": true
|
||||
},
|
||||
"facing=south,half=top,shape=inner_right": {
|
||||
"model": "otemod:block/thresholds/pool/stairs/dirty_pool_tile_stairs_inner",
|
||||
"x": 180,
|
||||
"y": 180,
|
||||
"uvlock": true
|
||||
},
|
||||
"facing=south,half=top,shape=outer_left": {
|
||||
"model": "otemod:block/thresholds/pool/stairs/dirty_pool_tile_stairs_outer",
|
||||
"x": 180,
|
||||
"y": 90,
|
||||
"uvlock": true
|
||||
},
|
||||
"facing=south,half=top,shape=outer_right": {
|
||||
"model": "otemod:block/thresholds/pool/stairs/dirty_pool_tile_stairs_outer",
|
||||
"x": 180,
|
||||
"y": 180,
|
||||
"uvlock": true
|
||||
},
|
||||
"facing=south,half=top,shape=straight": {
|
||||
"model": "otemod:block/thresholds/pool/stairs/dirty_pool_tile_stairs",
|
||||
"x": 180,
|
||||
"y": 90,
|
||||
"uvlock": true
|
||||
},
|
||||
"facing=west,half=bottom,shape=inner_left": {
|
||||
"model": "otemod:block/thresholds/pool/stairs/dirty_pool_tile_stairs_inner",
|
||||
"y": 90,
|
||||
"uvlock": true
|
||||
},
|
||||
"facing=west,half=bottom,shape=inner_right": {
|
||||
"model": "otemod:block/thresholds/pool/stairs/dirty_pool_tile_stairs_inner",
|
||||
"y": 180,
|
||||
"uvlock": true
|
||||
},
|
||||
"facing=west,half=bottom,shape=outer_left": {
|
||||
"model": "otemod:block/thresholds/pool/stairs/dirty_pool_tile_stairs_outer",
|
||||
"y": 90,
|
||||
"uvlock": true
|
||||
},
|
||||
"facing=west,half=bottom,shape=outer_right": {
|
||||
"model": "otemod:block/thresholds/pool/stairs/dirty_pool_tile_stairs_outer",
|
||||
"y": 180,
|
||||
"uvlock": true
|
||||
},
|
||||
"facing=west,half=bottom,shape=straight": {
|
||||
"model": "otemod:block/thresholds/pool/stairs/dirty_pool_tile_stairs",
|
||||
"y": 180,
|
||||
"uvlock": true
|
||||
},
|
||||
"facing=west,half=top,shape=inner_left": {
|
||||
"model": "otemod:block/thresholds/pool/stairs/dirty_pool_tile_stairs_inner",
|
||||
"x": 180,
|
||||
"y": 180,
|
||||
"uvlock": true
|
||||
},
|
||||
"facing=west,half=top,shape=inner_right": {
|
||||
"model": "otemod:block/thresholds/pool/stairs/dirty_pool_tile_stairs_inner",
|
||||
"x": 180,
|
||||
"y": 270,
|
||||
"uvlock": true
|
||||
},
|
||||
"facing=west,half=top,shape=outer_left": {
|
||||
"model": "otemod:block/thresholds/pool/stairs/dirty_pool_tile_stairs_outer",
|
||||
"x": 180,
|
||||
"y": 180,
|
||||
"uvlock": true
|
||||
},
|
||||
"facing=west,half=top,shape=outer_right": {
|
||||
"model": "otemod:block/thresholds/pool/stairs/dirty_pool_tile_stairs_outer",
|
||||
"x": 180,
|
||||
"y": 270,
|
||||
"uvlock": true
|
||||
},
|
||||
"facing=west,half=top,shape=straight": {
|
||||
"model": "otemod:block/thresholds/pool/stairs/dirty_pool_tile_stairs",
|
||||
"x": 180,
|
||||
"y": 180,
|
||||
"uvlock": true
|
||||
}
|
||||
}
|
||||
}
|
|
@ -1,7 +0,0 @@
|
|||
{
|
||||
"variants": {
|
||||
"": {
|
||||
"model": "otemod:block/thresholds/pool/light/dirty_red_pool_light"
|
||||
}
|
||||
}
|
||||
}
|
|
@ -1,7 +0,0 @@
|
|||
{
|
||||
"variants": {
|
||||
"": {
|
||||
"model": "otemod:block/thresholds/pool/tiles/dirty_red_pool_tile"
|
||||
}
|
||||
}
|
||||
}
|
|
@ -1,209 +0,0 @@
|
|||
{
|
||||
"variants": {
|
||||
"facing=east,half=bottom,shape=inner_left": {
|
||||
"model": "otemod:block/thresholds/pool/stairs/dirty_red_pool_tile_stairs_inner",
|
||||
"y": 270,
|
||||
"uvlock": true
|
||||
},
|
||||
"facing=east,half=bottom,shape=inner_right": {
|
||||
"model": "otemod:block/thresholds/pool/stairs/dirty_red_pool_tile_stairs_inner"
|
||||
},
|
||||
"facing=east,half=bottom,shape=outer_left": {
|
||||
"model": "otemod:block/thresholds/pool/stairs/dirty_red_pool_tile_stairs_outer",
|
||||
"y": 270,
|
||||
"uvlock": true
|
||||
},
|
||||
"facing=east,half=bottom,shape=outer_right": {
|
||||
"model": "otemod:block/thresholds/pool/stairs/dirty_red_pool_tile_stairs_outer"
|
||||
},
|
||||
"facing=east,half=bottom,shape=straight": {
|
||||
"model": "otemod:block/thresholds/pool/stairs/dirty_red_pool_tile_stairs"
|
||||
},
|
||||
"facing=east,half=top,shape=inner_left": {
|
||||
"model": "otemod:block/thresholds/pool/stairs/dirty_red_pool_tile_stairs_inner",
|
||||
"x": 180,
|
||||
"uvlock": true
|
||||
},
|
||||
"facing=east,half=top,shape=inner_right": {
|
||||
"model": "otemod:block/thresholds/pool/stairs/dirty_red_pool_tile_stairs_inner",
|
||||
"x": 180,
|
||||
"y": 90,
|
||||
"uvlock": true
|
||||
},
|
||||
"facing=east,half=top,shape=outer_left": {
|
||||
"model": "otemod:block/thresholds/pool/stairs/dirty_red_pool_tile_stairs_outer",
|
||||
"x": 180,
|
||||
"uvlock": true
|
||||
},
|
||||
"facing=east,half=top,shape=outer_right": {
|
||||
"model": "otemod:block/thresholds/pool/stairs/dirty_red_pool_tile_stairs_outer",
|
||||
"x": 180,
|
||||
"y": 90,
|
||||
"uvlock": true
|
||||
},
|
||||
"facing=east,half=top,shape=straight": {
|
||||
"model": "otemod:block/thresholds/pool/stairs/dirty_red_pool_tile_stairs",
|
||||
"x": 180,
|
||||
"uvlock": true
|
||||
},
|
||||
"facing=north,half=bottom,shape=inner_left": {
|
||||
"model": "otemod:block/thresholds/pool/stairs/dirty_red_pool_tile_stairs_inner",
|
||||
"y": 180,
|
||||
"uvlock": true
|
||||
},
|
||||
"facing=north,half=bottom,shape=inner_right": {
|
||||
"model": "otemod:block/thresholds/pool/stairs/dirty_red_pool_tile_stairs_inner",
|
||||
"y": 270,
|
||||
"uvlock": true
|
||||
},
|
||||
"facing=north,half=bottom,shape=outer_left": {
|
||||
"model": "otemod:block/thresholds/pool/stairs/dirty_red_pool_tile_stairs_outer",
|
||||
"y": 180,
|
||||
"uvlock": true
|
||||
},
|
||||
"facing=north,half=bottom,shape=outer_right": {
|
||||
"model": "otemod:block/thresholds/pool/stairs/dirty_red_pool_tile_stairs_outer",
|
||||
"y": 270,
|
||||
"uvlock": true
|
||||
},
|
||||
"facing=north,half=bottom,shape=straight": {
|
||||
"model": "otemod:block/thresholds/pool/stairs/dirty_red_pool_tile_stairs",
|
||||
"y": 270,
|
||||
"uvlock": true
|
||||
},
|
||||
"facing=north,half=top,shape=inner_left": {
|
||||
"model": "otemod:block/thresholds/pool/stairs/dirty_red_pool_tile_stairs_inner",
|
||||
"x": 180,
|
||||
"y": 270,
|
||||
"uvlock": true
|
||||
},
|
||||
"facing=north,half=top,shape=inner_right": {
|
||||
"model": "otemod:block/thresholds/pool/stairs/dirty_red_pool_tile_stairs_inner",
|
||||
"x": 180,
|
||||
"uvlock": true
|
||||
},
|
||||
"facing=north,half=top,shape=outer_left": {
|
||||
"model": "otemod:block/thresholds/pool/stairs/dirty_red_pool_tile_stairs_outer",
|
||||
"x": 180,
|
||||
"y": 270,
|
||||
"uvlock": true
|
||||
},
|
||||
"facing=north,half=top,shape=outer_right": {
|
||||
"model": "otemod:block/thresholds/pool/stairs/dirty_red_pool_tile_stairs_outer",
|
||||
"x": 180,
|
||||
"uvlock": true
|
||||
},
|
||||
"facing=north,half=top,shape=straight": {
|
||||
"model": "otemod:block/thresholds/pool/stairs/dirty_red_pool_tile_stairs",
|
||||
"x": 180,
|
||||
"y": 270,
|
||||
"uvlock": true
|
||||
},
|
||||
"facing=south,half=bottom,shape=inner_left": {
|
||||
"model": "otemod:block/thresholds/pool/stairs/dirty_red_pool_tile_stairs_inner"
|
||||
},
|
||||
"facing=south,half=bottom,shape=inner_right": {
|
||||
"model": "otemod:block/thresholds/pool/stairs/dirty_red_pool_tile_stairs_inner",
|
||||
"y": 90,
|
||||
"uvlock": true
|
||||
},
|
||||
"facing=south,half=bottom,shape=outer_left": {
|
||||
"model": "otemod:block/thresholds/pool/stairs/dirty_red_pool_tile_stairs_outer"
|
||||
},
|
||||
"facing=south,half=bottom,shape=outer_right": {
|
||||
"model": "otemod:block/thresholds/pool/stairs/dirty_red_pool_tile_stairs_outer",
|
||||
"y": 90,
|
||||
"uvlock": true
|
||||
},
|
||||
"facing=south,half=bottom,shape=straight": {
|
||||
"model": "otemod:block/thresholds/pool/stairs/dirty_red_pool_tile_stairs",
|
||||
"y": 90,
|
||||
"uvlock": true
|
||||
},
|
||||
"facing=south,half=top,shape=inner_left": {
|
||||
"model": "otemod:block/thresholds/pool/stairs/dirty_red_pool_tile_stairs_inner",
|
||||
"x": 180,
|
||||
"y": 90,
|
||||
"uvlock": true
|
||||
},
|
||||
"facing=south,half=top,shape=inner_right": {
|
||||
"model": "otemod:block/thresholds/pool/stairs/dirty_red_pool_tile_stairs_inner",
|
||||
"x": 180,
|
||||
"y": 180,
|
||||
"uvlock": true
|
||||
},
|
||||
"facing=south,half=top,shape=outer_left": {
|
||||
"model": "otemod:block/thresholds/pool/stairs/dirty_red_pool_tile_stairs_outer",
|
||||
"x": 180,
|
||||
"y": 90,
|
||||
"uvlock": true
|
||||
},
|
||||
"facing=south,half=top,shape=outer_right": {
|
||||
"model": "otemod:block/thresholds/pool/stairs/dirty_red_pool_tile_stairs_outer",
|
||||
"x": 180,
|
||||
"y": 180,
|
||||
"uvlock": true
|
||||
},
|
||||
"facing=south,half=top,shape=straight": {
|
||||
"model": "otemod:block/thresholds/pool/stairs/dirty_red_pool_tile_stairs",
|
||||
"x": 180,
|
||||
"y": 90,
|
||||
"uvlock": true
|
||||
},
|
||||
"facing=west,half=bottom,shape=inner_left": {
|
||||
"model": "otemod:block/thresholds/pool/stairs/dirty_red_pool_tile_stairs_inner",
|
||||
"y": 90,
|
||||
"uvlock": true
|
||||
},
|
||||
"facing=west,half=bottom,shape=inner_right": {
|
||||
"model": "otemod:block/thresholds/pool/stairs/dirty_red_pool_tile_stairs_inner",
|
||||
"y": 180,
|
||||
"uvlock": true
|
||||
},
|
||||
"facing=west,half=bottom,shape=outer_left": {
|
||||
"model": "otemod:block/thresholds/pool/stairs/dirty_red_pool_tile_stairs_outer",
|
||||
"y": 90,
|
||||
"uvlock": true
|
||||
},
|
||||
"facing=west,half=bottom,shape=outer_right": {
|
||||
"model": "otemod:block/thresholds/pool/stairs/dirty_red_pool_tile_stairs_outer",
|
||||
"y": 180,
|
||||
"uvlock": true
|
||||
},
|
||||
"facing=west,half=bottom,shape=straight": {
|
||||
"model": "otemod:block/thresholds/pool/stairs/dirty_red_pool_tile_stairs",
|
||||
"y": 180,
|
||||
"uvlock": true
|
||||
},
|
||||
"facing=west,half=top,shape=inner_left": {
|
||||
"model": "otemod:block/thresholds/pool/stairs/dirty_red_pool_tile_stairs_inner",
|
||||
"x": 180,
|
||||
"y": 180,
|
||||
"uvlock": true
|
||||
},
|
||||
"facing=west,half=top,shape=inner_right": {
|
||||
"model": "otemod:block/thresholds/pool/stairs/dirty_red_pool_tile_stairs_inner",
|
||||
"x": 180,
|
||||
"y": 270,
|
||||
"uvlock": true
|
||||
},
|
||||
"facing=west,half=top,shape=outer_left": {
|
||||
"model": "otemod:block/thresholds/pool/stairs/dirty_red_pool_tile_stairs_outer",
|
||||
"x": 180,
|
||||
"y": 180,
|
||||
"uvlock": true
|
||||
},
|
||||
"facing=west,half=top,shape=outer_right": {
|
||||
"model": "otemod:block/thresholds/pool/stairs/dirty_red_pool_tile_stairs_outer",
|
||||
"x": 180,
|
||||
"y": 270,
|
||||
"uvlock": true
|
||||
},
|
||||
"facing=west,half=top,shape=straight": {
|
||||
"model": "otemod:block/thresholds/pool/stairs/dirty_red_pool_tile_stairs",
|
||||
"x": 180,
|
||||
"y": 180,
|
||||
"uvlock": true
|
||||
}
|
||||
}
|
||||
}
|
|
@ -1,7 +0,0 @@
|
|||
{
|
||||
"variants": {
|
||||
"": {
|
||||
"model": "otemod:block/eternium_block"
|
||||
}
|
||||
}
|
||||
}
|
|
@ -1,7 +0,0 @@
|
|||
{
|
||||
"variants": {
|
||||
"": {
|
||||
"model": "otemod:block/eternium_ore_block"
|
||||
}
|
||||
}
|
||||
}
|
|
@ -1,7 +0,0 @@
|
|||
{
|
||||
"variants": {
|
||||
"": {
|
||||
"model": "otemod:block/thresholds/pool/light/filthy_blue_pool_light"
|
||||
}
|
||||
}
|
||||
}
|
|
@ -1,7 +0,0 @@
|
|||
{
|
||||
"variants": {
|
||||
"": {
|
||||
"model": "otemod:block/thresholds/pool/light/filthy_pool_light"
|
||||
}
|
||||
}
|
||||
}
|
|
@ -1,7 +0,0 @@
|
|||
{
|
||||
"variants": {
|
||||
"": {
|
||||
"model": "otemod:block/thresholds/pool/light/filthy_red_pool_light"
|
||||
}
|
||||
}
|
||||
}
|
|
@ -1,7 +1,7 @@
|
|||
{
|
||||
"variants": {
|
||||
"": {
|
||||
"model": "otemod:block/ilusium_block"
|
||||
"model": "otemod:block/deprecated"
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
{
|
||||
"variants": {
|
||||
"": {
|
||||
"model": "otemod:block/ilusium_ore_block"
|
||||
"model": "otemod:block/deprecated"
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
@ -1,7 +0,0 @@
|
|||
{
|
||||
"variants": {
|
||||
"": {
|
||||
"model": "otemod:block/layered_compressed_obsidian_block"
|
||||
}
|
||||
}
|
||||
}
|
|
@ -1,7 +1,7 @@
|
|||
{
|
||||
"variants": {
|
||||
"": {
|
||||
"model": "otemod:block/lime"
|
||||
"model": "otemod:block/deprecated"
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
@ -1,209 +1,7 @@
|
|||
{
|
||||
"variants": {
|
||||
"facing=east,half=bottom,shape=inner_left": {
|
||||
"model": "otemod:block/lime_stairs_inner",
|
||||
"uvlock": true,
|
||||
"y": 270
|
||||
},
|
||||
"facing=east,half=bottom,shape=inner_right": {
|
||||
"model": "otemod:block/lime_stairs_inner"
|
||||
},
|
||||
"facing=east,half=bottom,shape=outer_left": {
|
||||
"model": "otemod:block/lime_stairs_outer",
|
||||
"uvlock": true,
|
||||
"y": 270
|
||||
},
|
||||
"facing=east,half=bottom,shape=outer_right": {
|
||||
"model": "otemod:block/lime_stairs_outer"
|
||||
},
|
||||
"facing=east,half=bottom,shape=straight": {
|
||||
"model": "otemod:block/lime_stairs"
|
||||
},
|
||||
"facing=east,half=top,shape=inner_left": {
|
||||
"model": "otemod:block/lime_stairs_inner",
|
||||
"uvlock": true,
|
||||
"x": 180
|
||||
},
|
||||
"facing=east,half=top,shape=inner_right": {
|
||||
"model": "otemod:block/lime_stairs_inner",
|
||||
"uvlock": true,
|
||||
"x": 180,
|
||||
"y": 90
|
||||
},
|
||||
"facing=east,half=top,shape=outer_left": {
|
||||
"model": "otemod:block/lime_stairs_outer",
|
||||
"uvlock": true,
|
||||
"x": 180
|
||||
},
|
||||
"facing=east,half=top,shape=outer_right": {
|
||||
"model": "otemod:block/lime_stairs_outer",
|
||||
"uvlock": true,
|
||||
"x": 180,
|
||||
"y": 90
|
||||
},
|
||||
"facing=east,half=top,shape=straight": {
|
||||
"model": "otemod:block/lime_stairs",
|
||||
"uvlock": true,
|
||||
"x": 180
|
||||
},
|
||||
"facing=north,half=bottom,shape=inner_left": {
|
||||
"model": "otemod:block/lime_stairs_inner",
|
||||
"uvlock": true,
|
||||
"y": 180
|
||||
},
|
||||
"facing=north,half=bottom,shape=inner_right": {
|
||||
"model": "otemod:block/lime_stairs_inner",
|
||||
"uvlock": true,
|
||||
"y": 270
|
||||
},
|
||||
"facing=north,half=bottom,shape=outer_left": {
|
||||
"model": "otemod:block/lime_stairs_outer",
|
||||
"uvlock": true,
|
||||
"y": 180
|
||||
},
|
||||
"facing=north,half=bottom,shape=outer_right": {
|
||||
"model": "otemod:block/lime_stairs_outer",
|
||||
"uvlock": true,
|
||||
"y": 270
|
||||
},
|
||||
"facing=north,half=bottom,shape=straight": {
|
||||
"model": "otemod:block/lime_stairs",
|
||||
"uvlock": true,
|
||||
"y": 270
|
||||
},
|
||||
"facing=north,half=top,shape=inner_left": {
|
||||
"model": "otemod:block/lime_stairs_inner",
|
||||
"uvlock": true,
|
||||
"x": 180,
|
||||
"y": 270
|
||||
},
|
||||
"facing=north,half=top,shape=inner_right": {
|
||||
"model": "otemod:block/lime_stairs_inner",
|
||||
"uvlock": true,
|
||||
"x": 180
|
||||
},
|
||||
"facing=north,half=top,shape=outer_left": {
|
||||
"model": "otemod:block/lime_stairs_outer",
|
||||
"uvlock": true,
|
||||
"x": 180,
|
||||
"y": 270
|
||||
},
|
||||
"facing=north,half=top,shape=outer_right": {
|
||||
"model": "otemod:block/lime_stairs_outer",
|
||||
"uvlock": true,
|
||||
"x": 180
|
||||
},
|
||||
"facing=north,half=top,shape=straight": {
|
||||
"model": "otemod:block/lime_stairs",
|
||||
"uvlock": true,
|
||||
"x": 180,
|
||||
"y": 270
|
||||
},
|
||||
"facing=south,half=bottom,shape=inner_left": {
|
||||
"model": "otemod:block/lime_stairs_inner"
|
||||
},
|
||||
"facing=south,half=bottom,shape=inner_right": {
|
||||
"model": "otemod:block/lime_stairs_inner",
|
||||
"uvlock": true,
|
||||
"y": 90
|
||||
},
|
||||
"facing=south,half=bottom,shape=outer_left": {
|
||||
"model": "otemod:block/lime_stairs_outer"
|
||||
},
|
||||
"facing=south,half=bottom,shape=outer_right": {
|
||||
"model": "otemod:block/lime_stairs_outer",
|
||||
"uvlock": true,
|
||||
"y": 90
|
||||
},
|
||||
"facing=south,half=bottom,shape=straight": {
|
||||
"model": "otemod:block/lime_stairs",
|
||||
"uvlock": true,
|
||||
"y": 90
|
||||
},
|
||||
"facing=south,half=top,shape=inner_left": {
|
||||
"model": "otemod:block/lime_stairs_inner",
|
||||
"uvlock": true,
|
||||
"x": 180,
|
||||
"y": 90
|
||||
},
|
||||
"facing=south,half=top,shape=inner_right": {
|
||||
"model": "otemod:block/lime_stairs_inner",
|
||||
"uvlock": true,
|
||||
"x": 180,
|
||||
"y": 180
|
||||
},
|
||||
"facing=south,half=top,shape=outer_left": {
|
||||
"model": "otemod:block/lime_stairs_outer",
|
||||
"uvlock": true,
|
||||
"x": 180,
|
||||
"y": 90
|
||||
},
|
||||
"facing=south,half=top,shape=outer_right": {
|
||||
"model": "otemod:block/lime_stairs_outer",
|
||||
"uvlock": true,
|
||||
"x": 180,
|
||||
"y": 180
|
||||
},
|
||||
"facing=south,half=top,shape=straight": {
|
||||
"model": "otemod:block/lime_stairs",
|
||||
"uvlock": true,
|
||||
"x": 180,
|
||||
"y": 90
|
||||
},
|
||||
"facing=west,half=bottom,shape=inner_left": {
|
||||
"model": "otemod:block/lime_stairs_inner",
|
||||
"uvlock": true,
|
||||
"y": 90
|
||||
},
|
||||
"facing=west,half=bottom,shape=inner_right": {
|
||||
"model": "otemod:block/lime_stairs_inner",
|
||||
"uvlock": true,
|
||||
"y": 180
|
||||
},
|
||||
"facing=west,half=bottom,shape=outer_left": {
|
||||
"model": "otemod:block/lime_stairs_outer",
|
||||
"uvlock": true,
|
||||
"y": 90
|
||||
},
|
||||
"facing=west,half=bottom,shape=outer_right": {
|
||||
"model": "otemod:block/lime_stairs_outer",
|
||||
"uvlock": true,
|
||||
"y": 180
|
||||
},
|
||||
"facing=west,half=bottom,shape=straight": {
|
||||
"model": "otemod:block/lime_stairs",
|
||||
"uvlock": true,
|
||||
"y": 180
|
||||
},
|
||||
"facing=west,half=top,shape=inner_left": {
|
||||
"model": "otemod:block/lime_stairs_inner",
|
||||
"uvlock": true,
|
||||
"x": 180,
|
||||
"y": 180
|
||||
},
|
||||
"facing=west,half=top,shape=inner_right": {
|
||||
"model": "otemod:block/lime_stairs_inner",
|
||||
"uvlock": true,
|
||||
"x": 180,
|
||||
"y": 270
|
||||
},
|
||||
"facing=west,half=top,shape=outer_left": {
|
||||
"model": "otemod:block/lime_stairs_outer",
|
||||
"uvlock": true,
|
||||
"x": 180,
|
||||
"y": 180
|
||||
},
|
||||
"facing=west,half=top,shape=outer_right": {
|
||||
"model": "otemod:block/lime_stairs_outer",
|
||||
"uvlock": true,
|
||||
"x": 180,
|
||||
"y": 270
|
||||
},
|
||||
"facing=west,half=top,shape=straight": {
|
||||
"model": "otemod:block/lime_stairs",
|
||||
"uvlock": true,
|
||||
"x": 180,
|
||||
"y": 180
|
||||
"": {
|
||||
"model": "otemod:block/deprecated"
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
{
|
||||
"variants": {
|
||||
"": {
|
||||
"model": "otemod:block/lime_tile"
|
||||
"model": "otemod:block/deprecated"
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
@ -1,19 +1,7 @@
|
|||
{
|
||||
"variants": {
|
||||
"facing=east": {
|
||||
"model": "otemod:block/lime_tile_br",
|
||||
"y": 90
|
||||
},
|
||||
"facing=north": {
|
||||
"model": "otemod:block/lime_tile_br"
|
||||
},
|
||||
"facing=south": {
|
||||
"model": "otemod:block/lime_tile_br",
|
||||
"y": 180
|
||||
},
|
||||
"facing=west": {
|
||||
"model": "otemod:block/lime_tile_br",
|
||||
"y": 270
|
||||
"": {
|
||||
"model": "otemod:block/deprecated"
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
{
|
||||
"variants": {
|
||||
"": {
|
||||
"model": "otemod:block/lime_tile_to_wall"
|
||||
"model": "otemod:block/deprecated"
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
{
|
||||
"variants": {
|
||||
"": {
|
||||
"model": "otemod:block/lime_wall_variant_1"
|
||||
"model": "otemod:block/deprecated"
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
{
|
||||
"variants": {
|
||||
"": {
|
||||
"model": "otemod:block/lime_wall_variant_2"
|
||||
"model": "otemod:block/deprecated"
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
@ -1,13 +1,7 @@
|
|||
{
|
||||
"variants": {
|
||||
"type=bottom": {
|
||||
"model": "otemod:block/liminal_tile_slab"
|
||||
},
|
||||
"type=double": {
|
||||
"model": "otemod:block/liminal_tiles"
|
||||
},
|
||||
"type=top": {
|
||||
"model": "otemod:block/liminal_tile_slab_top"
|
||||
"": {
|
||||
"model": "otemod:block/deprecated"
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
@ -1,209 +1,7 @@
|
|||
{
|
||||
"variants": {
|
||||
"facing=east,half=bottom,shape=inner_left": {
|
||||
"model": "otemod:block/liminal_tile_stairs_inner",
|
||||
"uvlock": true,
|
||||
"y": 270
|
||||
},
|
||||
"facing=east,half=bottom,shape=inner_right": {
|
||||
"model": "otemod:block/liminal_tile_stairs_inner"
|
||||
},
|
||||
"facing=east,half=bottom,shape=outer_left": {
|
||||
"model": "otemod:block/liminal_tile_stairs_outer",
|
||||
"uvlock": true,
|
||||
"y": 270
|
||||
},
|
||||
"facing=east,half=bottom,shape=outer_right": {
|
||||
"model": "otemod:block/liminal_tile_stairs_outer"
|
||||
},
|
||||
"facing=east,half=bottom,shape=straight": {
|
||||
"model": "otemod:block/liminal_tile_stairs"
|
||||
},
|
||||
"facing=east,half=top,shape=inner_left": {
|
||||
"model": "otemod:block/liminal_tile_stairs_inner",
|
||||
"uvlock": true,
|
||||
"x": 180
|
||||
},
|
||||
"facing=east,half=top,shape=inner_right": {
|
||||
"model": "otemod:block/liminal_tile_stairs_inner",
|
||||
"uvlock": true,
|
||||
"x": 180,
|
||||
"y": 90
|
||||
},
|
||||
"facing=east,half=top,shape=outer_left": {
|
||||
"model": "otemod:block/liminal_tile_stairs_outer",
|
||||
"uvlock": true,
|
||||
"x": 180
|
||||
},
|
||||
"facing=east,half=top,shape=outer_right": {
|
||||
"model": "otemod:block/liminal_tile_stairs_outer",
|
||||
"uvlock": true,
|
||||
"x": 180,
|
||||
"y": 90
|
||||
},
|
||||
"facing=east,half=top,shape=straight": {
|
||||
"model": "otemod:block/liminal_tile_stairs",
|
||||
"uvlock": true,
|
||||
"x": 180
|
||||
},
|
||||
"facing=north,half=bottom,shape=inner_left": {
|
||||
"model": "otemod:block/liminal_tile_stairs_inner",
|
||||
"uvlock": true,
|
||||
"y": 180
|
||||
},
|
||||
"facing=north,half=bottom,shape=inner_right": {
|
||||
"model": "otemod:block/liminal_tile_stairs_inner",
|
||||
"uvlock": true,
|
||||
"y": 270
|
||||
},
|
||||
"facing=north,half=bottom,shape=outer_left": {
|
||||
"model": "otemod:block/liminal_tile_stairs_outer",
|
||||
"uvlock": true,
|
||||
"y": 180
|
||||
},
|
||||
"facing=north,half=bottom,shape=outer_right": {
|
||||
"model": "otemod:block/liminal_tile_stairs_outer",
|
||||
"uvlock": true,
|
||||
"y": 270
|
||||
},
|
||||
"facing=north,half=bottom,shape=straight": {
|
||||
"model": "otemod:block/liminal_tile_stairs",
|
||||
"uvlock": true,
|
||||
"y": 270
|
||||
},
|
||||
"facing=north,half=top,shape=inner_left": {
|
||||
"model": "otemod:block/liminal_tile_stairs_inner",
|
||||
"uvlock": true,
|
||||
"x": 180,
|
||||
"y": 270
|
||||
},
|
||||
"facing=north,half=top,shape=inner_right": {
|
||||
"model": "otemod:block/liminal_tile_stairs_inner",
|
||||
"uvlock": true,
|
||||
"x": 180
|
||||
},
|
||||
"facing=north,half=top,shape=outer_left": {
|
||||
"model": "otemod:block/liminal_tile_stairs_outer",
|
||||
"uvlock": true,
|
||||
"x": 180,
|
||||
"y": 270
|
||||
},
|
||||
"facing=north,half=top,shape=outer_right": {
|
||||
"model": "otemod:block/liminal_tile_stairs_outer",
|
||||
"uvlock": true,
|
||||
"x": 180
|
||||
},
|
||||
"facing=north,half=top,shape=straight": {
|
||||
"model": "otemod:block/liminal_tile_stairs",
|
||||
"uvlock": true,
|
||||
"x": 180,
|
||||
"y": 270
|
||||
},
|
||||
"facing=south,half=bottom,shape=inner_left": {
|
||||
"model": "otemod:block/liminal_tile_stairs_inner"
|
||||
},
|
||||
"facing=south,half=bottom,shape=inner_right": {
|
||||
"model": "otemod:block/liminal_tile_stairs_inner",
|
||||
"uvlock": true,
|
||||
"y": 90
|
||||
},
|
||||
"facing=south,half=bottom,shape=outer_left": {
|
||||
"model": "otemod:block/liminal_tile_stairs_outer"
|
||||
},
|
||||
"facing=south,half=bottom,shape=outer_right": {
|
||||
"model": "otemod:block/liminal_tile_stairs_outer",
|
||||
"uvlock": true,
|
||||
"y": 90
|
||||
},
|
||||
"facing=south,half=bottom,shape=straight": {
|
||||
"model": "otemod:block/liminal_tile_stairs",
|
||||
"uvlock": true,
|
||||
"y": 90
|
||||
},
|
||||
"facing=south,half=top,shape=inner_left": {
|
||||
"model": "otemod:block/liminal_tile_stairs_inner",
|
||||
"uvlock": true,
|
||||
"x": 180,
|
||||
"y": 90
|
||||
},
|
||||
"facing=south,half=top,shape=inner_right": {
|
||||
"model": "otemod:block/liminal_tile_stairs_inner",
|
||||
"uvlock": true,
|
||||
"x": 180,
|
||||
"y": 180
|
||||
},
|
||||
"facing=south,half=top,shape=outer_left": {
|
||||
"model": "otemod:block/liminal_tile_stairs_outer",
|
||||
"uvlock": true,
|
||||
"x": 180,
|
||||
"y": 90
|
||||
},
|
||||
"facing=south,half=top,shape=outer_right": {
|
||||
"model": "otemod:block/liminal_tile_stairs_outer",
|
||||
"uvlock": true,
|
||||
"x": 180,
|
||||
"y": 180
|
||||
},
|
||||
"facing=south,half=top,shape=straight": {
|
||||
"model": "otemod:block/liminal_tile_stairs",
|
||||
"uvlock": true,
|
||||
"x": 180,
|
||||
"y": 90
|
||||
},
|
||||
"facing=west,half=bottom,shape=inner_left": {
|
||||
"model": "otemod:block/liminal_tile_stairs_inner",
|
||||
"uvlock": true,
|
||||
"y": 90
|
||||
},
|
||||
"facing=west,half=bottom,shape=inner_right": {
|
||||
"model": "otemod:block/liminal_tile_stairs_inner",
|
||||
"uvlock": true,
|
||||
"y": 180
|
||||
},
|
||||
"facing=west,half=bottom,shape=outer_left": {
|
||||
"model": "otemod:block/liminal_tile_stairs_outer",
|
||||
"uvlock": true,
|
||||
"y": 90
|
||||
},
|
||||
"facing=west,half=bottom,shape=outer_right": {
|
||||
"model": "otemod:block/liminal_tile_stairs_outer",
|
||||
"uvlock": true,
|
||||
"y": 180
|
||||
},
|
||||
"facing=west,half=bottom,shape=straight": {
|
||||
"model": "otemod:block/liminal_tile_stairs",
|
||||
"uvlock": true,
|
||||
"y": 180
|
||||
},
|
||||
"facing=west,half=top,shape=inner_left": {
|
||||
"model": "otemod:block/liminal_tile_stairs_inner",
|
||||
"uvlock": true,
|
||||
"x": 180,
|
||||
"y": 180
|
||||
},
|
||||
"facing=west,half=top,shape=inner_right": {
|
||||
"model": "otemod:block/liminal_tile_stairs_inner",
|
||||
"uvlock": true,
|
||||
"x": 180,
|
||||
"y": 270
|
||||
},
|
||||
"facing=west,half=top,shape=outer_left": {
|
||||
"model": "otemod:block/liminal_tile_stairs_outer",
|
||||
"uvlock": true,
|
||||
"x": 180,
|
||||
"y": 180
|
||||
},
|
||||
"facing=west,half=top,shape=outer_right": {
|
||||
"model": "otemod:block/liminal_tile_stairs_outer",
|
||||
"uvlock": true,
|
||||
"x": 180,
|
||||
"y": 270
|
||||
},
|
||||
"facing=west,half=top,shape=straight": {
|
||||
"model": "otemod:block/liminal_tile_stairs",
|
||||
"uvlock": true,
|
||||
"x": 180,
|
||||
"y": 180
|
||||
"": {
|
||||
"model": "otemod:block/deprecated"
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
{
|
||||
"variants": {
|
||||
"": {
|
||||
"model": "otemod:block/liminal_tiles"
|
||||
"model": "otemod:block/deprecated"
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
@ -1,30 +1,7 @@
|
|||
{
|
||||
"variants": {
|
||||
"facing=down": {
|
||||
"model": "otemod:block/liminal_window_abyss",
|
||||
"x": 180
|
||||
},
|
||||
"facing=east": {
|
||||
"model": "otemod:block/liminal_window_abyss",
|
||||
"x": 90,
|
||||
"y": 90
|
||||
},
|
||||
"facing=north": {
|
||||
"model": "otemod:block/liminal_window_abyss",
|
||||
"x": 90
|
||||
},
|
||||
"facing=south": {
|
||||
"model": "otemod:block/liminal_window_abyss",
|
||||
"x": 90,
|
||||
"y": 180
|
||||
},
|
||||
"facing=up": {
|
||||
"model": "otemod:block/liminal_window_abyss"
|
||||
},
|
||||
"facing=west": {
|
||||
"model": "otemod:block/liminal_window_abyss",
|
||||
"x": 90,
|
||||
"y": 270
|
||||
"": {
|
||||
"model": "otemod:block/deprecated"
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
@ -1,30 +1,7 @@
|
|||
{
|
||||
"variants": {
|
||||
"facing=down": {
|
||||
"model": "otemod:block/liminal_window_abyss",
|
||||
"x": 180
|
||||
},
|
||||
"facing=east": {
|
||||
"model": "otemod:block/liminal_window_abyss",
|
||||
"x": 90,
|
||||
"y": 90
|
||||
},
|
||||
"facing=north": {
|
||||
"model": "otemod:block/liminal_window_abyss",
|
||||
"x": 90
|
||||
},
|
||||
"facing=south": {
|
||||
"model": "otemod:block/liminal_window_abyss",
|
||||
"x": 90,
|
||||
"y": 180
|
||||
},
|
||||
"facing=up": {
|
||||
"model": "otemod:block/liminal_window_abyss"
|
||||
},
|
||||
"facing=west": {
|
||||
"model": "otemod:block/liminal_window_abyss",
|
||||
"x": 90,
|
||||
"y": 270
|
||||
"": {
|
||||
"model": "otemod:block/deprecated"
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
@ -1,30 +1,7 @@
|
|||
{
|
||||
"variants": {
|
||||
"facing=down": {
|
||||
"model": "otemod:block/liminal_window_dusk",
|
||||
"x": 180
|
||||
},
|
||||
"facing=east": {
|
||||
"model": "otemod:block/liminal_window_dusk",
|
||||
"x": 90,
|
||||
"y": 90
|
||||
},
|
||||
"facing=north": {
|
||||
"model": "otemod:block/liminal_window_dusk",
|
||||
"x": 90
|
||||
},
|
||||
"facing=south": {
|
||||
"model": "otemod:block/liminal_window_dusk",
|
||||
"x": 90,
|
||||
"y": 180
|
||||
},
|
||||
"facing=up": {
|
||||
"model": "otemod:block/liminal_window_dusk"
|
||||
},
|
||||
"facing=west": {
|
||||
"model": "otemod:block/liminal_window_dusk",
|
||||
"x": 90,
|
||||
"y": 270
|
||||
"": {
|
||||
"model": "otemod:block/deprecated"
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
@ -1,30 +1,7 @@
|
|||
{
|
||||
"variants": {
|
||||
"facing=down": {
|
||||
"model": "otemod:block/liminal_window_noon",
|
||||
"x": 180
|
||||
},
|
||||
"facing=east": {
|
||||
"model": "otemod:block/liminal_window_noon",
|
||||
"x": 90,
|
||||
"y": 90
|
||||
},
|
||||
"facing=north": {
|
||||
"model": "otemod:block/liminal_window_noon",
|
||||
"x": 90
|
||||
},
|
||||
"facing=south": {
|
||||
"model": "otemod:block/liminal_window_noon",
|
||||
"x": 90,
|
||||
"y": 180
|
||||
},
|
||||
"facing=up": {
|
||||
"model": "otemod:block/liminal_window_noon"
|
||||
},
|
||||
"facing=west": {
|
||||
"model": "otemod:block/liminal_window_noon",
|
||||
"x": 90,
|
||||
"y": 270
|
||||
"": {
|
||||
"model": "otemod:block/deprecated"
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
@ -1,7 +0,0 @@
|
|||
{
|
||||
"variants": {
|
||||
"": {
|
||||
"model": "otemod:block/nether_vault_steel_ore_block"
|
||||
}
|
||||
}
|
||||
}
|
|
@ -1,7 +0,0 @@
|
|||
{
|
||||
"variants": {
|
||||
"": {
|
||||
"model": "otemod:block/thresholds/pool/light/pool_light"
|
||||
}
|
||||
}
|
||||
}
|
|
@ -1,7 +0,0 @@
|
|||
{
|
||||
"variants": {
|
||||
"": {
|
||||
"model": "otemod:block/thresholds/pool/tiles/pool_tile"
|
||||
}
|
||||
}
|
||||
}
|
|
@ -1,209 +0,0 @@
|
|||
{
|
||||
"variants": {
|
||||
"facing=east,half=bottom,shape=inner_left": {
|
||||
"model": "otemod:block/thresholds/pool/stairs/pool_tile_stairs_inner",
|
||||
"y": 270,
|
||||
"uvlock": true
|
||||
},
|
||||
"facing=east,half=bottom,shape=inner_right": {
|
||||
"model": "otemod:block/thresholds/pool/stairs/pool_tile_stairs_inner"
|
||||
},
|
||||
"facing=east,half=bottom,shape=outer_left": {
|
||||
"model": "otemod:block/thresholds/pool/stairs/pool_tile_stairs_outer",
|
||||
"y": 270,
|
||||
"uvlock": true
|
||||
},
|
||||
"facing=east,half=bottom,shape=outer_right": {
|
||||
"model": "otemod:block/thresholds/pool/stairs/pool_tile_stairs_outer"
|
||||
},
|
||||
"facing=east,half=bottom,shape=straight": {
|
||||
"model": "otemod:block/thresholds/pool/stairs/pool_tile_stairs"
|
||||
},
|
||||
"facing=east,half=top,shape=inner_left": {
|
||||
"model": "otemod:block/thresholds/pool/stairs/pool_tile_stairs_inner",
|
||||
"x": 180,
|
||||
"uvlock": true
|
||||
},
|
||||
"facing=east,half=top,shape=inner_right": {
|
||||
"model": "otemod:block/thresholds/pool/stairs/pool_tile_stairs_inner",
|
||||
"x": 180,
|
||||
"y": 90,
|
||||
"uvlock": true
|
||||
},
|
||||
"facing=east,half=top,shape=outer_left": {
|
||||
"model": "otemod:block/thresholds/pool/stairs/pool_tile_stairs_outer",
|
||||
"x": 180,
|
||||
"uvlock": true
|
||||
},
|
||||
"facing=east,half=top,shape=outer_right": {
|
||||
"model": "otemod:block/thresholds/pool/stairs/pool_tile_stairs_outer",
|
||||
"x": 180,
|
||||
"y": 90,
|
||||
"uvlock": true
|
||||
},
|
||||
"facing=east,half=top,shape=straight": {
|
||||
"model": "otemod:block/thresholds/pool/stairs/pool_tile_stairs",
|
||||
"x": 180,
|
||||
"uvlock": true
|
||||
},
|
||||
"facing=north,half=bottom,shape=inner_left": {
|
||||
"model": "otemod:block/thresholds/pool/stairs/pool_tile_stairs_inner",
|
||||
"y": 180,
|
||||
"uvlock": true
|
||||
},
|
||||
"facing=north,half=bottom,shape=inner_right": {
|
||||
"model": "otemod:block/thresholds/pool/stairs/pool_tile_stairs_inner",
|
||||
"y": 270,
|
||||
"uvlock": true
|
||||
},
|
||||
"facing=north,half=bottom,shape=outer_left": {
|
||||
"model": "otemod:block/thresholds/pool/stairs/pool_tile_stairs_outer",
|
||||
"y": 180,
|
||||
"uvlock": true
|
||||
},
|
||||
"facing=north,half=bottom,shape=outer_right": {
|
||||
"model": "otemod:block/thresholds/pool/stairs/pool_tile_stairs_outer",
|
||||
"y": 270,
|
||||
"uvlock": true
|
||||
},
|
||||
"facing=north,half=bottom,shape=straight": {
|
||||
"model": "otemod:block/thresholds/pool/stairs/pool_tile_stairs",
|
||||
"y": 270,
|
||||
"uvlock": true
|
||||
},
|
||||
"facing=north,half=top,shape=inner_left": {
|
||||
"model": "otemod:block/thresholds/pool/stairs/pool_tile_stairs_inner",
|
||||
"x": 180,
|
||||
"y": 270,
|
||||
"uvlock": true
|
||||
},
|
||||
"facing=north,half=top,shape=inner_right": {
|
||||
"model": "otemod:block/thresholds/pool/stairs/pool_tile_stairs_inner",
|
||||
"x": 180,
|
||||
"uvlock": true
|
||||
},
|
||||
"facing=north,half=top,shape=outer_left": {
|
||||
"model": "otemod:block/thresholds/pool/stairs/pool_tile_stairs_outer",
|
||||
"x": 180,
|
||||
"y": 270,
|
||||
"uvlock": true
|
||||
},
|
||||
"facing=north,half=top,shape=outer_right": {
|
||||
"model": "otemod:block/thresholds/pool/stairs/pool_tile_stairs_outer",
|
||||
"x": 180,
|
||||
"uvlock": true
|
||||
},
|
||||
"facing=north,half=top,shape=straight": {
|
||||
"model": "otemod:block/thresholds/pool/stairs/pool_tile_stairs",
|
||||
"x": 180,
|
||||
"y": 270,
|
||||
"uvlock": true
|
||||
},
|
||||
"facing=south,half=bottom,shape=inner_left": {
|
||||
"model": "otemod:block/thresholds/pool/stairs/pool_tile_stairs_inner"
|
||||
},
|
||||
"facing=south,half=bottom,shape=inner_right": {
|
||||
"model": "otemod:block/thresholds/pool/stairs/pool_tile_stairs_inner",
|
||||
"y": 90,
|
||||
"uvlock": true
|
||||
},
|
||||
"facing=south,half=bottom,shape=outer_left": {
|
||||
"model": "otemod:block/thresholds/pool/stairs/pool_tile_stairs_outer"
|
||||
},
|
||||
"facing=south,half=bottom,shape=outer_right": {
|
||||
"model": "otemod:block/thresholds/pool/stairs/pool_tile_stairs_outer",
|
||||
"y": 90,
|
||||
"uvlock": true
|
||||
},
|
||||
"facing=south,half=bottom,shape=straight": {
|
||||
"model": "otemod:block/thresholds/pool/stairs/pool_tile_stairs",
|
||||
"y": 90,
|
||||
"uvlock": true
|
||||
},
|
||||
"facing=south,half=top,shape=inner_left": {
|
||||
"model": "otemod:block/thresholds/pool/stairs/pool_tile_stairs_inner",
|
||||
"x": 180,
|
||||
"y": 90,
|
||||
"uvlock": true
|
||||
},
|
||||
"facing=south,half=top,shape=inner_right": {
|
||||
"model": "otemod:block/thresholds/pool/stairs/pool_tile_stairs_inner",
|
||||
"x": 180,
|
||||
"y": 180,
|
||||
"uvlock": true
|
||||
},
|
||||
"facing=south,half=top,shape=outer_left": {
|
||||
"model": "otemod:block/thresholds/pool/stairs/pool_tile_stairs_outer",
|
||||
"x": 180,
|
||||
"y": 90,
|
||||
"uvlock": true
|
||||
},
|
||||
"facing=south,half=top,shape=outer_right": {
|
||||
"model": "otemod:block/thresholds/pool/stairs/pool_tile_stairs_outer",
|
||||
"x": 180,
|
||||
"y": 180,
|
||||
"uvlock": true
|
||||
},
|
||||
"facing=south,half=top,shape=straight": {
|
||||
"model": "otemod:block/thresholds/pool/stairs/pool_tile_stairs",
|
||||
"x": 180,
|
||||
"y": 90,
|
||||
"uvlock": true
|
||||
},
|
||||
"facing=west,half=bottom,shape=inner_left": {
|
||||
"model": "otemod:block/thresholds/pool/stairs/pool_tile_stairs_inner",
|
||||
"y": 90,
|
||||
"uvlock": true
|
||||
},
|
||||
"facing=west,half=bottom,shape=inner_right": {
|
||||
"model": "otemod:block/thresholds/pool/stairs/pool_tile_stairs_inner",
|
||||
"y": 180,
|
||||
"uvlock": true
|
||||
},
|
||||
"facing=west,half=bottom,shape=outer_left": {
|
||||
"model": "otemod:block/thresholds/pool/stairs/pool_tile_stairs_outer",
|
||||
"y": 90,
|
||||
"uvlock": true
|
||||
},
|
||||
"facing=west,half=bottom,shape=outer_right": {
|
||||
"model": "otemod:block/thresholds/pool/stairs/pool_tile_stairs_outer",
|
||||
"y": 180,
|
||||
"uvlock": true
|
||||
},
|
||||
"facing=west,half=bottom,shape=straight": {
|
||||
"model": "otemod:block/thresholds/pool/stairs/pool_tile_stairs",
|
||||
"y": 180,
|
||||
"uvlock": true
|
||||
},
|
||||
"facing=west,half=top,shape=inner_left": {
|
||||
"model": "otemod:block/thresholds/pool/stairs/pool_tile_stairs_inner",
|
||||
"x": 180,
|
||||
"y": 180,
|
||||
"uvlock": true
|
||||
},
|
||||
"facing=west,half=top,shape=inner_right": {
|
||||
"model": "otemod:block/thresholds/pool/stairs/pool_tile_stairs_inner",
|
||||
"x": 180,
|
||||
"y": 270,
|
||||
"uvlock": true
|
||||
},
|
||||
"facing=west,half=top,shape=outer_left": {
|
||||
"model": "otemod:block/thresholds/pool/stairs/pool_tile_stairs_outer",
|
||||
"x": 180,
|
||||
"y": 180,
|
||||
"uvlock": true
|
||||
},
|
||||
"facing=west,half=top,shape=outer_right": {
|
||||
"model": "otemod:block/thresholds/pool/stairs/pool_tile_stairs_outer",
|
||||
"x": 180,
|
||||
"y": 270,
|
||||
"uvlock": true
|
||||
},
|
||||
"facing=west,half=top,shape=straight": {
|
||||
"model": "otemod:block/thresholds/pool/stairs/pool_tile_stairs",
|
||||
"x": 180,
|
||||
"y": 180,
|
||||
"uvlock": true
|
||||
}
|
||||
}
|
||||
}
|
|
@ -1,7 +0,0 @@
|
|||
{
|
||||
"variants": {
|
||||
"": {
|
||||
"model": "otemod:block/thresholds/pool/light/red_pool_light"
|
||||
}
|
||||
}
|
||||
}
|
|
@ -1,7 +0,0 @@
|
|||
{
|
||||
"variants": {
|
||||
"": {
|
||||
"model": "otemod:block/thresholds/pool/tiles/red_pool_tile"
|
||||
}
|
||||
}
|
||||
}
|
|
@ -1,209 +0,0 @@
|
|||
{
|
||||
"variants": {
|
||||
"facing=east,half=bottom,shape=inner_left": {
|
||||
"model": "otemod:block/thresholds/pool/stairs/red_pool_tile_stairs_inner",
|
||||
"y": 270,
|
||||
"uvlock": true
|
||||
},
|
||||
"facing=east,half=bottom,shape=inner_right": {
|
||||
"model": "otemod:block/thresholds/pool/stairs/red_pool_tile_stairs_inner"
|
||||
},
|
||||
"facing=east,half=bottom,shape=outer_left": {
|
||||
"model": "otemod:block/thresholds/pool/stairs/red_pool_tile_stairs_outer",
|
||||
"y": 270,
|
||||
"uvlock": true
|
||||
},
|
||||
"facing=east,half=bottom,shape=outer_right": {
|
||||
"model": "otemod:block/thresholds/pool/stairs/red_pool_tile_stairs_outer"
|
||||
},
|
||||
"facing=east,half=bottom,shape=straight": {
|
||||
"model": "otemod:block/thresholds/pool/stairs/red_pool_tile_stairs"
|
||||
},
|
||||
"facing=east,half=top,shape=inner_left": {
|
||||
"model": "otemod:block/thresholds/pool/stairs/red_pool_tile_stairs_inner",
|
||||
"x": 180,
|
||||
"uvlock": true
|
||||
},
|
||||
"facing=east,half=top,shape=inner_right": {
|
||||
"model": "otemod:block/thresholds/pool/stairs/red_pool_tile_stairs_inner",
|
||||
"x": 180,
|
||||
"y": 90,
|
||||
"uvlock": true
|
||||
},
|
||||
"facing=east,half=top,shape=outer_left": {
|
||||
"model": "otemod:block/thresholds/pool/stairs/red_pool_tile_stairs_outer",
|
||||
"x": 180,
|
||||
"uvlock": true
|
||||
},
|
||||
"facing=east,half=top,shape=outer_right": {
|
||||
"model": "otemod:block/thresholds/pool/stairs/red_pool_tile_stairs_outer",
|
||||
"x": 180,
|
||||
"y": 90,
|
||||
"uvlock": true
|
||||
},
|
||||
"facing=east,half=top,shape=straight": {
|
||||
"model": "otemod:block/thresholds/pool/stairs/red_pool_tile_stairs",
|
||||
"x": 180,
|
||||
"uvlock": true
|
||||
},
|
||||
"facing=north,half=bottom,shape=inner_left": {
|
||||
"model": "otemod:block/thresholds/pool/stairs/red_pool_tile_stairs_inner",
|
||||
"y": 180,
|
||||
"uvlock": true
|
||||
},
|
||||
"facing=north,half=bottom,shape=inner_right": {
|
||||
"model": "otemod:block/thresholds/pool/stairs/red_pool_tile_stairs_inner",
|
||||
"y": 270,
|
||||
"uvlock": true
|
||||
},
|
||||
"facing=north,half=bottom,shape=outer_left": {
|
||||
"model": "otemod:block/thresholds/pool/stairs/red_pool_tile_stairs_outer",
|
||||
"y": 180,
|
||||
"uvlock": true
|
||||
},
|
||||
"facing=north,half=bottom,shape=outer_right": {
|
||||
"model": "otemod:block/thresholds/pool/stairs/red_pool_tile_stairs_outer",
|
||||
"y": 270,
|
||||
"uvlock": true
|
||||
},
|
||||
"facing=north,half=bottom,shape=straight": {
|
||||
"model": "otemod:block/thresholds/pool/stairs/red_pool_tile_stairs",
|
||||
"y": 270,
|
||||
"uvlock": true
|
||||
},
|
||||
"facing=north,half=top,shape=inner_left": {
|
||||
"model": "otemod:block/thresholds/pool/stairs/red_pool_tile_stairs_inner",
|
||||
"x": 180,
|
||||
"y": 270,
|
||||
"uvlock": true
|
||||
},
|
||||
"facing=north,half=top,shape=inner_right": {
|
||||
"model": "otemod:block/thresholds/pool/stairs/red_pool_tile_stairs_inner",
|
||||
"x": 180,
|
||||
"uvlock": true
|
||||
},
|
||||
"facing=north,half=top,shape=outer_left": {
|
||||
"model": "otemod:block/thresholds/pool/stairs/red_pool_tile_stairs_outer",
|
||||
"x": 180,
|
||||
"y": 270,
|
||||
"uvlock": true
|
||||
},
|
||||
"facing=north,half=top,shape=outer_right": {
|
||||
"model": "otemod:block/thresholds/pool/stairs/red_pool_tile_stairs_outer",
|
||||
"x": 180,
|
||||
"uvlock": true
|
||||
},
|
||||
"facing=north,half=top,shape=straight": {
|
||||
"model": "otemod:block/thresholds/pool/stairs/red_pool_tile_stairs",
|
||||
"x": 180,
|
||||
"y": 270,
|
||||
"uvlock": true
|
||||
},
|
||||
"facing=south,half=bottom,shape=inner_left": {
|
||||
"model": "otemod:block/thresholds/pool/stairs/red_pool_tile_stairs_inner"
|
||||
},
|
||||
"facing=south,half=bottom,shape=inner_right": {
|
||||
"model": "otemod:block/thresholds/pool/stairs/red_pool_tile_stairs_inner",
|
||||
"y": 90,
|
||||
"uvlock": true
|
||||
},
|
||||
"facing=south,half=bottom,shape=outer_left": {
|
||||
"model": "otemod:block/thresholds/pool/stairs/red_pool_tile_stairs_outer"
|
||||
},
|
||||
"facing=south,half=bottom,shape=outer_right": {
|
||||
"model": "otemod:block/thresholds/pool/stairs/red_pool_tile_stairs_outer",
|
||||
"y": 90,
|
||||
"uvlock": true
|
||||
},
|
||||
"facing=south,half=bottom,shape=straight": {
|
||||
"model": "otemod:block/thresholds/pool/stairs/red_pool_tile_stairs",
|
||||
"y": 90,
|
||||
"uvlock": true
|
||||
},
|
||||
"facing=south,half=top,shape=inner_left": {
|
||||
"model": "otemod:block/thresholds/pool/stairs/red_pool_tile_stairs_inner",
|
||||
"x": 180,
|
||||
"y": 90,
|
||||
"uvlock": true
|
||||
},
|
||||
"facing=south,half=top,shape=inner_right": {
|
||||
"model": "otemod:block/thresholds/pool/stairs/red_pool_tile_stairs_inner",
|
||||
"x": 180,
|
||||
"y": 180,
|
||||
"uvlock": true
|
||||
},
|
||||
"facing=south,half=top,shape=outer_left": {
|
||||
"model": "otemod:block/thresholds/pool/stairs/red_pool_tile_stairs_outer",
|
||||
"x": 180,
|
||||
"y": 90,
|
||||
"uvlock": true
|
||||
},
|
||||
"facing=south,half=top,shape=outer_right": {
|
||||
"model": "otemod:block/thresholds/pool/stairs/red_pool_tile_stairs_outer",
|
||||
"x": 180,
|
||||
"y": 180,
|
||||
"uvlock": true
|
||||
},
|
||||
"facing=south,half=top,shape=straight": {
|
||||
"model": "otemod:block/thresholds/pool/stairs/red_pool_tile_stairs",
|
||||
"x": 180,
|
||||
"y": 90,
|
||||
"uvlock": true
|
||||
},
|
||||
"facing=west,half=bottom,shape=inner_left": {
|
||||
"model": "otemod:block/thresholds/pool/stairs/red_pool_tile_stairs_inner",
|
||||
"y": 90,
|
||||
"uvlock": true
|
||||
},
|
||||
"facing=west,half=bottom,shape=inner_right": {
|
||||
"model": "otemod:block/thresholds/pool/stairs/red_pool_tile_stairs_inner",
|
||||
"y": 180,
|
||||
"uvlock": true
|
||||
},
|
||||
"facing=west,half=bottom,shape=outer_left": {
|
||||
"model": "otemod:block/thresholds/pool/stairs/red_pool_tile_stairs_outer",
|
||||
"y": 90,
|
||||
"uvlock": true
|
||||
},
|
||||
"facing=west,half=bottom,shape=outer_right": {
|
||||
"model": "otemod:block/thresholds/pool/stairs/red_pool_tile_stairs_outer",
|
||||
"y": 180,
|
||||
"uvlock": true
|
||||
},
|
||||
"facing=west,half=bottom,shape=straight": {
|
||||
"model": "otemod:block/thresholds/pool/stairs/red_pool_tile_stairs",
|
||||
"y": 180,
|
||||
"uvlock": true
|
||||
},
|
||||
"facing=west,half=top,shape=inner_left": {
|
||||
"model": "otemod:block/thresholds/pool/stairs/red_pool_tile_stairs_inner",
|
||||
"x": 180,
|
||||
"y": 180,
|
||||
"uvlock": true
|
||||
},
|
||||
"facing=west,half=top,shape=inner_right": {
|
||||
"model": "otemod:block/thresholds/pool/stairs/red_pool_tile_stairs_inner",
|
||||
"x": 180,
|
||||
"y": 270,
|
||||
"uvlock": true
|
||||
},
|
||||
"facing=west,half=top,shape=outer_left": {
|
||||
"model": "otemod:block/thresholds/pool/stairs/red_pool_tile_stairs_outer",
|
||||
"x": 180,
|
||||
"y": 180,
|
||||
"uvlock": true
|
||||
},
|
||||
"facing=west,half=top,shape=outer_right": {
|
||||
"model": "otemod:block/thresholds/pool/stairs/red_pool_tile_stairs_outer",
|
||||
"x": 180,
|
||||
"y": 270,
|
||||
"uvlock": true
|
||||
},
|
||||
"facing=west,half=top,shape=straight": {
|
||||
"model": "otemod:block/thresholds/pool/stairs/red_pool_tile_stairs",
|
||||
"x": 180,
|
||||
"y": 180,
|
||||
"uvlock": true
|
||||
}
|
||||
}
|
||||
}
|
|
@ -1,7 +0,0 @@
|
|||
{
|
||||
"variants": {
|
||||
"": {
|
||||
"model": "otemod:block/vault_steel_ore_block"
|
||||
}
|
||||
}
|
||||
}
|
|
@ -51,10 +51,7 @@
|
|||
"block.otemod.vault_steel_ore_block": "Vault Steel Ore",
|
||||
"block.otemod.nether_vault_steel_ore_block": "Nether Vault Steel Ore",
|
||||
"block.otemod.eternium_block": "Block of Eternium",
|
||||
"block.otemod.liminal_tiles": "Liminal Tiles",
|
||||
"block.otemod.void": "Void",
|
||||
"block.otemod.liminal_tile_stairs": "Liminal Stairs",
|
||||
"block.otemod.liminal_tile_slab": "Liminal Slab",
|
||||
"block.otemod.ilusium_ore_block": "Ilusium Ore Block",
|
||||
"block.otemod.deepslate_ilusium_ore_block": "Deepslate Ilusium Ore Block",
|
||||
"block.otemod.ilusium_block": "Block of Ilusium",
|
||||
|
@ -77,13 +74,6 @@
|
|||
"block.otemod.cyan_tile_to_wall": "Cyan Floor To Wall Transition",
|
||||
"block.otemod.cyan_wall_variant_1": "Cyan Wall",
|
||||
"block.otemod.cyan_wall_variant_2": "Cyan Wall",
|
||||
"block.otemod.lime": "Lime",
|
||||
"block.otemod.lime_tile": "Lime Tile",
|
||||
"block.otemod.lime_tile_br": "Lime Tile Transition",
|
||||
"block.otemod.lime_stairs": "Lime Stairs",
|
||||
"block.otemod.lime_tile_to_wall": "Lime Floor To Wall Transition",
|
||||
"block.otemod.lime_wall_variant_1": "Lime Wall",
|
||||
"block.otemod.lime_wall_variant_2": "Lime Wall",
|
||||
"block.otemod.pool_light": "Pool Light",
|
||||
"block.otemod.dirty_pool_light": "Dirty Pool Light",
|
||||
"block.otemod.filthy_pool_light": "Filthy Pool Light",
|
||||
|
@ -95,20 +85,27 @@
|
|||
"block.otemod.filthy_blue_pool_light": "Filthy Blue Pool Light",
|
||||
"block.otemod.pool_tile": "Pool Tiles",
|
||||
"block.otemod.pool_tile_stairs": "Pool Tile Stairs",
|
||||
"block.otemod.pool_tile_slab": "Pool Tile Slab",
|
||||
"block.otemod.dirty_pool_tile": "Dirty Pool Tiles",
|
||||
"block.otemod.dirty_pool_tile_stairs": "Dirty Pool Tile Stairs",
|
||||
"block.otemod.dirty_pool_tile_slab": "Dirty Pool Tile Slab",
|
||||
"block.otemod.dark_pool_tile": "Dark Pool Tiles",
|
||||
"block.otemod.dark_pool_tile_stairs": "Dark Pool Tile Stairs",
|
||||
"block.otemod.dark_pool_tile_slab": "Dark Pool Tile Slab",
|
||||
"block.otemod.blue_pool_tile": "Blue Pool Tiles",
|
||||
"block.otemod.blue_pool_tile_stairs": "Blue Pool Tile Stairs",
|
||||
"block.otemod.blue_pool_tile_slab": "Blue Pool Tile Slab",
|
||||
"block.otemod.dirty_blue_pool_tile": "Dirty Blue Pool Tiles",
|
||||
"block.otemod.dirty_blue_pool_tile_stairs": "Dirty Blue Pool Tile Stairs",
|
||||
"block.otemod.dirty_blue_pool_tile_slab": "Dirty Blue Pool Tile Slab",
|
||||
"block.otemod.dirty_blue_pool_light": "Dirty Blue Pool Light",
|
||||
"block.otemod.red_pool_tile": "Red Pool Tiles",
|
||||
"block.otemod.red_pool_tile_stairs": "Red Pool Tile Stairs",
|
||||
"block.otemod.red_pool_tile_slab": "Red Pool Tile Slab",
|
||||
"block.otemod.red_pool_tile_light": "Red Pool Light",
|
||||
"block.otemod.dirty_red_pool_tile": "Dirty Red Pool Tile",
|
||||
"block.otemod.dirty_red_pool_tile_stairs": "Dirty Red Pool Tile Stairs",
|
||||
"block.otemod.dirty_red_pool_tile_slab": "Dirty Red Pool Tile Slab",
|
||||
|
||||
|
||||
"enchantment.otemod.mob_egging": "Mob Egging",
|
||||
|
|
|
@ -1,7 +0,0 @@
|
|||
{
|
||||
"parent": "block/cube_all",
|
||||
"render_type": "minecraft:translucent",
|
||||
"textures": {
|
||||
"all": "otemod:block/clear_glass_block"
|
||||
}
|
||||
}
|
|
@ -1,6 +0,0 @@
|
|||
{
|
||||
"parent": "block/cube_all",
|
||||
"textures": {
|
||||
"all": "otemod:block/compressed_obsidian_block"
|
||||
}
|
||||
}
|
|
@ -1,6 +0,0 @@
|
|||
{
|
||||
"parent": "block/cube_all",
|
||||
"textures": {
|
||||
"all": "otemod:block/deepslate_eternium_ore_block"
|
||||
}
|
||||
}
|
|
@ -1,6 +0,0 @@
|
|||
{
|
||||
"parent": "block/cube_all",
|
||||
"textures": {
|
||||
"all": "otemod:block/deprecated"
|
||||
}
|
||||
}
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"parent": "block/cube_all",
|
||||
"textures": {
|
||||
"all": "otemod:block/eternium_ore_block"
|
||||
"all": "otemod:block/deprecated"
|
||||
}
|
||||
}
|
||||
}
|
|
@ -1,6 +0,0 @@
|
|||
{
|
||||
"parent": "block/cube_all",
|
||||
"textures": {
|
||||
"all": "otemod:block/eternium_block"
|
||||
}
|
||||
}
|
|
@ -1,6 +0,0 @@
|
|||
{
|
||||
"parent": "block/cube_all",
|
||||
"textures": {
|
||||
"all": "otemod:block/deprecated"
|
||||
}
|
||||
}
|
|
@ -1,6 +0,0 @@
|
|||
{
|
||||
"parent": "block/cube_all",
|
||||
"textures": {
|
||||
"all": "otemod:block/deprecated"
|
||||
}
|
||||
}
|
|
@ -1,6 +0,0 @@
|
|||
{
|
||||
"parent": "block/cube_all",
|
||||
"textures": {
|
||||
"all": "otemod:block/layered_compressed_obsidian_block"
|
||||
}
|
||||
}
|
|
@ -1,6 +0,0 @@
|
|||
{
|
||||
"parent": "otemod:block/fb/cube",
|
||||
"textures": {
|
||||
"all": "otemod:block/thresholds/lime"
|
||||
}
|
||||
}
|
|
@ -1,8 +0,0 @@
|
|||
{
|
||||
"parent": "minecraft:block/stairs",
|
||||
"textures": {
|
||||
"bottom": "otemod:block/thresholds/lime",
|
||||
"side": "otemod:block/thresholds/lime",
|
||||
"top": "otemod:block/thresholds/lime"
|
||||
}
|
||||
}
|
|
@ -1,8 +0,0 @@
|
|||
{
|
||||
"parent": "minecraft:block/inner_stairs",
|
||||
"textures": {
|
||||
"bottom": "otemod:block/thresholds/lime",
|
||||
"side": "otemod:block/thresholds/lime",
|
||||
"top": "otemod:block/thresholds/lime"
|
||||
}
|
||||
}
|
|
@ -1,8 +0,0 @@
|
|||
{
|
||||
"parent": "minecraft:block/outer_stairs",
|
||||
"textures": {
|
||||
"bottom": "otemod:block/thresholds/lime",
|
||||
"side": "otemod:block/thresholds/lime",
|
||||
"top": "otemod:block/thresholds/lime"
|
||||
}
|
||||
}
|
|
@ -1,7 +0,0 @@
|
|||
{
|
||||
"parent": "otemod:block/fb/top",
|
||||
"textures": {
|
||||
"top": "otemod:block/thresholds/hallway/floor/tiles/lime_tile",
|
||||
"side": "otemod:block/thresholds/lime"
|
||||
}
|
||||
}
|
|
@ -1,7 +0,0 @@
|
|||
{
|
||||
"parent": "otemod:block/fb/sided",
|
||||
"textures": {
|
||||
"top": "otemod:block/thresholds/hallway/floor/tiles/lime_tile_transition",
|
||||
"side": "otemod:block/thresholds/lime"
|
||||
}
|
||||
}
|
|
@ -1,7 +0,0 @@
|
|||
{
|
||||
"parent": "otemod:block/fb/sided",
|
||||
"textures": {
|
||||
"side": "otemod:block/thresholds/hallway/wall/lime_floor_to_wall",
|
||||
"top": "otemod:block/thresholds/lime"
|
||||
}
|
||||
}
|
|
@ -1,7 +0,0 @@
|
|||
{
|
||||
"parent": "otemod:block/fb/sided",
|
||||
"textures": {
|
||||
"side": "otemod:block/thresholds/hallway/wall/lime_wall",
|
||||
"top": "otemod:block/thresholds/lime"
|
||||
}
|
||||
}
|
|
@ -1,7 +0,0 @@
|
|||
{
|
||||
"parent": "otemod:block/fb/sided",
|
||||
"textures": {
|
||||
"side": "otemod:block/thresholds/hallway/wall/lime_wall2",
|
||||
"top": "otemod:block/thresholds/lime"
|
||||
}
|
||||
}
|
|
@ -1,8 +0,0 @@
|
|||
{
|
||||
"parent": "minecraft:block/slab",
|
||||
"textures": {
|
||||
"bottom": "otemod:block/liminal_tiles",
|
||||
"side": "otemod:block/liminal_tiles",
|
||||
"top": "otemod:block/liminal_tiles"
|
||||
}
|
||||
}
|
|
@ -1,8 +0,0 @@
|
|||
{
|
||||
"parent": "minecraft:block/slab_top",
|
||||
"textures": {
|
||||
"bottom": "otemod:block/liminal_tiles",
|
||||
"side": "otemod:block/liminal_tiles",
|
||||
"top": "otemod:block/liminal_tiles"
|
||||
}
|
||||
}
|
|
@ -1,8 +0,0 @@
|
|||
{
|
||||
"parent": "minecraft:block/stairs",
|
||||
"textures": {
|
||||
"bottom": "otemod:block/liminal_tiles",
|
||||
"side": "otemod:block/liminal_tiles",
|
||||
"top": "otemod:block/liminal_tiles"
|
||||
}
|
||||
}
|
|
@ -1,8 +0,0 @@
|
|||
{
|
||||
"parent": "minecraft:block/inner_stairs",
|
||||
"textures": {
|
||||
"bottom": "otemod:block/liminal_tiles",
|
||||
"side": "otemod:block/liminal_tiles",
|
||||
"top": "otemod:block/liminal_tiles"
|
||||
}
|
||||
}
|
|
@ -1,8 +0,0 @@
|
|||
{
|
||||
"parent": "minecraft:block/outer_stairs",
|
||||
"textures": {
|
||||
"bottom": "otemod:block/liminal_tiles",
|
||||
"side": "otemod:block/liminal_tiles",
|
||||
"top": "otemod:block/liminal_tiles"
|
||||
}
|
||||
}
|
|
@ -1,6 +0,0 @@
|
|||
{
|
||||
"parent": "minecraft:block/cube_all",
|
||||
"textures": {
|
||||
"all": "otemod:block/liminal_tiles"
|
||||
}
|
||||
}
|
|
@ -1,29 +0,0 @@
|
|||
{
|
||||
"credit": "Made with Blockbench",
|
||||
"ambientocclusion": false,
|
||||
"elements": [
|
||||
{
|
||||
"from": [
|
||||
0,
|
||||
0,
|
||||
0
|
||||
],
|
||||
"to": [
|
||||
16,
|
||||
0,
|
||||
16
|
||||
],
|
||||
"faces": {
|
||||
"up": {
|
||||
"uv": [
|
||||
0,
|
||||
0,
|
||||
16,
|
||||
16
|
||||
],
|
||||
"texture": "#missing"
|
||||
}
|
||||
}
|
||||
}
|
||||
]
|
||||
}
|
|
@ -1,10 +0,0 @@
|
|||
{
|
||||
"parent": "block/block",
|
||||
"textures": {
|
||||
"particle": "otemod:block/liminal_tiles"
|
||||
},
|
||||
"specialmodels": {
|
||||
"otemod:sky_abyss": "otemod:block/liminal_window"
|
||||
},
|
||||
"elements": []
|
||||
}
|
|
@ -1,10 +0,0 @@
|
|||
{
|
||||
"parent": "block/block",
|
||||
"textures": {
|
||||
"particle": "otemod:block/liminal_tiles"
|
||||
},
|
||||
"specialmodels": {
|
||||
"otemod:sky_dusk": "otemod:block/liminal_window"
|
||||
},
|
||||
"elements": []
|
||||
}
|
|
@ -1,10 +0,0 @@
|
|||
{
|
||||
"parent": "block/block",
|
||||
"textures": {
|
||||
"particle": "otemod:block/liminal_tiles"
|
||||
},
|
||||
"specialmodels": {
|
||||
"otemod:sky_noon": "otemod:block/liminal_window"
|
||||
},
|
||||
"elements": []
|
||||
}
|
|
@ -1,6 +0,0 @@
|
|||
{
|
||||
"parent": "block/cube_all",
|
||||
"textures": {
|
||||
"all": "otemod:block/nether_vault_steel_ore_block"
|
||||
}
|
||||
}
|
|
@ -1,6 +0,0 @@
|
|||
{
|
||||
"parent": "block/cube_all",
|
||||
"textures": {
|
||||
"all": "otemod:block/thresholds/hallway/tiles/blue_pool_light"
|
||||
}
|
||||
}
|
|
@ -1,6 +0,0 @@
|
|||
{
|
||||
"parent": "block/cube_all",
|
||||
"textures": {
|
||||
"all": "otemod:block/thresholds/hallway/tiles/dark_pool_light"
|
||||
}
|
||||
}
|
|
@ -1,6 +0,0 @@
|
|||
{
|
||||
"parent": "block/cube_all",
|
||||
"textures": {
|
||||
"all": "otemod:block/thresholds/hallway/tiles/dirty_blue_pool_light"
|
||||
}
|
||||
}
|
|
@ -1,6 +0,0 @@
|
|||
{
|
||||
"parent": "block/cube_all",
|
||||
"textures": {
|
||||
"all": "otemod:block/thresholds/hallway/tiles/dirty_pool_light"
|
||||
}
|
||||
}
|
|
@ -1,6 +0,0 @@
|
|||
{
|
||||
"parent": "block/cube_all",
|
||||
"textures": {
|
||||
"all": "otemod:block/thresholds/hallway/tiles/dirty_red_pool_light"
|
||||
}
|
||||
}
|
|
@ -1,6 +0,0 @@
|
|||
{
|
||||
"parent": "block/cube_all",
|
||||
"textures": {
|
||||
"all": "otemod:block/thresholds/hallway/tiles/dirty_blue_pool_light_dirty"
|
||||
}
|
||||
}
|
|
@ -1,6 +0,0 @@
|
|||
{
|
||||
"parent": "block/cube_all",
|
||||
"textures": {
|
||||
"all": "otemod:block/thresholds/hallway/tiles/dirty_pool_light_dirty"
|
||||
}
|
||||
}
|
|
@ -1,6 +0,0 @@
|
|||
{
|
||||
"parent": "block/cube_all",
|
||||
"textures": {
|
||||
"all": "otemod:block/thresholds/hallway/tiles/dirty_red_pool_light_dirty"
|
||||
}
|
||||
}
|
|
@ -1,6 +0,0 @@
|
|||
{
|
||||
"parent": "block/cube_all",
|
||||
"textures": {
|
||||
"all": "otemod:block/thresholds/hallway/tiles/pool_light"
|
||||
}
|
||||
}
|
|
@ -1,6 +0,0 @@
|
|||
{
|
||||
"parent": "block/cube_all",
|
||||
"textures": {
|
||||
"all": "otemod:block/thresholds/hallway/tiles/red_pool_light"
|
||||
}
|
||||
}
|
|
@ -1,8 +0,0 @@
|
|||
{
|
||||
"parent": "minecraft:block/stairs",
|
||||
"textures": {
|
||||
"side": "otemod:block/thresholds/hallway/tiles/blue_pool_tile",
|
||||
"top": "otemod:block/thresholds/hallway/tiles/blue_pool_tile",
|
||||
"bottom": "otemod:block/thresholds/hallway/tiles/blue_pool_tile"
|
||||
}
|
||||
}
|
|
@ -1,8 +0,0 @@
|
|||
{
|
||||
"parent": "minecraft:block/inner_stairs",
|
||||
"textures": {
|
||||
"side": "otemod:block/thresholds/hallway/tiles/blue_pool_tile",
|
||||
"top": "otemod:block/thresholds/hallway/tiles/blue_pool_tile",
|
||||
"bottom": "otemod:block/thresholds/hallway/tiles/blue_pool_tile"
|
||||
}
|
||||
}
|
Some files were not shown because too many files have changed in this diff Show more
Reference in a new issue