Added Ambience To Water Barrels & Hotbox

This commit is contained in:
wintersknight94 2022-01-25 09:49:18 -06:00 committed by GitHub
parent 8a0326175e
commit 424e037f83
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 31 additions and 0 deletions

View File

@ -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
})

View File

@ -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
})

View File

@ -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
})