mirror of
https://github.com/OpenRCT2/OpenRCT2
synced 2026-01-22 22:34:33 +01:00
Add log flume lift sound effect (when “chainlift” is enabled)
This commit is contained in:
@@ -130,6 +130,7 @@ namespace OpenRCT2::Audio
|
||||
CrowdAmbience,
|
||||
LiftRMC,
|
||||
TrackFrictionRMC,
|
||||
LiftFlume,
|
||||
NoScream = 254,
|
||||
Null = 255
|
||||
};
|
||||
|
||||
@@ -46,7 +46,7 @@ using namespace OpenRCT2;
|
||||
// It is used for making sure only compatible builds get connected, even within
|
||||
// single OpenRCT2 version.
|
||||
|
||||
#define NETWORK_STREAM_VERSION "2"
|
||||
#define NETWORK_STREAM_VERSION "3"
|
||||
|
||||
#define NETWORK_STREAM_ID OPENRCT2_VERSION "-" NETWORK_STREAM_VERSION
|
||||
|
||||
|
||||
@@ -39,7 +39,7 @@ constexpr RideTypeDescriptor LogFlumeRTD =
|
||||
.AvailableBreakdowns = (1 << BREAKDOWN_SAFETY_CUT_OUT) | (1 << BREAKDOWN_CONTROL_FAILURE),
|
||||
.Heights = { 10, 24, 7, 9, },
|
||||
.MaxMass = 255,
|
||||
.LiftData = { OpenRCT2::Audio::SoundId::Null, 5, 5 },
|
||||
.LiftData = { OpenRCT2::Audio::SoundId::LiftFlume, 5, 5 },
|
||||
.RatingsMultipliers = { 80, 34, 6 },
|
||||
.UpkeepCosts = { 80, 20, 0, 9, 0, 10 },
|
||||
.BuildCosts = { 22.50_GBP, 2.50_GBP, 40, },
|
||||
|
||||
@@ -40,7 +40,7 @@ constexpr RideTypeDescriptor RiverRapidsRTD =
|
||||
.AvailableBreakdowns = (1 << BREAKDOWN_SAFETY_CUT_OUT) | (1 << BREAKDOWN_CONTROL_FAILURE),
|
||||
.Heights = { 9, 32, 14, 15, },
|
||||
.MaxMass = 255,
|
||||
.LiftData = { OpenRCT2::Audio::SoundId::Null, 5, 5 },
|
||||
.LiftData = { OpenRCT2::Audio::SoundId::LiftFlume, 5, 5 },
|
||||
.RatingsMultipliers = { 72, 26, 6 },
|
||||
.UpkeepCosts = { 82, 20, 0, 10, 0, 10 },
|
||||
.BuildCosts = { 31.00_GBP, 3.00_GBP, 40, },
|
||||
|
||||
@@ -40,7 +40,7 @@ constexpr RideTypeDescriptor SplashBoatsRTD =
|
||||
.AvailableBreakdowns = (1 << BREAKDOWN_SAFETY_CUT_OUT) | (1 << BREAKDOWN_CONTROL_FAILURE),
|
||||
.Heights = { 16, 24, 7, 11, },
|
||||
.MaxMass = 255,
|
||||
.LiftData = { OpenRCT2::Audio::SoundId::Null, 5, 5 },
|
||||
.LiftData = { OpenRCT2::Audio::SoundId::LiftFlume, 5, 5 },
|
||||
.RatingsMultipliers = { 80, 34, 6 },
|
||||
.UpkeepCosts = { 70, 20, 0, 9, 0, 10 },
|
||||
.BuildCosts = { 28.50_GBP, 2.50_GBP, 30, },
|
||||
|
||||
Reference in New Issue
Block a user