コード例 #1
0
 public HailStormTimer(MysticSpell spell, Mobile caster, Point3D point) : base(TimeSpan.FromMilliseconds(100.0), TimeSpan.FromMilliseconds(100.0))
 {
     m_Spell      = spell;
     Caster       = caster;
     m_StormPoint = point;
     m_StormMap   = caster.Map;
     m_Count      = 0;
     m_MaxCount   = 75;
     m_Damage     = (int)((caster.Skills[SkillName.Mysticism].Value + (caster.Skills[SkillName.Imbuing].Value / 2)) / 4);
 }
コード例 #2
0
ファイル: MysticSpell.cs プロジェクト: romeov007/imagine-uo
			public MysticSpellTarget( MysticSpell owner, bool allowland, TargetFlags flags ) : base( 12, allowland, flags )
			{
				m_Owner = owner;
			}
コード例 #3
0
ファイル: MysticSpell.cs プロジェクト: romeov007/imagine-uo
			public MysticSpellTarget( MysticSpell owner, TargetFlags flags ) : this( owner, false, flags )
			{
			}
コード例 #4
0
ファイル: HailStormSpell.cs プロジェクト: m309/ForkUO
 public HailStormTimer(MysticSpell spell, Mobile caster, Point3D point)
     : base(TimeSpan.FromMilliseconds(100.0), TimeSpan.FromMilliseconds(100.0))
 {
     this.m_Spell = spell;
     this.Caster = caster;
     this.m_StormPoint = point;
     this.m_StormMap = caster.Map;
     this.m_Count = 0;
     this.m_MaxCount = 75;
     this.m_Damage = (int)((caster.Skills[SkillName.Mysticism].Value + (caster.Skills[SkillName.Imbuing].Value / 2)) / 4);
 }
コード例 #5
0
ファイル: MysticSpell.cs プロジェクト: nydehi/imagine-uo
 public MysticSpellTarget(MysticSpell owner, bool allowland, TargetFlags flags) : base(12, allowland, flags)
 {
     m_Owner = owner;
 }
コード例 #6
0
ファイル: MysticSpell.cs プロジェクト: nydehi/imagine-uo
 public MysticSpellTarget(MysticSpell owner, TargetFlags flags) : this(owner, false, flags)
 {
 }