Add steel catwalk blocks, and fix recipes

This commit is contained in:
Zontreck 2024-03-01 03:01:52 -07:00
parent 21c459bd95
commit f2ce7d33d6
206 changed files with 4343 additions and 1418 deletions

View file

@ -48,7 +48,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=1201.4.022824.1317
mod_version=1201.4.030124.0236
# 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

View file

@ -0,0 +1,124 @@
{
"variants": {
"facing=east,half=lower,hinge=left,open=false": {
"model": "otemod:block/old_industrial_wood_door_bottom_left"
},
"facing=east,half=lower,hinge=left,open=true": {
"model": "otemod:block/old_industrial_wood_door_bottom_left_open",
"y": 90
},
"facing=east,half=lower,hinge=right,open=false": {
"model": "otemod:block/old_industrial_wood_door_bottom_right"
},
"facing=east,half=lower,hinge=right,open=true": {
"model": "otemod:block/old_industrial_wood_door_bottom_right_open",
"y": 270
},
"facing=east,half=upper,hinge=left,open=false": {
"model": "otemod:block/old_industrial_wood_door_top_left"
},
"facing=east,half=upper,hinge=left,open=true": {
"model": "otemod:block/old_industrial_wood_door_top_left_open",
"y": 90
},
"facing=east,half=upper,hinge=right,open=false": {
"model": "otemod:block/old_industrial_wood_door_top_right"
},
"facing=east,half=upper,hinge=right,open=true": {
"model": "otemod:block/old_industrial_wood_door_top_right_open",
"y": 270
},
"facing=north,half=lower,hinge=left,open=false": {
"model": "otemod:block/old_industrial_wood_door_bottom_left",
"y": 270
},
"facing=north,half=lower,hinge=left,open=true": {
"model": "otemod:block/old_industrial_wood_door_bottom_left_open"
},
"facing=north,half=lower,hinge=right,open=false": {
"model": "otemod:block/old_industrial_wood_door_bottom_right",
"y": 270
},
"facing=north,half=lower,hinge=right,open=true": {
"model": "otemod:block/old_industrial_wood_door_bottom_right_open",
"y": 180
},
"facing=north,half=upper,hinge=left,open=false": {
"model": "otemod:block/old_industrial_wood_door_top_left",
"y": 270
},
"facing=north,half=upper,hinge=left,open=true": {
"model": "otemod:block/old_industrial_wood_door_top_left_open"
},
"facing=north,half=upper,hinge=right,open=false": {
"model": "otemod:block/old_industrial_wood_door_top_right",
"y": 270
},
"facing=north,half=upper,hinge=right,open=true": {
"model": "otemod:block/old_industrial_wood_door_top_right_open",
"y": 180
},
"facing=south,half=lower,hinge=left,open=false": {
"model": "otemod:block/old_industrial_wood_door_bottom_left",
"y": 90
},
"facing=south,half=lower,hinge=left,open=true": {
"model": "otemod:block/old_industrial_wood_door_bottom_left_open",
"y": 180
},
"facing=south,half=lower,hinge=right,open=false": {
"model": "otemod:block/old_industrial_wood_door_bottom_right",
"y": 90
},
"facing=south,half=lower,hinge=right,open=true": {
"model": "otemod:block/old_industrial_wood_door_bottom_right_open"
},
"facing=south,half=upper,hinge=left,open=false": {
"model": "otemod:block/old_industrial_wood_door_top_left",
"y": 90
},
"facing=south,half=upper,hinge=left,open=true": {
"model": "otemod:block/old_industrial_wood_door_top_left_open",
"y": 180
},
"facing=south,half=upper,hinge=right,open=false": {
"model": "otemod:block/old_industrial_wood_door_top_right",
"y": 90
},
"facing=south,half=upper,hinge=right,open=true": {
"model": "otemod:block/old_industrial_wood_door_top_right_open"
},
"facing=west,half=lower,hinge=left,open=false": {
"model": "otemod:block/old_industrial_wood_door_bottom_left",
"y": 180
},
"facing=west,half=lower,hinge=left,open=true": {
"model": "otemod:block/old_industrial_wood_door_bottom_left_open",
"y": 270
},
"facing=west,half=lower,hinge=right,open=false": {
"model": "otemod:block/old_industrial_wood_door_bottom_right",
"y": 180
},
"facing=west,half=lower,hinge=right,open=true": {
"model": "otemod:block/old_industrial_wood_door_bottom_right_open",
"y": 90
},
"facing=west,half=upper,hinge=left,open=false": {
"model": "otemod:block/old_industrial_wood_door_top_left",
"y": 180
},
"facing=west,half=upper,hinge=left,open=true": {
"model": "otemod:block/old_industrial_wood_door_top_left_open",
"y": 270
},
"facing=west,half=upper,hinge=right,open=false": {
"model": "otemod:block/old_industrial_wood_door_top_right",
"y": 180
},
"facing=west,half=upper,hinge=right,open=true": {
"model": "otemod:block/old_industrial_wood_door_top_right_open",
"y": 90
}
}
}

View file

@ -0,0 +1,18 @@
{
"variants": {
"": [
{
"model": "otemod:block/old_industrial_wood_planks_model0"
},
{
"model": "otemod:block/old_industrial_wood_planks_model1"
},
{
"model": "otemod:block/old_industrial_wood_planks_model2"
},
{
"model": "otemod:block/old_industrial_wood_planks_model3"
}
]
}
}

View file

@ -0,0 +1,88 @@
{
"variants": {
"type=bottom,waterlogged=false": [
{
"model": "otemod:block/old_industrial_wood_slab_model0_bottom"
},
{
"model": "otemod:block/old_industrial_wood_slab_model1_bottom"
},
{
"model": "otemod:block/old_industrial_wood_slab_model2_bottom"
},
{
"model": "otemod:block/old_industrial_wood_slab_model3_bottom"
}
],
"type=bottom,waterlogged=true": [
{
"model": "otemod:block/old_industrial_wood_slab_model0_bottom"
},
{
"model": "otemod:block/old_industrial_wood_slab_model1_bottom"
},
{
"model": "otemod:block/old_industrial_wood_slab_model2_bottom"
},
{
"model": "otemod:block/old_industrial_wood_slab_model3_bottom"
}
],
"type=double,waterlogged=false": [
{
"model": "otemod:block/old_industrial_wood_slab_model0_double"
},
{
"model": "otemod:block/old_industrial_wood_slab_model1_double"
},
{
"model": "otemod:block/old_industrial_wood_slab_model2_double"
},
{
"model": "otemod:block/old_industrial_wood_slab_model3_double"
}
],
"type=double,waterlogged=true": [
{
"model": "otemod:block/old_industrial_wood_slab_model0_double"
},
{
"model": "otemod:block/old_industrial_wood_slab_model1_double"
},
{
"model": "otemod:block/old_industrial_wood_slab_model2_double"
},
{
"model": "otemod:block/old_industrial_wood_slab_model3_double"
}
],
"type=top,waterlogged=false": [
{
"model": "otemod:block/old_industrial_wood_slab_model0_top"
},
{
"model": "otemod:block/old_industrial_wood_slab_model1_top"
},
{
"model": "otemod:block/old_industrial_wood_slab_model2_top"
},
{
"model": "otemod:block/old_industrial_wood_slab_model3_top"
}
],
"type=top,waterlogged=true": [
{
"model": "otemod:block/old_industrial_wood_slab_model0_top"
},
{
"model": "otemod:block/old_industrial_wood_slab_model1_top"
},
{
"model": "otemod:block/old_industrial_wood_slab_model2_top"
},
{
"model": "otemod:block/old_industrial_wood_slab_model3_top"
}
]
}
}

File diff suppressed because it is too large Load diff

View file

@ -0,0 +1,7 @@
{
"variants": {
"": {
"model": "otemod:block/steel_catwalk"
}
}
}

View file

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

View file

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

View file

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

View file

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

View file

@ -0,0 +1,7 @@
{
"variants": {
"": {
"model": "otemod:block/steel_catwalk_top"
}
}
}

View file

@ -0,0 +1,7 @@
{
"variants": {
"": {
"model": "otemod:block/steel_floor_grating"
}
}
}

View file

@ -0,0 +1,7 @@
{
"variants": {
"": {
"model": "otemod:block/steel_floor_grating_top"
}
}
}

View file

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

View file

@ -0,0 +1,7 @@
{
"variants": {
"": {
"model": "otemod:block/steel_table"
}
}
}

View file

@ -0,0 +1,7 @@
{
"parent": "minecraft:block/door_bottom_left",
"textures": {
"bottom": "otemod:block/engineersdecor/door/old_industrial_door_texture_top",
"top": "otemod:block/engineersdecor/door/old_industrial_door_texture_bottom"
}
}

View file

@ -0,0 +1,8 @@
{
"parent": "minecraft:block/door_bottom_left",
"render_type": "minecraft:translucent",
"textures": {
"bottom": "otemod:block/engineersdecor/door/old_industrial_door_texture_top",
"top": "otemod:block/engineersdecor/door/old_industrial_door_texture_bottom"
}
}

View file

@ -0,0 +1,8 @@
{
"parent": "minecraft:block/door_bottom_left_open",
"render_type": "minecraft:translucent",
"textures": {
"bottom": "otemod:block/engineersdecor/door/old_industrial_door_texture_top",
"top": "otemod:block/engineersdecor/door/old_industrial_door_texture_bottom"
}
}

View file

@ -0,0 +1,8 @@
{
"parent": "minecraft:block/door_bottom_right",
"render_type": "minecraft:translucent",
"textures": {
"bottom": "otemod:block/engineersdecor/door/old_industrial_door_texture_top",
"top": "otemod:block/engineersdecor/door/old_industrial_door_texture_bottom"
}
}

View file

@ -0,0 +1,8 @@
{
"parent": "minecraft:block/door_bottom_right_open",
"render_type": "minecraft:translucent",
"textures": {
"bottom": "otemod:block/engineersdecor/door/old_industrial_door_texture_top",
"top": "otemod:block/engineersdecor/door/old_industrial_door_texture_bottom"
}
}

View file

@ -0,0 +1,8 @@
{
"parent": "minecraft:block/door_top_left",
"render_type": "minecraft:translucent",
"textures": {
"bottom": "otemod:block/engineersdecor/door/old_industrial_door_texture_top",
"top": "otemod:block/engineersdecor/door/old_industrial_door_texture_bottom"
}
}

View file

@ -0,0 +1,8 @@
{
"parent": "minecraft:block/door_top_left_open",
"render_type": "minecraft:translucent",
"textures": {
"bottom": "otemod:block/engineersdecor/door/old_industrial_door_texture_top",
"top": "otemod:block/engineersdecor/door/old_industrial_door_texture_bottom"
}
}

View file

@ -0,0 +1,8 @@
{
"parent": "minecraft:block/door_top_right",
"render_type": "minecraft:translucent",
"textures": {
"bottom": "otemod:block/engineersdecor/door/old_industrial_door_texture_top",
"top": "otemod:block/engineersdecor/door/old_industrial_door_texture_bottom"
}
}

View file

@ -0,0 +1,8 @@
{
"parent": "minecraft:block/door_top_right_open",
"render_type": "minecraft:translucent",
"textures": {
"bottom": "otemod:block/engineersdecor/door/old_industrial_door_texture_top",
"top": "otemod:block/engineersdecor/door/old_industrial_door_texture_bottom"
}
}

View file

@ -0,0 +1,6 @@
{
"parent": "minecraft:block/cube_all",
"textures": {
"all": "otemod:block/engineersdecor/material/industrial_planks_texture0"
}
}

View file

@ -0,0 +1,6 @@
{
"parent": "minecraft:block/cube_all",
"textures": {
"all": "otemod:block/engineersdecor/material/industrial_planks_texture1"
}
}

View file

@ -0,0 +1,6 @@
{
"parent": "minecraft:block/cube_all",
"textures": {
"all": "otemod:block/engineersdecor/material/industrial_planks_texture2"
}
}

View file

@ -0,0 +1,6 @@
{
"parent": "minecraft:block/cube_all",
"textures": {
"all": "otemod:block/engineersdecor/material/industrial_planks_texture3"
}
}

View file

@ -0,0 +1,8 @@
{
"parent": "minecraft:block/slab",
"textures": {
"bottom": "otemod:block/engineersdecor/material/industrial_planks_texture0",
"side": "otemod:block/engineersdecor/material/industrial_planks_texture0",
"top": "otemod:block/engineersdecor/material/industrial_planks_texture0"
}
}

View file

@ -0,0 +1,6 @@
{
"parent": "minecraft:block/cube_all",
"textures": {
"all": "otemod:block/engineersdecor/material/industrial_planks_texture0"
}
}

View file

@ -0,0 +1,8 @@
{
"parent": "minecraft:block/slab_top",
"textures": {
"bottom": "otemod:block/engineersdecor/material/industrial_planks_texture0",
"side": "otemod:block/engineersdecor/material/industrial_planks_texture0",
"top": "otemod:block/engineersdecor/material/industrial_planks_texture0"
}
}

View file

@ -0,0 +1,8 @@
{
"parent": "minecraft:block/slab",
"textures": {
"bottom": "otemod:block/engineersdecor/material/industrial_planks_texture1",
"side": "otemod:block/engineersdecor/material/industrial_planks_texture1",
"top": "otemod:block/engineersdecor/material/industrial_planks_texture1"
}
}

View file

@ -0,0 +1,6 @@
{
"parent": "minecraft:block/cube_all",
"textures": {
"all": "otemod:block/engineersdecor/material/industrial_planks_texture1"
}
}

View file

@ -0,0 +1,8 @@
{
"parent": "minecraft:block/slab_top",
"textures": {
"bottom": "otemod:block/engineersdecor/material/industrial_planks_texture1",
"side": "otemod:block/engineersdecor/material/industrial_planks_texture1",
"top": "otemod:block/engineersdecor/material/industrial_planks_texture1"
}
}

View file

@ -0,0 +1,8 @@
{
"parent": "minecraft:block/slab",
"textures": {
"bottom": "otemod:block/engineersdecor/material/industrial_planks_texture2",
"side": "otemod:block/engineersdecor/material/industrial_planks_texture2",
"top": "otemod:block/engineersdecor/material/industrial_planks_texture2"
}
}

View file

@ -0,0 +1,6 @@
{
"parent": "minecraft:block/cube_all",
"textures": {
"all": "otemod:block/engineersdecor/material/industrial_planks_texture2"
}
}

View file

@ -0,0 +1,8 @@
{
"parent": "minecraft:block/slab_top",
"textures": {
"bottom": "otemod:block/engineersdecor/material/industrial_planks_texture2",
"side": "otemod:block/engineersdecor/material/industrial_planks_texture2",
"top": "otemod:block/engineersdecor/material/industrial_planks_texture2"
}
}

View file

@ -0,0 +1,8 @@
{
"parent": "minecraft:block/slab",
"textures": {
"bottom": "otemod:block/engineersdecor/material/industrial_planks_texture3",
"side": "otemod:block/engineersdecor/material/industrial_planks_texture3",
"top": "otemod:block/engineersdecor/material/industrial_planks_texture3"
}
}

View file

@ -0,0 +1,6 @@
{
"parent": "minecraft:block/cube_all",
"textures": {
"all": "otemod:block/engineersdecor/material/industrial_planks_texture3"
}
}

View file

@ -0,0 +1,8 @@
{
"parent": "minecraft:block/slab_top",
"textures": {
"bottom": "otemod:block/engineersdecor/material/industrial_planks_texture3",
"side": "otemod:block/engineersdecor/material/industrial_planks_texture3",
"top": "otemod:block/engineersdecor/material/industrial_planks_texture3"
}
}

View file

@ -0,0 +1,8 @@
{
"parent": "minecraft:block/stairs",
"textures": {
"bottom": "otemod:block/engineersdecor/material/industrial_planks_texture0",
"side": "otemod:block/engineersdecor/material/industrial_planks_texture0",
"top": "otemod:block/engineersdecor/material/industrial_planks_texture0"
}
}

View file

@ -0,0 +1,8 @@
{
"parent": "minecraft:block/inner_stairs",
"textures": {
"bottom": "otemod:block/engineersdecor/material/industrial_planks_texture0",
"side": "otemod:block/engineersdecor/material/industrial_planks_texture0",
"top": "otemod:block/engineersdecor/material/industrial_planks_texture0"
}
}

View file

@ -0,0 +1,8 @@
{
"parent": "minecraft:block/outer_stairs",
"textures": {
"bottom": "otemod:block/engineersdecor/material/industrial_planks_texture0",
"side": "otemod:block/engineersdecor/material/industrial_planks_texture0",
"top": "otemod:block/engineersdecor/material/industrial_planks_texture0"
}
}

View file

@ -0,0 +1,8 @@
{
"parent": "minecraft:block/stairs",
"textures": {
"bottom": "otemod:block/engineersdecor/material/industrial_planks_texture1",
"side": "otemod:block/engineersdecor/material/industrial_planks_texture1",
"top": "otemod:block/engineersdecor/material/industrial_planks_texture1"
}
}

View file

@ -0,0 +1,8 @@
{
"parent": "minecraft:block/inner_stairs",
"textures": {
"bottom": "otemod:block/engineersdecor/material/industrial_planks_texture1",
"side": "otemod:block/engineersdecor/material/industrial_planks_texture1",
"top": "otemod:block/engineersdecor/material/industrial_planks_texture1"
}
}

View file

@ -0,0 +1,8 @@
{
"parent": "minecraft:block/outer_stairs",
"textures": {
"bottom": "otemod:block/engineersdecor/material/industrial_planks_texture1",
"side": "otemod:block/engineersdecor/material/industrial_planks_texture1",
"top": "otemod:block/engineersdecor/material/industrial_planks_texture1"
}
}

View file

@ -0,0 +1,8 @@
{
"parent": "minecraft:block/stairs",
"textures": {
"bottom": "otemod:block/engineersdecor/material/industrial_planks_texture2",
"side": "otemod:block/engineersdecor/material/industrial_planks_texture2",
"top": "otemod:block/engineersdecor/material/industrial_planks_texture2"
}
}

View file

@ -0,0 +1,8 @@
{
"parent": "minecraft:block/inner_stairs",
"textures": {
"bottom": "otemod:block/engineersdecor/material/industrial_planks_texture2",
"side": "otemod:block/engineersdecor/material/industrial_planks_texture2",
"top": "otemod:block/engineersdecor/material/industrial_planks_texture2"
}
}

View file

@ -0,0 +1,8 @@
{
"parent": "minecraft:block/outer_stairs",
"textures": {
"bottom": "otemod:block/engineersdecor/material/industrial_planks_texture2",
"side": "otemod:block/engineersdecor/material/industrial_planks_texture2",
"top": "otemod:block/engineersdecor/material/industrial_planks_texture2"
}
}

View file

@ -0,0 +1,8 @@
{
"parent": "minecraft:block/stairs",
"textures": {
"bottom": "otemod:block/engineersdecor/material/industrial_planks_texture3",
"side": "otemod:block/engineersdecor/material/industrial_planks_texture3",
"top": "otemod:block/engineersdecor/material/industrial_planks_texture3"
}
}

View file

@ -0,0 +1,8 @@
{
"parent": "minecraft:block/inner_stairs",
"textures": {
"bottom": "otemod:block/engineersdecor/material/industrial_planks_texture3",
"side": "otemod:block/engineersdecor/material/industrial_planks_texture3",
"top": "otemod:block/engineersdecor/material/industrial_planks_texture3"
}
}

View file

@ -0,0 +1,8 @@
{
"parent": "minecraft:block/outer_stairs",
"textures": {
"bottom": "otemod:block/engineersdecor/material/industrial_planks_texture3",
"side": "otemod:block/engineersdecor/material/industrial_planks_texture3",
"top": "otemod:block/engineersdecor/material/industrial_planks_texture3"
}
}

View file

@ -0,0 +1,3 @@
{
"parent": "otemod:block/engineersdecor/furniture/steel_catwalk"
}

View file

@ -0,0 +1,3 @@
{
"parent": "otemod:block/engineersdecor/furniture/steel_catwalk_stairs"
}

View file

@ -0,0 +1,3 @@
{
"parent": "otemod:block/engineersdecor/furniture/steel_catwalk_stairs_dr"
}

View file

@ -0,0 +1,3 @@
{
"parent": "otemod:block/engineersdecor/furniture/steel_catwalk_stairs_lr"
}

View file

@ -0,0 +1,3 @@
{
"parent": "otemod:block/engineersdecor/furniture/steel_catwalk_stairs_rr"
}

View file

@ -0,0 +1,3 @@
{
"parent": "otemod:block/engineersdecor/furniture/steel_catwalk_top"
}

View file

@ -0,0 +1,3 @@
{
"parent": "otemod:block/engineersdecor/furniture/steel_floor_grating"
}

View file

@ -0,0 +1,3 @@
{
"parent": "otemod:block/engineersdecor/furniture/steel_floor_grating_top"
}

View file

@ -0,0 +1,3 @@
{
"parent": "otemod:block/engineersdecor/furniture/steel_railing"
}

View file

@ -0,0 +1,3 @@
{
"parent": "otemod:block/engineersdecor/furniture/steel_table"
}

View file

@ -0,0 +1,3 @@
{
"parent": "otemod:block/old_industrial_wood_door"
}

View file

@ -0,0 +1,3 @@
{
"parent": "otemod:block/old_industrial_wood_planks_model0"
}

View file

@ -0,0 +1,3 @@
{
"parent": "otemod:block/old_industrial_wood_slab_model0_bottom"
}

View file

@ -0,0 +1,3 @@
{
"parent": "otemod:block/old_industrial_wood_stairs_model0"
}

View file

@ -0,0 +1,3 @@
{
"parent": "otemod:block/steel_catwalk"
}

View file

@ -0,0 +1,3 @@
{
"parent": "otemod:block/steel_catwalk_stairs"
}

View file

@ -0,0 +1,3 @@
{
"parent": "otemod:block/steel_catwalk_stairs_dr"
}

View file

@ -0,0 +1,3 @@
{
"parent": "otemod:block/steel_catwalk_stairs_lr"
}

View file

@ -0,0 +1,3 @@
{
"parent": "otemod:block/steel_catwalk_stairs_rr"
}

View file

@ -0,0 +1,3 @@
{
"parent": "otemod:block/steel_catwalk_top"
}

View file

@ -0,0 +1,3 @@
{
"parent": "otemod:block/steel_floor_grating"
}

View file

@ -0,0 +1,3 @@
{
"parent": "otemod:block/steel_floor_grating_top"
}

View file

@ -0,0 +1,3 @@
{
"parent": "otemod:block/steel_railing"
}

View file

@ -0,0 +1,3 @@
{
"parent": "otemod:block/steel_table"
}

View file

@ -3,14 +3,28 @@
"pools": [
{
"bonus_rolls": 0.0,
"conditions": [
{
"condition": "minecraft:survives_explosion"
}
],
"entries": [
{
"type": "minecraft:item",
"functions": [
{
"add": false,
"conditions": [
{
"block": "otemod:blue_pool_tile_slab",
"condition": "minecraft:block_state_property",
"properties": {
"type": "double"
}
}
],
"count": 2.0,
"function": "minecraft:set_count"
},
{
"function": "minecraft:explosion_decay"
}
],
"name": "otemod:blue_pool_tile_slab"
}
],

View file

@ -3,14 +3,28 @@
"pools": [
{
"bonus_rolls": 0.0,
"conditions": [
{
"condition": "minecraft:survives_explosion"
}
],
"entries": [
{
"type": "minecraft:item",
"functions": [
{
"add": false,
"conditions": [
{
"block": "otemod:clinker_brick_slab",
"condition": "minecraft:block_state_property",
"properties": {
"type": "double"
}
}
],
"count": 2.0,
"function": "minecraft:set_count"
},
{
"function": "minecraft:explosion_decay"
}
],
"name": "otemod:clinker_brick_slab"
}
],

View file

@ -3,14 +3,28 @@
"pools": [
{
"bonus_rolls": 0.0,
"conditions": [
{
"condition": "minecraft:survives_explosion"
}
],
"entries": [
{
"type": "minecraft:item",
"functions": [
{
"add": false,
"conditions": [
{
"block": "otemod:clinker_brick_stained_slab",
"condition": "minecraft:block_state_property",
"properties": {
"type": "double"
}
}
],
"count": 2.0,
"function": "minecraft:set_count"
},
{
"function": "minecraft:explosion_decay"
}
],
"name": "otemod:clinker_brick_stained_slab"
}
],

View file

@ -3,14 +3,28 @@
"pools": [
{
"bonus_rolls": 0.0,
"conditions": [
{
"condition": "minecraft:survives_explosion"
}
],
"entries": [
{
"type": "minecraft:item",
"functions": [
{
"add": false,
"conditions": [
{
"block": "otemod:dark_pool_tile_slab",
"condition": "minecraft:block_state_property",
"properties": {
"type": "double"
}
}
],
"count": 2.0,
"function": "minecraft:set_count"
},
{
"function": "minecraft:explosion_decay"
}
],
"name": "otemod:dark_pool_tile_slab"
}
],

View file

@ -3,14 +3,28 @@
"pools": [
{
"bonus_rolls": 0.0,
"conditions": [
{
"condition": "minecraft:survives_explosion"
}
],
"entries": [
{
"type": "minecraft:item",
"functions": [
{
"add": false,
"conditions": [
{
"block": "otemod:dirty_blue_pool_tile_slab",
"condition": "minecraft:block_state_property",
"properties": {
"type": "double"
}
}
],
"count": 2.0,
"function": "minecraft:set_count"
},
{
"function": "minecraft:explosion_decay"
}
],
"name": "otemod:dirty_blue_pool_tile_slab"
}
],

View file

@ -3,14 +3,28 @@
"pools": [
{
"bonus_rolls": 0.0,
"conditions": [
{
"condition": "minecraft:survives_explosion"
}
],
"entries": [
{
"type": "minecraft:item",
"functions": [
{
"add": false,
"conditions": [
{
"block": "otemod:dirty_green_pool_tile_slab",
"condition": "minecraft:block_state_property",
"properties": {
"type": "double"
}
}
],
"count": 2.0,
"function": "minecraft:set_count"
},
{
"function": "minecraft:explosion_decay"
}
],
"name": "otemod:dirty_green_pool_tile_slab"
}
],

View file

@ -3,14 +3,28 @@
"pools": [
{
"bonus_rolls": 0.0,
"conditions": [
{
"condition": "minecraft:survives_explosion"
}
],
"entries": [
{
"type": "minecraft:item",
"functions": [
{
"add": false,
"conditions": [
{
"block": "otemod:dirty_pool_tile_slab",
"condition": "minecraft:block_state_property",
"properties": {
"type": "double"
}
}
],
"count": 2.0,
"function": "minecraft:set_count"
},
{
"function": "minecraft:explosion_decay"
}
],
"name": "otemod:dirty_pool_tile_slab"
}
],

View file

@ -3,14 +3,28 @@
"pools": [
{
"bonus_rolls": 0.0,
"conditions": [
{
"condition": "minecraft:survives_explosion"
}
],
"entries": [
{
"type": "minecraft:item",
"functions": [
{
"add": false,
"conditions": [
{
"block": "otemod:dirty_red_pool_tile_slab",
"condition": "minecraft:block_state_property",
"properties": {
"type": "double"
}
}
],
"count": 2.0,
"function": "minecraft:set_count"
},
{
"function": "minecraft:explosion_decay"
}
],
"name": "otemod:dirty_red_pool_tile_slab"
}
],

View file

@ -3,14 +3,28 @@
"pools": [
{
"bonus_rolls": 0.0,
"conditions": [
{
"condition": "minecraft:survives_explosion"
}
],
"entries": [
{
"type": "minecraft:item",
"functions": [
{
"add": false,
"conditions": [
{
"block": "otemod:green_pool_tile_slab",
"condition": "minecraft:block_state_property",
"properties": {
"type": "double"
}
}
],
"count": 2.0,
"function": "minecraft:set_count"
},
{
"function": "minecraft:explosion_decay"
}
],
"name": "otemod:green_pool_tile_slab"
}
],

View file

@ -0,0 +1,30 @@
{
"type": "minecraft:block",
"pools": [
{
"bonus_rolls": 0.0,
"conditions": [
{
"condition": "minecraft:survives_explosion"
}
],
"entries": [
{
"type": "minecraft:item",
"conditions": [
{
"block": "otemod:old_industrial_wood_door",
"condition": "minecraft:block_state_property",
"properties": {
"half": "lower"
}
}
],
"name": "otemod:old_industrial_wood_door"
}
],
"rolls": 1.0
}
],
"random_sequence": "otemod:blocks/old_industrial_wood_door"
}

View file

@ -0,0 +1,21 @@
{
"type": "minecraft:block",
"pools": [
{
"bonus_rolls": 0.0,
"conditions": [
{
"condition": "minecraft:survives_explosion"
}
],
"entries": [
{
"type": "minecraft:item",
"name": "otemod:old_industrial_wood_planks"
}
],
"rolls": 1.0
}
],
"random_sequence": "otemod:blocks/old_industrial_wood_planks"
}

View file

@ -0,0 +1,35 @@
{
"type": "minecraft:block",
"pools": [
{
"bonus_rolls": 0.0,
"entries": [
{
"type": "minecraft:item",
"functions": [
{
"add": false,
"conditions": [
{
"block": "otemod:old_industrial_wood_slab",
"condition": "minecraft:block_state_property",
"properties": {
"type": "double"
}
}
],
"count": 2.0,
"function": "minecraft:set_count"
},
{
"function": "minecraft:explosion_decay"
}
],
"name": "otemod:old_industrial_wood_slab"
}
],
"rolls": 1.0
}
],
"random_sequence": "otemod:blocks/old_industrial_wood_slab"
}

View file

@ -0,0 +1,21 @@
{
"type": "minecraft:block",
"pools": [
{
"bonus_rolls": 0.0,
"conditions": [
{
"condition": "minecraft:survives_explosion"
}
],
"entries": [
{
"type": "minecraft:item",
"name": "otemod:old_industrial_wood_stairs"
}
],
"rolls": 1.0
}
],
"random_sequence": "otemod:blocks/old_industrial_wood_stairs"
}

View file

@ -3,14 +3,28 @@
"pools": [
{
"bonus_rolls": 0.0,
"conditions": [
{
"condition": "minecraft:survives_explosion"
}
],
"entries": [
{
"type": "minecraft:item",
"functions": [
{
"add": false,
"conditions": [
{
"block": "otemod:panzerglass_slab",
"condition": "minecraft:block_state_property",
"properties": {
"type": "double"
}
}
],
"count": 2.0,
"function": "minecraft:set_count"
},
{
"function": "minecraft:explosion_decay"
}
],
"name": "otemod:panzerglass_slab"
}
],

View file

@ -3,14 +3,28 @@
"pools": [
{
"bonus_rolls": 0.0,
"conditions": [
{
"condition": "minecraft:survives_explosion"
}
],
"entries": [
{
"type": "minecraft:item",
"functions": [
{
"add": false,
"conditions": [
{
"block": "otemod:pool_tile_slab",
"condition": "minecraft:block_state_property",
"properties": {
"type": "double"
}
}
],
"count": 2.0,
"function": "minecraft:set_count"
},
{
"function": "minecraft:explosion_decay"
}
],
"name": "otemod:pool_tile_slab"
}
],

View file

@ -3,14 +3,28 @@
"pools": [
{
"bonus_rolls": 0.0,
"conditions": [
{
"condition": "minecraft:survives_explosion"
}
],
"entries": [
{
"type": "minecraft:item",
"functions": [
{
"add": false,
"conditions": [
{
"block": "otemod:rebar_concrete_slab",
"condition": "minecraft:block_state_property",
"properties": {
"type": "double"
}
}
],
"count": 2.0,
"function": "minecraft:set_count"
},
{
"function": "minecraft:explosion_decay"
}
],
"name": "otemod:rebar_concrete_slab"
}
],

View file

@ -3,14 +3,28 @@
"pools": [
{
"bonus_rolls": 0.0,
"conditions": [
{
"condition": "minecraft:survives_explosion"
}
],
"entries": [
{
"type": "minecraft:item",
"functions": [
{
"add": false,
"conditions": [
{
"block": "otemod:rebar_concrete_tile_slab",
"condition": "minecraft:block_state_property",
"properties": {
"type": "double"
}
}
],
"count": 2.0,
"function": "minecraft:set_count"
},
{
"function": "minecraft:explosion_decay"
}
],
"name": "otemod:rebar_concrete_tile_slab"
}
],

View file

@ -3,14 +3,28 @@
"pools": [
{
"bonus_rolls": 0.0,
"conditions": [
{
"condition": "minecraft:survives_explosion"
}
],
"entries": [
{
"type": "minecraft:item",
"functions": [
{
"add": false,
"conditions": [
{
"block": "otemod:red_pool_tile_slab",
"condition": "minecraft:block_state_property",
"properties": {
"type": "double"
}
}
],
"count": 2.0,
"function": "minecraft:set_count"
},
{
"function": "minecraft:explosion_decay"
}
],
"name": "otemod:red_pool_tile_slab"
}
],

View file

@ -3,14 +3,28 @@
"pools": [
{
"bonus_rolls": 0.0,
"conditions": [
{
"condition": "minecraft:survives_explosion"
}
],
"entries": [
{
"type": "minecraft:item",
"functions": [
{
"add": false,
"conditions": [
{
"block": "otemod:slag_brick_slab",
"condition": "minecraft:block_state_property",
"properties": {
"type": "double"
}
}
],
"count": 2.0,
"function": "minecraft:set_count"
},
{
"function": "minecraft:explosion_decay"
}
],
"name": "otemod:slag_brick_slab"
}
],

View file

@ -0,0 +1,21 @@
{
"type": "minecraft:block",
"pools": [
{
"bonus_rolls": 0.0,
"conditions": [
{
"condition": "minecraft:survives_explosion"
}
],
"entries": [
{
"type": "minecraft:item",
"name": "otemod:steel_catwalk"
}
],
"rolls": 1.0
}
],
"random_sequence": "otemod:blocks/steel_catwalk"
}

View file

@ -0,0 +1,21 @@
{
"type": "minecraft:block",
"pools": [
{
"bonus_rolls": 0.0,
"conditions": [
{
"condition": "minecraft:survives_explosion"
}
],
"entries": [
{
"type": "minecraft:item",
"name": "otemod:steel_catwalk_stairs"
}
],
"rolls": 1.0
}
],
"random_sequence": "otemod:blocks/steel_catwalk_stairs"
}

View file

@ -0,0 +1,21 @@
{
"type": "minecraft:block",
"pools": [
{
"bonus_rolls": 0.0,
"conditions": [
{
"condition": "minecraft:survives_explosion"
}
],
"entries": [
{
"type": "minecraft:item",
"name": "otemod:steel_catwalk_stairs_dr"
}
],
"rolls": 1.0
}
],
"random_sequence": "otemod:blocks/steel_catwalk_stairs_dr"
}

View file

@ -0,0 +1,21 @@
{
"type": "minecraft:block",
"pools": [
{
"bonus_rolls": 0.0,
"conditions": [
{
"condition": "minecraft:survives_explosion"
}
],
"entries": [
{
"type": "minecraft:item",
"name": "otemod:steel_catwalk_stairs_lr"
}
],
"rolls": 1.0
}
],
"random_sequence": "otemod:blocks/steel_catwalk_stairs_lr"
}

View file

@ -0,0 +1,21 @@
{
"type": "minecraft:block",
"pools": [
{
"bonus_rolls": 0.0,
"conditions": [
{
"condition": "minecraft:survives_explosion"
}
],
"entries": [
{
"type": "minecraft:item",
"name": "otemod:steel_catwalk_stairs_rr"
}
],
"rolls": 1.0
}
],
"random_sequence": "otemod:blocks/steel_catwalk_stairs_rr"
}

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