backrooms entity, lights fix and beer

This commit is contained in:
2026-03-20 18:06:53 +01:00
parent af21279b00
commit 4d802285ef
29 changed files with 1049 additions and 125 deletions

View File

@@ -1,8 +1,7 @@
{
"variants": {
"light_state=on": { "model": "szar:block/backrooms_light_on" },
"light_state=off": { "model": "szar:block/backrooms_light_off" },
"light_state=flickering_on": { "model": "szar:block/backrooms_light_on" },
"light_state=flickering_off": { "model": "szar:block/backrooms_light_off" }
"light_state=on": { "model": "szar:block/backrooms_light_on" },
"light_state=off": { "model": "szar:block/backrooms_light_off" },
"light_state=flickering": { "model": "szar:block/backrooms_light_on" }
}
}

View File

@@ -149,5 +149,8 @@
"item.szar.bean": "Bean",
"item.szar.can_of_beans": "Can of Beans",
"item.szar.almond_water": "Almond Water",
"block.szar.backrooms_light": "Light"
"block.szar.backrooms_light": "Light",
"entity.szar.smiler": "Smiler",
"item.szar.beer": "Beer",
"effect.szar.drunk": "Drunk"
}

View File

@@ -0,0 +1,6 @@
{
"parent": "minecraft:item/generated",
"textures": {
"layer0": "szar:item/beer"
}
}

View File

@@ -202,5 +202,29 @@
"stream": true
}
]
},
"real": {
"sounds": [
{
"name": "szar:real",
"stream": true
}
]
},
"scary": {
"sounds": [
{
"name": "szar:scary",
"stream": true
}
]
},
"flashbang": {
"sounds": [
{
"name": "szar:flashbang",
"stream": true
}
]
}
}

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

After

Width:  |  Height:  |  Size: 11 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 148 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 118 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.6 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.6 KiB

View File

@@ -0,0 +1,20 @@
{
"type": "minecraft:crafting_shaped",
"pattern": [
" W ",
"WPW",
" W "
],
"key": {
"W": {
"item": "minecraft:wheat"
},
"P": {
"item": "minecraft:potion"
}
},
"result": {
"item": "szar:beer",
"count": 1
}
}