forked from marcosvf132/TibiaAPI
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathObjectInstance.cs
More file actions
29 lines (24 loc) · 942 Bytes
/
ObjectInstance.cs
File metadata and controls
29 lines (24 loc) · 942 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
using OXGaming.TibiaAPI.Utilities;
namespace OXGaming.TibiaAPI.Appearances
{
public class ObjectInstance : AppearanceInstance
{
public uint QuiverAmount { get; set; }
public uint Charges { get; set; }
public uint DecayTime { get; set; }
public uint Data { get; set; }
public uint LootCategoryFlags { get; set; }
public bool IsLootContainer { get; set; } = false;
public bool IsPodiumVisible { get; set; } = false;
public bool IsQuiver { get; set; } = false;
public byte Tier { get; set; }
public byte PodiumDirection { get; set; }
public byte IsBrandNew { get; set; }
public OutfitInstance PodiumOutfitInstance { get; set; }
public OutfitInstance PodiumMountInstance { get; set; }
public ObjectInstance(uint id, Appearance type, uint data = 0) : base(id, type)
{
Data = data;
}
}
}