1
0
mirror of https://github.com/OpenRCT2/OpenRCT2 synced 2026-01-16 11:33:03 +01:00

Close #14484: Make the Heartline Twister ratings less hateful (#16680)

This raises two parameters: the base excitement value (which is very low, especially since the air-time bonus is limited too) and the bonus value (the novelty of this ride type warrants a bigger value).
It leaves the rest of the poor bonuses as-is, as some of them (like scenery and synchronisation bonuses) might just be there because the track obscures the view.
This commit is contained in:
Michael Steenbeek
2022-02-23 11:24:02 +01:00
committed by GitHub
parent 05b80acfa1
commit 70121eae38
4 changed files with 7 additions and 2 deletions

View File

@@ -3410,7 +3410,11 @@ void ride_ratings_calculate_heartline_twister_coaster(Ride* ride, RideRatingUpda
set_unreliability_factor(ride);
RatingTuple ratings;
#ifdef ORIGINAL_RATINGS
ride_ratings_set(&ratings, RIDE_RATING(1, 40), RIDE_RATING(1, 70), RIDE_RATING(1, 65));
#else
ride_ratings_set(&ratings, RIDE_RATING(3, 00), RIDE_RATING(1, 70), RIDE_RATING(1, 65));
#endif
ride_ratings_apply_length(&ratings, ride, 6000, 764);
ride_ratings_apply_synchronisation(&ratings, ride, RIDE_RATING(0, 20), RIDE_RATING(0, 04));
ride_ratings_apply_train_length(&ratings, ride, 187245);

View File

@@ -43,7 +43,7 @@ constexpr const RideTypeDescriptor HeartlineTwisterCoasterRTD =
SET_FIELD(DefaultPrices, { 15, 20 }),
SET_FIELD(DefaultMusic, MUSIC_OBJECT_TECHNO),
SET_FIELD(PhotoItem, ShopItem::Photo),
SET_FIELD(BonusValue, 35),
SET_FIELD(BonusValue, 70),
SET_FIELD(ColourPresets, TRACK_COLOUR_PRESETS(
{ COLOUR_WHITE, COLOUR_LIGHT_BLUE, COLOUR_WHITE },
{ COLOUR_BORDEAUX_RED, COLOUR_YELLOW, COLOUR_BLACK },