示例#1
0
 public ItemProfile(int level, EntityOccupation entityOccupation, NewItemCode code)
 {
     Level            = level;
     EntityOccupation = entityOccupation;
     qualityCode      = (ItemQualityCode)0;
     itemCode         = code;
     Type             = (ItemType)0;
     ProfileType      = ItemProfileType.Inventory;
 }
示例#2
0
 public ItemProfile(int level, ItemType type, ItemQualityCode quality)
 {
     Level            = level;
     Type             = type;
     qualityCode      = quality;
     itemCode         = (NewItemCode)0;
     EntityOccupation = EntityOccupation.None;
     ProfileType      = ItemProfileType.Specific;
 }