示例#1
0
文件: Container.cs 项目: vadian/Novus
 public void Wear()
 {
     Worn = true;
     if (ItemType.ContainsKey(ItemsType.CONTAINER))
     {
         Weight = CurrentWeight - (CurrentWeight * ReduceCarryWeightBy);
     }
     Save();
     OnWorn(new ItemEventArgs(ItemEvent.WEAR, this.Id));
 }