muffin v7.5.6
This commit is contained in:
parent
6266f9e6b7
commit
addf2d530f
619 changed files with 264792 additions and 446022 deletions
34
LLib/LLib.Gear/GearFeatures.cs
Normal file
34
LLib/LLib.Gear/GearFeatures.cs
Normal file
|
|
@ -0,0 +1,34 @@
|
|||
using FFXIVClientStructs.FFXIV.Client.Game;
|
||||
|
||||
namespace LLib.Gear;
|
||||
|
||||
public static class GearFeatures
|
||||
{
|
||||
public const uint DesynthQuestId = 65688u;
|
||||
|
||||
public const uint ExtractionQuestId = 66174u;
|
||||
|
||||
public const uint MeldingQuestId = 66175u;
|
||||
|
||||
public const uint OvermeldingQuestId = 66176u;
|
||||
|
||||
public static bool IsDesynthUnlocked()
|
||||
{
|
||||
return QuestManager.IsQuestComplete(65688u);
|
||||
}
|
||||
|
||||
public static bool IsExtractionUnlocked()
|
||||
{
|
||||
return QuestManager.IsQuestComplete(66174u);
|
||||
}
|
||||
|
||||
public static bool IsMeldingUnlocked()
|
||||
{
|
||||
return QuestManager.IsQuestComplete(66175u);
|
||||
}
|
||||
|
||||
public static bool IsOvermeldingUnlocked()
|
||||
{
|
||||
return QuestManager.IsQuestComplete(66176u);
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue