punish v6.8.18.0

This commit is contained in:
alydev 2025-10-09 07:47:19 +10:00
commit cfb4dea47e
316 changed files with 554088 additions and 0 deletions

View file

@ -0,0 +1,29 @@
using System.Runtime.CompilerServices;
using FFXIVClientStructs.FFXIV.Client.Game.UI;
namespace Questionable.Model;
public sealed record FashionAccessoryReward : ItemReward
{
public uint AccessoryId { get; init; }
public override EItemRewardType Type => EItemRewardType.FashionAccessory;
public FashionAccessoryReward(ItemRewardDetails Item, uint AccessoryId)
{
this.AccessoryId = AccessoryId;
base._002Ector(Item);
}
public unsafe override bool IsUnlocked()
{
return PlayerState.Instance()->IsOrnamentUnlocked(AccessoryId);
}
[CompilerGenerated]
public void Deconstruct(out ItemRewardDetails Item, out uint AccessoryId)
{
Item = base.Item;
AccessoryId = this.AccessoryId;
}
}