Exemple #1
0
 public InternalTimer(Plague_Blood item_)
     : base(TimeSpan.FromSeconds(1.0), TimeSpan.FromSeconds(1.0))
 {
     myblood    = item_;
     timepassed = 0;
     PBL        = myblood.RootParent as PlagueBeastLord;
 }
Exemple #2
0
        public virtual void CrearVisceras(int bloodtype, int x_, int y_)
        {
            Container c = Parent as Container;

            Bolsa  = c;
            sangre = new Plague_Blood(bloodtype);
            c.AddItem(sangre);
            sangre.Location = new Point3D(X + x_ - 5, Y + y_, 0);
            Plague_Blood pb = sangre as Plague_Blood;

            pb.CrearVisceras();
        }
Exemple #3
0
        public void Sangrar(Mobile from)
        {
            Plague_Blood blood_ = sangre as Plague_Blood;

            blood_.Hemorragia(from);
        }
Exemple #4
0
 public InternalTimer( Plague_Blood item_ )
     : base(TimeSpan.FromSeconds( 1.0 ), TimeSpan.FromSeconds( 1.0 ))
 {
     myblood = item_;
     timepassed = 0;
     PBL = myblood.RootParent as PlagueBeastLord;
 }