38 lines
549 B
C#
38 lines
549 B
C#
|
using System;
|
|||
|
using System.Collections.Generic;
|
|||
|
using System.Linq;
|
|||
|
using System.Text;
|
|||
|
using System.Threading.Tasks;
|
|||
|
|
|||
|
namespace PSO2SERVER.Models
|
|||
|
{
|
|||
|
public enum ItemTypes
|
|||
|
{
|
|||
|
NoItem,
|
|||
|
Weapon,
|
|||
|
Clothing,
|
|||
|
Consumable,
|
|||
|
Camo,
|
|||
|
Unit,
|
|||
|
Unknown
|
|||
|
}
|
|||
|
|
|||
|
[Flags]
|
|||
|
public enum ItemFlags
|
|||
|
{
|
|||
|
Locked = 0x01,
|
|||
|
BoundToOwner = 0x02
|
|||
|
}
|
|||
|
|
|||
|
public enum ItemElement
|
|||
|
{
|
|||
|
None,
|
|||
|
Fire,
|
|||
|
Ice,
|
|||
|
Lightning,
|
|||
|
Wind,
|
|||
|
Light,
|
|||
|
Dark
|
|||
|
}
|
|||
|
}
|