Exemplo n.º 1
0
        public void AppendPoisoned(int[] dmgs, long timeInCS)
        {
            Poisoned = dmgs;
            CreatureCheck check = new PoisonCheck();

            check.CurrentCreature = this;
            check.World           = World;
            check.TimeInCS        = timeInCS;
            PoisonedCheck         = check;
            World.AddEventInCS(check.TimeInCS, check.PerformCheck);
        }
Exemplo n.º 2
0
 public void AppendPoisoned(int[] dmgs, long timeInCS)
 {
     Poisoned = dmgs;
     CreatureCheck check = new PoisonCheck();
     check.CurrentCreature = this;
     check.World = World;
     check.TimeInCS = timeInCS;
     PoisonedCheck = check;
     World.AddEventInCS(check.TimeInCS, check.PerformCheck);
 }