예제 #1
0
 public InternalTarget(PurgeMagicSpell owner)
     : base(12, false, TargetFlags.Harmful)
 {
     m_Owner = owner;
 }
예제 #2
0
 public InternalTarget(PurgeMagicSpell owner)
     : this(owner, false)
 {
 }
예제 #3
0
 public InternalTarget(PurgeMagicSpell owner, bool allowland)
     : base(12, allowland, TargetFlags.Harmful)
 {
     Owner = owner;
 }
예제 #4
0
 protected override void OnTick()
 {
     PurgeMagicSpell.RemoveCurse(m_Mobile, m_Caster);
 }
예제 #5
0
 protected override void OnTick()
 {
     PurgeMagicSpell.RemoveImmunity(m_Mobile);
 }
예제 #6
0
 public InternalTarget(PurgeMagicSpell owner, bool allowland, TargetFlags flags)
     : base(12, allowland, flags)
 {
     Owner = owner;
 }
예제 #7
0
 public InternalTarget(PurgeMagicSpell owner, TargetFlags flags)
     : this(owner, false, flags)
 {
 }
예제 #8
0
 public InternalTarget( PurgeMagicSpell owner )
     : base(12, false, TargetFlags.Harmful)
 {
     m_Owner = owner;
 }