示例#1
0
        public override void OnRemoved(object parent)
        {
            base.OnRemoved(parent);

            if (parent is Mobile && Hue == 1150)
            {
                LeafweaveSet.RemoveBonus(this);
                LeafweaveSet.RemoveBonus(parent as Mobile);
            }
        }
示例#2
0
        public override void OnAdded(object parent)
        {
            base.OnAdded(parent);

            if (parent is Mobile)
            {
                if (LeafweaveSet.FullSet(parent as Mobile))
                {
                    LeafweaveSet.ApplyBonus(parent as Mobile);
                }
            }
        }
示例#3
0
 public override void GetSetArmorPropertiesSecond(ObjectPropertyList list)
 {
     LeafweaveSet.GetPropertiesSecond(list, this);
 }