+ {ride.theme_name && (
+
+ Theme
+ {ride.theme_name}
+
+ )}
+ {ride.story_description && (
+
+
Story
+
{ride.story_description}
+
+ )}
+ {ride.show_duration_seconds && (
+
+ Show Duration
+
+ {Math.floor(ride.show_duration_seconds / 60)}:{(ride.show_duration_seconds % 60).toString().padStart(2, '0')}
+
+
+ )}
+ {ride.animatronics_count && (
+
+ Animatronics
+ {ride.animatronics_count}
+
+ )}
+ {ride.scenes_count && (
+
+ Scenes
+ {ride.scenes_count}
+
+ )}
+ {ride.projection_type && (
+
+ Projection Type
+
+ {ride.projection_type.replace('_', ' ').replace(/\b\w/g, l => l.toUpperCase())}
+
+
+ )}
+ {ride.ride_system && (
+
+ Ride System
+
+ {ride.ride_system.replace('_', ' ').replace(/\b\w/g, l => l.toUpperCase())}
+
+
+ )}
+
+