mirror of
https://github.com/goatcorp/Dalamud.git
synced 2026-02-19 14:27:45 +01:00
Add mentor states
This commit is contained in:
parent
c2fc04c3a8
commit
153870a053
2 changed files with 43 additions and 0 deletions
|
|
@ -176,6 +176,34 @@ public interface IPlayerState
|
|||
/// </summary>
|
||||
MentorVersion MentorVersion { get; }
|
||||
|
||||
/// <summary>
|
||||
/// Gets a value indicating whether the local player is any kind of Mentor (Battle or Trade Mentor).
|
||||
/// </summary>
|
||||
bool IsMentor { get; }
|
||||
|
||||
/// <summary>
|
||||
/// Gets a value indicating whether the local player is a Battle Mentor.
|
||||
/// </summary>
|
||||
bool IsBattleMentor { get; }
|
||||
|
||||
/// <summary>
|
||||
/// Gets a value indicating whether the local player is a Trade Mentor.
|
||||
/// </summary>
|
||||
bool IsTradeMentor { get; }
|
||||
|
||||
/// <summary>
|
||||
/// Gets a value indicating whether the local player is a novice (aka. Sprout or New Adventurer).
|
||||
/// </summary>
|
||||
/// <remarks>
|
||||
/// Can be <see langword="false"/> if <c>/nastatus</c> was used to deactivate it.
|
||||
/// </remarks>
|
||||
bool IsNovice { get; }
|
||||
|
||||
/// <summary>
|
||||
/// Gets a value indicating whether the local player is a returner.
|
||||
/// </summary>
|
||||
bool IsReturner { get; }
|
||||
|
||||
/// <summary>
|
||||
/// Gets the value of an attribute of the local character.
|
||||
/// </summary>
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue