Added Ambience To Water Barrels & Hotbox
This commit is contained in:
parent
8a0326175e
commit
424e037f83
10
barrel.lua
10
barrel.lua
@ -148,3 +148,13 @@ nodecore.register_craft({
|
||||
{name = "nc_woodwork:toolhead_mallet", count = 1}
|
||||
}
|
||||
})
|
||||
|
||||
nodecore.register_ambiance({
|
||||
label = "water barrel ambiance",
|
||||
nodenames = {modname.. ":shelf_water_barrel"},
|
||||
neighbors = {"air"},
|
||||
interval = 20,
|
||||
chance = 20,
|
||||
sound_name = "nc_terrain_watery",
|
||||
sound_gain = 0.2
|
||||
})
|
||||
|
@ -192,3 +192,13 @@ nodecore.register_craft({
|
||||
},
|
||||
}
|
||||
})
|
||||
|
||||
nodecore.register_ambiance({
|
||||
label = "lode water barrel ambiance",
|
||||
nodenames = {modname.. ":shelf_lode_barrel_water"},
|
||||
neighbors = {"air"},
|
||||
interval = 20,
|
||||
chance = 20,
|
||||
sound_name = "nc_terrain_watery",
|
||||
sound_gain = 0.2
|
||||
})
|
||||
|
11
hotbox.lua
11
hotbox.lua
@ -44,3 +44,14 @@ nodecore.register_craft({
|
||||
},
|
||||
}
|
||||
})
|
||||
|
||||
nodecore.register_ambiance({
|
||||
label = "hotbox ambiance",
|
||||
nodenames = {modname.. ":shelf_cauldron_pumwater"},
|
||||
neighbors = {"air"},
|
||||
interval = 20,
|
||||
chance = 20,
|
||||
sound_name = "nc_terrain_bubbly",
|
||||
sound_gain = 0.2
|
||||
})
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user