diff --git a/src/main/resources/assets/bellsandwhistles/blockstates/headlight.json b/src/main/resources/assets/bellsandwhistles/blockstates/headlight.json index f36e83c..6f8512f 100644 --- a/src/main/resources/assets/bellsandwhistles/blockstates/headlight.json +++ b/src/main/resources/assets/bellsandwhistles/blockstates/headlight.json @@ -4,21 +4,21 @@ "model": "bellsandwhistles:block/headlight/headlight_floor", "x": 180 }, - "face=wall, facing=east": { + "facing=east, face=wall": { "model": "bellsandwhistles:block/headlight/headlight_wall", "y": 90 }, - "face=wall, facing=north": { + "facing=north, face=wall": { "model": "bellsandwhistles:block/headlight/headlight_wall" }, - "face=wall, facing=south": { + "facing=south, face=wall": { "model": "bellsandwhistles:block/headlight/headlight_wall", "y": 180 }, "face=floor": { "model": "bellsandwhistles:block/headlight/headlight_floor" }, - "face=wall, facing=west": { + "facing=west, face=wall": { "model": "bellsandwhistles:block/headlight/headlight_wall", "y": 270 } diff --git a/src/main/resources/assets/bellsandwhistles/models/block/metro/window/block_bottom.json b/src/main/resources/assets/bellsandwhistles/models/block/metro/window/block_bottom.json index d1fcdeb..c5801f0 100644 --- a/src/main/resources/assets/bellsandwhistles/models/block/metro/window/block_bottom.json +++ b/src/main/resources/assets/bellsandwhistles/models/block/metro/window/block_bottom.json @@ -6,8 +6,7 @@ "textures": { "0": "bellsandwhistles:block/metro/door/metro_door_side", "1": "bellsandwhistles:block/metro/metro_window", - "particle": "bellsandwhistles:block/metro/metro_window", - + "particle": "bellsandwhistles:block/metro/metro_window" }, "elements": [ { diff --git a/src/main/resources/assets/bellsandwhistles/models/item/andesite_door_step.json b/src/main/resources/assets/bellsandwhistles/models/item/andesite_door_step.json new file mode 100644 index 0000000..7e8c86e --- /dev/null +++ b/src/main/resources/assets/bellsandwhistles/models/item/andesite_door_step.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/handheld", + "textures": { + "layer0": "bellsandwhistles:block/metal_rails/step_andesite" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/bellsandwhistles/models/item/brass_door_step.json b/src/main/resources/assets/bellsandwhistles/models/item/brass_door_step.json new file mode 100644 index 0000000..ff98eec --- /dev/null +++ b/src/main/resources/assets/bellsandwhistles/models/item/brass_door_step.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/handheld", + "textures": { + "layer0": "bellsandwhistles:block/metal_rails/step_brass" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/bellsandwhistles/models/item/copper_door_step.json b/src/main/resources/assets/bellsandwhistles/models/item/copper_door_step.json new file mode 100644 index 0000000..6c16e13 --- /dev/null +++ b/src/main/resources/assets/bellsandwhistles/models/item/copper_door_step.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/handheld", + "textures": { + "layer0": "bellsandwhistles:block/metal_rails/step_copper" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/bellsandwhistles/models/item/corrugated_metro_casing.json b/src/main/resources/assets/bellsandwhistles/models/item/corrugated_metro_casing.json new file mode 100644 index 0000000..b5bad64 --- /dev/null +++ b/src/main/resources/assets/bellsandwhistles/models/item/corrugated_metro_casing.json @@ -0,0 +1,3 @@ +{ + "parent": "bellsandwhistles:block/metro/corrugated_metro_casing" +} \ No newline at end of file diff --git a/src/main/resources/assets/bellsandwhistles/models/item/folding_metro_door.json b/src/main/resources/assets/bellsandwhistles/models/item/folding_metro_door.json new file mode 100644 index 0000000..fa8d65e --- /dev/null +++ b/src/main/resources/assets/bellsandwhistles/models/item/folding_metro_door.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/handheld", + "textures": { + "layer0": "bellsandwhistles:item/folding_metro_door" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/bellsandwhistles/models/item/metro_casing.json b/src/main/resources/assets/bellsandwhistles/models/item/metro_casing.json new file mode 100644 index 0000000..8dbb5a7 --- /dev/null +++ b/src/main/resources/assets/bellsandwhistles/models/item/metro_casing.json @@ -0,0 +1,3 @@ +{ + "parent": "bellsandwhistles:block/metro/metro_casing" +} \ No newline at end of file diff --git a/src/main/resources/assets/bellsandwhistles/models/item/metro_trapdoor.json b/src/main/resources/assets/bellsandwhistles/models/item/metro_trapdoor.json new file mode 100644 index 0000000..3b398d4 --- /dev/null +++ b/src/main/resources/assets/bellsandwhistles/models/item/metro_trapdoor.json @@ -0,0 +1,3 @@ +{ + "parent": "bellsandwhistles:block/metro/trapdoor/block_top" +} \ No newline at end of file diff --git a/src/main/resources/assets/bellsandwhistles/models/item/metro_window.json b/src/main/resources/assets/bellsandwhistles/models/item/metro_window.json new file mode 100644 index 0000000..8b14f95 --- /dev/null +++ b/src/main/resources/assets/bellsandwhistles/models/item/metro_window.json @@ -0,0 +1,3 @@ +{ + "parent": "bellsandwhistles:block/metro/window/block_top" +} \ No newline at end of file diff --git a/src/main/resources/assets/bellsandwhistles/models/item/sliding_metro_door.json b/src/main/resources/assets/bellsandwhistles/models/item/sliding_metro_door.json new file mode 100644 index 0000000..fea90af --- /dev/null +++ b/src/main/resources/assets/bellsandwhistles/models/item/sliding_metro_door.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/handheld", + "textures": { + "layer0": "bellsandwhistles:item/sliding_metro_door" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/bellsandwhistles/textures/block/metal_rails/step_andesite.png b/src/main/resources/assets/bellsandwhistles/textures/block/metal_rails/step_andesite.png new file mode 100644 index 0000000..ae0a42a Binary files /dev/null and b/src/main/resources/assets/bellsandwhistles/textures/block/metal_rails/step_andesite.png differ diff --git a/src/main/resources/assets/bellsandwhistles/textures/block/metal_rails/step_brass.png b/src/main/resources/assets/bellsandwhistles/textures/block/metal_rails/step_brass.png new file mode 100644 index 0000000..c81fb07 Binary files /dev/null and b/src/main/resources/assets/bellsandwhistles/textures/block/metal_rails/step_brass.png differ diff --git a/src/main/resources/assets/bellsandwhistles/textures/block/metal_rails/step_copper.png b/src/main/resources/assets/bellsandwhistles/textures/block/metal_rails/step_copper.png new file mode 100644 index 0000000..360d779 Binary files /dev/null and b/src/main/resources/assets/bellsandwhistles/textures/block/metal_rails/step_copper.png differ diff --git a/src/main/resources/assets/bellsandwhistles/textures/item/folding_metro_door.png b/src/main/resources/assets/bellsandwhistles/textures/item/folding_metro_door.png new file mode 100644 index 0000000..20a1a81 Binary files /dev/null and b/src/main/resources/assets/bellsandwhistles/textures/item/folding_metro_door.png differ diff --git a/src/main/resources/assets/bellsandwhistles/textures/item/sliding_metro_door.png b/src/main/resources/assets/bellsandwhistles/textures/item/sliding_metro_door.png new file mode 100644 index 0000000..619ab75 Binary files /dev/null and b/src/main/resources/assets/bellsandwhistles/textures/item/sliding_metro_door.png differ