public InternalTimer(Plague_Blood item_) : base(TimeSpan.FromSeconds(1.0), TimeSpan.FromSeconds(1.0)) { myblood = item_; timepassed = 0; PBL = myblood.RootParent as PlagueBeastLord; }
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(); }
public void Sangrar(Mobile from) { Plague_Blood blood_ = sangre as Plague_Blood; blood_.Hemorragia(from); }
public InternalTimer( Plague_Blood item_ ) : base(TimeSpan.FromSeconds( 1.0 ), TimeSpan.FromSeconds( 1.0 )) { myblood = item_; timepassed = 0; PBL = myblood.RootParent as PlagueBeastLord; }