diff --git a/src/main/resources/assets/techreborn/blockstates/assembly_machine.json b/src/main/resources/assets/techreborn/blockstates/assembly_machine.json new file mode 100644 index 000000000..917fc2f56 --- /dev/null +++ b/src/main/resources/assets/techreborn/blockstates/assembly_machine.json @@ -0,0 +1,12 @@ +{ + "variants": { + "facing=north,active=false": { "model": "techreborn:block/machines/tier1_machines/assembly_machine" }, + "facing=south,active=false": { "model": "techreborn:block/machines/tier1_machines/assembly_machine", "y": 180 }, + "facing=west,active=false": { "model": "techreborn:block/machines/tier1_machines/assembly_machine", "y": 270 }, + "facing=east,active=false": { "model": "techreborn:block/machines/tier1_machines/assembly_machine", "y": 90 }, + "facing=north,active=true": { "model": "techreborn:block/machines/tier1_machines/assembly_machine_on" }, + "facing=south,active=true": { "model": "techreborn:block/machines/tier1_machines/assembly_machine_on", "y": 180 }, + "facing=west,active=true": { "model": "techreborn:block/machines/tier1_machines/assembly_machine_on", "y": 270 }, + "facing=east,active=true": { "model": "techreborn:block/machines/tier1_machines/assembly_machine_on", "y": 90 } + } +} diff --git a/src/main/resources/assets/techreborn/blockstates/auto_crafting_table.json b/src/main/resources/assets/techreborn/blockstates/auto_crafting_table.json new file mode 100644 index 000000000..18adff22d --- /dev/null +++ b/src/main/resources/assets/techreborn/blockstates/auto_crafting_table.json @@ -0,0 +1,8 @@ +{ + "variants": { + "facing=north": { "model": "techreborn:block/machines/tier1_machines/auto_crafting_table" }, + "facing=south": { "model": "techreborn:block/machines/tier1_machines/auto_crafting_table", "y": 180 }, + "facing=west": { "model": "techreborn:block/machines/tier1_machines/auto_crafting_table", "y": 270 }, + "facing=east": { "model": "techreborn:block/machines/tier1_machines/auto_crafting_table", "y": 90 } + } +} diff --git a/src/main/resources/assets/techreborn/blockstates/chemical_reactor.json b/src/main/resources/assets/techreborn/blockstates/chemical_reactor.json new file mode 100644 index 000000000..916eb51e4 --- /dev/null +++ b/src/main/resources/assets/techreborn/blockstates/chemical_reactor.json @@ -0,0 +1,12 @@ +{ + "variants": { + "facing=north,active=false": { "model": "techreborn:block/machines/tier1_machines/chemical_reactor" }, + "facing=south,active=false": { "model": "techreborn:block/machines/tier1_machines/chemical_reactor", "y": 180 }, + "facing=west,active=false": { "model": "techreborn:block/machines/tier1_machines/chemical_reactor", "y": 270 }, + "facing=east,active=false": { "model": "techreborn:block/machines/tier1_machines/chemical_reactor", "y": 90 }, + "facing=north,active=true": { "model": "techreborn:block/machines/tier1_machines/chemical_reactor_on" }, + "facing=south,active=true": { "model": "techreborn:block/machines/tier1_machines/chemical_reactor_on", "y": 180 }, + "facing=west,active=true": { "model": "techreborn:block/machines/tier1_machines/chemical_reactor_on", "y": 270 }, + "facing=east,active=true": { "model": "techreborn:block/machines/tier1_machines/chemical_reactor_on", "y": 90 } + } +} diff --git a/src/main/resources/assets/techreborn/blockstates/compressor.json b/src/main/resources/assets/techreborn/blockstates/compressor.json new file mode 100644 index 000000000..7c470ec96 --- /dev/null +++ b/src/main/resources/assets/techreborn/blockstates/compressor.json @@ -0,0 +1,12 @@ +{ + "variants": { + "facing=north,active=false": { "model": "techreborn:block/machines/tier1_machines/compressor" }, + "facing=south,active=false": { "model": "techreborn:block/machines/tier1_machines/compressor", "y": 180 }, + "facing=west,active=false": { "model": "techreborn:block/machines/tier1_machines/compressor", "y": 270 }, + "facing=east,active=false": { "model": "techreborn:block/machines/tier1_machines/compressor", "y": 90 }, + "facing=north,active=true": { "model": "techreborn:block/machines/tier1_machines/compressor_on" }, + "facing=south,active=true": { "model": "techreborn:block/machines/tier1_machines/compressor_on", "y": 180 }, + "facing=west,active=true": { "model": "techreborn:block/machines/tier1_machines/compressor_on", "y": 270 }, + "facing=east,active=true": { "model": "techreborn:block/machines/tier1_machines/compressor_on", "y": 90 } + } +} diff --git a/src/main/resources/assets/techreborn/blockstates/electric_furnace.json b/src/main/resources/assets/techreborn/blockstates/electric_furnace.json new file mode 100644 index 000000000..68a0c5362 --- /dev/null +++ b/src/main/resources/assets/techreborn/blockstates/electric_furnace.json @@ -0,0 +1,12 @@ +{ + "variants": { + "facing=north,active=false": { "model": "techreborn:block/machines/tier1_machines/electric_furnace" }, + "facing=south,active=false": { "model": "techreborn:block/machines/tier1_machines/electric_furnace", "y": 180 }, + "facing=west,active=false": { "model": "techreborn:block/machines/tier1_machines/electric_furnace", "y": 270 }, + "facing=east,active=false": { "model": "techreborn:block/machines/tier1_machines/electric_furnace", "y": 90 }, + "facing=north,active=true": { "model": "techreborn:block/machines/tier1_machines/electric_furnace_on" }, + "facing=south,active=true": { "model": "techreborn:block/machines/tier1_machines/electric_furnace_on", "y": 180 }, + "facing=west,active=true": { "model": "techreborn:block/machines/tier1_machines/electric_furnace_on", "y": 270 }, + "facing=east,active=true": { "model": "techreborn:block/machines/tier1_machines/electric_furnace_on", "y": 90 } + } +} diff --git a/src/main/resources/assets/techreborn/blockstates/extractor.json b/src/main/resources/assets/techreborn/blockstates/extractor.json new file mode 100644 index 000000000..0686b7eb3 --- /dev/null +++ b/src/main/resources/assets/techreborn/blockstates/extractor.json @@ -0,0 +1,12 @@ +{ + "variants": { + "facing=north,active=false": { "model": "techreborn:block/machines/tier1_machines/extractor" }, + "facing=south,active=false": { "model": "techreborn:block/machines/tier1_machines/extractor", "y": 180 }, + "facing=west,active=false": { "model": "techreborn:block/machines/tier1_machines/extractor", "y": 270 }, + "facing=east,active=false": { "model": "techreborn:block/machines/tier1_machines/extractor", "y": 90 }, + "facing=north,active=true": { "model": "techreborn:block/machines/tier1_machines/extractor_on" }, + "facing=south,active=true": { "model": "techreborn:block/machines/tier1_machines/extractor_on", "y": 180 }, + "facing=west,active=true": { "model": "techreborn:block/machines/tier1_machines/extractor_on", "y": 270 }, + "facing=east,active=true": { "model": "techreborn:block/machines/tier1_machines/extractor_on", "y": 90 } + } +} diff --git a/src/main/resources/assets/techreborn/blockstates/machines/tier1_machines/alloy_smelter.json b/src/main/resources/assets/techreborn/blockstates/machines/tier1_machines/alloy_smelter.json deleted file mode 100644 index de881e8ac..000000000 --- a/src/main/resources/assets/techreborn/blockstates/machines/tier1_machines/alloy_smelter.json +++ /dev/null @@ -1,47 +0,0 @@ -{ - "forge_marker": 1, - "defaults": { - "transform": "forge:default-block", - "model": "orientable", - "textures": { - "particle": "techreborn:blocks/machines/tier1_machines/electric_alloy_smelter_front_off", - "top": "techreborn:blocks/machines/tier1_machines/machine_top", - "down": "techreborn:blocks/machines/tier1_machines/machine_bottom", - "side": "techreborn:blocks/machines/tier1_machines/machine_side" - } - }, - "variants": { - "inventory": { - "transform": "forge:default-block", - "model": "orientable", - "textures": { - "front": "techreborn:blocks/machines/tier1_machines/electric_alloy_smelter_front_off" - } - }, - "facing": { - "north": { - }, - "east": { - "y": 90 - }, - "south": { - "y": 180 - }, - "west": { - "y": 270 - } - }, - "active": { - "true": { - "textures": { - "front": "techreborn:blocks/machines/tier1_machines/electric_alloy_smelter_front_on" - } - }, - "false": { - "textures": { - "front": "techreborn:blocks/machines/tier1_machines/electric_alloy_smelter_front_off" - } - } - } - } -} \ No newline at end of file diff --git a/src/main/resources/assets/techreborn/blockstates/machines/tier1_machines/assembly_machine.json b/src/main/resources/assets/techreborn/blockstates/machines/tier1_machines/assembly_machine.json deleted file mode 100644 index f3e12ed74..000000000 --- a/src/main/resources/assets/techreborn/blockstates/machines/tier1_machines/assembly_machine.json +++ /dev/null @@ -1,47 +0,0 @@ -{ - "forge_marker": 1, - "defaults": { - "transform": "forge:default-block", - "model": "orientable", - "textures": { - "particle": "techreborn:blocks/machines/tier1_machines/assembling_machine_front_off", - "top": "techreborn:blocks/machines/tier1_machines/machine_top", - "down": "techreborn:blocks/machines/tier1_machines/machine_bottom", - "side": "techreborn:blocks/machines/tier1_machines/machine_side" - } - }, - "variants": { - "inventory": { - "transform": "forge:default-block", - "model": "orientable", - "textures": { - "front": "techreborn:blocks/machines/tier1_machines/assembling_machine_front_off" - } - }, - "facing": { - "north": { - }, - "east": { - "y": 90 - }, - "south": { - "y": 180 - }, - "west": { - "y": 270 - } - }, - "active": { - "true": { - "textures": { - "front": "techreborn:blocks/machines/tier1_machines/assembling_machine_front_on" - } - }, - "false": { - "textures": { - "front": "techreborn:blocks/machines/tier1_machines/assembling_machine_front_off" - } - } - } - } -} \ No newline at end of file diff --git a/src/main/resources/assets/techreborn/blockstates/machines/tier1_machines/auto_crafting_table.json b/src/main/resources/assets/techreborn/blockstates/machines/tier1_machines/auto_crafting_table.json deleted file mode 100644 index 68f9ef18b..000000000 --- a/src/main/resources/assets/techreborn/blockstates/machines/tier1_machines/auto_crafting_table.json +++ /dev/null @@ -1,30 +0,0 @@ -{ - "forge_marker": 1, - "defaults": { - "transform": "forge:default-block", - "model": "cube_bottom_top", - "textures": { - "particle": "techreborn:blocks/machines/tier1_machines/electric_crafting_table_side", - "top": "techreborn:blocks/machines/tier1_machines/electric_crafting_table_top", - "down": "techreborn:blocks/machines/tier1_machines/machine_bottom", - "side": "techreborn:blocks/machines/tier1_machines/electric_crafting_table_side" - } - }, - "variants": { - "inventory": { - "transform": "forge:default-block", - "model": "cube_bottom_top", - "textures": { - "side": "techreborn:blocks/machines/tier1_machines/electric_crafting_table_side" - } - }, - "normal": { - "transform": "forge:default-block", - "model": "cube_bottom_top", - "textures": { - "side": "techreborn:blocks/machines/tier1_machines/electric_crafting_table_side" - } - } - } -} - diff --git a/src/main/resources/assets/techreborn/blockstates/machines/tier1_machines/compressor.json b/src/main/resources/assets/techreborn/blockstates/machines/tier1_machines/compressor.json deleted file mode 100644 index 778bec8ec..000000000 --- a/src/main/resources/assets/techreborn/blockstates/machines/tier1_machines/compressor.json +++ /dev/null @@ -1,47 +0,0 @@ -{ - "forge_marker": 1, - "defaults": { - "transform": "forge:default-block", - "model": "orientable", - "textures": { - "particle": "techreborn:blocks/machines/tier1_machines/compressor_front_off", - "top": "techreborn:blocks/machines/tier1_machines/machine_top", - "down": "techreborn:blocks/machines/tier1_machines/machine_bottom", - "side": "techreborn:blocks/machines/tier1_machines/machine_side" - } - }, - "variants": { - "inventory": { - "transform": "forge:default-block", - "model": "orientable", - "textures": { - "front": "techreborn:blocks/machines/tier1_machines/compressor_front_off" - } - }, - "facing": { - "north": { - }, - "east": { - "y": 90 - }, - "south": { - "y": 180 - }, - "west": { - "y": 270 - } - }, - "active": { - "true": { - "textures": { - "front": "techreborn:blocks/machines/tier1_machines/compressor_front_on" - } - }, - "false": { - "textures": { - "front": "techreborn:blocks/machines/tier1_machines/compressor_front_off" - } - } - } - } -} \ No newline at end of file diff --git a/src/main/resources/assets/techreborn/blockstates/machines/tier1_machines/electric_furnace.json b/src/main/resources/assets/techreborn/blockstates/machines/tier1_machines/electric_furnace.json deleted file mode 100644 index 6e722818c..000000000 --- a/src/main/resources/assets/techreborn/blockstates/machines/tier1_machines/electric_furnace.json +++ /dev/null @@ -1,47 +0,0 @@ -{ - "forge_marker": 1, - "defaults": { - "transform": "forge:default-block", - "model": "orientable", - "textures": { - "particle": "techreborn:blocks/machines/tier1_machines/electric_furnace_front_off", - "top": "techreborn:blocks/machines/tier1_machines/machine_top", - "down": "techreborn:blocks/machines/tier1_machines/machine_bottom", - "side": "techreborn:blocks/machines/tier1_machines/machine_side" - } - }, - "variants": { - "inventory": { - "transform": "forge:default-block", - "model": "orientable", - "textures": { - "front": "techreborn:blocks/machines/tier1_machines/electric_furnace_front_off" - } - }, - "facing": { - "north": { - }, - "east": { - "y": 90 - }, - "south": { - "y": 180 - }, - "west": { - "y": 270 - } - }, - "active": { - "true": { - "textures": { - "front": "techreborn:blocks/machines/tier1_machines/electric_furnace_front_on" - } - }, - "false": { - "textures": { - "front": "techreborn:blocks/machines/tier1_machines/electric_furnace_front_off" - } - } - } - } -} \ No newline at end of file diff --git a/src/main/resources/assets/techreborn/blockstates/machines/tier1_machines/extractor.json b/src/main/resources/assets/techreborn/blockstates/machines/tier1_machines/extractor.json deleted file mode 100644 index a5d279b53..000000000 --- a/src/main/resources/assets/techreborn/blockstates/machines/tier1_machines/extractor.json +++ /dev/null @@ -1,47 +0,0 @@ -{ - "forge_marker": 1, - "defaults": { - "transform": "forge:default-block", - "model": "orientable", - "textures": { - "particle": "techreborn:blocks/machines/tier1_machines/extractor_front_off", - "top": "techreborn:blocks/machines/tier1_machines/machine_top", - "down": "techreborn:blocks/machines/tier1_machines/machine_bottom", - "side": "techreborn:blocks/machines/tier1_machines/machine_side" - } - }, - "variants": { - "inventory": { - "transform": "forge:default-block", - "model": "orientable", - "textures": { - "front": "techreborn:blocks/machines/tier1_machines/extractor_front_off" - } - }, - "facing": { - "north": { - }, - "east": { - "y": 90 - }, - "south": { - "y": 180 - }, - "west": { - "y": 270 - } - }, - "active": { - "true": { - "textures": { - "front": "techreborn:blocks/machines/tier1_machines/extractor_front_on" - } - }, - "false": { - "textures": { - "front": "techreborn:blocks/machines/tier1_machines/extractor_front_off" - } - } - } - } -} \ No newline at end of file diff --git a/src/main/resources/assets/techreborn/blockstates/machines/tier1_machines/player_detector.json b/src/main/resources/assets/techreborn/blockstates/machines/tier1_machines/player_detector.json deleted file mode 100644 index c9ab7e7d1..000000000 --- a/src/main/resources/assets/techreborn/blockstates/machines/tier1_machines/player_detector.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "forge_marker": 1, - "defaults": { - "textures": {}, - "transform": "forge:default-block", - "model": "cube_all" - }, - "variants": { - "inventory": { - "transform": "forge:default-block", - "model": "orientable", - "textures": {} - }, - "type": { - "all": { - "textures": { - "all": "techreborn:blocks/machines/tier1_machines/player_detector_all" - } - }, - "others": { - "textures": { - "all": "techreborn:blocks/machines/tier1_machines/player_detector_others" - } - }, - "you": { - "textures": { - "all": "techreborn:blocks/machines/tier1_machines/player_detector_you" - } - } - } - } -} diff --git a/src/main/resources/assets/techreborn/blockstates/machines/tier1_machines/recycler.json b/src/main/resources/assets/techreborn/blockstates/machines/tier1_machines/recycler.json deleted file mode 100644 index 77cbb0610..000000000 --- a/src/main/resources/assets/techreborn/blockstates/machines/tier1_machines/recycler.json +++ /dev/null @@ -1,47 +0,0 @@ -{ - "forge_marker": 1, - "defaults": { - "transform": "forge:default-block", - "model": "orientable", - "textures": { - "particle": "techreborn:blocks/machines/tier1_machines/recycler_front_off", - "top": "techreborn:blocks/machines/tier1_machines/machine_top", - "down": "techreborn:blocks/machines/tier1_machines/machine_bottom", - "side": "techreborn:blocks/machines/tier1_machines/machine_side" - } - }, - "variants": { - "inventory": { - "transform": "forge:default-block", - "model": "orientable", - "textures": { - "front": "techreborn:blocks/machines/tier1_machines/recycler_front_off" - } - }, - "facing": { - "north": { - }, - "east": { - "y": 90 - }, - "south": { - "y": 180 - }, - "west": { - "y": 270 - } - }, - "active": { - "true": { - "textures": { - "front": "techreborn:blocks/machines/tier1_machines/recycler_front_on" - } - }, - "false": { - "textures": { - "front": "techreborn:blocks/machines/tier1_machines/recycler_front_off" - } - } - } - } -} \ No newline at end of file diff --git a/src/main/resources/assets/techreborn/blockstates/machines/tier1_machines/rolling_machine.json b/src/main/resources/assets/techreborn/blockstates/machines/tier1_machines/rolling_machine.json deleted file mode 100644 index d8f7b482c..000000000 --- a/src/main/resources/assets/techreborn/blockstates/machines/tier1_machines/rolling_machine.json +++ /dev/null @@ -1,48 +0,0 @@ -{ - "forge_marker": 1, - "defaults": { - "transform": "forge:default-block", - "model": "orientable", - "textures": { - "particle": "techreborn:blocks/machines/tier1_machines/rolling_machine_front_off", - "top": "techreborn:blocks/machines/tier1_machines/machine_top", - "down": "techreborn:blocks/machines/tier1_machines/machine_bottom", - "side": "techreborn:blocks/machines/tier1_machines/machine_side" - } - }, - "variants": { - "inventory": { - "transform": "forge:default-block", - "model": "orientable", - "textures": { - "front": "techreborn:blocks/machines/tier1_machines/rolling_machine_front_off" - } - }, - "facing": { - "north": { - - }, - "east": { - "y": 90 - }, - "south": { - "y": 180 - }, - "west": { - "y": 270 - } - }, - "active": { - "true": { - "textures": { - "front": "techreborn:blocks/machines/tier1_machines/rolling_machine_front_on" - } - }, - "false": { - "textures": { - "front": "techreborn:blocks/machines/tier1_machines/rolling_machine_front_off" - } - } - } - } -} \ No newline at end of file diff --git a/src/main/resources/assets/techreborn/blockstates/machines/tier1_machines/scrapboxinator.json b/src/main/resources/assets/techreborn/blockstates/machines/tier1_machines/scrapboxinator.json deleted file mode 100644 index 1fdec6871..000000000 --- a/src/main/resources/assets/techreborn/blockstates/machines/tier1_machines/scrapboxinator.json +++ /dev/null @@ -1,47 +0,0 @@ -{ - "forge_marker": 1, - "defaults": { - "transform": "forge:default-block", - "model": "orientable", - "textures": { - "particle": "techreborn:blocks/machines/tier1_machines/scrapboxinator_front_off", - "top": "techreborn:blocks/machines/tier1_machines/machine_top", - "down": "techreborn:blocks/machines/tier1_machines/machine_bottom", - "side": "techreborn:blocks/machines/tier1_machines/machine_side" - } - }, - "variants": { - "inventory": { - "transform": "forge:default-block", - "model": "orientable", - "textures": { - "front": "techreborn:blocks/machines/tier1_machines/scrapboxinator_front_off" - } - }, - "facing": { - "north": { - }, - "east": { - "y": 90 - }, - "south": { - "y": 180 - }, - "west": { - "y": 270 - } - }, - "active": { - "true": { - "textures": { - "front": "techreborn:blocks/machines/tier1_machines/scrapboxinator_front_on" - } - }, - "false": { - "textures": { - "front": "techreborn:blocks/machines/tier1_machines/scrapboxinator_front_off" - } - } - } - } -} \ No newline at end of file diff --git a/src/main/resources/assets/techreborn/blockstates/machines/tier2_machines/chemical_reactor.json b/src/main/resources/assets/techreborn/blockstates/machines/tier2_machines/chemical_reactor.json deleted file mode 100644 index d9e421671..000000000 --- a/src/main/resources/assets/techreborn/blockstates/machines/tier2_machines/chemical_reactor.json +++ /dev/null @@ -1,47 +0,0 @@ -{ - "forge_marker": 1, - "defaults": { - "transform": "forge:default-block", - "model": "orientable", - "textures": { - "particle": "techreborn:blocks/machines/tier1_machines/chemical_reactor_front_off", - "top": "techreborn:blocks/machines/tier1_machines/machine_top", - "down": "techreborn:blocks/machines/tier1_machines/machine_bottom", - "side": "techreborn:blocks/machines/tier1_machines/machine_side" - } - }, - "variants": { - "inventory": { - "transform": "forge:default-block", - "model": "orientable", - "textures": { - "front": "techreborn:blocks/machines/tier1_machines/chemical_reactor_front_off" - } - }, - "facing": { - "north": { - }, - "east": { - "y": 90 - }, - "south": { - "y": 180 - }, - "west": { - "y": 270 - } - }, - "active": { - "true": { - "textures": { - "front": "techreborn:blocks/machines/tier1_machines/chemical_reactor_front_on" - } - }, - "false": { - "textures": { - "front": "techreborn:blocks/machines/tier1_machines/chemical_reactor_front_off" - } - } - } - } -} \ No newline at end of file diff --git a/src/main/resources/assets/techreborn/blockstates/player_detector.json b/src/main/resources/assets/techreborn/blockstates/player_detector.json new file mode 100644 index 000000000..9d4d55d80 --- /dev/null +++ b/src/main/resources/assets/techreborn/blockstates/player_detector.json @@ -0,0 +1,7 @@ +{ + "variants": { + "type=all": { "model": "techreborn:block/machines/tier1_machines/player_detector_all" }, + "type=you": { "model": "techreborn:block/machines/tier1_machines/player_detector_you" }, + "type=others": { "model": "techreborn:block/machines/tier1_machines/player_detector_others" } + } +} diff --git a/src/main/resources/assets/techreborn/blockstates/recycler.json b/src/main/resources/assets/techreborn/blockstates/recycler.json new file mode 100644 index 000000000..38760c3a6 --- /dev/null +++ b/src/main/resources/assets/techreborn/blockstates/recycler.json @@ -0,0 +1,12 @@ +{ + "variants": { + "facing=north,active=false": { "model": "techreborn:block/machines/tier1_machines/recycler" }, + "facing=south,active=false": { "model": "techreborn:block/machines/tier1_machines/recycler", "y": 180 }, + "facing=west,active=false": { "model": "techreborn:block/machines/tier1_machines/recycler", "y": 270 }, + "facing=east,active=false": { "model": "techreborn:block/machines/tier1_machines/recycler", "y": 90 }, + "facing=north,active=true": { "model": "techreborn:block/machines/tier1_machines/recycler_on" }, + "facing=south,active=true": { "model": "techreborn:block/machines/tier1_machines/recycler_on", "y": 180 }, + "facing=west,active=true": { "model": "techreborn:block/machines/tier1_machines/recycler_on", "y": 270 }, + "facing=east,active=true": { "model": "techreborn:block/machines/tier1_machines/recycler_on", "y": 90 } + } +} diff --git a/src/main/resources/assets/techreborn/blockstates/rolling_machine.json b/src/main/resources/assets/techreborn/blockstates/rolling_machine.json new file mode 100644 index 000000000..b0cf1d576 --- /dev/null +++ b/src/main/resources/assets/techreborn/blockstates/rolling_machine.json @@ -0,0 +1,12 @@ +{ + "variants": { + "facing=north,active=false": { "model": "techreborn:block/machines/tier1_machines/rolling_machine" }, + "facing=south,active=false": { "model": "techreborn:block/machines/tier1_machines/rolling_machine", "y": 180 }, + "facing=west,active=false": { "model": "techreborn:block/machines/tier1_machines/rolling_machine", "y": 270 }, + "facing=east,active=false": { "model": "techreborn:block/machines/tier1_machines/rolling_machine", "y": 90 }, + "facing=north,active=true": { "model": "techreborn:block/machines/tier1_machines/rolling_machine_on" }, + "facing=south,active=true": { "model": "techreborn:block/machines/tier1_machines/rolling_machine_on", "y": 180 }, + "facing=west,active=true": { "model": "techreborn:block/machines/tier1_machines/rolling_machine_on", "y": 270 }, + "facing=east,active=true": { "model": "techreborn:block/machines/tier1_machines/rolling_machine_on", "y": 90 } + } +} diff --git a/src/main/resources/assets/techreborn/blockstates/scrapboxinator.json b/src/main/resources/assets/techreborn/blockstates/scrapboxinator.json new file mode 100644 index 000000000..ae777e531 --- /dev/null +++ b/src/main/resources/assets/techreborn/blockstates/scrapboxinator.json @@ -0,0 +1,12 @@ +{ + "variants": { + "facing=north,active=false": { "model": "techreborn:block/machines/tier1_machines/scrapboxinator" }, + "facing=south,active=false": { "model": "techreborn:block/machines/tier1_machines/scrapboxinator", "y": 180 }, + "facing=west,active=false": { "model": "techreborn:block/machines/tier1_machines/scrapboxinator", "y": 270 }, + "facing=east,active=false": { "model": "techreborn:block/machines/tier1_machines/scrapboxinator", "y": 90 }, + "facing=north,active=true": { "model": "techreborn:block/machines/tier1_machines/scrapboxinator_on" }, + "facing=south,active=true": { "model": "techreborn:block/machines/tier1_machines/scrapboxinator_on", "y": 180 }, + "facing=west,active=true": { "model": "techreborn:block/machines/tier1_machines/scrapboxinator_on", "y": 270 }, + "facing=east,active=true": { "model": "techreborn:block/machines/tier1_machines/scrapboxinator_on", "y": 90 } + } +} diff --git a/src/main/resources/assets/techreborn/models/block/machines/tier1_machines/assembly_machine.json b/src/main/resources/assets/techreborn/models/block/machines/tier1_machines/assembly_machine.json new file mode 100644 index 000000000..ea9f06b49 --- /dev/null +++ b/src/main/resources/assets/techreborn/models/block/machines/tier1_machines/assembly_machine.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/orientable", + "textures": { + "top": "techreborn:block/machines/tier1_machines/machine_top", + "front": "techreborn:block/machines/tier1_machines/assembling_machine_front_off", + "side": "techreborn:block/machines/tier1_machines/machine_side" + } +} diff --git a/src/main/resources/assets/techreborn/models/block/machines/tier1_machines/assembly_machine_on.json b/src/main/resources/assets/techreborn/models/block/machines/tier1_machines/assembly_machine_on.json new file mode 100644 index 000000000..b80a1c15f --- /dev/null +++ b/src/main/resources/assets/techreborn/models/block/machines/tier1_machines/assembly_machine_on.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/orientable", + "textures": { + "top": "techreborn:block/machines/tier1_machines/machine_top", + "front": "techreborn:block/machines/tier1_machines/assembling_machine_front_on", + "side": "techreborn:block/machines/tier1_machines/machine_side" + } +} diff --git a/src/main/resources/assets/techreborn/models/block/machines/tier1_machines/auto_crafting_table.json b/src/main/resources/assets/techreborn/models/block/machines/tier1_machines/auto_crafting_table.json new file mode 100644 index 000000000..9a1704bac --- /dev/null +++ b/src/main/resources/assets/techreborn/models/block/machines/tier1_machines/auto_crafting_table.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/cube_bottom_top", + "textures": { + "top": "techreborn:block/machines/tier1_machines/auto_crafting_table_top", + "bottom": "techreborn:block/machines/tier1_machines/machine_bottom", + "side": "techreborn:block/machines/tier1_machines/auto_crafting_table_side" + } +} diff --git a/src/main/resources/assets/techreborn/models/block/machines/tier1_machines/chemical_reactor.json b/src/main/resources/assets/techreborn/models/block/machines/tier1_machines/chemical_reactor.json new file mode 100644 index 000000000..c8b6bc2a3 --- /dev/null +++ b/src/main/resources/assets/techreborn/models/block/machines/tier1_machines/chemical_reactor.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/orientable", + "textures": { + "top": "techreborn:block/machines/tier1_machines/machine_top", + "front": "techreborn:block/machines/tier1_machines/chemical_reactor_front_off", + "side": "techreborn:block/machines/tier1_machines/machine_side" + } +} diff --git a/src/main/resources/assets/techreborn/models/block/machines/tier1_machines/chemical_reactor_on.json b/src/main/resources/assets/techreborn/models/block/machines/tier1_machines/chemical_reactor_on.json new file mode 100644 index 000000000..8dc90e5ff --- /dev/null +++ b/src/main/resources/assets/techreborn/models/block/machines/tier1_machines/chemical_reactor_on.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/orientable", + "textures": { + "top": "techreborn:block/machines/tier1_machines/machine_top", + "front": "techreborn:block/machines/tier1_machines/chemical_reactor_front_on", + "side": "techreborn:block/machines/tier1_machines/machine_side" + } +} diff --git a/src/main/resources/assets/techreborn/models/block/machines/tier1_machines/compressor.json b/src/main/resources/assets/techreborn/models/block/machines/tier1_machines/compressor.json new file mode 100644 index 000000000..e8a9227ab --- /dev/null +++ b/src/main/resources/assets/techreborn/models/block/machines/tier1_machines/compressor.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/orientable", + "textures": { + "top": "techreborn:block/machines/tier1_machines/machine_top", + "front": "techreborn:block/machines/tier1_machines/compressor_front_off", + "side": "techreborn:block/machines/tier1_machines/machine_side" + } +} diff --git a/src/main/resources/assets/techreborn/models/block/machines/tier1_machines/compressor_on.json b/src/main/resources/assets/techreborn/models/block/machines/tier1_machines/compressor_on.json new file mode 100644 index 000000000..7b9126062 --- /dev/null +++ b/src/main/resources/assets/techreborn/models/block/machines/tier1_machines/compressor_on.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/orientable", + "textures": { + "top": "techreborn:block/machines/tier1_machines/machine_top", + "front": "techreborn:block/machines/tier1_machines/compressor_front_on", + "side": "techreborn:block/machines/tier1_machines/machine_side" + } +} diff --git a/src/main/resources/assets/techreborn/models/block/machines/tier1_machines/electric_furnace.json b/src/main/resources/assets/techreborn/models/block/machines/tier1_machines/electric_furnace.json new file mode 100644 index 000000000..c26e64105 --- /dev/null +++ b/src/main/resources/assets/techreborn/models/block/machines/tier1_machines/electric_furnace.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/orientable", + "textures": { + "top": "techreborn:block/machines/tier1_machines/machine_top", + "front": "techreborn:block/machines/tier1_machines/electric_furnace_front_off", + "side": "techreborn:block/machines/tier1_machines/machine_side" + } +} diff --git a/src/main/resources/assets/techreborn/models/block/machines/tier1_machines/electric_furnace_on.json b/src/main/resources/assets/techreborn/models/block/machines/tier1_machines/electric_furnace_on.json new file mode 100644 index 000000000..d0c57c3ac --- /dev/null +++ b/src/main/resources/assets/techreborn/models/block/machines/tier1_machines/electric_furnace_on.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/orientable", + "textures": { + "top": "techreborn:block/machines/tier1_machines/machine_top", + "front": "techreborn:block/machines/tier1_machines/electric_furnace_front_on", + "side": "techreborn:block/machines/tier1_machines/machine_side" + } +} diff --git a/src/main/resources/assets/techreborn/models/block/machines/tier1_machines/extractor.json b/src/main/resources/assets/techreborn/models/block/machines/tier1_machines/extractor.json new file mode 100644 index 000000000..1d4579823 --- /dev/null +++ b/src/main/resources/assets/techreborn/models/block/machines/tier1_machines/extractor.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/orientable", + "textures": { + "top": "techreborn:block/machines/tier1_machines/machine_top", + "front": "techreborn:block/machines/tier1_machines/extractor_front_off", + "side": "techreborn:block/machines/tier1_machines/machine_side" + } +} diff --git a/src/main/resources/assets/techreborn/models/block/machines/tier1_machines/extractor_on.json b/src/main/resources/assets/techreborn/models/block/machines/tier1_machines/extractor_on.json new file mode 100644 index 000000000..39fc58e7e --- /dev/null +++ b/src/main/resources/assets/techreborn/models/block/machines/tier1_machines/extractor_on.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/orientable", + "textures": { + "top": "techreborn:block/machines/tier1_machines/machine_top", + "front": "techreborn:block/machines/tier1_machines/extractor_front_on", + "side": "techreborn:block/machines/tier1_machines/machine_side" + } +} diff --git a/src/main/resources/assets/techreborn/models/block/machines/tier1_machines/player_detector_all.json b/src/main/resources/assets/techreborn/models/block/machines/tier1_machines/player_detector_all.json new file mode 100644 index 000000000..ce56d57a2 --- /dev/null +++ b/src/main/resources/assets/techreborn/models/block/machines/tier1_machines/player_detector_all.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "techreborn:block/machines/tier1_machines/player_detector_all" + } +} diff --git a/src/main/resources/assets/techreborn/models/block/machines/tier1_machines/player_detector_others.json b/src/main/resources/assets/techreborn/models/block/machines/tier1_machines/player_detector_others.json new file mode 100644 index 000000000..229ffc90a --- /dev/null +++ b/src/main/resources/assets/techreborn/models/block/machines/tier1_machines/player_detector_others.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "techreborn:block/machines/tier1_machines/player_detector_others" + } +} diff --git a/src/main/resources/assets/techreborn/models/block/machines/tier1_machines/player_detector_you.json b/src/main/resources/assets/techreborn/models/block/machines/tier1_machines/player_detector_you.json new file mode 100644 index 000000000..aaeba06dd --- /dev/null +++ b/src/main/resources/assets/techreborn/models/block/machines/tier1_machines/player_detector_you.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "techreborn:block/machines/tier1_machines/player_detector_you" + } +} diff --git a/src/main/resources/assets/techreborn/models/block/machines/tier1_machines/recycler.json b/src/main/resources/assets/techreborn/models/block/machines/tier1_machines/recycler.json new file mode 100644 index 000000000..6abe97d37 --- /dev/null +++ b/src/main/resources/assets/techreborn/models/block/machines/tier1_machines/recycler.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/orientable", + "textures": { + "top": "techreborn:block/machines/tier1_machines/machine_top", + "front": "techreborn:block/machines/tier1_machines/recycler_front_off", + "side": "techreborn:block/machines/tier1_machines/machine_side" + } +} diff --git a/src/main/resources/assets/techreborn/models/block/machines/tier1_machines/recycler_on.json b/src/main/resources/assets/techreborn/models/block/machines/tier1_machines/recycler_on.json new file mode 100644 index 000000000..e1a7b922b --- /dev/null +++ b/src/main/resources/assets/techreborn/models/block/machines/tier1_machines/recycler_on.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/orientable", + "textures": { + "top": "techreborn:block/machines/tier1_machines/machine_top", + "front": "techreborn:block/machines/tier1_machines/recycler_front_on", + "side": "techreborn:block/machines/tier1_machines/machine_side" + } +} diff --git a/src/main/resources/assets/techreborn/models/block/machines/tier1_machines/rolling_machine.json b/src/main/resources/assets/techreborn/models/block/machines/tier1_machines/rolling_machine.json new file mode 100644 index 000000000..b01bc7a82 --- /dev/null +++ b/src/main/resources/assets/techreborn/models/block/machines/tier1_machines/rolling_machine.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/orientable", + "textures": { + "top": "techreborn:block/machines/tier1_machines/machine_top", + "front": "techreborn:block/machines/tier1_machines/rolling_machine_front_off", + "side": "techreborn:block/machines/tier1_machines/machine_side" + } +} diff --git a/src/main/resources/assets/techreborn/models/block/machines/tier1_machines/rolling_machine_on.json b/src/main/resources/assets/techreborn/models/block/machines/tier1_machines/rolling_machine_on.json new file mode 100644 index 000000000..2ea6ac014 --- /dev/null +++ b/src/main/resources/assets/techreborn/models/block/machines/tier1_machines/rolling_machine_on.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/orientable", + "textures": { + "top": "techreborn:block/machines/tier1_machines/machine_top", + "front": "techreborn:block/machines/tier1_machines/rolling_machine_front_on", + "side": "techreborn:block/machines/tier1_machines/machine_side" + } +} diff --git a/src/main/resources/assets/techreborn/models/block/machines/tier1_machines/scrapboxinator.json b/src/main/resources/assets/techreborn/models/block/machines/tier1_machines/scrapboxinator.json new file mode 100644 index 000000000..4f37b4d42 --- /dev/null +++ b/src/main/resources/assets/techreborn/models/block/machines/tier1_machines/scrapboxinator.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/orientable", + "textures": { + "top": "techreborn:block/machines/tier1_machines/machine_top", + "front": "techreborn:block/machines/tier1_machines/scrapboxinator_front_off", + "side": "techreborn:block/machines/tier1_machines/machine_side" + } +} diff --git a/src/main/resources/assets/techreborn/models/block/machines/tier1_machines/scrapboxinator_on.json b/src/main/resources/assets/techreborn/models/block/machines/tier1_machines/scrapboxinator_on.json new file mode 100644 index 000000000..40cdcc3ac --- /dev/null +++ b/src/main/resources/assets/techreborn/models/block/machines/tier1_machines/scrapboxinator_on.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/orientable", + "textures": { + "top": "techreborn:block/machines/tier1_machines/machine_top", + "front": "techreborn:block/machines/tier1_machines/scrapboxinator_front_on", + "side": "techreborn:block/machines/tier1_machines/machine_side" + } +} diff --git a/src/main/resources/assets/techreborn/models/item/assembly_machine.json b/src/main/resources/assets/techreborn/models/item/assembly_machine.json new file mode 100644 index 000000000..5b5f7ed32 --- /dev/null +++ b/src/main/resources/assets/techreborn/models/item/assembly_machine.json @@ -0,0 +1,3 @@ +{ + "parent": "techreborn:block/machines/tier1_machines/assembly_machine" +} \ No newline at end of file diff --git a/src/main/resources/assets/techreborn/models/item/auto_crafting_table.json b/src/main/resources/assets/techreborn/models/item/auto_crafting_table.json new file mode 100644 index 000000000..dd3d8f969 --- /dev/null +++ b/src/main/resources/assets/techreborn/models/item/auto_crafting_table.json @@ -0,0 +1,3 @@ +{ + "parent": "techreborn:block/machines/tier1_machines/auto_crafting_table" +} \ No newline at end of file diff --git a/src/main/resources/assets/techreborn/models/item/chemical_reactor.json b/src/main/resources/assets/techreborn/models/item/chemical_reactor.json new file mode 100644 index 000000000..c4adb614e --- /dev/null +++ b/src/main/resources/assets/techreborn/models/item/chemical_reactor.json @@ -0,0 +1,3 @@ +{ + "parent": "techreborn:block/machines/tier1_machines/chemical_reactor" +} \ No newline at end of file diff --git a/src/main/resources/assets/techreborn/models/item/compressor.json b/src/main/resources/assets/techreborn/models/item/compressor.json new file mode 100644 index 000000000..9abb4c048 --- /dev/null +++ b/src/main/resources/assets/techreborn/models/item/compressor.json @@ -0,0 +1,3 @@ +{ + "parent": "techreborn:block/machines/tier1_machines/compressor" +} \ No newline at end of file diff --git a/src/main/resources/assets/techreborn/models/item/electric_furnace.json b/src/main/resources/assets/techreborn/models/item/electric_furnace.json new file mode 100644 index 000000000..49e733d0b --- /dev/null +++ b/src/main/resources/assets/techreborn/models/item/electric_furnace.json @@ -0,0 +1,3 @@ +{ + "parent": "techreborn:block/machines/tier1_machines/electric_furnace" +} \ No newline at end of file diff --git a/src/main/resources/assets/techreborn/models/item/extractor.json b/src/main/resources/assets/techreborn/models/item/extractor.json new file mode 100644 index 000000000..b0ef3fc77 --- /dev/null +++ b/src/main/resources/assets/techreborn/models/item/extractor.json @@ -0,0 +1,3 @@ +{ + "parent": "techreborn:block/machines/tier1_machines/extractor" +} \ No newline at end of file diff --git a/src/main/resources/assets/techreborn/models/item/player_detector.json b/src/main/resources/assets/techreborn/models/item/player_detector.json new file mode 100644 index 000000000..b8e9a8625 --- /dev/null +++ b/src/main/resources/assets/techreborn/models/item/player_detector.json @@ -0,0 +1,3 @@ +{ + "parent": "techreborn:block/machines/tier1_machines/player_detector_all" +} \ No newline at end of file diff --git a/src/main/resources/assets/techreborn/models/item/recycler.json b/src/main/resources/assets/techreborn/models/item/recycler.json new file mode 100644 index 000000000..e1beb37d7 --- /dev/null +++ b/src/main/resources/assets/techreborn/models/item/recycler.json @@ -0,0 +1,3 @@ +{ + "parent": "techreborn:block/machines/tier1_machines/recycler" +} \ No newline at end of file diff --git a/src/main/resources/assets/techreborn/models/item/rolling_machine.json b/src/main/resources/assets/techreborn/models/item/rolling_machine.json new file mode 100644 index 000000000..57b6e7d9d --- /dev/null +++ b/src/main/resources/assets/techreborn/models/item/rolling_machine.json @@ -0,0 +1,3 @@ +{ + "parent": "techreborn:block/machines/tier1_machines/rolling_machine" +} \ No newline at end of file diff --git a/src/main/resources/assets/techreborn/models/item/scrapboxinator.json b/src/main/resources/assets/techreborn/models/item/scrapboxinator.json new file mode 100644 index 000000000..399d16cf2 --- /dev/null +++ b/src/main/resources/assets/techreborn/models/item/scrapboxinator.json @@ -0,0 +1,3 @@ +{ + "parent": "techreborn:block/machines/tier1_machines/scrapboxinator" +} \ No newline at end of file diff --git a/src/main/resources/assets/techreborn/textures/block/machines/tier1_machines/electric_crafting_table_side.png b/src/main/resources/assets/techreborn/textures/block/machines/tier1_machines/auto_crafting_table_side.png similarity index 100% rename from src/main/resources/assets/techreborn/textures/block/machines/tier1_machines/electric_crafting_table_side.png rename to src/main/resources/assets/techreborn/textures/block/machines/tier1_machines/auto_crafting_table_side.png diff --git a/src/main/resources/assets/techreborn/textures/block/machines/tier1_machines/electric_crafting_table_top.png b/src/main/resources/assets/techreborn/textures/block/machines/tier1_machines/auto_crafting_table_top.png similarity index 100% rename from src/main/resources/assets/techreborn/textures/block/machines/tier1_machines/electric_crafting_table_top.png rename to src/main/resources/assets/techreborn/textures/block/machines/tier1_machines/auto_crafting_table_top.png