diff --git a/Dalamud/Game/ClientState/JobGauge/Types/RPRGauge.cs b/Dalamud/Game/ClientState/JobGauge/Types/RPRGauge.cs
new file mode 100644
index 000000000..b423691c8
--- /dev/null
+++ b/Dalamud/Game/ClientState/JobGauge/Types/RPRGauge.cs
@@ -0,0 +1,24 @@
+using System;
+
+namespace Dalamud.Game.ClientState.JobGauge.Types
+{
+ ///
+ /// In-memory RPR job gauge.
+ ///
+ public unsafe class RPRGauge : JobGaugeBase
+ {
+ ///
+ /// Initializes a new instance of the class.
+ ///
+ /// Address of the job gauge.
+ internal RPRGauge(IntPtr address)
+ : base(address)
+ {
+ }
+
+ ///
+ /// Gets the amount of Soul available.
+ ///
+ public byte Soul => this.Struct->Soul;
+ }
+}