Server.Mobiles.BaseCreature.CheckPoisonImmunity C# (CSharp) 메소드

CheckPoisonImmunity() 공개 메소드

public CheckPoisonImmunity ( Server.Mobile from, Poison poison ) : bool
from Server.Mobile
poison Server.Poison
리턴 bool
        public override bool CheckPoisonImmunity( Mobile from, Poison poison )
        {
            if ( base.CheckPoisonImmunity( from, poison ) )
                return true;

            Poison p = this.PoisonImmune;

            return ( p != null && p.Level >= poison.Level );
        }
BaseCreature