Esempio n. 1
0
        public override void Deserialize(GenericReader reader)
        {
            base.Deserialize(reader);

            int version = reader.ReadInt();

            mep = (OldBarkskin)reader.ReadMobile();
        }
Esempio n. 2
0
        public BrambleRoot(OldBarkskin mep, Mobile target, int webid) : base(webid)
        {
            Name     = "Rooting Brambles";
            Movable  = false;
            this.mep = mep;
            Timer webT = new WebTimer(mep, target, this);

            webT.Start();
        }
Esempio n. 3
0
 public PullTimer(OldBarkskin mep, Mobile target, BrambleRoot web) : base(TimeSpan.FromSeconds(4))
 {
     this.mep    = mep;
     this.target = target;
     this.web    = web;
 }
Esempio n. 4
0
 public WebTimer(OldBarkskin mep, Mobile target, BrambleRoot web) : base(TimeSpan.FromSeconds(15 + Utility.Random(25)))
 {
     this.mep    = mep;
     this.target = target;
     this.web    = web;
 }