示例#1
0
 public GMEthereal(EtherealTypes type)
     : base(0, 0, 0)
 {
     EthyType = type;
     LootType = LootType.Blessed;
     Name     = "Staff Ethereal Steed";
 }
示例#2
0
 public GMEthereal(EtherealTypes type)
     : base(0, 0)
 {
     this.EthyType = type;
     this.LootType = LootType.Blessed;
     this.Hue      = 2406;
 }
示例#3
0
        public override void Deserialize(GenericReader reader)
        {
            base.Deserialize(reader);
            int version = reader.ReadInt();

            EthyType = (EtherealTypes)reader.ReadInt();
        }
示例#4
0
 public GMEthereal(EtherealTypes type)
     : base(0,0)
 {
     this.EthyType = type;
     this.LootType = LootType.Blessed;
     this.Hue = 2406;
 }
示例#5
0
 public GMEthereal(EtherealTypes type)
     : base(0, 0, 0)
 {
     EthyType = type;
     LootType = LootType.Blessed;
     Hue      = 2406;
 }
示例#6
0
 public override void Deserialize(GenericReader reader)
 {
     base.Deserialize(reader);
     int version = reader.ReadInt();
     this.m_EthyType = (EtherealTypes)reader.ReadInt();
 }
示例#7
0
 public InstantEthereal(EtherealTypes type) : base(0, 0)
 {
     EthyType = type;
     LootType = LootType.Blessed;
     Hue      = 0;
 }
示例#8
0
		public GMEthereal( EtherealTypes type ) : base(0,0) {
			EthyType = type;
			LootType = LootType.Blessed;
			Hue = 2406;
		}