backrooms
7
src/main/resources/assets/szar/blockstates/ceiling.json
Normal file
@@ -0,0 +1,7 @@
|
||||
{
|
||||
"variants": {
|
||||
"": {
|
||||
"model": "szar:block/ceiling"
|
||||
}
|
||||
}
|
||||
}
|
||||
7
src/main/resources/assets/szar/blockstates/plastic.json
Normal file
@@ -0,0 +1,7 @@
|
||||
{
|
||||
"variants": {
|
||||
"": {
|
||||
"model": "szar:block/plastic"
|
||||
}
|
||||
}
|
||||
}
|
||||
7
src/main/resources/assets/szar/blockstates/portal.json
Normal file
@@ -0,0 +1,7 @@
|
||||
{
|
||||
"variants": {
|
||||
"": {
|
||||
"model": "szar:block/portal"
|
||||
}
|
||||
}
|
||||
}
|
||||
7
src/main/resources/assets/szar/blockstates/tracker.json
Normal file
@@ -0,0 +1,7 @@
|
||||
{
|
||||
"variants": {
|
||||
"": {
|
||||
"model": "szar:block/tracker"
|
||||
}
|
||||
}
|
||||
}
|
||||
7
src/main/resources/assets/szar/blockstates/wall.json
Normal file
@@ -0,0 +1,7 @@
|
||||
{
|
||||
"variants": {
|
||||
"": {
|
||||
"model": "szar:block/wall"
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,7 @@
|
||||
{
|
||||
"variants": {
|
||||
"": {
|
||||
"model": "szar:block/wall_bottom"
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -136,5 +136,13 @@
|
||||
"item.szar.communist_spawn_egg":"Communist Spawn Egg",
|
||||
|
||||
"item.szar.ussr": "Music Disc",
|
||||
"item.szar.ussr.desc": "A. Alexandrov - USSR Anthem"
|
||||
"item.szar.ussr.desc": "A. Alexandrov - USSR Anthem",
|
||||
|
||||
"block.szar.tracker": "Portal Tracker Block",
|
||||
"block.szar.portal": "Portal",
|
||||
|
||||
"block.szar.plastic": "Plastic",
|
||||
"block.szar.ceiling": "Ceiling",
|
||||
"block.szar.wall": "Wall",
|
||||
"block.szar.wall_bottom": "Wall Bottom"
|
||||
}
|
||||
|
||||
55
src/main/resources/assets/szar/models/block/ceiling.json
Normal file
@@ -0,0 +1,55 @@
|
||||
{
|
||||
"format_version": "1.21.11",
|
||||
"credit": "Made with Blockbench",
|
||||
"texture_size": [512, 512],
|
||||
"textures": {
|
||||
"0": "szar:block/ceiling_tile_glitched_color",
|
||||
"1": "szar:block/ceiling_tile_color",
|
||||
"particle": "szar:block/ceiling_tile_color"
|
||||
},
|
||||
"elements": [
|
||||
{
|
||||
"from": [0, 0, 0],
|
||||
"to": [16, 16, 16],
|
||||
"faces": {
|
||||
"north": {"uv": [0, 0, 16, 16], "texture": "#0", "cullface": "north"},
|
||||
"east": {"uv": [0, 0, 16, 16], "texture": "#0", "cullface": "east"},
|
||||
"south": {"uv": [0, 0, 16, 16], "texture": "#0", "cullface": "south"},
|
||||
"west": {"uv": [0, 0, 16, 16], "texture": "#0", "cullface": "west"},
|
||||
"up": {"uv": [0, 0, 16, 16], "texture": "#1", "cullface": "up"},
|
||||
"down": {"uv": [0, 0, 16, 16], "texture": "#1", "cullface": "down"}
|
||||
}
|
||||
}
|
||||
],
|
||||
"display": {
|
||||
"thirdperson_righthand": {
|
||||
"rotation": [75, 45, 0],
|
||||
"translation": [0, 2.5, 0],
|
||||
"scale": [0.375, 0.375, 0.375]
|
||||
},
|
||||
"thirdperson_lefthand": {
|
||||
"rotation": [75, 45, 0],
|
||||
"translation": [0, 2.5, 0],
|
||||
"scale": [0.375, 0.375, 0.375]
|
||||
},
|
||||
"firstperson_righthand": {
|
||||
"rotation": [0, 45, 0],
|
||||
"scale": [0.4, 0.4, 0.4]
|
||||
},
|
||||
"firstperson_lefthand": {
|
||||
"rotation": [0, -135, 0],
|
||||
"scale": [0.4, 0.4, 0.4]
|
||||
},
|
||||
"ground": {
|
||||
"translation": [0, 3, 0],
|
||||
"scale": [0.25, 0.25, 0.25]
|
||||
},
|
||||
"gui": {
|
||||
"rotation": [30, -135, 0],
|
||||
"scale": [0.625, 0.625, 0.625]
|
||||
},
|
||||
"fixed": {
|
||||
"scale": [0.5, 0.5, 0.5]
|
||||
}
|
||||
}
|
||||
}
|
||||
8
src/main/resources/assets/szar/models/block/plastic.json
Normal file
@@ -0,0 +1,8 @@
|
||||
{
|
||||
"format_version": "1.21.11",
|
||||
"credit": "Made with Blockbench",
|
||||
"parent": "minecraft:block/cube_all",
|
||||
"textures": {
|
||||
"all": "szar:block/plastic"
|
||||
}
|
||||
}
|
||||
6
src/main/resources/assets/szar/models/block/portal.json
Normal file
@@ -0,0 +1,6 @@
|
||||
{
|
||||
"parent": "minecraft:block/cube_all",
|
||||
"textures": {
|
||||
"all": "szar:block/portal"
|
||||
}
|
||||
}
|
||||
3
src/main/resources/assets/szar/models/block/tracker.json
Normal file
@@ -0,0 +1,3 @@
|
||||
{
|
||||
"parent": "block/air"
|
||||
}
|
||||
23
src/main/resources/assets/szar/models/block/wall.json
Normal file
@@ -0,0 +1,23 @@
|
||||
{
|
||||
"format_version": "1.21.11",
|
||||
"credit": "Made with Blockbench",
|
||||
"parent": "block/block",
|
||||
"textures": {
|
||||
"all": "szar:block/wall_block",
|
||||
"particle": "szar:block/wall_block"
|
||||
},
|
||||
"elements": [
|
||||
{
|
||||
"from": [0, 0, 0],
|
||||
"to": [16, 16, 16],
|
||||
"faces": {
|
||||
"north": {"uv": [0, 0, 16, 16], "texture": "#all", "cullface": "north"},
|
||||
"east": {"uv": [0, 0, 16, 16], "texture": "#all", "cullface": "east"},
|
||||
"south": {"uv": [0, 0, 16, 16], "texture": "#all", "cullface": "south"},
|
||||
"west": {"uv": [0, 0, 16, 16], "texture": "#all", "cullface": "west"},
|
||||
"up": {"uv": [0, 0, 16, 16], "texture": "#all"},
|
||||
"down": {"uv": [0, 0, 16, 16], "texture": "#all", "cullface": "down"}
|
||||
}
|
||||
}
|
||||
]
|
||||
}
|
||||
49
src/main/resources/assets/szar/models/block/wall_bottom.json
Normal file
@@ -0,0 +1,49 @@
|
||||
{
|
||||
"format_version": "1.21.11",
|
||||
"credit": "Made with Blockbench",
|
||||
"texture_size": [64, 64],
|
||||
"textures": {
|
||||
"2": "szar:block/wallpaper_bottom_block_texture",
|
||||
"particle": "szar:block/wallpaper_bottom_block_texture"
|
||||
},
|
||||
"elements": [
|
||||
{
|
||||
"from": [-1, 0, -1],
|
||||
"to": [17, 2, 17],
|
||||
"faces": {
|
||||
"north": {"uv": [0, 9, 4.5, 9.5], "texture": "#2"},
|
||||
"east": {"uv": [0, 9.5, 4.5, 10], "texture": "#2"},
|
||||
"south": {"uv": [0, 10, 4.5, 10.5], "texture": "#2"},
|
||||
"west": {"uv": [0, 10.5, 4.5, 11], "texture": "#2"},
|
||||
"up": {"uv": [4.5, 4.5, 0, 0], "texture": "#2"},
|
||||
"down": {"uv": [4.5, 4.5, 0, 9], "texture": "#2"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [0, 0, 0],
|
||||
"to": [16, 16, 16],
|
||||
"faces": {
|
||||
"north": {"uv": [4.5, 0, 8.5, 4], "texture": "#2"},
|
||||
"east": {"uv": [4.5, 4, 8.5, 8], "texture": "#2"},
|
||||
"south": {"uv": [4.5, 8, 8.5, 12], "texture": "#2"},
|
||||
"west": {"uv": [8.5, 0, 12.5, 4], "texture": "#2"},
|
||||
"up": {"uv": [12.5, 8, 8.5, 4], "texture": "#2"},
|
||||
"down": {"uv": [12.5, 8, 8.5, 12], "texture": "#2"}
|
||||
}
|
||||
}
|
||||
],
|
||||
"display": {
|
||||
"thirdperson_righthand": {
|
||||
"rotation": [80.5, 45, 0],
|
||||
"scale": [0.3, 0.3, 0.3]
|
||||
}
|
||||
},
|
||||
"groups": [
|
||||
{
|
||||
"name": "block",
|
||||
"origin": [8, 8, 8],
|
||||
"color": 0,
|
||||
"children": [0, 1]
|
||||
}
|
||||
]
|
||||
}
|
||||
3
src/main/resources/assets/szar/models/item/ceiling.json
Normal file
@@ -0,0 +1,3 @@
|
||||
{
|
||||
"parent": "szar:block/ceiling"
|
||||
}
|
||||
3
src/main/resources/assets/szar/models/item/plastic.json
Normal file
@@ -0,0 +1,3 @@
|
||||
{
|
||||
"parent": "szar:block/plastic"
|
||||
}
|
||||
3
src/main/resources/assets/szar/models/item/portal.json
Normal file
@@ -0,0 +1,3 @@
|
||||
{
|
||||
"parent": "szar:block/portal"
|
||||
}
|
||||
6
src/main/resources/assets/szar/models/item/tracker.json
Normal file
@@ -0,0 +1,6 @@
|
||||
{
|
||||
"parent": "minecraft:item/generated",
|
||||
"textures": {
|
||||
"layer0": "szar:item/tracker"
|
||||
}
|
||||
}
|
||||
3
src/main/resources/assets/szar/models/item/wall.json
Normal file
@@ -0,0 +1,3 @@
|
||||
{
|
||||
"parent": "szar:block/wall"
|
||||
}
|
||||
@@ -0,0 +1,3 @@
|
||||
{
|
||||
"parent": "szar:block/wall_bottom"
|
||||
}
|
||||
|
After Width: | Height: | Size: 420 KiB |
|
After Width: | Height: | Size: 16 KiB |
BIN
src/main/resources/assets/szar/textures/block/empty.png
Normal file
|
After Width: | Height: | Size: 528 B |
BIN
src/main/resources/assets/szar/textures/block/plastic.png
Normal file
|
After Width: | Height: | Size: 71 KiB |
BIN
src/main/resources/assets/szar/textures/block/portal.png
Normal file
|
After Width: | Height: | Size: 688 B |
BIN
src/main/resources/assets/szar/textures/block/wall_block.png
Normal file
|
After Width: | Height: | Size: 20 KiB |
|
After Width: | Height: | Size: 87 KiB |
BIN
src/main/resources/assets/szar/textures/item/backrooms_wall.png
Normal file
|
After Width: | Height: | Size: 20 KiB |
|
After Width: | Height: | Size: 22 KiB |
|
After Width: | Height: | Size: 35 KiB |
|
After Width: | Height: | Size: 33 KiB |
|
After Width: | Height: | Size: 32 KiB |
|
After Width: | Height: | Size: 36 KiB |
|
After Width: | Height: | Size: 42 KiB |
|
After Width: | Height: | Size: 24 KiB |
|
After Width: | Height: | Size: 36 KiB |
|
After Width: | Height: | Size: 58 KiB |
|
After Width: | Height: | Size: 24 KiB |
|
After Width: | Height: | Size: 26 KiB |
|
After Width: | Height: | Size: 23 KiB |
|
After Width: | Height: | Size: 34 KiB |
|
After Width: | Height: | Size: 99 B |
|
After Width: | Height: | Size: 162 B |
|
After Width: | Height: | Size: 202 B |
|
After Width: | Height: | Size: 161 B |
|
After Width: | Height: | Size: 6.1 KiB |
|
After Width: | Height: | Size: 421 KiB |
|
After Width: | Height: | Size: 348 KiB |
|
After Width: | Height: | Size: 517 KiB |
|
After Width: | Height: | Size: 479 KiB |
|
After Width: | Height: | Size: 523 KiB |
|
After Width: | Height: | Size: 295 KiB |
|
After Width: | Height: | Size: 140 KiB |
|
After Width: | Height: | Size: 133 KiB |
|
After Width: | Height: | Size: 469 KiB |
|
After Width: | Height: | Size: 49 KiB |
|
After Width: | Height: | Size: 70 KiB |
|
After Width: | Height: | Size: 587 B |
|
After Width: | Height: | Size: 235 B |
|
After Width: | Height: | Size: 231 B |
|
After Width: | Height: | Size: 221 B |
|
After Width: | Height: | Size: 221 B |
|
After Width: | Height: | Size: 96 B |
|
After Width: | Height: | Size: 100 B |
|
After Width: | Height: | Size: 179 B |
|
After Width: | Height: | Size: 378 KiB |
|
After Width: | Height: | Size: 474 KiB |
|
After Width: | Height: | Size: 482 KiB |
|
After Width: | Height: | Size: 116 B |
|
After Width: | Height: | Size: 142 KiB |
|
After Width: | Height: | Size: 2.3 MiB |
|
After Width: | Height: | Size: 4.8 MiB |
|
After Width: | Height: | Size: 23 MiB |
|
After Width: | Height: | Size: 1.6 MiB |
|
After Width: | Height: | Size: 502 B |
|
After Width: | Height: | Size: 1.2 MiB |
|
After Width: | Height: | Size: 420 KiB |
|
After Width: | Height: | Size: 406 B |
|
After Width: | Height: | Size: 242 KiB |
|
After Width: | Height: | Size: 16 KiB |
|
After Width: | Height: | Size: 406 B |
|
After Width: | Height: | Size: 406 B |
|
After Width: | Height: | Size: 911 KiB |
|
After Width: | Height: | Size: 113 KiB |
|
After Width: | Height: | Size: 918 KiB |
|
After Width: | Height: | Size: 693 KiB |
|
After Width: | Height: | Size: 264 KiB |
|
After Width: | Height: | Size: 2.0 MiB |
|
After Width: | Height: | Size: 1.3 MiB |
|
After Width: | Height: | Size: 93 KiB |
|
After Width: | Height: | Size: 1.5 MiB |
|
After Width: | Height: | Size: 589 KiB |
|
After Width: | Height: | Size: 50 KiB |
|
After Width: | Height: | Size: 80 KiB |
|
After Width: | Height: | Size: 847 KiB |
|
After Width: | Height: | Size: 21 KiB |
|
After Width: | Height: | Size: 5.8 MiB |
|
After Width: | Height: | Size: 1.4 MiB |
|
After Width: | Height: | Size: 1.4 MiB |
|
After Width: | Height: | Size: 5.5 MiB |
|
After Width: | Height: | Size: 71 KiB |