Interface IAetheryteEntry
Interface representing an aetheryte entry available to the game.
Assembly: Dalamud.dll
View Source
Declaration
public interface IAetheryteEntry
Properties
AetheryteId
Gets the Aetheryte ID.
View Source
Declaration
uint AetheryteId { get; }
TerritoryId
Gets the Territory ID.
View Source
Declaration
uint TerritoryId { get; }
SubIndex
Gets the SubIndex used when there can be multiple Aetherytes with the same ID (Private/Shared Estates etc.).
View Source
Declaration
byte SubIndex { get; }
Ward
Gets the Ward. Zero if not a Shared Estate.
View Source
Declaration
byte Ward { get; }
Plot
Gets the Plot. Zero if not a Shared Estate.
View Source
Declaration
byte Plot { get; }
GilCost
Gets the Cost in Gil to Teleport to this location.
View Source
Declaration
uint GilCost { get; }
IsFavourite
Gets a value indicating whether the LocalPlayer has set this Aetheryte as Favorite or not.
View Source
Declaration
bool IsFavourite { get; }
IsSharedHouse
Gets a value indicating whether this Aetheryte is a Shared Estate or not.
View Source
Declaration
bool IsSharedHouse { get; }
IsApartment
Gets a value indicating whether this Aetheryte is an Apartment or not.
View Source
Declaration
bool IsApartment { get; }
AetheryteData
Gets the Aetheryte data related to this aetheryte.
View Source
Declaration
ExcelResolver<Aetheryte> AetheryteData { get; }