forked from VoxeLibre/VoxeLibre
Jack up slime block bounciness
This commit is contained in:
parent
bdddaf3429
commit
ca49e4fcd0
|
@ -1331,7 +1331,8 @@ minetest.register_node("mcl_core:slimeblock", {
|
||||||
stack_max = 64,
|
stack_max = 64,
|
||||||
-- According to Minecraft Wiki, bouncing off a slime block from a height off 255 blocks should result in a bounce height of 50 blocks
|
-- According to Minecraft Wiki, bouncing off a slime block from a height off 255 blocks should result in a bounce height of 50 blocks
|
||||||
-- bouncy=44 makes the player bounce up to 49.6. This value was chosen by experiment.
|
-- bouncy=44 makes the player bounce up to 49.6. This value was chosen by experiment.
|
||||||
groups = {dig_immediate=3, bouncy=44,fall_damage_add_percent=-100,deco_block=1},
|
-- bouncy=80 was chosen because it is higher than 66 (bounciness of bed)
|
||||||
|
groups = {dig_immediate=3, bouncy=80,fall_damage_add_percent=-100,deco_block=1},
|
||||||
sounds = {
|
sounds = {
|
||||||
dug = {name="slimenodes_dug", gain=0.6},
|
dug = {name="slimenodes_dug", gain=0.6},
|
||||||
place = {name="slimenodes_place", gain=0.6},
|
place = {name="slimenodes_place", gain=0.6},
|
||||||
|
|
Loading…
Reference in New Issue