diff --git a/gradle.properties b/gradle.properties index e950575..500a540 100644 --- a/gradle.properties +++ b/gradle.properties @@ -49,7 +49,7 @@ mod_name=Thresholds # The license of the mod. Review your options at https://choosealicense.com/. All Rights Reserved is the default. mod_license=GPLv3 # The mod version. See https://semver.org/ -mod_version=1.4.012924.2121 +mod_version=1.4.013024.0303 # The group ID for the mod. It is only important when publishing as an artifact to a Maven repository. # This should match the base package used for the mod sources. # See https://maven.apache.org/guides/mini/guide-naming-conventions.html diff --git a/src/main/java/dev/zontreck/otemod/blocks/ModBlocks.java b/src/main/java/dev/zontreck/otemod/blocks/ModBlocks.java index 9abfbc5..7df800e 100644 --- a/src/main/java/dev/zontreck/otemod/blocks/ModBlocks.java +++ b/src/main/java/dev/zontreck/otemod/blocks/ModBlocks.java @@ -270,6 +270,78 @@ public class ModBlocks { public static final RegistryObject T_LIME_WALL2_I = CreativeModeTabs.addToOTEModTab(ITEMS.register("lime_wall_variant_2", ()->new BlockItem(T_LIME_WALL2.get(), new Item.Properties().tab(CreativeModeTab.TAB_DECORATIONS)))); + public static final RegistryObject T_POOL_TILE = BLOCKS.register("pool_tile", ()->new Block(BlockBehaviour.Properties.copy(Blocks.COBBLESTONE))); + public static final RegistryObject T_POOL_TILE_I = CreativeModeTabs.addToOTEModTab(ITEMS.register("pool_tile", ()->new BlockItem(T_POOL_TILE.get(), new Item.Properties().tab(CreativeModeTab.TAB_DECORATIONS)))); + + public static final RegistryObject T_POOL_TILE_STAIRS = BLOCKS.register("pool_tile_stairs", ()->new StairBlock(T_POOL_TILE.get()::defaultBlockState, BlockBehaviour.Properties.copy(Blocks.COBBLESTONE))); + public static final RegistryObject T_POOL_TILE_STAIRS_I = CreativeModeTabs.addToOTEModTab(ITEMS.register("pool_tile_stairs", ()->new BlockItem(T_POOL_TILE_STAIRS.get(), new Item.Properties().tab(CreativeModeTab.TAB_DECORATIONS)))); + + public static final RegistryObject T_POOL_LIGHT = BLOCKS.register("pool_light", ()->new Block(BlockBehaviour.Properties.copy(Blocks.STONE).lightLevel((X)->15).sound(SoundType.GLASS))); + public static final RegistryObject T_POOL_LIGHT_I = CreativeModeTabs.addToOTEModTab(ITEMS.register("pool_light", ()->new BlockItem(T_POOL_LIGHT.get(), new Item.Properties().tab(CreativeModeTab.TAB_DECORATIONS)))); + + public static final RegistryObject T_DIRTY_POOL_TILE = BLOCKS.register("dirty_pool_tile", ()->new Block(BlockBehaviour.Properties.copy(Blocks.COBBLESTONE))); + public static final RegistryObject T_DIRTY_POOL_TILE_I = CreativeModeTabs.addToOTEModTab(ITEMS.register("dirty_pool_tile", ()-> new BlockItem(T_DIRTY_POOL_TILE.get(), new Item.Properties().tab(CreativeModeTab.TAB_DECORATIONS)))); + + + public static final RegistryObject T_DIRTY_POOL_TILE_STAIRS = BLOCKS.register("dirty_pool_tile_stairs", ()->new StairBlock(T_DIRTY_POOL_TILE.get()::defaultBlockState, BlockBehaviour.Properties.copy(Blocks.COBBLESTONE))); + public static final RegistryObject T_DIRTY_POOL_TILE_STAIRS_I = CreativeModeTabs.addToOTEModTab(ITEMS.register("dirty_pool_tile_stairs", ()->new BlockItem(T_DIRTY_POOL_TILE_STAIRS.get(), new Item.Properties().tab(CreativeModeTab.TAB_DECORATIONS)))); + + + public static final RegistryObject T_DIRTY_POOL_LIGHT = BLOCKS.register("dirty_pool_light", ()->new Block(BlockBehaviour.Properties.copy(Blocks.STONE).lightLevel((X)->15).sound(SoundType.GLASS))); + public static final RegistryObject T_DIRTY_POOL_LIGHT_I = CreativeModeTabs.addToOTEModTab(ITEMS.register("dirty_pool_light", ()->new BlockItem(T_DIRTY_POOL_LIGHT.get(), new Item.Properties().tab(CreativeModeTab.TAB_DECORATIONS)))); + public static final RegistryObject T_FILTHY_POOL_LIGHT = BLOCKS.register("filthy_pool_light", ()->new Block(BlockBehaviour.Properties.copy(Blocks.STONE).lightLevel((X)->8).sound(SoundType.GLASS))); + public static final RegistryObject T_FILTHY_POOL_LIGHT_I = CreativeModeTabs.addToOTEModTab(ITEMS.register("filthy_pool_light", ()->new BlockItem(T_FILTHY_POOL_LIGHT.get(), new Item.Properties().tab(CreativeModeTab.TAB_DECORATIONS)))); + + + public static final RegistryObject T_DARK_POOL_TILE = BLOCKS.register("dark_pool_tile", ()->new Block(BlockBehaviour.Properties.copy(Blocks.COBBLESTONE))); + public static final RegistryObject T_DARK_POOL_TILE_I = CreativeModeTabs.addToOTEModTab(ITEMS.register("dark_pool_tile", ()->new BlockItem(T_DARK_POOL_TILE.get(), new Item.Properties().tab(CreativeModeTab.TAB_DECORATIONS)))); + + public static final RegistryObject T_DARK_POOL_LIGHT = BLOCKS.register("dark_pool_light", ()->new Block(BlockBehaviour.Properties.copy(Blocks.STONE).lightLevel((X)->15).sound(SoundType.GLASS))); + public static final RegistryObject T_DARK_POOL_LIGHT_I = CreativeModeTabs.addToOTEModTab(ITEMS.register("dark_pool_light", ()->new BlockItem(T_DARK_POOL_LIGHT.get(), new Item.Properties().tab(CreativeModeTab.TAB_DECORATIONS)))); + + public static final RegistryObject T_DARK_POOL_TILE_STAIRS = BLOCKS.register("dark_pool_tile_stairs", ()->new StairBlock(T_DARK_POOL_TILE.get()::defaultBlockState, BlockBehaviour.Properties.copy(Blocks.COBBLESTONE))); + public static final RegistryObject T_DARK_POOL_TILE_STAIRS_I = CreativeModeTabs.addToOTEModTab(ITEMS.register("dark_pool_tile_stairs", ()->new BlockItem(T_DARK_POOL_TILE_STAIRS.get(), new Item.Properties().tab(CreativeModeTab.TAB_DECORATIONS)))); + + public static final RegistryObject T_BLUE_POOL_TILE = BLOCKS.register("blue_pool_tile", ()->new Block(BlockBehaviour.Properties.copy(Blocks.COBBLESTONE))); + public static final RegistryObject T_BLUE_POOL_TILE_I = CreativeModeTabs.addToOTEModTab(ITEMS.register("blue_pool_tile", ()->new BlockItem(T_BLUE_POOL_TILE.get(), new Item.Properties().tab(CreativeModeTab.TAB_DECORATIONS)))); + public static final RegistryObject T_BLUE_POOL_TILE_STAIRS = BLOCKS.register("blue_pool_tile_stairs", ()->new StairBlock(T_BLUE_POOL_TILE.get()::defaultBlockState, BlockBehaviour.Properties.copy(Blocks.COBBLESTONE))); + public static final RegistryObject T_BLUE_POOL_TILE_STAIRS_I = CreativeModeTabs.addToOTEModTab(ITEMS.register("blue_pool_tile_stairs", ()->new BlockItem(T_BLUE_POOL_TILE_STAIRS.get(), new Item.Properties().tab(CreativeModeTab.TAB_DECORATIONS)))); + + public static final RegistryObject T_BLUE_POOL_LIGHT = BLOCKS.register("blue_pool_light", ()->new Block(BlockBehaviour.Properties.copy(Blocks.STONE).lightLevel((X)->15).sound(SoundType.GLASS))); + public static final RegistryObject T_BLUE_POOL_LIGHT_I = CreativeModeTabs.addToOTEModTab(ITEMS.register("blue_pool_light", ()->new BlockItem(T_BLUE_POOL_LIGHT.get(), new Item.Properties().tab(CreativeModeTab.TAB_DECORATIONS)))); + + + public static final RegistryObject T_RED_POOL_TILE = BLOCKS.register("red_pool_tile", ()->new Block(BlockBehaviour.Properties.copy(Blocks.COBBLESTONE))); + public static final RegistryObject T_RED_POOL_TILE_I = CreativeModeTabs.addToOTEModTab(ITEMS.register("red_pool_tile", ()->new BlockItem(T_RED_POOL_TILE.get(), new Item.Properties().tab(CreativeModeTab.TAB_DECORATIONS)))); + public static final RegistryObject T_RED_POOL_TILE_STAIRS = BLOCKS.register("red_pool_tile_stairs", ()->new StairBlock(T_RED_POOL_TILE.get()::defaultBlockState, BlockBehaviour.Properties.copy(Blocks.COBBLESTONE))); + public static final RegistryObject T_RED_POOL_TILE_STAIRS_I = CreativeModeTabs.addToOTEModTab(ITEMS.register("red_pool_tile_stairs", ()->new BlockItem(T_RED_POOL_TILE_STAIRS.get(), new Item.Properties().tab(CreativeModeTab.TAB_DECORATIONS)))); + + public static final RegistryObject T_RED_POOL_LIGHT = BLOCKS.register("red_pool_light", ()->new Block(BlockBehaviour.Properties.copy(Blocks.STONE).lightLevel((X)->15).sound(SoundType.GLASS))); + public static final RegistryObject T_RED_POOL_LIGHT_I = CreativeModeTabs.addToOTEModTab(ITEMS.register("red_pool_light", ()->new BlockItem(T_RED_POOL_LIGHT.get(), new Item.Properties().tab(CreativeModeTab.TAB_DECORATIONS)))); + + + public static final RegistryObject T_DIRTY_RED_POOL_TILE = BLOCKS.register("dirty_red_pool_tile", ()->new Block(BlockBehaviour.Properties.copy(Blocks.COBBLESTONE))); + public static final RegistryObject T_DIRTY_RED_POOL_TILE_I = CreativeModeTabs.addToOTEModTab(ITEMS.register("dirty_red_pool_tile", ()->new BlockItem(T_DIRTY_RED_POOL_TILE.get(), new Item.Properties().tab(CreativeModeTab.TAB_DECORATIONS)))); + public static final RegistryObject T_DIRTY_RED_POOL_TILE_STAIRS = BLOCKS.register("dirty_red_pool_tile_stairs", ()->new StairBlock(T_DIRTY_RED_POOL_TILE.get()::defaultBlockState, BlockBehaviour.Properties.copy(Blocks.COBBLESTONE))); + public static final RegistryObject T_DIRTY_RED_POOL_TILE_STAIRS_I = CreativeModeTabs.addToOTEModTab(ITEMS.register("dirty_red_pool_tile_stairs", ()->new BlockItem(T_DIRTY_RED_POOL_TILE_STAIRS.get(), new Item.Properties().tab(CreativeModeTab.TAB_DECORATIONS)))); + + public static final RegistryObject T_DIRTY_RED_POOL_LIGHT = BLOCKS.register("dirty_red_pool_light", ()->new Block(BlockBehaviour.Properties.copy(Blocks.STONE).lightLevel((X)->15).sound(SoundType.GLASS))); + public static final RegistryObject T_DIRTY_RED_POOL_LIGHT_I = CreativeModeTabs.addToOTEModTab(ITEMS.register("dirty_red_pool_light", ()->new BlockItem(T_DIRTY_RED_POOL_LIGHT.get(), new Item.Properties().tab(CreativeModeTab.TAB_DECORATIONS)))); + public static final RegistryObject T_FILTHY_RED_POOL_LIGHT = BLOCKS.register("filthy_red_pool_light", ()->new Block(BlockBehaviour.Properties.copy(Blocks.STONE).lightLevel((X)->8).sound(SoundType.GLASS))); + public static final RegistryObject T_FILTHY_RED_POOL_LIGHT_I = CreativeModeTabs.addToOTEModTab(ITEMS.register("filthy_red_pool_light", ()->new BlockItem(T_FILTHY_RED_POOL_LIGHT.get(), new Item.Properties().tab(CreativeModeTab.TAB_DECORATIONS)))); + + + public static final RegistryObject T_DIRTY_BLUE_POOL_TILE = BLOCKS.register("dirty_blue_pool_tile", ()->new Block(BlockBehaviour.Properties.copy(Blocks.COBBLESTONE))); + public static final RegistryObject T_DIRTY_BLUE_POOL_TILE_I = CreativeModeTabs.addToOTEModTab(ITEMS.register("dirty_blue_pool_tile", ()->new BlockItem(T_DIRTY_BLUE_POOL_TILE.get(), new Item.Properties().tab(CreativeModeTab.TAB_DECORATIONS)))); + public static final RegistryObject T_DIRTY_BLUE_POOL_TILE_STAIRS = BLOCKS.register("dirty_blue_pool_tile_stairs", ()->new StairBlock(T_DIRTY_BLUE_POOL_TILE.get()::defaultBlockState, BlockBehaviour.Properties.copy(Blocks.COBBLESTONE))); + public static final RegistryObject T_DIRTY_BLUE_POOL_TILE_STAIRS_I = CreativeModeTabs.addToOTEModTab(ITEMS.register("dirty_blue_pool_tile_stairs", ()->new BlockItem(T_DIRTY_BLUE_POOL_TILE_STAIRS.get(), new Item.Properties().tab(CreativeModeTab.TAB_DECORATIONS)))); + + public static final RegistryObject T_DIRTY_BLUE_POOL_LIGHT = BLOCKS.register("dirty_blue_pool_light", ()->new Block(BlockBehaviour.Properties.copy(Blocks.STONE).lightLevel((X)->15).sound(SoundType.GLASS))); + public static final RegistryObject T_DIRTY_BLUE_POOL_LIGHT_I = CreativeModeTabs.addToOTEModTab(ITEMS.register("dirty_blue_pool_light", ()->new BlockItem(T_DIRTY_BLUE_POOL_LIGHT.get(), new Item.Properties().tab(CreativeModeTab.TAB_DECORATIONS)))); + public static final RegistryObject T_FILTHY_BLUE_POOL_LIGHT = BLOCKS.register("filthy_blue_pool_light", ()->new Block(BlockBehaviour.Properties.copy(Blocks.STONE).lightLevel((X)->8).sound(SoundType.GLASS))); + public static final RegistryObject T_FILTHY_BLUE_POOL_LIGHT_I = CreativeModeTabs.addToOTEModTab(ITEMS.register("filthy_blue_pool_light", ()->new BlockItem(T_FILTHY_BLUE_POOL_LIGHT.get(), new Item.Properties().tab(CreativeModeTab.TAB_DECORATIONS)))); + + private static boolean never(BlockState p_50806_, BlockGetter p_50807_, BlockPos p_50808_) { return false; } diff --git a/src/main/resources/assets/otemod/blockstates/blue_pool_light.json b/src/main/resources/assets/otemod/blockstates/blue_pool_light.json new file mode 100644 index 0000000..db61a52 --- /dev/null +++ b/src/main/resources/assets/otemod/blockstates/blue_pool_light.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "otemod:block/thresholds/pool/light/blue_pool_light" + } + } +} diff --git a/src/main/resources/assets/otemod/blockstates/blue_pool_tile.json b/src/main/resources/assets/otemod/blockstates/blue_pool_tile.json new file mode 100644 index 0000000..27d6894 --- /dev/null +++ b/src/main/resources/assets/otemod/blockstates/blue_pool_tile.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "otemod:block/thresholds/pool/tiles/blue_pool_tile" + } + } +} diff --git a/src/main/resources/assets/otemod/blockstates/blue_pool_tile_stairs.json b/src/main/resources/assets/otemod/blockstates/blue_pool_tile_stairs.json new file mode 100644 index 0000000..eb707f9 --- /dev/null +++ b/src/main/resources/assets/otemod/blockstates/blue_pool_tile_stairs.json @@ -0,0 +1,209 @@ +{ + "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 + } + } +} diff --git a/src/main/resources/assets/otemod/blockstates/dark_pool_light.json b/src/main/resources/assets/otemod/blockstates/dark_pool_light.json new file mode 100644 index 0000000..7670fda --- /dev/null +++ b/src/main/resources/assets/otemod/blockstates/dark_pool_light.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "otemod:block/thresholds/pool/light/dark_pool_light" + } + } +} diff --git a/src/main/resources/assets/otemod/blockstates/dark_pool_tile.json b/src/main/resources/assets/otemod/blockstates/dark_pool_tile.json new file mode 100644 index 0000000..19dbba8 --- /dev/null +++ b/src/main/resources/assets/otemod/blockstates/dark_pool_tile.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "otemod:block/thresholds/pool/tiles/dark_pool_tile" + } + } +} diff --git a/src/main/resources/assets/otemod/blockstates/dark_pool_tile_stairs.json b/src/main/resources/assets/otemod/blockstates/dark_pool_tile_stairs.json new file mode 100644 index 0000000..3c39d69 --- /dev/null +++ b/src/main/resources/assets/otemod/blockstates/dark_pool_tile_stairs.json @@ -0,0 +1,209 @@ +{ + "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 + } + } +} diff --git a/src/main/resources/assets/otemod/blockstates/dirty_blue_pool_light.json b/src/main/resources/assets/otemod/blockstates/dirty_blue_pool_light.json new file mode 100644 index 0000000..847eaea --- /dev/null +++ b/src/main/resources/assets/otemod/blockstates/dirty_blue_pool_light.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "otemod:block/thresholds/pool/light/dirty_blue_pool_light" + } + } +} diff --git a/src/main/resources/assets/otemod/blockstates/dirty_blue_pool_tile.json b/src/main/resources/assets/otemod/blockstates/dirty_blue_pool_tile.json new file mode 100644 index 0000000..b457b2b --- /dev/null +++ b/src/main/resources/assets/otemod/blockstates/dirty_blue_pool_tile.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "otemod:block/thresholds/pool/tiles/dirty_blue_pool_tile" + } + } +} diff --git a/src/main/resources/assets/otemod/blockstates/dirty_blue_pool_tile_stairs.json b/src/main/resources/assets/otemod/blockstates/dirty_blue_pool_tile_stairs.json new file mode 100644 index 0000000..0703cc1 --- /dev/null +++ b/src/main/resources/assets/otemod/blockstates/dirty_blue_pool_tile_stairs.json @@ -0,0 +1,209 @@ +{ + "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 + } + } +} diff --git a/src/main/resources/assets/otemod/blockstates/dirty_pool_light.json b/src/main/resources/assets/otemod/blockstates/dirty_pool_light.json new file mode 100644 index 0000000..6c245cc --- /dev/null +++ b/src/main/resources/assets/otemod/blockstates/dirty_pool_light.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "otemod:block/thresholds/pool/light/dirty_pool_light" + } + } +} diff --git a/src/main/resources/assets/otemod/blockstates/dirty_pool_tile.json b/src/main/resources/assets/otemod/blockstates/dirty_pool_tile.json new file mode 100644 index 0000000..fa7311a --- /dev/null +++ b/src/main/resources/assets/otemod/blockstates/dirty_pool_tile.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "otemod:block/thresholds/pool/tiles/dirty_pool_tile" + } + } +} diff --git a/src/main/resources/assets/otemod/blockstates/dirty_pool_tile_stairs.json b/src/main/resources/assets/otemod/blockstates/dirty_pool_tile_stairs.json new file mode 100644 index 0000000..50a3069 --- /dev/null +++ b/src/main/resources/assets/otemod/blockstates/dirty_pool_tile_stairs.json @@ -0,0 +1,209 @@ +{ + "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 + } + } +} diff --git a/src/main/resources/assets/otemod/blockstates/dirty_red_pool_light.json b/src/main/resources/assets/otemod/blockstates/dirty_red_pool_light.json new file mode 100644 index 0000000..b73b705 --- /dev/null +++ b/src/main/resources/assets/otemod/blockstates/dirty_red_pool_light.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "otemod:block/thresholds/pool/light/dirty_red_pool_light" + } + } +} diff --git a/src/main/resources/assets/otemod/blockstates/dirty_red_pool_tile.json b/src/main/resources/assets/otemod/blockstates/dirty_red_pool_tile.json new file mode 100644 index 0000000..ebfaecf --- /dev/null +++ b/src/main/resources/assets/otemod/blockstates/dirty_red_pool_tile.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "otemod:block/thresholds/pool/tiles/dirty_red_pool_tile" + } + } +} diff --git a/src/main/resources/assets/otemod/blockstates/dirty_red_pool_tile_stairs.json b/src/main/resources/assets/otemod/blockstates/dirty_red_pool_tile_stairs.json new file mode 100644 index 0000000..4562cbd --- /dev/null +++ b/src/main/resources/assets/otemod/blockstates/dirty_red_pool_tile_stairs.json @@ -0,0 +1,209 @@ +{ + "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 + } + } +} diff --git a/src/main/resources/assets/otemod/blockstates/filthy_blue_pool_light.json b/src/main/resources/assets/otemod/blockstates/filthy_blue_pool_light.json new file mode 100644 index 0000000..342e823 --- /dev/null +++ b/src/main/resources/assets/otemod/blockstates/filthy_blue_pool_light.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "otemod:block/thresholds/pool/light/filthy_blue_pool_light" + } + } +} diff --git a/src/main/resources/assets/otemod/blockstates/filthy_pool_light.json b/src/main/resources/assets/otemod/blockstates/filthy_pool_light.json new file mode 100644 index 0000000..92b3ec3 --- /dev/null +++ b/src/main/resources/assets/otemod/blockstates/filthy_pool_light.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "otemod:block/thresholds/pool/light/filthy_pool_light" + } + } +} diff --git a/src/main/resources/assets/otemod/blockstates/filthy_red_pool_light.json b/src/main/resources/assets/otemod/blockstates/filthy_red_pool_light.json new file mode 100644 index 0000000..9125c9a --- /dev/null +++ b/src/main/resources/assets/otemod/blockstates/filthy_red_pool_light.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "otemod:block/thresholds/pool/light/filthy_red_pool_light" + } + } +} diff --git a/src/main/resources/assets/otemod/blockstates/pool_light.json b/src/main/resources/assets/otemod/blockstates/pool_light.json new file mode 100644 index 0000000..d1fc85e --- /dev/null +++ b/src/main/resources/assets/otemod/blockstates/pool_light.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "otemod:block/thresholds/pool/light/pool_light" + } + } +} diff --git a/src/main/resources/assets/otemod/blockstates/pool_tile.json b/src/main/resources/assets/otemod/blockstates/pool_tile.json new file mode 100644 index 0000000..180098b --- /dev/null +++ b/src/main/resources/assets/otemod/blockstates/pool_tile.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "otemod:block/thresholds/pool/tiles/pool_tile" + } + } +} diff --git a/src/main/resources/assets/otemod/blockstates/pool_tile_stairs.json b/src/main/resources/assets/otemod/blockstates/pool_tile_stairs.json new file mode 100644 index 0000000..09b3a3e --- /dev/null +++ b/src/main/resources/assets/otemod/blockstates/pool_tile_stairs.json @@ -0,0 +1,209 @@ +{ + "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 + } + } +} diff --git a/src/main/resources/assets/otemod/blockstates/red_pool_light.json b/src/main/resources/assets/otemod/blockstates/red_pool_light.json new file mode 100644 index 0000000..60e29bf --- /dev/null +++ b/src/main/resources/assets/otemod/blockstates/red_pool_light.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "otemod:block/thresholds/pool/light/red_pool_light" + } + } +} diff --git a/src/main/resources/assets/otemod/blockstates/red_pool_tile.json b/src/main/resources/assets/otemod/blockstates/red_pool_tile.json new file mode 100644 index 0000000..86eb868 --- /dev/null +++ b/src/main/resources/assets/otemod/blockstates/red_pool_tile.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "otemod:block/thresholds/pool/tiles/red_pool_tile" + } + } +} diff --git a/src/main/resources/assets/otemod/blockstates/red_pool_tile_stairs.json b/src/main/resources/assets/otemod/blockstates/red_pool_tile_stairs.json new file mode 100644 index 0000000..fa3a444 --- /dev/null +++ b/src/main/resources/assets/otemod/blockstates/red_pool_tile_stairs.json @@ -0,0 +1,209 @@ +{ + "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 + } + } +} diff --git a/src/main/resources/assets/otemod/lang/en_us.json b/src/main/resources/assets/otemod/lang/en_us.json index b444b99..c6b804e 100644 --- a/src/main/resources/assets/otemod/lang/en_us.json +++ b/src/main/resources/assets/otemod/lang/en_us.json @@ -89,6 +89,31 @@ "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", + "block.otemod.dark_pool_light": "Dark Pool Light", + "block.otemod.blue_pool_light": "Blue Pool Light", + "block.otemod.red_pool_light": "Red Pool Light", + "block.otemod.dirty_red_pool_light": "Dirty Red Pool Light", + "block.otemod.filthy_red_pool_light": "Filthy Red Pool Light", + "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.dirty_pool_tile": "Dirty Pool Tiles", + "block.otemod.dirty_pool_tile_stairs": "Dirty Pool Tile Stairs", + "block.otemod.dark_pool_tile": "Dark Pool Tiles", + "block.otemod.dark_pool_tile_stairs": "Dark Pool Tile Stairs", + "block.otemod.blue_pool_tile": "Blue Pool Tiles", + "block.otemod.blue_pool_tile_stairs": "Blue Pool Tile Stairs", + "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_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_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", "enchantment.otemod.mob_egging": "Mob Egging", diff --git a/src/main/resources/assets/otemod/models/block/thresholds/.placeholder b/src/main/resources/assets/otemod/models/block/thresholds/.placeholder new file mode 100644 index 0000000..e69de29 diff --git a/src/main/resources/assets/otemod/models/block/thresholds/pool/light/blue_pool_light.json b/src/main/resources/assets/otemod/models/block/thresholds/pool/light/blue_pool_light.json new file mode 100644 index 0000000..1a2ed00 --- /dev/null +++ b/src/main/resources/assets/otemod/models/block/thresholds/pool/light/blue_pool_light.json @@ -0,0 +1,6 @@ +{ + "parent": "block/cube_all", + "textures": { + "all": "otemod:block/thresholds/hallway/tiles/blue_pool_light" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/otemod/models/block/thresholds/pool/light/dark_pool_light.json b/src/main/resources/assets/otemod/models/block/thresholds/pool/light/dark_pool_light.json new file mode 100644 index 0000000..a02b8d6 --- /dev/null +++ b/src/main/resources/assets/otemod/models/block/thresholds/pool/light/dark_pool_light.json @@ -0,0 +1,6 @@ +{ + "parent": "block/cube_all", + "textures": { + "all": "otemod:block/thresholds/hallway/tiles/dark_pool_light" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/otemod/models/block/thresholds/pool/light/dirty_blue_pool_light.json b/src/main/resources/assets/otemod/models/block/thresholds/pool/light/dirty_blue_pool_light.json new file mode 100644 index 0000000..0226303 --- /dev/null +++ b/src/main/resources/assets/otemod/models/block/thresholds/pool/light/dirty_blue_pool_light.json @@ -0,0 +1,6 @@ +{ + "parent": "block/cube_all", + "textures": { + "all": "otemod:block/thresholds/hallway/tiles/dirty_blue_pool_light" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/otemod/models/block/thresholds/pool/light/dirty_pool_light.json b/src/main/resources/assets/otemod/models/block/thresholds/pool/light/dirty_pool_light.json new file mode 100644 index 0000000..174ce42 --- /dev/null +++ b/src/main/resources/assets/otemod/models/block/thresholds/pool/light/dirty_pool_light.json @@ -0,0 +1,6 @@ +{ + "parent": "block/cube_all", + "textures": { + "all": "otemod:block/thresholds/hallway/tiles/dirty_pool_light" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/otemod/models/block/thresholds/pool/light/dirty_red_pool_light.json b/src/main/resources/assets/otemod/models/block/thresholds/pool/light/dirty_red_pool_light.json new file mode 100644 index 0000000..b260ba7 --- /dev/null +++ b/src/main/resources/assets/otemod/models/block/thresholds/pool/light/dirty_red_pool_light.json @@ -0,0 +1,6 @@ +{ + "parent": "block/cube_all", + "textures": { + "all": "otemod:block/thresholds/hallway/tiles/dirty_red_pool_light" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/otemod/models/block/thresholds/pool/light/filthy_blue_pool_light.json b/src/main/resources/assets/otemod/models/block/thresholds/pool/light/filthy_blue_pool_light.json new file mode 100644 index 0000000..3134cf7 --- /dev/null +++ b/src/main/resources/assets/otemod/models/block/thresholds/pool/light/filthy_blue_pool_light.json @@ -0,0 +1,6 @@ +{ + "parent": "block/cube_all", + "textures": { + "all": "otemod:block/thresholds/hallway/tiles/dirty_blue_pool_light_dirty" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/otemod/models/block/thresholds/pool/light/filthy_pool_light.json b/src/main/resources/assets/otemod/models/block/thresholds/pool/light/filthy_pool_light.json new file mode 100644 index 0000000..28bb76c --- /dev/null +++ b/src/main/resources/assets/otemod/models/block/thresholds/pool/light/filthy_pool_light.json @@ -0,0 +1,6 @@ +{ + "parent": "block/cube_all", + "textures": { + "all": "otemod:block/thresholds/hallway/tiles/dirty_pool_light_dirty" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/otemod/models/block/thresholds/pool/light/filthy_red_pool_light.json b/src/main/resources/assets/otemod/models/block/thresholds/pool/light/filthy_red_pool_light.json new file mode 100644 index 0000000..c0a59b1 --- /dev/null +++ b/src/main/resources/assets/otemod/models/block/thresholds/pool/light/filthy_red_pool_light.json @@ -0,0 +1,6 @@ +{ + "parent": "block/cube_all", + "textures": { + "all": "otemod:block/thresholds/hallway/tiles/dirty_red_pool_light_dirty" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/otemod/models/block/thresholds/pool/light/pool_light.json b/src/main/resources/assets/otemod/models/block/thresholds/pool/light/pool_light.json new file mode 100644 index 0000000..8dfbec0 --- /dev/null +++ b/src/main/resources/assets/otemod/models/block/thresholds/pool/light/pool_light.json @@ -0,0 +1,6 @@ +{ + "parent": "block/cube_all", + "textures": { + "all": "otemod:block/thresholds/hallway/tiles/pool_light" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/otemod/models/block/thresholds/pool/light/red_pool_light.json b/src/main/resources/assets/otemod/models/block/thresholds/pool/light/red_pool_light.json new file mode 100644 index 0000000..2c524c9 --- /dev/null +++ b/src/main/resources/assets/otemod/models/block/thresholds/pool/light/red_pool_light.json @@ -0,0 +1,6 @@ +{ + "parent": "block/cube_all", + "textures": { + "all": "otemod:block/thresholds/hallway/tiles/red_pool_light" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/otemod/models/block/thresholds/pool/stairs/blue_pool_tile_stairs.json b/src/main/resources/assets/otemod/models/block/thresholds/pool/stairs/blue_pool_tile_stairs.json new file mode 100644 index 0000000..885cda2 --- /dev/null +++ b/src/main/resources/assets/otemod/models/block/thresholds/pool/stairs/blue_pool_tile_stairs.json @@ -0,0 +1,8 @@ +{ + "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" + } +} diff --git a/src/main/resources/assets/otemod/models/block/thresholds/pool/stairs/blue_pool_tile_stairs_inner.json b/src/main/resources/assets/otemod/models/block/thresholds/pool/stairs/blue_pool_tile_stairs_inner.json new file mode 100644 index 0000000..7a1dc32 --- /dev/null +++ b/src/main/resources/assets/otemod/models/block/thresholds/pool/stairs/blue_pool_tile_stairs_inner.json @@ -0,0 +1,8 @@ +{ + "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" + } +} diff --git a/src/main/resources/assets/otemod/models/block/thresholds/pool/stairs/blue_pool_tile_stairs_outer.json b/src/main/resources/assets/otemod/models/block/thresholds/pool/stairs/blue_pool_tile_stairs_outer.json new file mode 100644 index 0000000..712b698 --- /dev/null +++ b/src/main/resources/assets/otemod/models/block/thresholds/pool/stairs/blue_pool_tile_stairs_outer.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/outer_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" + } +} diff --git a/src/main/resources/assets/otemod/models/block/thresholds/pool/stairs/dark_pool_tile_stairs.json b/src/main/resources/assets/otemod/models/block/thresholds/pool/stairs/dark_pool_tile_stairs.json new file mode 100644 index 0000000..eb4f592 --- /dev/null +++ b/src/main/resources/assets/otemod/models/block/thresholds/pool/stairs/dark_pool_tile_stairs.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/stairs", + "textures": { + "side": "otemod:block/thresholds/hallway/tiles/dark_pool_tile", + "top": "otemod:block/thresholds/hallway/tiles/dark_pool_tile", + "bottom": "otemod:block/thresholds/hallway/tiles/dark_pool_tile" + } +} diff --git a/src/main/resources/assets/otemod/models/block/thresholds/pool/stairs/dark_pool_tile_stairs_inner.json b/src/main/resources/assets/otemod/models/block/thresholds/pool/stairs/dark_pool_tile_stairs_inner.json new file mode 100644 index 0000000..d814019 --- /dev/null +++ b/src/main/resources/assets/otemod/models/block/thresholds/pool/stairs/dark_pool_tile_stairs_inner.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/inner_stairs", + "textures": { + "side": "otemod:block/thresholds/hallway/tiles/dark_pool_tile", + "top": "otemod:block/thresholds/hallway/tiles/dark_pool_tile", + "bottom": "otemod:block/thresholds/hallway/tiles/dark_pool_tile" + } +} diff --git a/src/main/resources/assets/otemod/models/block/thresholds/pool/stairs/dark_pool_tile_stairs_outer.json b/src/main/resources/assets/otemod/models/block/thresholds/pool/stairs/dark_pool_tile_stairs_outer.json new file mode 100644 index 0000000..8b7593c --- /dev/null +++ b/src/main/resources/assets/otemod/models/block/thresholds/pool/stairs/dark_pool_tile_stairs_outer.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/outer_stairs", + "textures": { + "side": "otemod:block/thresholds/hallway/tiles/dark_pool_tile", + "top": "otemod:block/thresholds/hallway/tiles/dark_pool_tile", + "bottom": "otemod:block/thresholds/hallway/tiles/dark_pool_tile" + } +} diff --git a/src/main/resources/assets/otemod/models/block/thresholds/pool/stairs/dirty_blue_pool_tile_stairs.json b/src/main/resources/assets/otemod/models/block/thresholds/pool/stairs/dirty_blue_pool_tile_stairs.json new file mode 100644 index 0000000..d334bdf --- /dev/null +++ b/src/main/resources/assets/otemod/models/block/thresholds/pool/stairs/dirty_blue_pool_tile_stairs.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/stairs", + "textures": { + "side": "otemod:block/thresholds/hallway/tiles/dirty_blue_pool_tile", + "top": "otemod:block/thresholds/hallway/tiles/dirty_blue_pool_tile", + "bottom": "otemod:block/thresholds/hallway/tiles/dirty_blue_pool_tile" + } +} diff --git a/src/main/resources/assets/otemod/models/block/thresholds/pool/stairs/dirty_blue_pool_tile_stairs_inner.json b/src/main/resources/assets/otemod/models/block/thresholds/pool/stairs/dirty_blue_pool_tile_stairs_inner.json new file mode 100644 index 0000000..901f57e --- /dev/null +++ b/src/main/resources/assets/otemod/models/block/thresholds/pool/stairs/dirty_blue_pool_tile_stairs_inner.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/inner_stairs", + "textures": { + "side": "otemod:block/thresholds/hallway/tiles/dirty_blue_pool_tile", + "top": "otemod:block/thresholds/hallway/tiles/dirty_blue_pool_tile", + "bottom": "otemod:block/thresholds/hallway/tiles/dirty_blue_pool_tile" + } +} diff --git a/src/main/resources/assets/otemod/models/block/thresholds/pool/stairs/dirty_blue_pool_tile_stairs_outer.json b/src/main/resources/assets/otemod/models/block/thresholds/pool/stairs/dirty_blue_pool_tile_stairs_outer.json new file mode 100644 index 0000000..e4fdf05 --- /dev/null +++ b/src/main/resources/assets/otemod/models/block/thresholds/pool/stairs/dirty_blue_pool_tile_stairs_outer.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/outer_stairs", + "textures": { + "side": "otemod:block/thresholds/hallway/tiles/dirty_blue_pool_tile", + "top": "otemod:block/thresholds/hallway/tiles/dirty_blue_pool_tile", + "bottom": "otemod:block/thresholds/hallway/tiles/dirty_blue_pool_tile" + } +} diff --git a/src/main/resources/assets/otemod/models/block/thresholds/pool/stairs/dirty_pool_tile_stairs.json b/src/main/resources/assets/otemod/models/block/thresholds/pool/stairs/dirty_pool_tile_stairs.json new file mode 100644 index 0000000..cfd6454 --- /dev/null +++ b/src/main/resources/assets/otemod/models/block/thresholds/pool/stairs/dirty_pool_tile_stairs.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/stairs", + "textures": { + "side": "otemod:block/thresholds/hallway/tiles/dirty_pool_tile", + "top": "otemod:block/thresholds/hallway/tiles/dirty_pool_tile", + "bottom": "otemod:block/thresholds/hallway/tiles/dirty_pool_tile" + } +} diff --git a/src/main/resources/assets/otemod/models/block/thresholds/pool/stairs/dirty_pool_tile_stairs_inner.json b/src/main/resources/assets/otemod/models/block/thresholds/pool/stairs/dirty_pool_tile_stairs_inner.json new file mode 100644 index 0000000..e783841 --- /dev/null +++ b/src/main/resources/assets/otemod/models/block/thresholds/pool/stairs/dirty_pool_tile_stairs_inner.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/inner_stairs", + "textures": { + "side": "otemod:block/thresholds/hallway/tiles/dirty_pool_tile", + "top": "otemod:block/thresholds/hallway/tiles/dirty_pool_tile", + "bottom": "otemod:block/thresholds/hallway/tiles/dirty_pool_tile" + } +} diff --git a/src/main/resources/assets/otemod/models/block/thresholds/pool/stairs/dirty_pool_tile_stairs_outer.json b/src/main/resources/assets/otemod/models/block/thresholds/pool/stairs/dirty_pool_tile_stairs_outer.json new file mode 100644 index 0000000..5bc7b82 --- /dev/null +++ b/src/main/resources/assets/otemod/models/block/thresholds/pool/stairs/dirty_pool_tile_stairs_outer.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/outer_stairs", + "textures": { + "side": "otemod:block/thresholds/hallway/tiles/dirty_pool_tile", + "top": "otemod:block/thresholds/hallway/tiles/dirty_pool_tile", + "bottom": "otemod:block/thresholds/hallway/tiles/dirty_pool_tile" + } +} diff --git a/src/main/resources/assets/otemod/models/block/thresholds/pool/stairs/dirty_red_pool_tile_stairs.json b/src/main/resources/assets/otemod/models/block/thresholds/pool/stairs/dirty_red_pool_tile_stairs.json new file mode 100644 index 0000000..45926f2 --- /dev/null +++ b/src/main/resources/assets/otemod/models/block/thresholds/pool/stairs/dirty_red_pool_tile_stairs.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/stairs", + "textures": { + "side": "otemod:block/thresholds/hallway/tiles/dirty_red_pool_tile", + "top": "otemod:block/thresholds/hallway/tiles/dirty_red_pool_tile", + "bottom": "otemod:block/thresholds/hallway/tiles/dirty_red_pool_tile" + } +} diff --git a/src/main/resources/assets/otemod/models/block/thresholds/pool/stairs/dirty_red_pool_tile_stairs_inner.json b/src/main/resources/assets/otemod/models/block/thresholds/pool/stairs/dirty_red_pool_tile_stairs_inner.json new file mode 100644 index 0000000..4d1181e --- /dev/null +++ b/src/main/resources/assets/otemod/models/block/thresholds/pool/stairs/dirty_red_pool_tile_stairs_inner.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/inner_stairs", + "textures": { + "side": "otemod:block/thresholds/hallway/tiles/dirty_red_pool_tile", + "top": "otemod:block/thresholds/hallway/tiles/dirty_red_pool_tile", + "bottom": "otemod:block/thresholds/hallway/tiles/dirty_red_pool_tile" + } +} diff --git a/src/main/resources/assets/otemod/models/block/thresholds/pool/stairs/dirty_red_pool_tile_stairs_outer.json b/src/main/resources/assets/otemod/models/block/thresholds/pool/stairs/dirty_red_pool_tile_stairs_outer.json new file mode 100644 index 0000000..7edb734 --- /dev/null +++ b/src/main/resources/assets/otemod/models/block/thresholds/pool/stairs/dirty_red_pool_tile_stairs_outer.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/outer_stairs", + "textures": { + "side": "otemod:block/thresholds/hallway/tiles/dirty_red_pool_tile", + "top": "otemod:block/thresholds/hallway/tiles/dirty_red_pool_tile", + "bottom": "otemod:block/thresholds/hallway/tiles/dirty_red_pool_tile" + } +} diff --git a/src/main/resources/assets/otemod/models/block/thresholds/pool/stairs/pool_tile_stairs.json b/src/main/resources/assets/otemod/models/block/thresholds/pool/stairs/pool_tile_stairs.json new file mode 100644 index 0000000..0ec4e76 --- /dev/null +++ b/src/main/resources/assets/otemod/models/block/thresholds/pool/stairs/pool_tile_stairs.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/stairs", + "textures": { + "side": "otemod:block/thresholds/hallway/tiles/pool_tile", + "top": "otemod:block/thresholds/hallway/tiles/pool_tile", + "bottom": "otemod:block/thresholds/hallway/tiles/pool_tile" + } +} diff --git a/src/main/resources/assets/otemod/models/block/thresholds/pool/stairs/pool_tile_stairs_inner.json b/src/main/resources/assets/otemod/models/block/thresholds/pool/stairs/pool_tile_stairs_inner.json new file mode 100644 index 0000000..e295e73 --- /dev/null +++ b/src/main/resources/assets/otemod/models/block/thresholds/pool/stairs/pool_tile_stairs_inner.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/inner_stairs", + "textures": { + "side": "otemod:block/thresholds/hallway/tiles/pool_tile", + "top": "otemod:block/thresholds/hallway/tiles/pool_tile", + "bottom": "otemod:block/thresholds/hallway/tiles/pool_tile" + } +} diff --git a/src/main/resources/assets/otemod/models/block/thresholds/pool/stairs/pool_tile_stairs_outer.json b/src/main/resources/assets/otemod/models/block/thresholds/pool/stairs/pool_tile_stairs_outer.json new file mode 100644 index 0000000..de52e69 --- /dev/null +++ b/src/main/resources/assets/otemod/models/block/thresholds/pool/stairs/pool_tile_stairs_outer.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/outer_stairs", + "textures": { + "side": "otemod:block/thresholds/hallway/tiles/pool_tile", + "top": "otemod:block/thresholds/hallway/tiles/pool_tile", + "bottom": "otemod:block/thresholds/hallway/tiles/pool_tile" + } +} diff --git a/src/main/resources/assets/otemod/models/block/thresholds/pool/stairs/red_pool_tile_stairs.json b/src/main/resources/assets/otemod/models/block/thresholds/pool/stairs/red_pool_tile_stairs.json new file mode 100644 index 0000000..89f7954 --- /dev/null +++ b/src/main/resources/assets/otemod/models/block/thresholds/pool/stairs/red_pool_tile_stairs.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/stairs", + "textures": { + "side": "otemod:block/thresholds/hallway/tiles/red_pool_tile", + "top": "otemod:block/thresholds/hallway/tiles/red_pool_tile", + "bottom": "otemod:block/thresholds/hallway/tiles/red_pool_tile" + } +} diff --git a/src/main/resources/assets/otemod/models/block/thresholds/pool/stairs/red_pool_tile_stairs_inner.json b/src/main/resources/assets/otemod/models/block/thresholds/pool/stairs/red_pool_tile_stairs_inner.json new file mode 100644 index 0000000..4f50f70 --- /dev/null +++ b/src/main/resources/assets/otemod/models/block/thresholds/pool/stairs/red_pool_tile_stairs_inner.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/inner_stairs", + "textures": { + "side": "otemod:block/thresholds/hallway/tiles/red_pool_tile", + "top": "otemod:block/thresholds/hallway/tiles/red_pool_tile", + "bottom": "otemod:block/thresholds/hallway/tiles/red_pool_tile" + } +} diff --git a/src/main/resources/assets/otemod/models/block/thresholds/pool/stairs/red_pool_tile_stairs_outer.json b/src/main/resources/assets/otemod/models/block/thresholds/pool/stairs/red_pool_tile_stairs_outer.json new file mode 100644 index 0000000..afea149 --- /dev/null +++ b/src/main/resources/assets/otemod/models/block/thresholds/pool/stairs/red_pool_tile_stairs_outer.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/outer_stairs", + "textures": { + "side": "otemod:block/thresholds/hallway/tiles/red_pool_tile", + "top": "otemod:block/thresholds/hallway/tiles/red_pool_tile", + "bottom": "otemod:block/thresholds/hallway/tiles/red_pool_tile" + } +} diff --git a/src/main/resources/assets/otemod/models/block/thresholds/pool/tiles/blue_pool_tile.json b/src/main/resources/assets/otemod/models/block/thresholds/pool/tiles/blue_pool_tile.json new file mode 100644 index 0000000..1d23751 --- /dev/null +++ b/src/main/resources/assets/otemod/models/block/thresholds/pool/tiles/blue_pool_tile.json @@ -0,0 +1,6 @@ +{ + "parent": "block/cube_all", + "textures": { + "all": "otemod:block/thresholds/hallway/tiles/blue_pool_tile" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/otemod/models/block/thresholds/pool/tiles/dark_pool_tile.json b/src/main/resources/assets/otemod/models/block/thresholds/pool/tiles/dark_pool_tile.json new file mode 100644 index 0000000..7a5e49d --- /dev/null +++ b/src/main/resources/assets/otemod/models/block/thresholds/pool/tiles/dark_pool_tile.json @@ -0,0 +1,6 @@ +{ + "parent": "block/cube_all", + "textures": { + "all": "otemod:block/thresholds/hallway/tiles/dark_pool_tile" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/otemod/models/block/thresholds/pool/tiles/dirty_blue_pool_tile.json b/src/main/resources/assets/otemod/models/block/thresholds/pool/tiles/dirty_blue_pool_tile.json new file mode 100644 index 0000000..56e52ae --- /dev/null +++ b/src/main/resources/assets/otemod/models/block/thresholds/pool/tiles/dirty_blue_pool_tile.json @@ -0,0 +1,6 @@ +{ + "parent": "block/cube_all", + "textures": { + "all": "otemod:block/thresholds/hallway/tiles/dirty_blue_pool_tile" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/otemod/models/block/thresholds/pool/tiles/dirty_pool_tile.json b/src/main/resources/assets/otemod/models/block/thresholds/pool/tiles/dirty_pool_tile.json new file mode 100644 index 0000000..63284fc --- /dev/null +++ b/src/main/resources/assets/otemod/models/block/thresholds/pool/tiles/dirty_pool_tile.json @@ -0,0 +1,6 @@ +{ + "parent": "block/cube_all", + "textures": { + "all": "otemod:block/thresholds/hallway/tiles/dirty_pool_tile" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/otemod/models/block/thresholds/pool/tiles/dirty_red_pool_tile.json b/src/main/resources/assets/otemod/models/block/thresholds/pool/tiles/dirty_red_pool_tile.json new file mode 100644 index 0000000..72d52cd --- /dev/null +++ b/src/main/resources/assets/otemod/models/block/thresholds/pool/tiles/dirty_red_pool_tile.json @@ -0,0 +1,6 @@ +{ + "parent": "block/cube_all", + "textures": { + "all": "otemod:block/thresholds/hallway/tiles/dirty_red_pool_tile" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/otemod/models/block/thresholds/pool/tiles/pool_tile.json b/src/main/resources/assets/otemod/models/block/thresholds/pool/tiles/pool_tile.json new file mode 100644 index 0000000..c88b3e7 --- /dev/null +++ b/src/main/resources/assets/otemod/models/block/thresholds/pool/tiles/pool_tile.json @@ -0,0 +1,6 @@ +{ + "parent": "block/cube_all", + "textures": { + "all": "otemod:block/thresholds/hallway/tiles/pool_tile" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/otemod/models/block/thresholds/pool/tiles/red_pool_tile.json b/src/main/resources/assets/otemod/models/block/thresholds/pool/tiles/red_pool_tile.json new file mode 100644 index 0000000..37e07bc --- /dev/null +++ b/src/main/resources/assets/otemod/models/block/thresholds/pool/tiles/red_pool_tile.json @@ -0,0 +1,6 @@ +{ + "parent": "block/cube_all", + "textures": { + "all": "otemod:block/thresholds/hallway/tiles/red_pool_tile" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/otemod/models/item/blue_pool_light.json b/src/main/resources/assets/otemod/models/item/blue_pool_light.json new file mode 100644 index 0000000..b6f1754 --- /dev/null +++ b/src/main/resources/assets/otemod/models/item/blue_pool_light.json @@ -0,0 +1,3 @@ +{ + "parent": "otemod:block/thresholds/pool/light/blue_pool_light" +} diff --git a/src/main/resources/assets/otemod/models/item/blue_pool_tile.json b/src/main/resources/assets/otemod/models/item/blue_pool_tile.json new file mode 100644 index 0000000..571be29 --- /dev/null +++ b/src/main/resources/assets/otemod/models/item/blue_pool_tile.json @@ -0,0 +1,3 @@ +{ + "parent": "otemod:block/thresholds/pool/tiles/blue_pool_tile" +} diff --git a/src/main/resources/assets/otemod/models/item/blue_pool_tile_stairs.json b/src/main/resources/assets/otemod/models/item/blue_pool_tile_stairs.json new file mode 100644 index 0000000..afb5349 --- /dev/null +++ b/src/main/resources/assets/otemod/models/item/blue_pool_tile_stairs.json @@ -0,0 +1,3 @@ +{ + "parent": "otemod:block/thresholds/pool/stairs/blue_pool_tile_stairs" +} diff --git a/src/main/resources/assets/otemod/models/item/dark_pool_light.json b/src/main/resources/assets/otemod/models/item/dark_pool_light.json new file mode 100644 index 0000000..d962b94 --- /dev/null +++ b/src/main/resources/assets/otemod/models/item/dark_pool_light.json @@ -0,0 +1,3 @@ +{ + "parent": "otemod:block/thresholds/pool/light/dark_pool_light" +} diff --git a/src/main/resources/assets/otemod/models/item/dark_pool_tile.json b/src/main/resources/assets/otemod/models/item/dark_pool_tile.json new file mode 100644 index 0000000..ef56452 --- /dev/null +++ b/src/main/resources/assets/otemod/models/item/dark_pool_tile.json @@ -0,0 +1,3 @@ +{ + "parent": "otemod:block/thresholds/pool/tiles/dark_pool_tile" +} diff --git a/src/main/resources/assets/otemod/models/item/dark_pool_tile_stairs.json b/src/main/resources/assets/otemod/models/item/dark_pool_tile_stairs.json new file mode 100644 index 0000000..3ca969b --- /dev/null +++ b/src/main/resources/assets/otemod/models/item/dark_pool_tile_stairs.json @@ -0,0 +1,3 @@ +{ + "parent": "otemod:block/thresholds/pool/stairs/dark_pool_tile_stairs" +} diff --git a/src/main/resources/assets/otemod/models/item/dirty_blue_pool_light.json b/src/main/resources/assets/otemod/models/item/dirty_blue_pool_light.json new file mode 100644 index 0000000..3ad5805 --- /dev/null +++ b/src/main/resources/assets/otemod/models/item/dirty_blue_pool_light.json @@ -0,0 +1,3 @@ +{ + "parent": "otemod:block/thresholds/pool/light/dirty_blue_pool_light" +} diff --git a/src/main/resources/assets/otemod/models/item/dirty_blue_pool_tile.json b/src/main/resources/assets/otemod/models/item/dirty_blue_pool_tile.json new file mode 100644 index 0000000..1d1cd57 --- /dev/null +++ b/src/main/resources/assets/otemod/models/item/dirty_blue_pool_tile.json @@ -0,0 +1,3 @@ +{ + "parent": "otemod:block/thresholds/pool/tiles/dirty_blue_pool_tile" +} diff --git a/src/main/resources/assets/otemod/models/item/dirty_blue_pool_tile_stairs.json b/src/main/resources/assets/otemod/models/item/dirty_blue_pool_tile_stairs.json new file mode 100644 index 0000000..3379eb3 --- /dev/null +++ b/src/main/resources/assets/otemod/models/item/dirty_blue_pool_tile_stairs.json @@ -0,0 +1,3 @@ +{ + "parent": "otemod:block/thresholds/pool/stairs/dirty_blue_pool_tile_stairs" +} diff --git a/src/main/resources/assets/otemod/models/item/dirty_pool_light.json b/src/main/resources/assets/otemod/models/item/dirty_pool_light.json new file mode 100644 index 0000000..91d353d --- /dev/null +++ b/src/main/resources/assets/otemod/models/item/dirty_pool_light.json @@ -0,0 +1,3 @@ +{ + "parent": "otemod:block/thresholds/pool/light/dirty_pool_light" +} diff --git a/src/main/resources/assets/otemod/models/item/dirty_pool_tile.json b/src/main/resources/assets/otemod/models/item/dirty_pool_tile.json new file mode 100644 index 0000000..597d5de --- /dev/null +++ b/src/main/resources/assets/otemod/models/item/dirty_pool_tile.json @@ -0,0 +1,3 @@ +{ + "parent": "otemod:block/thresholds/pool/tiles/dirty_pool_tile" +} diff --git a/src/main/resources/assets/otemod/models/item/dirty_pool_tile_stairs.json b/src/main/resources/assets/otemod/models/item/dirty_pool_tile_stairs.json new file mode 100644 index 0000000..ccf57bd --- /dev/null +++ b/src/main/resources/assets/otemod/models/item/dirty_pool_tile_stairs.json @@ -0,0 +1,3 @@ +{ + "parent": "otemod:block/thresholds/pool/stairs/dirty_pool_tile_stairs" +} diff --git a/src/main/resources/assets/otemod/models/item/dirty_red_pool_light.json b/src/main/resources/assets/otemod/models/item/dirty_red_pool_light.json new file mode 100644 index 0000000..a039472 --- /dev/null +++ b/src/main/resources/assets/otemod/models/item/dirty_red_pool_light.json @@ -0,0 +1,3 @@ +{ + "parent": "otemod:block/thresholds/pool/light/dirty_red_pool_light" +} diff --git a/src/main/resources/assets/otemod/models/item/dirty_red_pool_tile.json b/src/main/resources/assets/otemod/models/item/dirty_red_pool_tile.json new file mode 100644 index 0000000..9d48f17 --- /dev/null +++ b/src/main/resources/assets/otemod/models/item/dirty_red_pool_tile.json @@ -0,0 +1,3 @@ +{ + "parent": "otemod:block/thresholds/pool/tiles/dirty_red_pool_tile" +} diff --git a/src/main/resources/assets/otemod/models/item/dirty_red_pool_tile_stairs.json b/src/main/resources/assets/otemod/models/item/dirty_red_pool_tile_stairs.json new file mode 100644 index 0000000..2173809 --- /dev/null +++ b/src/main/resources/assets/otemod/models/item/dirty_red_pool_tile_stairs.json @@ -0,0 +1,3 @@ +{ + "parent": "otemod:block/thresholds/pool/stairs/dirty_red_pool_tile_stairs" +} diff --git a/src/main/resources/assets/otemod/models/item/filthy_blue_pool_light.json b/src/main/resources/assets/otemod/models/item/filthy_blue_pool_light.json new file mode 100644 index 0000000..5e5ec04 --- /dev/null +++ b/src/main/resources/assets/otemod/models/item/filthy_blue_pool_light.json @@ -0,0 +1,3 @@ +{ + "parent": "otemod:block/thresholds/pool/light/filthy_blue_pool_light" +} diff --git a/src/main/resources/assets/otemod/models/item/filthy_pool_light.json b/src/main/resources/assets/otemod/models/item/filthy_pool_light.json new file mode 100644 index 0000000..bec34f7 --- /dev/null +++ b/src/main/resources/assets/otemod/models/item/filthy_pool_light.json @@ -0,0 +1,3 @@ +{ + "parent": "otemod:block/thresholds/pool/light/filthy_pool_light" +} diff --git a/src/main/resources/assets/otemod/models/item/filthy_red_pool_light.json b/src/main/resources/assets/otemod/models/item/filthy_red_pool_light.json new file mode 100644 index 0000000..b2be50c --- /dev/null +++ b/src/main/resources/assets/otemod/models/item/filthy_red_pool_light.json @@ -0,0 +1,3 @@ +{ + "parent": "otemod:block/thresholds/pool/light/filthy_red_pool_light" +} diff --git a/src/main/resources/assets/otemod/models/item/pool_light.json b/src/main/resources/assets/otemod/models/item/pool_light.json new file mode 100644 index 0000000..8270f27 --- /dev/null +++ b/src/main/resources/assets/otemod/models/item/pool_light.json @@ -0,0 +1,3 @@ +{ + "parent": "otemod:block/thresholds/pool/light/pool_light" +} diff --git a/src/main/resources/assets/otemod/models/item/pool_tile.json b/src/main/resources/assets/otemod/models/item/pool_tile.json new file mode 100644 index 0000000..afb4abb --- /dev/null +++ b/src/main/resources/assets/otemod/models/item/pool_tile.json @@ -0,0 +1,3 @@ +{ + "parent": "otemod:block/thresholds/pool/tiles/pool_tile" +} diff --git a/src/main/resources/assets/otemod/models/item/pool_tile_stairs.json b/src/main/resources/assets/otemod/models/item/pool_tile_stairs.json new file mode 100644 index 0000000..2000b96 --- /dev/null +++ b/src/main/resources/assets/otemod/models/item/pool_tile_stairs.json @@ -0,0 +1,3 @@ +{ + "parent": "otemod:block/thresholds/pool/stairs/pool_tile_stairs" +} diff --git a/src/main/resources/assets/otemod/models/item/red_pool_light.json b/src/main/resources/assets/otemod/models/item/red_pool_light.json new file mode 100644 index 0000000..b94a945 --- /dev/null +++ b/src/main/resources/assets/otemod/models/item/red_pool_light.json @@ -0,0 +1,3 @@ +{ + "parent": "otemod:block/thresholds/pool/light/red_pool_light" +} diff --git a/src/main/resources/assets/otemod/models/item/red_pool_tile.json b/src/main/resources/assets/otemod/models/item/red_pool_tile.json new file mode 100644 index 0000000..3470c8b --- /dev/null +++ b/src/main/resources/assets/otemod/models/item/red_pool_tile.json @@ -0,0 +1,3 @@ +{ + "parent": "otemod:block/thresholds/pool/tiles/red_pool_tile" +} diff --git a/src/main/resources/assets/otemod/models/item/red_pool_tile_stairs.json b/src/main/resources/assets/otemod/models/item/red_pool_tile_stairs.json new file mode 100644 index 0000000..470acd4 --- /dev/null +++ b/src/main/resources/assets/otemod/models/item/red_pool_tile_stairs.json @@ -0,0 +1,3 @@ +{ + "parent": "otemod:block/thresholds/pool/stairs/red_pool_tile_stairs" +} diff --git a/src/main/resources/assets/otemod/textures/block/thresholds/hallway/tiles/blue_pool_light.png b/src/main/resources/assets/otemod/textures/block/thresholds/hallway/tiles/blue_pool_light.png new file mode 100644 index 0000000..eccc64a Binary files /dev/null and b/src/main/resources/assets/otemod/textures/block/thresholds/hallway/tiles/blue_pool_light.png differ diff --git a/src/main/resources/assets/otemod/textures/block/thresholds/hallway/tiles/blue_pool_tile.png b/src/main/resources/assets/otemod/textures/block/thresholds/hallway/tiles/blue_pool_tile.png new file mode 100644 index 0000000..2119b59 Binary files /dev/null and b/src/main/resources/assets/otemod/textures/block/thresholds/hallway/tiles/blue_pool_tile.png differ diff --git a/src/main/resources/assets/otemod/textures/block/thresholds/hallway/tiles/dark_pool_light.png b/src/main/resources/assets/otemod/textures/block/thresholds/hallway/tiles/dark_pool_light.png new file mode 100644 index 0000000..b132aae Binary files /dev/null and b/src/main/resources/assets/otemod/textures/block/thresholds/hallway/tiles/dark_pool_light.png differ diff --git a/src/main/resources/assets/otemod/textures/block/thresholds/hallway/tiles/dark_pool_tile.png b/src/main/resources/assets/otemod/textures/block/thresholds/hallway/tiles/dark_pool_tile.png new file mode 100644 index 0000000..1da9ed2 Binary files /dev/null and b/src/main/resources/assets/otemod/textures/block/thresholds/hallway/tiles/dark_pool_tile.png differ diff --git a/src/main/resources/assets/otemod/textures/block/thresholds/hallway/tiles/dirty_blue_pool_light.png b/src/main/resources/assets/otemod/textures/block/thresholds/hallway/tiles/dirty_blue_pool_light.png new file mode 100644 index 0000000..876eeba Binary files /dev/null and b/src/main/resources/assets/otemod/textures/block/thresholds/hallway/tiles/dirty_blue_pool_light.png differ diff --git a/src/main/resources/assets/otemod/textures/block/thresholds/hallway/tiles/dirty_blue_pool_light_dirty.png b/src/main/resources/assets/otemod/textures/block/thresholds/hallway/tiles/dirty_blue_pool_light_dirty.png new file mode 100644 index 0000000..906f9d6 Binary files /dev/null and b/src/main/resources/assets/otemod/textures/block/thresholds/hallway/tiles/dirty_blue_pool_light_dirty.png differ diff --git a/src/main/resources/assets/otemod/textures/block/thresholds/hallway/tiles/dirty_blue_pool_tile.png b/src/main/resources/assets/otemod/textures/block/thresholds/hallway/tiles/dirty_blue_pool_tile.png new file mode 100644 index 0000000..4b7ef9a Binary files /dev/null and b/src/main/resources/assets/otemod/textures/block/thresholds/hallway/tiles/dirty_blue_pool_tile.png differ diff --git a/src/main/resources/assets/otemod/textures/block/thresholds/hallway/tiles/dirty_pool_light.png b/src/main/resources/assets/otemod/textures/block/thresholds/hallway/tiles/dirty_pool_light.png new file mode 100644 index 0000000..4354b65 Binary files /dev/null and b/src/main/resources/assets/otemod/textures/block/thresholds/hallway/tiles/dirty_pool_light.png differ diff --git a/src/main/resources/assets/otemod/textures/block/thresholds/hallway/tiles/dirty_pool_light_dirty.png b/src/main/resources/assets/otemod/textures/block/thresholds/hallway/tiles/dirty_pool_light_dirty.png new file mode 100644 index 0000000..e8b6fb1 Binary files /dev/null and b/src/main/resources/assets/otemod/textures/block/thresholds/hallway/tiles/dirty_pool_light_dirty.png differ diff --git a/src/main/resources/assets/otemod/textures/block/thresholds/hallway/tiles/dirty_pool_tile.png b/src/main/resources/assets/otemod/textures/block/thresholds/hallway/tiles/dirty_pool_tile.png new file mode 100644 index 0000000..33dbfd8 Binary files /dev/null and b/src/main/resources/assets/otemod/textures/block/thresholds/hallway/tiles/dirty_pool_tile.png differ diff --git a/src/main/resources/assets/otemod/textures/block/thresholds/hallway/tiles/dirty_red_pool_light.png b/src/main/resources/assets/otemod/textures/block/thresholds/hallway/tiles/dirty_red_pool_light.png new file mode 100644 index 0000000..350c2a3 Binary files /dev/null and b/src/main/resources/assets/otemod/textures/block/thresholds/hallway/tiles/dirty_red_pool_light.png differ diff --git a/src/main/resources/assets/otemod/textures/block/thresholds/hallway/tiles/dirty_red_pool_light_dirty.png b/src/main/resources/assets/otemod/textures/block/thresholds/hallway/tiles/dirty_red_pool_light_dirty.png new file mode 100644 index 0000000..95281a5 Binary files /dev/null and b/src/main/resources/assets/otemod/textures/block/thresholds/hallway/tiles/dirty_red_pool_light_dirty.png differ diff --git a/src/main/resources/assets/otemod/textures/block/thresholds/hallway/tiles/dirty_red_pool_tile.png b/src/main/resources/assets/otemod/textures/block/thresholds/hallway/tiles/dirty_red_pool_tile.png new file mode 100644 index 0000000..3e74f1e Binary files /dev/null and b/src/main/resources/assets/otemod/textures/block/thresholds/hallway/tiles/dirty_red_pool_tile.png differ diff --git a/src/main/resources/assets/otemod/textures/block/thresholds/hallway/tiles/pool_light.png b/src/main/resources/assets/otemod/textures/block/thresholds/hallway/tiles/pool_light.png new file mode 100644 index 0000000..44e1c24 Binary files /dev/null and b/src/main/resources/assets/otemod/textures/block/thresholds/hallway/tiles/pool_light.png differ diff --git a/src/main/resources/assets/otemod/textures/block/thresholds/hallway/tiles/pool_tile.png b/src/main/resources/assets/otemod/textures/block/thresholds/hallway/tiles/pool_tile.png new file mode 100644 index 0000000..2c6e1de Binary files /dev/null and b/src/main/resources/assets/otemod/textures/block/thresholds/hallway/tiles/pool_tile.png differ diff --git a/src/main/resources/assets/otemod/textures/block/thresholds/hallway/tiles/red_pool_light.png b/src/main/resources/assets/otemod/textures/block/thresholds/hallway/tiles/red_pool_light.png new file mode 100644 index 0000000..b3ff099 Binary files /dev/null and b/src/main/resources/assets/otemod/textures/block/thresholds/hallway/tiles/red_pool_light.png differ diff --git a/src/main/resources/assets/otemod/textures/block/thresholds/hallway/tiles/red_pool_tile.png b/src/main/resources/assets/otemod/textures/block/thresholds/hallway/tiles/red_pool_tile.png new file mode 100644 index 0000000..b55d0c5 Binary files /dev/null and b/src/main/resources/assets/otemod/textures/block/thresholds/hallway/tiles/red_pool_tile.png differ diff --git a/src/main/resources/data/otemod/loot_tables/blocks/cyan.json b/src/main/resources/data/otemod/loot_tables/blocks/thresholds/hallways/cyan/cyan.json similarity index 100% rename from src/main/resources/data/otemod/loot_tables/blocks/cyan.json rename to src/main/resources/data/otemod/loot_tables/blocks/thresholds/hallways/cyan/cyan.json diff --git a/src/main/resources/data/otemod/loot_tables/blocks/cyan_stairs.json b/src/main/resources/data/otemod/loot_tables/blocks/thresholds/hallways/cyan/cyan_stairs.json similarity index 100% rename from src/main/resources/data/otemod/loot_tables/blocks/cyan_stairs.json rename to src/main/resources/data/otemod/loot_tables/blocks/thresholds/hallways/cyan/cyan_stairs.json diff --git a/src/main/resources/data/otemod/loot_tables/blocks/cyan_tile.json b/src/main/resources/data/otemod/loot_tables/blocks/thresholds/hallways/cyan/cyan_tile.json similarity index 100% rename from src/main/resources/data/otemod/loot_tables/blocks/cyan_tile.json rename to src/main/resources/data/otemod/loot_tables/blocks/thresholds/hallways/cyan/cyan_tile.json diff --git a/src/main/resources/data/otemod/loot_tables/blocks/cyan_tile_br.json b/src/main/resources/data/otemod/loot_tables/blocks/thresholds/hallways/cyan/cyan_tile_br.json similarity index 100% rename from src/main/resources/data/otemod/loot_tables/blocks/cyan_tile_br.json rename to src/main/resources/data/otemod/loot_tables/blocks/thresholds/hallways/cyan/cyan_tile_br.json diff --git a/src/main/resources/data/otemod/loot_tables/blocks/cyan_tile_to_wall.json b/src/main/resources/data/otemod/loot_tables/blocks/thresholds/hallways/cyan/cyan_tile_to_wall.json similarity index 100% rename from src/main/resources/data/otemod/loot_tables/blocks/cyan_tile_to_wall.json rename to src/main/resources/data/otemod/loot_tables/blocks/thresholds/hallways/cyan/cyan_tile_to_wall.json diff --git a/src/main/resources/data/otemod/loot_tables/blocks/cyan_wall_variant_1.json b/src/main/resources/data/otemod/loot_tables/blocks/thresholds/hallways/cyan/cyan_wall_variant_1.json similarity index 100% rename from src/main/resources/data/otemod/loot_tables/blocks/cyan_wall_variant_1.json rename to src/main/resources/data/otemod/loot_tables/blocks/thresholds/hallways/cyan/cyan_wall_variant_1.json diff --git a/src/main/resources/data/otemod/loot_tables/blocks/cyan_wall_variant_2.json b/src/main/resources/data/otemod/loot_tables/blocks/thresholds/hallways/cyan/cyan_wall_variant_2.json similarity index 100% rename from src/main/resources/data/otemod/loot_tables/blocks/cyan_wall_variant_2.json rename to src/main/resources/data/otemod/loot_tables/blocks/thresholds/hallways/cyan/cyan_wall_variant_2.json diff --git a/src/main/resources/data/otemod/loot_tables/blocks/lime.json b/src/main/resources/data/otemod/loot_tables/blocks/thresholds/hallways/lime/lime.json similarity index 100% rename from src/main/resources/data/otemod/loot_tables/blocks/lime.json rename to src/main/resources/data/otemod/loot_tables/blocks/thresholds/hallways/lime/lime.json diff --git a/src/main/resources/data/otemod/loot_tables/blocks/lime_stairs.json b/src/main/resources/data/otemod/loot_tables/blocks/thresholds/hallways/lime/lime_stairs.json similarity index 100% rename from src/main/resources/data/otemod/loot_tables/blocks/lime_stairs.json rename to src/main/resources/data/otemod/loot_tables/blocks/thresholds/hallways/lime/lime_stairs.json diff --git a/src/main/resources/data/otemod/loot_tables/blocks/lime_tile.json b/src/main/resources/data/otemod/loot_tables/blocks/thresholds/hallways/lime/lime_tile.json similarity index 100% rename from src/main/resources/data/otemod/loot_tables/blocks/lime_tile.json rename to src/main/resources/data/otemod/loot_tables/blocks/thresholds/hallways/lime/lime_tile.json diff --git a/src/main/resources/data/otemod/loot_tables/blocks/lime_tile_br.json b/src/main/resources/data/otemod/loot_tables/blocks/thresholds/hallways/lime/lime_tile_br.json similarity index 100% rename from src/main/resources/data/otemod/loot_tables/blocks/lime_tile_br.json rename to src/main/resources/data/otemod/loot_tables/blocks/thresholds/hallways/lime/lime_tile_br.json diff --git a/src/main/resources/data/otemod/loot_tables/blocks/lime_tile_to_wall.json b/src/main/resources/data/otemod/loot_tables/blocks/thresholds/hallways/lime/lime_tile_to_wall.json similarity index 100% rename from src/main/resources/data/otemod/loot_tables/blocks/lime_tile_to_wall.json rename to src/main/resources/data/otemod/loot_tables/blocks/thresholds/hallways/lime/lime_tile_to_wall.json diff --git a/src/main/resources/data/otemod/loot_tables/blocks/lime_wall_variant_1.json b/src/main/resources/data/otemod/loot_tables/blocks/thresholds/hallways/lime/lime_wall_variant_1.json similarity index 100% rename from src/main/resources/data/otemod/loot_tables/blocks/lime_wall_variant_1.json rename to src/main/resources/data/otemod/loot_tables/blocks/thresholds/hallways/lime/lime_wall_variant_1.json diff --git a/src/main/resources/data/otemod/loot_tables/blocks/lime_wall_variant_2.json b/src/main/resources/data/otemod/loot_tables/blocks/thresholds/hallways/lime/lime_wall_variant_2.json similarity index 100% rename from src/main/resources/data/otemod/loot_tables/blocks/lime_wall_variant_2.json rename to src/main/resources/data/otemod/loot_tables/blocks/thresholds/hallways/lime/lime_wall_variant_2.json diff --git a/src/main/resources/data/otemod/loot_tables/blocks/blood_red.json b/src/main/resources/data/otemod/loot_tables/blocks/thresholds/hallways/red/blood_red.json similarity index 100% rename from src/main/resources/data/otemod/loot_tables/blocks/blood_red.json rename to src/main/resources/data/otemod/loot_tables/blocks/thresholds/hallways/red/blood_red.json diff --git a/src/main/resources/data/otemod/loot_tables/blocks/red_stairs.json b/src/main/resources/data/otemod/loot_tables/blocks/thresholds/hallways/red/red_stairs.json similarity index 100% rename from src/main/resources/data/otemod/loot_tables/blocks/red_stairs.json rename to src/main/resources/data/otemod/loot_tables/blocks/thresholds/hallways/red/red_stairs.json diff --git a/src/main/resources/data/otemod/loot_tables/blocks/red_tile.json b/src/main/resources/data/otemod/loot_tables/blocks/thresholds/hallways/red/red_tile.json similarity index 100% rename from src/main/resources/data/otemod/loot_tables/blocks/red_tile.json rename to src/main/resources/data/otemod/loot_tables/blocks/thresholds/hallways/red/red_tile.json diff --git a/src/main/resources/data/otemod/loot_tables/blocks/red_tile_br.json b/src/main/resources/data/otemod/loot_tables/blocks/thresholds/hallways/red/red_tile_br.json similarity index 100% rename from src/main/resources/data/otemod/loot_tables/blocks/red_tile_br.json rename to src/main/resources/data/otemod/loot_tables/blocks/thresholds/hallways/red/red_tile_br.json diff --git a/src/main/resources/data/otemod/loot_tables/blocks/red_tile_to_wall.json b/src/main/resources/data/otemod/loot_tables/blocks/thresholds/hallways/red/red_tile_to_wall.json similarity index 100% rename from src/main/resources/data/otemod/loot_tables/blocks/red_tile_to_wall.json rename to src/main/resources/data/otemod/loot_tables/blocks/thresholds/hallways/red/red_tile_to_wall.json diff --git a/src/main/resources/data/otemod/loot_tables/blocks/red_wall_variant_1.json b/src/main/resources/data/otemod/loot_tables/blocks/thresholds/hallways/red/red_wall_variant_1.json similarity index 100% rename from src/main/resources/data/otemod/loot_tables/blocks/red_wall_variant_1.json rename to src/main/resources/data/otemod/loot_tables/blocks/thresholds/hallways/red/red_wall_variant_1.json diff --git a/src/main/resources/data/otemod/loot_tables/blocks/red_wall_variant_2.json b/src/main/resources/data/otemod/loot_tables/blocks/thresholds/hallways/red/red_wall_variant_2.json similarity index 100% rename from src/main/resources/data/otemod/loot_tables/blocks/red_wall_variant_2.json rename to src/main/resources/data/otemod/loot_tables/blocks/thresholds/hallways/red/red_wall_variant_2.json diff --git a/src/main/resources/data/otemod/loot_tables/blocks/thresholds/pool/light/blue_pool_light.json b/src/main/resources/data/otemod/loot_tables/blocks/thresholds/pool/light/blue_pool_light.json new file mode 100644 index 0000000..ff082f1 --- /dev/null +++ b/src/main/resources/data/otemod/loot_tables/blocks/thresholds/pool/light/blue_pool_light.json @@ -0,0 +1,14 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "name": "otemod:blue_pool_light" + } + ] + } + ] +} diff --git a/src/main/resources/data/otemod/loot_tables/blocks/thresholds/pool/light/dark_pool_light.json b/src/main/resources/data/otemod/loot_tables/blocks/thresholds/pool/light/dark_pool_light.json new file mode 100644 index 0000000..2ff4dea --- /dev/null +++ b/src/main/resources/data/otemod/loot_tables/blocks/thresholds/pool/light/dark_pool_light.json @@ -0,0 +1,14 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "name": "otemod:dark_pool_light" + } + ] + } + ] +} diff --git a/src/main/resources/data/otemod/loot_tables/blocks/thresholds/pool/light/dirty_blue_pool_light.json b/src/main/resources/data/otemod/loot_tables/blocks/thresholds/pool/light/dirty_blue_pool_light.json new file mode 100644 index 0000000..b7b1015 --- /dev/null +++ b/src/main/resources/data/otemod/loot_tables/blocks/thresholds/pool/light/dirty_blue_pool_light.json @@ -0,0 +1,14 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "name": "otemod:dirty_blue_pool_light" + } + ] + } + ] +} diff --git a/src/main/resources/data/otemod/loot_tables/blocks/thresholds/pool/light/dirty_pool_light.json b/src/main/resources/data/otemod/loot_tables/blocks/thresholds/pool/light/dirty_pool_light.json new file mode 100644 index 0000000..f777816 --- /dev/null +++ b/src/main/resources/data/otemod/loot_tables/blocks/thresholds/pool/light/dirty_pool_light.json @@ -0,0 +1,14 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "name": "otemod:dirty_pool_light" + } + ] + } + ] +} diff --git a/src/main/resources/data/otemod/loot_tables/blocks/thresholds/pool/light/dirty_red_pool_light.json b/src/main/resources/data/otemod/loot_tables/blocks/thresholds/pool/light/dirty_red_pool_light.json new file mode 100644 index 0000000..412de08 --- /dev/null +++ b/src/main/resources/data/otemod/loot_tables/blocks/thresholds/pool/light/dirty_red_pool_light.json @@ -0,0 +1,14 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "name": "otemod:dirty_red_pool_light" + } + ] + } + ] +} diff --git a/src/main/resources/data/otemod/loot_tables/blocks/thresholds/pool/light/filthy_blue_pool_light.json b/src/main/resources/data/otemod/loot_tables/blocks/thresholds/pool/light/filthy_blue_pool_light.json new file mode 100644 index 0000000..1b8d859 --- /dev/null +++ b/src/main/resources/data/otemod/loot_tables/blocks/thresholds/pool/light/filthy_blue_pool_light.json @@ -0,0 +1,14 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "name": "otemod:filthy_blue_pool_light" + } + ] + } + ] +} diff --git a/src/main/resources/data/otemod/loot_tables/blocks/thresholds/pool/light/filthy_pool_light.json b/src/main/resources/data/otemod/loot_tables/blocks/thresholds/pool/light/filthy_pool_light.json new file mode 100644 index 0000000..b20edd1 --- /dev/null +++ b/src/main/resources/data/otemod/loot_tables/blocks/thresholds/pool/light/filthy_pool_light.json @@ -0,0 +1,14 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "name": "otemod:filthy_pool_light" + } + ] + } + ] +} diff --git a/src/main/resources/data/otemod/loot_tables/blocks/thresholds/pool/light/filthy_red_pool_light.json b/src/main/resources/data/otemod/loot_tables/blocks/thresholds/pool/light/filthy_red_pool_light.json new file mode 100644 index 0000000..66453f1 --- /dev/null +++ b/src/main/resources/data/otemod/loot_tables/blocks/thresholds/pool/light/filthy_red_pool_light.json @@ -0,0 +1,14 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "name": "otemod:filthy_red_pool_light" + } + ] + } + ] +} diff --git a/src/main/resources/data/otemod/loot_tables/blocks/thresholds/pool/light/pool_light.json b/src/main/resources/data/otemod/loot_tables/blocks/thresholds/pool/light/pool_light.json new file mode 100644 index 0000000..8df89e6 --- /dev/null +++ b/src/main/resources/data/otemod/loot_tables/blocks/thresholds/pool/light/pool_light.json @@ -0,0 +1,14 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "name": "otemod:pool_light" + } + ] + } + ] +} diff --git a/src/main/resources/data/otemod/loot_tables/blocks/thresholds/pool/light/red_pool_light.json b/src/main/resources/data/otemod/loot_tables/blocks/thresholds/pool/light/red_pool_light.json new file mode 100644 index 0000000..9e80716 --- /dev/null +++ b/src/main/resources/data/otemod/loot_tables/blocks/thresholds/pool/light/red_pool_light.json @@ -0,0 +1,14 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "name": "otemod:red_pool_light" + } + ] + } + ] +} diff --git a/src/main/resources/data/otemod/loot_tables/blocks/thresholds/pool/stairs/blue_pool_tile_stairs.json b/src/main/resources/data/otemod/loot_tables/blocks/thresholds/pool/stairs/blue_pool_tile_stairs.json new file mode 100644 index 0000000..25eef86 --- /dev/null +++ b/src/main/resources/data/otemod/loot_tables/blocks/thresholds/pool/stairs/blue_pool_tile_stairs.json @@ -0,0 +1,14 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "name": "otemod:blue_pool_tile_stairs" + } + ] + } + ] +} diff --git a/src/main/resources/data/otemod/loot_tables/blocks/thresholds/pool/stairs/dark_pool_tile_stairs.json b/src/main/resources/data/otemod/loot_tables/blocks/thresholds/pool/stairs/dark_pool_tile_stairs.json new file mode 100644 index 0000000..cab48ba --- /dev/null +++ b/src/main/resources/data/otemod/loot_tables/blocks/thresholds/pool/stairs/dark_pool_tile_stairs.json @@ -0,0 +1,14 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "name": "otemod:dark_pool_tile_stairs" + } + ] + } + ] +} diff --git a/src/main/resources/data/otemod/loot_tables/blocks/thresholds/pool/stairs/dirty_blue_pool_tile_stairs.json b/src/main/resources/data/otemod/loot_tables/blocks/thresholds/pool/stairs/dirty_blue_pool_tile_stairs.json new file mode 100644 index 0000000..a1c9444 --- /dev/null +++ b/src/main/resources/data/otemod/loot_tables/blocks/thresholds/pool/stairs/dirty_blue_pool_tile_stairs.json @@ -0,0 +1,14 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "name": "otemod:dirty_blue_pool_tile_stairs" + } + ] + } + ] +} diff --git a/src/main/resources/data/otemod/loot_tables/blocks/thresholds/pool/stairs/dirty_pool_tile_stairs.json b/src/main/resources/data/otemod/loot_tables/blocks/thresholds/pool/stairs/dirty_pool_tile_stairs.json new file mode 100644 index 0000000..19564f9 --- /dev/null +++ b/src/main/resources/data/otemod/loot_tables/blocks/thresholds/pool/stairs/dirty_pool_tile_stairs.json @@ -0,0 +1,14 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "name": "otemod:dirty_pool_tile_stairs" + } + ] + } + ] +} diff --git a/src/main/resources/data/otemod/loot_tables/blocks/thresholds/pool/stairs/dirty_red_pool_tile_stairs.json b/src/main/resources/data/otemod/loot_tables/blocks/thresholds/pool/stairs/dirty_red_pool_tile_stairs.json new file mode 100644 index 0000000..5815e8a --- /dev/null +++ b/src/main/resources/data/otemod/loot_tables/blocks/thresholds/pool/stairs/dirty_red_pool_tile_stairs.json @@ -0,0 +1,14 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "name": "otemod:dirty_red_pool_tile_stairs" + } + ] + } + ] +} diff --git a/src/main/resources/data/otemod/loot_tables/blocks/thresholds/pool/stairs/pool_tile_stairs.json b/src/main/resources/data/otemod/loot_tables/blocks/thresholds/pool/stairs/pool_tile_stairs.json new file mode 100644 index 0000000..83e7778 --- /dev/null +++ b/src/main/resources/data/otemod/loot_tables/blocks/thresholds/pool/stairs/pool_tile_stairs.json @@ -0,0 +1,14 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "name": "otemod:pool_tile_stairs" + } + ] + } + ] +} diff --git a/src/main/resources/data/otemod/loot_tables/blocks/thresholds/pool/stairs/red_pool_tile_stairs.json b/src/main/resources/data/otemod/loot_tables/blocks/thresholds/pool/stairs/red_pool_tile_stairs.json new file mode 100644 index 0000000..cd5964e --- /dev/null +++ b/src/main/resources/data/otemod/loot_tables/blocks/thresholds/pool/stairs/red_pool_tile_stairs.json @@ -0,0 +1,14 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "name": "otemod:red_pool_tile_stairs" + } + ] + } + ] +} diff --git a/src/main/resources/data/otemod/loot_tables/blocks/thresholds/pool/tiles/blue_pool_tile.json b/src/main/resources/data/otemod/loot_tables/blocks/thresholds/pool/tiles/blue_pool_tile.json new file mode 100644 index 0000000..d8ad3a9 --- /dev/null +++ b/src/main/resources/data/otemod/loot_tables/blocks/thresholds/pool/tiles/blue_pool_tile.json @@ -0,0 +1,14 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "name": "otemod:blue_pool_tile" + } + ] + } + ] +} diff --git a/src/main/resources/data/otemod/loot_tables/blocks/thresholds/pool/tiles/dark_pool_tile.json b/src/main/resources/data/otemod/loot_tables/blocks/thresholds/pool/tiles/dark_pool_tile.json new file mode 100644 index 0000000..d1263a3 --- /dev/null +++ b/src/main/resources/data/otemod/loot_tables/blocks/thresholds/pool/tiles/dark_pool_tile.json @@ -0,0 +1,14 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "name": "otemod:dark_pool_tile" + } + ] + } + ] +} diff --git a/src/main/resources/data/otemod/loot_tables/blocks/thresholds/pool/tiles/dirty_blue_pool_tile.json b/src/main/resources/data/otemod/loot_tables/blocks/thresholds/pool/tiles/dirty_blue_pool_tile.json new file mode 100644 index 0000000..76fbf26 --- /dev/null +++ b/src/main/resources/data/otemod/loot_tables/blocks/thresholds/pool/tiles/dirty_blue_pool_tile.json @@ -0,0 +1,14 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "name": "otemod:dirty_blue_pool_tile" + } + ] + } + ] +} diff --git a/src/main/resources/data/otemod/loot_tables/blocks/thresholds/pool/tiles/dirty_pool_tile.json b/src/main/resources/data/otemod/loot_tables/blocks/thresholds/pool/tiles/dirty_pool_tile.json new file mode 100644 index 0000000..bc4dc34 --- /dev/null +++ b/src/main/resources/data/otemod/loot_tables/blocks/thresholds/pool/tiles/dirty_pool_tile.json @@ -0,0 +1,14 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "name": "otemod:dirty_pool_tile" + } + ] + } + ] +} diff --git a/src/main/resources/data/otemod/loot_tables/blocks/thresholds/pool/tiles/dirty_red_pool_tile.json b/src/main/resources/data/otemod/loot_tables/blocks/thresholds/pool/tiles/dirty_red_pool_tile.json new file mode 100644 index 0000000..2e681f9 --- /dev/null +++ b/src/main/resources/data/otemod/loot_tables/blocks/thresholds/pool/tiles/dirty_red_pool_tile.json @@ -0,0 +1,14 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "name": "otemod:dirty_red_pool_tile" + } + ] + } + ] +} diff --git a/src/main/resources/data/otemod/loot_tables/blocks/thresholds/pool/tiles/pool_tile.json b/src/main/resources/data/otemod/loot_tables/blocks/thresholds/pool/tiles/pool_tile.json new file mode 100644 index 0000000..af86f52 --- /dev/null +++ b/src/main/resources/data/otemod/loot_tables/blocks/thresholds/pool/tiles/pool_tile.json @@ -0,0 +1,14 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "name": "otemod:pool_tile" + } + ] + } + ] +} diff --git a/src/main/resources/data/otemod/loot_tables/blocks/thresholds/pool/tiles/red_pool_tile.json b/src/main/resources/data/otemod/loot_tables/blocks/thresholds/pool/tiles/red_pool_tile.json new file mode 100644 index 0000000..2c01cd0 --- /dev/null +++ b/src/main/resources/data/otemod/loot_tables/blocks/thresholds/pool/tiles/red_pool_tile.json @@ -0,0 +1,14 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "name": "otemod:red_pool_tile" + } + ] + } + ] +} diff --git a/src/main/resources/data/otemod/recipes/thresholds/decorative/cyan.json b/src/main/resources/data/otemod/recipes/thresholds/decorative/cyan/cyan.json similarity index 100% rename from src/main/resources/data/otemod/recipes/thresholds/decorative/cyan.json rename to src/main/resources/data/otemod/recipes/thresholds/decorative/cyan/cyan.json diff --git a/src/main/resources/data/otemod/recipes/thresholds/decorative/cyan_stairs.json b/src/main/resources/data/otemod/recipes/thresholds/decorative/cyan/cyan_stairs.json similarity index 100% rename from src/main/resources/data/otemod/recipes/thresholds/decorative/cyan_stairs.json rename to src/main/resources/data/otemod/recipes/thresholds/decorative/cyan/cyan_stairs.json diff --git a/src/main/resources/data/otemod/recipes/thresholds/decorative/cyan_tile.json b/src/main/resources/data/otemod/recipes/thresholds/decorative/cyan/cyan_tile.json similarity index 100% rename from src/main/resources/data/otemod/recipes/thresholds/decorative/cyan_tile.json rename to src/main/resources/data/otemod/recipes/thresholds/decorative/cyan/cyan_tile.json diff --git a/src/main/resources/data/otemod/recipes/thresholds/decorative/cyan_tile_br.json b/src/main/resources/data/otemod/recipes/thresholds/decorative/cyan/cyan_tile_br.json similarity index 100% rename from src/main/resources/data/otemod/recipes/thresholds/decorative/cyan_tile_br.json rename to src/main/resources/data/otemod/recipes/thresholds/decorative/cyan/cyan_tile_br.json diff --git a/src/main/resources/data/otemod/recipes/thresholds/decorative/cyan_tile_to_wall.json b/src/main/resources/data/otemod/recipes/thresholds/decorative/cyan/cyan_tile_to_wall.json similarity index 100% rename from src/main/resources/data/otemod/recipes/thresholds/decorative/cyan_tile_to_wall.json rename to src/main/resources/data/otemod/recipes/thresholds/decorative/cyan/cyan_tile_to_wall.json diff --git a/src/main/resources/data/otemod/recipes/thresholds/decorative/cyan_wall_variant_1.json b/src/main/resources/data/otemod/recipes/thresholds/decorative/cyan/cyan_wall_variant_1.json similarity index 100% rename from src/main/resources/data/otemod/recipes/thresholds/decorative/cyan_wall_variant_1.json rename to src/main/resources/data/otemod/recipes/thresholds/decorative/cyan/cyan_wall_variant_1.json diff --git a/src/main/resources/data/otemod/recipes/thresholds/decorative/cyan_wall_variant_2.json b/src/main/resources/data/otemod/recipes/thresholds/decorative/cyan/cyan_wall_variant_2.json similarity index 100% rename from src/main/resources/data/otemod/recipes/thresholds/decorative/cyan_wall_variant_2.json rename to src/main/resources/data/otemod/recipes/thresholds/decorative/cyan/cyan_wall_variant_2.json diff --git a/src/main/resources/data/otemod/recipes/thresholds/decorative/lime.json b/src/main/resources/data/otemod/recipes/thresholds/decorative/lime/lime.json similarity index 100% rename from src/main/resources/data/otemod/recipes/thresholds/decorative/lime.json rename to src/main/resources/data/otemod/recipes/thresholds/decorative/lime/lime.json diff --git a/src/main/resources/data/otemod/recipes/thresholds/decorative/lime_stairs.json b/src/main/resources/data/otemod/recipes/thresholds/decorative/lime/lime_stairs.json similarity index 100% rename from src/main/resources/data/otemod/recipes/thresholds/decorative/lime_stairs.json rename to src/main/resources/data/otemod/recipes/thresholds/decorative/lime/lime_stairs.json diff --git a/src/main/resources/data/otemod/recipes/thresholds/decorative/lime_tile.json b/src/main/resources/data/otemod/recipes/thresholds/decorative/lime/lime_tile.json similarity index 100% rename from src/main/resources/data/otemod/recipes/thresholds/decorative/lime_tile.json rename to src/main/resources/data/otemod/recipes/thresholds/decorative/lime/lime_tile.json diff --git a/src/main/resources/data/otemod/recipes/thresholds/decorative/lime_tile_br.json b/src/main/resources/data/otemod/recipes/thresholds/decorative/lime/lime_tile_br.json similarity index 100% rename from src/main/resources/data/otemod/recipes/thresholds/decorative/lime_tile_br.json rename to src/main/resources/data/otemod/recipes/thresholds/decorative/lime/lime_tile_br.json diff --git a/src/main/resources/data/otemod/recipes/thresholds/decorative/lime_tile_to_wall.json b/src/main/resources/data/otemod/recipes/thresholds/decorative/lime/lime_tile_to_wall.json similarity index 100% rename from src/main/resources/data/otemod/recipes/thresholds/decorative/lime_tile_to_wall.json rename to src/main/resources/data/otemod/recipes/thresholds/decorative/lime/lime_tile_to_wall.json diff --git a/src/main/resources/data/otemod/recipes/thresholds/decorative/lime_wall_variant_1.json b/src/main/resources/data/otemod/recipes/thresholds/decorative/lime/lime_wall_variant_1.json similarity index 100% rename from src/main/resources/data/otemod/recipes/thresholds/decorative/lime_wall_variant_1.json rename to src/main/resources/data/otemod/recipes/thresholds/decorative/lime/lime_wall_variant_1.json diff --git a/src/main/resources/data/otemod/recipes/thresholds/decorative/lime_wall_variant_2.json b/src/main/resources/data/otemod/recipes/thresholds/decorative/lime/lime_wall_variant_2.json similarity index 100% rename from src/main/resources/data/otemod/recipes/thresholds/decorative/lime_wall_variant_2.json rename to src/main/resources/data/otemod/recipes/thresholds/decorative/lime/lime_wall_variant_2.json diff --git a/src/main/resources/data/otemod/recipes/thresholds/decorative/pool/blue/blue_pool_light.json b/src/main/resources/data/otemod/recipes/thresholds/decorative/pool/blue/blue_pool_light.json new file mode 100644 index 0000000..822785e --- /dev/null +++ b/src/main/resources/data/otemod/recipes/thresholds/decorative/pool/blue/blue_pool_light.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:crafting_shaped", + "pattern": [ + "AAA", + "ABA", + "AAA" + ], + "key": { + "A": { + "item": "otemod:blue_pool_tiles" + }, + "B": { + "item": "minecraft:glowstone" + } + }, + "result": { + "item": "otemod:blue_pool_light", + "count": 4 + } +} diff --git a/src/main/resources/data/otemod/recipes/thresholds/decorative/pool/blue/blue_pool_tile_stairs.json b/src/main/resources/data/otemod/recipes/thresholds/decorative/pool/blue/blue_pool_tile_stairs.json new file mode 100644 index 0000000..82d10a4 --- /dev/null +++ b/src/main/resources/data/otemod/recipes/thresholds/decorative/pool/blue/blue_pool_tile_stairs.json @@ -0,0 +1,17 @@ +{ + "type": "minecraft:crafting_shaped", + "pattern": [ + "A ", + "AA ", + "AAA" + ], + "key": { + "A": { + "item": "otemod:blue_pool_tiles" + } + }, + "result": { + "item": "otemod:blue_pool_tile_stairs", + "count": 4 + } +} diff --git a/src/main/resources/data/otemod/recipes/thresholds/decorative/pool/blue/blue_pool_tiles.json b/src/main/resources/data/otemod/recipes/thresholds/decorative/pool/blue/blue_pool_tiles.json new file mode 100644 index 0000000..f23a382 --- /dev/null +++ b/src/main/resources/data/otemod/recipes/thresholds/decorative/pool/blue/blue_pool_tiles.json @@ -0,0 +1,23 @@ +{ + "type": "minecraft:crafting_shaped", + "pattern": [ + "CAB", + "ABC", + "BAC" + ], + "key": { + "A": { + "item": "minecraft:white_concrete" + }, + "B": { + "item": "minecraft:blue_terracotta" + }, + "C": { + "item": "minecraft:cyan_terracotta" + } + }, + "result": { + "item": "otemod:blue_pool_tiles", + "count": 4 + } +} diff --git a/src/main/resources/data/otemod/recipes/thresholds/decorative/pool/blue/dark_pool_tile_stairs.json b/src/main/resources/data/otemod/recipes/thresholds/decorative/pool/blue/dark_pool_tile_stairs.json new file mode 100644 index 0000000..1f9b77c --- /dev/null +++ b/src/main/resources/data/otemod/recipes/thresholds/decorative/pool/blue/dark_pool_tile_stairs.json @@ -0,0 +1,17 @@ +{ + "type": "minecraft:crafting_shaped", + "pattern": [ + "A ", + "AA ", + "AAA" + ], + "key": { + "A": { + "item": "otemod:dark_pool_tiles" + } + }, + "result": { + "item": "otemod:dark_pool_tile_stairs", + "count": 4 + } +} diff --git a/src/main/resources/data/otemod/recipes/thresholds/decorative/pool/blue/dark_pool_tiles.json b/src/main/resources/data/otemod/recipes/thresholds/decorative/pool/blue/dark_pool_tiles.json new file mode 100644 index 0000000..28e0725 --- /dev/null +++ b/src/main/resources/data/otemod/recipes/thresholds/decorative/pool/blue/dark_pool_tiles.json @@ -0,0 +1,19 @@ +{ + "type": "minecraft:crafting_shaped", + "pattern": [ + "AB", + "BA" + ], + "key": { + "A": { + "item": "minecraft:white_concrete" + }, + "B": { + "item": "minecraft:blue_terracotta" + } + }, + "result": { + "item": "otemod:dark_pool_tiles", + "count": 4 + } +} diff --git a/src/main/resources/data/otemod/recipes/thresholds/decorative/pool/blue/dirty_blue_pool_light.json b/src/main/resources/data/otemod/recipes/thresholds/decorative/pool/blue/dirty_blue_pool_light.json new file mode 100644 index 0000000..0f86a7b --- /dev/null +++ b/src/main/resources/data/otemod/recipes/thresholds/decorative/pool/blue/dirty_blue_pool_light.json @@ -0,0 +1,15 @@ +{ + "type": "minecraft:crafting_shapeless", + "ingredients": [ + { + "item": "otemod:blue_pool_light" + }, + { + "item": "minecraft:slime_ball" + } + ], + "result": { + "item": "otemod:dirty_blue_pool_light", + "count": 1 + } +} diff --git a/src/main/resources/data/otemod/recipes/thresholds/decorative/pool/blue/dirty_blue_pool_tile_stairs.json b/src/main/resources/data/otemod/recipes/thresholds/decorative/pool/blue/dirty_blue_pool_tile_stairs.json new file mode 100644 index 0000000..be57954 --- /dev/null +++ b/src/main/resources/data/otemod/recipes/thresholds/decorative/pool/blue/dirty_blue_pool_tile_stairs.json @@ -0,0 +1,17 @@ +{ + "type": "minecraft:crafting_shaped", + "pattern": [ + "A ", + "AA ", + "AAA" + ], + "key": { + "A": { + "item": "otemod:dirty_blue_pool_tiles" + } + }, + "result": { + "item": "otemod:dirty_blue_pool_tile_stairs", + "count": 4 + } +} diff --git a/src/main/resources/data/otemod/recipes/thresholds/decorative/pool/blue/dirty_blue_pool_tiles.json b/src/main/resources/data/otemod/recipes/thresholds/decorative/pool/blue/dirty_blue_pool_tiles.json new file mode 100644 index 0000000..c7d2fcf --- /dev/null +++ b/src/main/resources/data/otemod/recipes/thresholds/decorative/pool/blue/dirty_blue_pool_tiles.json @@ -0,0 +1,15 @@ +{ + "type": "minecraft:crafting_shapeless", + "ingredients": [ + { + "item": "minecraft:slime_ball" + }, + { + "item": "otemod:blue_pool_tiles" + } + ], + "result": { + "item": "otemod:dirty_blue_pool_tiles", + "count": 4 + } +} diff --git a/src/main/resources/data/otemod/recipes/thresholds/decorative/pool/blue/filthy_blue_pool_light.json b/src/main/resources/data/otemod/recipes/thresholds/decorative/pool/blue/filthy_blue_pool_light.json new file mode 100644 index 0000000..e42c6a1 --- /dev/null +++ b/src/main/resources/data/otemod/recipes/thresholds/decorative/pool/blue/filthy_blue_pool_light.json @@ -0,0 +1,15 @@ +{ + "type": "minecraft:crafting_shapeless", + "ingredients": [ + { + "item": "otemod:dirty_blue_pool_light" + }, + { + "item": "minecraft:slime_block" + } + ], + "result": { + "item": "otemod:filthy_blue_pool_light", + "count": 1 + } +} diff --git a/src/main/resources/data/otemod/recipes/thresholds/decorative/pool/clean/clean_pool_tiles.json b/src/main/resources/data/otemod/recipes/thresholds/decorative/pool/clean/clean_pool_tiles.json new file mode 100644 index 0000000..deec031 --- /dev/null +++ b/src/main/resources/data/otemod/recipes/thresholds/decorative/pool/clean/clean_pool_tiles.json @@ -0,0 +1,19 @@ +{ + "type": "minecraft:crafting_shaped", + "pattern": [ + "AB", + "BA" + ], + "key": { + "A": { + "item": "minecraft:white_concrete" + }, + "B": { + "item": "minecraft:white_terracotta" + } + }, + "result": { + "item": "otemod:pool_tiles", + "count": 4 + } +} diff --git a/src/main/resources/data/otemod/recipes/thresholds/decorative/pool/clean/dirty_pool_light.json b/src/main/resources/data/otemod/recipes/thresholds/decorative/pool/clean/dirty_pool_light.json new file mode 100644 index 0000000..2ccfee6 --- /dev/null +++ b/src/main/resources/data/otemod/recipes/thresholds/decorative/pool/clean/dirty_pool_light.json @@ -0,0 +1,15 @@ +{ + "type": "minecraft:crafting_shapeless", + "ingredients": [ + { + "item": "otemod:pool_light" + }, + { + "item": "minecraft:slime_ball" + } + ], + "result": { + "item": "otemod:dirty_pool_light", + "count": 1 + } +} diff --git a/src/main/resources/data/otemod/recipes/thresholds/decorative/pool/clean/dirty_pool_tile_stairs.json b/src/main/resources/data/otemod/recipes/thresholds/decorative/pool/clean/dirty_pool_tile_stairs.json new file mode 100644 index 0000000..1e0d54b --- /dev/null +++ b/src/main/resources/data/otemod/recipes/thresholds/decorative/pool/clean/dirty_pool_tile_stairs.json @@ -0,0 +1,17 @@ +{ + "type": "minecraft:crafting_shaped", + "pattern": [ + "A ", + "AA ", + "AAA" + ], + "key": { + "A": { + "item": "otemod:dirty_pool_tiles" + } + }, + "result": { + "item": "otemod:dirty_pool_tile_stairs", + "count": 4 + } +} diff --git a/src/main/resources/data/otemod/recipes/thresholds/decorative/pool/clean/dirty_pool_tiles.json b/src/main/resources/data/otemod/recipes/thresholds/decorative/pool/clean/dirty_pool_tiles.json new file mode 100644 index 0000000..02d9ecf --- /dev/null +++ b/src/main/resources/data/otemod/recipes/thresholds/decorative/pool/clean/dirty_pool_tiles.json @@ -0,0 +1,15 @@ +{ + "type": "minecraft:crafting_shapeless", + "ingredients": [ + { + "item": "minecraft:slime_ball" + }, + { + "item": "otemod:pool_tiles" + } + ], + "result": { + "item": "otemod:dirty_pool_tiles", + "count": 4 + } +} diff --git a/src/main/resources/data/otemod/recipes/thresholds/decorative/pool/clean/filthy_pool_light.json b/src/main/resources/data/otemod/recipes/thresholds/decorative/pool/clean/filthy_pool_light.json new file mode 100644 index 0000000..6aafb7c --- /dev/null +++ b/src/main/resources/data/otemod/recipes/thresholds/decorative/pool/clean/filthy_pool_light.json @@ -0,0 +1,15 @@ +{ + "type": "minecraft:crafting_shapeless", + "ingredients": [ + { + "item": "otemod:dirty_pool_light" + }, + { + "item": "minecraft:slime_block" + } + ], + "result": { + "item": "otemod:filthy_pool_light", + "count": 1 + } +} diff --git a/src/main/resources/data/otemod/recipes/thresholds/decorative/pool/clean/pool_light.json b/src/main/resources/data/otemod/recipes/thresholds/decorative/pool/clean/pool_light.json new file mode 100644 index 0000000..9360335 --- /dev/null +++ b/src/main/resources/data/otemod/recipes/thresholds/decorative/pool/clean/pool_light.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:crafting_shaped", + "pattern": [ + "AAA", + "ABA", + "AAA" + ], + "key": { + "A": { + "item": "otemod:pool_tiles" + }, + "B": { + "item": "minecraft:glowstone" + } + }, + "result": { + "item": "otemod:pool_light", + "count": 4 + } +} diff --git a/src/main/resources/data/otemod/recipes/thresholds/decorative/pool/clean/pool_tile_stairs.json b/src/main/resources/data/otemod/recipes/thresholds/decorative/pool/clean/pool_tile_stairs.json new file mode 100644 index 0000000..0a751dd --- /dev/null +++ b/src/main/resources/data/otemod/recipes/thresholds/decorative/pool/clean/pool_tile_stairs.json @@ -0,0 +1,17 @@ +{ + "type": "minecraft:crafting_shaped", + "pattern": [ + "A ", + "AA ", + "AAA" + ], + "key": { + "A": { + "item": "otemod:pool_tiles" + } + }, + "result": { + "item": "otemod:pool_tile_stairs", + "count": 4 + } +} diff --git a/src/main/resources/data/otemod/recipes/thresholds/decorative/pool/red/dirty_red_pool_light.json b/src/main/resources/data/otemod/recipes/thresholds/decorative/pool/red/dirty_red_pool_light.json new file mode 100644 index 0000000..a691233 --- /dev/null +++ b/src/main/resources/data/otemod/recipes/thresholds/decorative/pool/red/dirty_red_pool_light.json @@ -0,0 +1,15 @@ +{ + "type": "minecraft:crafting_shapeless", + "ingredients": [ + { + "item": "otemod:red_pool_light" + }, + { + "item": "minecraft:slime_block" + } + ], + "result": { + "item": "otemod:dirty_red_pool_light", + "count": 1 + } +} diff --git a/src/main/resources/data/otemod/recipes/thresholds/decorative/pool/red/dirty_red_pool_tile_stairs.json b/src/main/resources/data/otemod/recipes/thresholds/decorative/pool/red/dirty_red_pool_tile_stairs.json new file mode 100644 index 0000000..6bd4426 --- /dev/null +++ b/src/main/resources/data/otemod/recipes/thresholds/decorative/pool/red/dirty_red_pool_tile_stairs.json @@ -0,0 +1,17 @@ +{ + "type": "minecraft:crafting_shaped", + "pattern": [ + "A ", + "AA ", + "AAA" + ], + "key": { + "A": { + "item": "otemod:dirty_red_pool_tiles" + } + }, + "result": { + "item": "otemod:dirty_red_pool_tile_stairs", + "count": 4 + } +} diff --git a/src/main/resources/data/otemod/recipes/thresholds/decorative/pool/red/dirty_red_pool_tiles.json b/src/main/resources/data/otemod/recipes/thresholds/decorative/pool/red/dirty_red_pool_tiles.json new file mode 100644 index 0000000..38b882b --- /dev/null +++ b/src/main/resources/data/otemod/recipes/thresholds/decorative/pool/red/dirty_red_pool_tiles.json @@ -0,0 +1,19 @@ +{ + "type": "minecraft:crafting_shaped", + "pattern": [ + "AB", + "BA" + ], + "key": { + "A": { + "item": "otemod:red_pool_tiles" + }, + "B": { + "item": "minecraft:slime_ball" + } + }, + "result": { + "item": "otemod:dirty_red_pool_tiles", + "count": 4 + } +} diff --git a/src/main/resources/data/otemod/recipes/thresholds/decorative/pool/red/filthy_red_pool_light.json b/src/main/resources/data/otemod/recipes/thresholds/decorative/pool/red/filthy_red_pool_light.json new file mode 100644 index 0000000..3855bc8 --- /dev/null +++ b/src/main/resources/data/otemod/recipes/thresholds/decorative/pool/red/filthy_red_pool_light.json @@ -0,0 +1,15 @@ +{ + "type": "minecraft:crafting_shapeless", + "ingredients": [ + { + "item": "otemod:dirty_red_pool_light" + }, + { + "item": "minecraft:slime_block" + } + ], + "result": { + "item": "otemod:filthy_red_pool_light", + "count": 1 + } +} diff --git a/src/main/resources/data/otemod/recipes/thresholds/decorative/pool/red/red_pool_light.json b/src/main/resources/data/otemod/recipes/thresholds/decorative/pool/red/red_pool_light.json new file mode 100644 index 0000000..93d6b7f --- /dev/null +++ b/src/main/resources/data/otemod/recipes/thresholds/decorative/pool/red/red_pool_light.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:crafting_shaped", + "pattern": [ + "AAA", + "ABA", + "AAA" + ], + "key": { + "A": { + "item": "otemod:red_pool_tiles" + }, + "B": { + "item": "minecraft:glowstone" + } + }, + "result": { + "item": "otemod:red_pool_light", + "count": 4 + } +} diff --git a/src/main/resources/data/otemod/recipes/thresholds/decorative/pool/red/red_pool_tile_stairs.json b/src/main/resources/data/otemod/recipes/thresholds/decorative/pool/red/red_pool_tile_stairs.json new file mode 100644 index 0000000..a58bae0 --- /dev/null +++ b/src/main/resources/data/otemod/recipes/thresholds/decorative/pool/red/red_pool_tile_stairs.json @@ -0,0 +1,17 @@ +{ + "type": "minecraft:crafting_shaped", + "pattern": [ + "A ", + "AA ", + "AAA" + ], + "key": { + "A": { + "item": "otemod:red_pool_tiles" + } + }, + "result": { + "item": "otemod:red_pool_tile_stairs", + "count": 4 + } +} diff --git a/src/main/resources/data/otemod/recipes/thresholds/decorative/pool/red/red_pool_tiles.json b/src/main/resources/data/otemod/recipes/thresholds/decorative/pool/red/red_pool_tiles.json new file mode 100644 index 0000000..a374415 --- /dev/null +++ b/src/main/resources/data/otemod/recipes/thresholds/decorative/pool/red/red_pool_tiles.json @@ -0,0 +1,23 @@ +{ + "type": "minecraft:crafting_shaped", + "pattern": [ + "CAB", + "ABC", + "BAC" + ], + "key": { + "A": { + "item": "minecraft:white_concrete" + }, + "B": { + "item": "minecraft:red_terracotta" + }, + "C": { + "item": "minecraft:terracotta" + } + }, + "result": { + "item": "otemod:red_pool_tiles", + "count": 4 + } +} diff --git a/src/main/resources/data/otemod/recipes/thresholds/decorative/blood_red.json b/src/main/resources/data/otemod/recipes/thresholds/decorative/red/blood_red.json similarity index 100% rename from src/main/resources/data/otemod/recipes/thresholds/decorative/blood_red.json rename to src/main/resources/data/otemod/recipes/thresholds/decorative/red/blood_red.json diff --git a/src/main/resources/data/otemod/recipes/thresholds/decorative/red_stairs.json b/src/main/resources/data/otemod/recipes/thresholds/decorative/red/red_stairs.json similarity index 100% rename from src/main/resources/data/otemod/recipes/thresholds/decorative/red_stairs.json rename to src/main/resources/data/otemod/recipes/thresholds/decorative/red/red_stairs.json diff --git a/src/main/resources/data/otemod/recipes/thresholds/decorative/red_tile.json b/src/main/resources/data/otemod/recipes/thresholds/decorative/red/red_tile.json similarity index 100% rename from src/main/resources/data/otemod/recipes/thresholds/decorative/red_tile.json rename to src/main/resources/data/otemod/recipes/thresholds/decorative/red/red_tile.json diff --git a/src/main/resources/data/otemod/recipes/thresholds/decorative/red_tile_br.json b/src/main/resources/data/otemod/recipes/thresholds/decorative/red/red_tile_br.json similarity index 100% rename from src/main/resources/data/otemod/recipes/thresholds/decorative/red_tile_br.json rename to src/main/resources/data/otemod/recipes/thresholds/decorative/red/red_tile_br.json diff --git a/src/main/resources/data/otemod/recipes/thresholds/decorative/red_tile_to_wall.json b/src/main/resources/data/otemod/recipes/thresholds/decorative/red/red_tile_to_wall.json similarity index 100% rename from src/main/resources/data/otemod/recipes/thresholds/decorative/red_tile_to_wall.json rename to src/main/resources/data/otemod/recipes/thresholds/decorative/red/red_tile_to_wall.json diff --git a/src/main/resources/data/otemod/recipes/thresholds/decorative/red_wall_variant_1.json b/src/main/resources/data/otemod/recipes/thresholds/decorative/red/red_wall_variant_1.json similarity index 100% rename from src/main/resources/data/otemod/recipes/thresholds/decorative/red_wall_variant_1.json rename to src/main/resources/data/otemod/recipes/thresholds/decorative/red/red_wall_variant_1.json diff --git a/src/main/resources/data/otemod/recipes/thresholds/decorative/red_wall_variant_2.json b/src/main/resources/data/otemod/recipes/thresholds/decorative/red/red_wall_variant_2.json similarity index 100% rename from src/main/resources/data/otemod/recipes/thresholds/decorative/red_wall_variant_2.json rename to src/main/resources/data/otemod/recipes/thresholds/decorative/red/red_wall_variant_2.json diff --git a/src/main/resources/data/otemod/tags/thresholds/pool.json b/src/main/resources/data/otemod/tags/thresholds/pool.json new file mode 100644 index 0000000..328a767 --- /dev/null +++ b/src/main/resources/data/otemod/tags/thresholds/pool.json @@ -0,0 +1,28 @@ +{ + "values": [ + "otemod:pool_light", + "otemod:dirty_pool_light", + "otemod:filthy_pool_light", + "otemod:dark_pool_light", + "otemod:blue_pool_light", + "otemod:red_pool_light", + "otemod:dirty_red_pool_light", + "otemod:dirty_blue_pool_light", + "otemod:filthy_red_pool_light", + "otemod:filthy_blue_pool_light", + "otemod:pool_tile", + "otemod:dirty_pool_tile", + "otemod:dark_pool_tile", + "otemod:blue_pool_tile", + "otemod:dirty_blue_pool_tile", + "otemod:dirty_blue_pool_tile_stairs", + "otemod:pool_tile_stairs", + "otemod:dirty_pool_tile_stairs", + "otemod:dark_pool_tile_stairs", + "otemod:blue_pool_tile_stairs", + "otemod:red_pool_tile", + "otemod:red_pool_tile_stairs", + "otemod:dirty_red_pool_tile", + "otemod:dirty_red_pool_tile_stairs" + ] +} \ No newline at end of file diff --git a/src/main/resources/data/otemod/tags/thresholds_unbreakable.json b/src/main/resources/data/otemod/tags/thresholds_unbreakable.json index 800e225..29515ae 100644 --- a/src/main/resources/data/otemod/tags/thresholds_unbreakable.json +++ b/src/main/resources/data/otemod/tags/thresholds_unbreakable.json @@ -2,6 +2,7 @@ "values": [ "#otemod:thresholds/red", "#otemod:thresholds/cyan", - "#otemod:thresholds/lime" + "#otemod:thresholds/lime", + "#otemod:thresholds/pool" ] } \ No newline at end of file