コード例 #1
0
        public override void Deserialize(GenericReader reader)
        {
            base.Deserialize(reader);

            int version = reader.ReadInt();

            switch (version)
            {
            case 2:                     //Glacial Staff
            {
                m_GlacialSpells = (GlacialSpells)reader.ReadEncodedInt();
                goto case 0;
            }

            case 1:                     //Ice Staff
            {
                SetFlag(GlacialSpells.IceStrike, reader.ReadBool());
                SetFlag(GlacialSpells.IceBall, reader.ReadBool());
                SetFlag(GlacialSpells.Freeze, reader.ReadBool());

                goto case 0;
            }

            case 0:
            {
                if (version < 2)
                {
                    reader.ReadInt();                             //Staff Effect
                }
                m_UsesRemaining = reader.ReadInt();
                break;
            }
            }
        }
コード例 #2
0
		public void SetFlag( GlacialSpells flag, bool value )
		{
			if ( value )
				m_GlacialSpells |= flag;
			else
				m_GlacialSpells &= ~flag;
		}
コード例 #3
0
        public override void OnSpeech(SpeechEventArgs e)
        {
            base.OnSpeech(e);

            Mobile from = e.Mobile;

            if (from == Parent && m_UsesRemaining > 0)
            {
                if (GetFlag(GlacialSpells.Freeze) && e.Speech.ToLower().IndexOf("an ex del") > -1)
                {
                    m_CurrentSpell = GlacialSpells.Freeze;
                    from.NetState.Send(new PlaySound(0xF6, from.Location));
                }
                else if (GetFlag(GlacialSpells.IceStrike) && e.Speech.ToLower().IndexOf("in corp del") > -1)
                {
                    m_CurrentSpell = GlacialSpells.IceStrike;
                    from.NetState.Send(new PlaySound(0xF7, from.Location));
                }
                else if (GetFlag(GlacialSpells.IceBall) && e.Speech.ToLower().IndexOf("des corp del") > -1)
                {
                    m_CurrentSpell = GlacialSpells.IceBall;
                    from.NetState.Send(new PlaySound(0xF8, from.Location));
                }
            }
        }
コード例 #4
0
        public GlacialStaff(int usesremaining) : base()
        {
            ItemID = 0xDF1;
            Hue    = 0x480;
            Weight = 3.0;

            UsesRemaining = usesremaining;

            m_GlacialSpells = GetRandomSpells();
        }
コード例 #5
0
 public void SetFlag(GlacialSpells flag, bool value)
 {
     if (value)
     {
         m_GlacialSpells |= flag;
     }
     else
     {
         m_GlacialSpells &= ~flag;
     }
 }
コード例 #6
0
        public GlacialStaff(int usesremaining) : base()
        {
            Hue = 0x480;
            WeaponAttributes.HitHarm    = 5 * Utility.RandomMinMax(1, 5);
            WeaponAttributes.MageWeapon = Utility.RandomMinMax(5, 10);

            AosElementDamages[AosElementAttribute.Cold] = 20 + (5 * Utility.RandomMinMax(0, 6));
            UsesRemaining = usesremaining;

            m_GlacialSpells = GetRandomSpells();
        }
コード例 #7
0
        public GlacialStaff( int usesremaining )
            : base()
        {
            Hue = 0x480;
            WeaponAttributes.HitHarm = 5 * Utility.RandomMinMax( 1, 5 );
            WeaponAttributes.MageWeapon = Utility.RandomMinMax( 5, 10 );

            AosElementDamages[AosElementAttribute.Cold] = 20 + (5 * Utility.RandomMinMax( 0, 6 ));
            UsesRemaining = usesremaining;

            m_GlacialSpells = GetRandomSpells();
        }
コード例 #8
0
ファイル: GlacialStaff.cs プロジェクト: zerodowned/UO-Forever
        public GlacialStaff(int usesremaining) : base()
        {
            Identified = true;
            Hue        = 0x480;
            //
            //

            //AosElementDamages[AosElementAttribute.Cold] = 20 + (5 * Utility.RandomMinMax( 0, 6 ));
            UsesRemaining = usesremaining;

            m_GlacialSpells = GetRandomSpells();
        }
コード例 #9
0
		public GlacialStaff( int usesremaining ) : base()
		{
			Identified = true;
			Hue = 0x480;
			//
			//

			//AosElementDamages[AosElementAttribute.Cold] = 20 + (5 * Utility.RandomMinMax( 0, 6 ));
			UsesRemaining = usesremaining;

			m_GlacialSpells = GetRandomSpells();
		}
コード例 #10
0
        public override void Deserialize(GenericReader reader)
        {
            base.Deserialize(reader);

            int version = reader.ReadEncodedInt();

            switch (version)
            {
            case 0:
            {
                m_GlacialSpells = (GlacialSpells)reader.ReadEncodedInt();
                m_UsesRemaining = reader.ReadInt();
                break;
            }
            }
        }
コード例 #11
0
 public bool GetFlag(GlacialSpells flag)
 {
     return((m_GlacialSpells & flag) != 0);
 }
コード例 #12
0
        public override void OnSpeech(SpeechEventArgs e)
        {
            base.OnSpeech(e);

            Mobile from = e.Mobile;

            List <Mobile> list = new List <Mobile>();

            if (from == Parent && m_UsesRemaining > 0)
            {
                if (GetFlag(GlacialSpells.Freeze) && e.Speech.ToLower() == "an ex del")
                {
                    foreach (Mobile m in this.GetMobilesInRange(10))
                    {
                        if (m.Player)
                        {
                            list.Add(m);
                        }
                    }

                    foreach (Mobile m in list)
                    {
                        m.NetState.Send(new PlaySound(0xF6, from.Location));
                    }
                    m_DisplaySpells |= (m_CurrentSpell = GlacialSpells.Freeze);
                    InvalidateProperties();
                }
                else if (GetFlag(GlacialSpells.IceStrike) && e.Speech.ToLower() == "in corp del")
                {
                    foreach (Mobile m in this.GetMobilesInRange(10))
                    {
                        if (m.Player)
                        {
                            list.Add(m);
                        }
                    }

                    foreach (Mobile m in list)
                    {
                        m.NetState.Send(new PlaySound(0xF7, from.Location));
                    }
                    m_DisplaySpells |= (m_CurrentSpell = GlacialSpells.IceStrike);
                    InvalidateProperties();
                }
                else if (GetFlag(GlacialSpells.IceBall) && e.Speech.ToLower() == "des corp del")
                {
                    foreach (Mobile m in this.GetMobilesInRange(10))
                    {
                        if (m.Player)
                        {
                            list.Add(m);
                        }
                    }

                    foreach (Mobile m in list)
                    {
                        m.NetState.Send(new PlaySound(0xF8, from.Location));
                    }
                    m_DisplaySpells |= (m_CurrentSpell = GlacialSpells.IceBall);
                    InvalidateProperties();
                }
            }
        }
コード例 #13
0
        public override void OnSpeech( SpeechEventArgs e )
        {
            base.OnSpeech( e );

            Mobile from = e.Mobile;

            if ( from == Parent && m_UsesRemaining > 0 )
            {
                if ( GetFlag( GlacialSpells.Freeze ) && e.Speech.ToLower().IndexOf( "an ex del" ) > -1 )
                {
                    m_CurrentSpell = GlacialSpells.Freeze;
                    from.NetState.Send( new PlaySound( 0xF6, from.Location ) );
                }
                else if ( GetFlag( GlacialSpells.IceStrike ) && e.Speech.ToLower().IndexOf( "in corp del" ) > -1 )
                {
                    m_CurrentSpell = GlacialSpells.IceStrike;
                    from.NetState.Send( new PlaySound( 0xF7, from.Location ) );
                }
                else if ( GetFlag( GlacialSpells.IceBall ) && e.Speech.ToLower().IndexOf( "des corp del" ) > -1 )
                {
                    m_CurrentSpell = GlacialSpells.IceBall;
                    from.NetState.Send( new PlaySound( 0xF8, from.Location ) );
                }
            }
        }
コード例 #14
0
 public bool GetFlag( GlacialSpells flag )
 {
     return ( (m_GlacialSpells & flag) != 0 );
 }
コード例 #15
0
        public override void Deserialize(GenericReader reader)
        {
            base.Deserialize( reader );

            int version = reader.ReadInt();

            switch ( version )
            {
                case 1:
                {
                    m_GlacialSpells = (GlacialSpells)reader.ReadEncodedInt();
                    m_UsesRemaining = reader.ReadInt();
                    break;
                }
            }
        }