using System; using System.Collections.Generic; using System.Linq; using System.Security.AccessControl; using System.Text; using System.Threading.Tasks; using UltimateOrb; namespace PSO2SERVER.Models { // Enum for ItemAttributes public enum ItemAttributes { PC, Vita } // Base class for ItemAttributes [Serializable] public class ItemAttributesBase { public uint Unk1 { get; set; } public UInt128 Unk2 { get; set; } } // PC ItemAttributes (NA and JP client) [Serializable] public class ItemAttributesPC : ItemAttributesBase { public List Weapons { get; set; } = new List(); public List HumanCostumes { get; set; } = new List(); public List CastParts { get; set; } = new List(); public List Consumables { get; set; } = new List(); public List Data5 { get; set; } = new List(); public List Data6 { get; set; } = new List(); public List Data7 { get; set; } = new List(); public List Data8 { get; set; } = new List(); public List Data9 { get; set; } = new List(); public List Data10 { get; set; } = new List(); public List Data11 { get; set; } = new List(); public List Data12 { get; set; } = new List(); public List Data13 { get; set; } = new List(); public List Data14 { get; set; } = new List(); public List Data15 { get; set; } = new List(); public List Data16 { get; set; } = new List(); public List Data17 { get; set; } = new List(); public List Data18 { get; set; } = new List(); // Fixed length can be manually handled public List Data19 { get; set; } = new List(); public List Data20 { get; set; } = new List(); } // Vita ItemAttributes (Vita client) [Serializable] public class ItemAttributesVita : ItemAttributesBase { public List Weapons { get; set; } = new List(); public List HumanCostumes { get; set; } = new List(); public List CastParts { get; set; } = new List(); public List Consumables { get; set; } = new List(); public List Data5 { get; set; } = new List(); public List Data6 { get; set; } = new List(); public List Data7 { get; set; } = new List(); public List Data8 { get; set; } = new List(); public List Data9 { get; set; } = new List(); public List Data10 { get; set; } = new List(); public List Data11 { get; set; } = new List(); public List Data12 { get; set; } = new List(); public List Data13 { get; set; } = new List(); public List Data14 { get; set; } = new List(); public List Data15 { get; set; } = new List(); public List Data16 { get; set; } = new List(); public List Data17 { get; set; } = new List(); public List Data18 { get; set; } = new List(); // Fixed length can be manually handled public List Data19 { get; set; } = new List(); public List Data20 { get; set; } = new List(); } // Example of a simple class, could be for one of the referenced types [Serializable] public class WeaponAttrs { // Item category public ushort Id { get; set; } // Item ID public ushort Subid { get; set; } public byte Unk1 { get; set; } public byte Priority { get; set; } public byte Unk2 { get; set; } public byte Priority2 { get; set; } // Item rarity in stars public byte Rarity { get; set; } public ushort Flags { get; set; } public byte Unk3 { get; set; } public ushort IconList { get; set; } public ushort IconIndex { get; set; } // Range damage public ushort RangeDmg { get; set; } public byte Unk4 { get; set; } // Melee damage public ushort MeleeDmg { get; set; } public byte Unk5 { get; set; } public uint Unk6 { get; set; } // Force damage and equipable genders public GenderDmg GenderForceDmg { get; set; } public byte[] Unk8 { get; set; } = new byte[4]; // Equipable races public RaceFlags Race { get; set; } public byte Flags2 { get; set; } // Equipable classes public ClassFlags Class { get; set; } // Required stat value public ushort ReqStat { get; set; } // Required stat type public StatType ReqStatType { get; set; } public byte Unk9 { get; set; } public ushort Model { get; set; } public uint Unk10 { get; set; } public ushort Unk11 { get; set; } public ushort AffixFlag { get; set; } public ushort Unk12 { get; set; } } [Serializable] public class HumanCostume { // Properties specific to HumanCostume } [Serializable] public class CastPart { // Properties specific to CastPart } [Serializable] public class Consumable { // Properties specific to Consumable } [Serializable] public class Data5 { // Properties specific to Data5 } // More data types (e.g., Data7, Data8, etc.) need to be created similarly public class Unit { } public class Data7 { } public class Data8 { } public class Data9 { } public class Data10 { } public class Data11 { } public class Data12 { } public class Data13 { } public class Data14 { } public class Data15 { } public class Data16 { } public class Data17 { } public class ShortData { } public class Data19 { } public class Data19Vita { } public class Data20 { } public struct GenderDmg { /// Force damage. public ushort force_dmg; /// Equipable genders. public Gender gender; } public enum StatType { // MEL power. MELPwr = 0, // RNG power. RNGPwr = 1, // TEC power. TECPwr = 2, // DEX. DEX = 3, // MEL defence. MELDef = 4, // RNG defence. RNGDef = 5, // TEC defence. TECDef = 6 } public static class StatTypeExtensions { public static StatType Default => StatType.MELPwr; } }