backrooms entity, lights fix and beer
This commit is contained in:
@@ -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" }
|
||||
}
|
||||
}
|
||||
@@ -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"
|
||||
}
|
||||
|
||||
6
src/main/resources/assets/szar/models/item/beer.json
Normal file
6
src/main/resources/assets/szar/models/item/beer.json
Normal file
@@ -0,0 +1,6 @@
|
||||
{
|
||||
"parent": "minecraft:item/generated",
|
||||
"textures": {
|
||||
"layer0": "szar:item/beer"
|
||||
}
|
||||
}
|
||||
@@ -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
|
||||
}
|
||||
]
|
||||
}
|
||||
}
|
||||
|
||||
BIN
src/main/resources/assets/szar/sounds/flashbang.ogg
Normal file
BIN
src/main/resources/assets/szar/sounds/flashbang.ogg
Normal file
Binary file not shown.
BIN
src/main/resources/assets/szar/sounds/real.ogg
Normal file
BIN
src/main/resources/assets/szar/sounds/real.ogg
Normal file
Binary file not shown.
BIN
src/main/resources/assets/szar/sounds/scary.ogg
Normal file
BIN
src/main/resources/assets/szar/sounds/scary.ogg
Normal file
Binary file not shown.
BIN
src/main/resources/assets/szar/textures/entity/eyes.png
Normal file
BIN
src/main/resources/assets/szar/textures/entity/eyes.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 11 KiB |
BIN
src/main/resources/assets/szar/textures/entity/real.png
Normal file
BIN
src/main/resources/assets/szar/textures/entity/real.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 148 KiB |
BIN
src/main/resources/assets/szar/textures/entity/scary.png
Normal file
BIN
src/main/resources/assets/szar/textures/entity/scary.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 118 KiB |
BIN
src/main/resources/assets/szar/textures/item/beer.png
Normal file
BIN
src/main/resources/assets/szar/textures/item/beer.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 4.6 KiB |
BIN
src/main/resources/assets/szar/textures/mob_effect/drunk.png
Normal file
BIN
src/main/resources/assets/szar/textures/mob_effect/drunk.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 4.6 KiB |
20
src/main/resources/data/szar/recipes/beer.json
Normal file
20
src/main/resources/data/szar/recipes/beer.json
Normal 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
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user