Exemplo n.º 1
0
 public PetAction(float time, PetActionType type, int _id, int _damage, int _dander, int _blood)
 {
     this.Time   = time;
     this.Type   = (int)type;
     this.id     = _id;
     this.damage = _damage;
     this.blood  = _blood;
     this.dander = _dander;
 }
Exemplo n.º 2
0
 public void SetSpell(SpellId id, PetActionType type)
 {
     Raw  = (uint)id;
     Type = type;
 }
Exemplo n.º 3
0
 public PetActionEntry(uint raw)
 {
     Type       = 0;
     m_ActionId = 0;
     Raw        = raw;
 }
Exemplo n.º 4
0
		public void SetSpell(SpellId id, PetActionType type)
		{
			Raw = (uint)id;
			Type = type;
		}
Exemplo n.º 5
0
		public PetActionEntry(uint raw)
		{
			Type = 0;
			m_ActionId = 0;
			Raw = raw;
		}
Exemplo n.º 6
0
 public void SetSpell(SpellId id, PetActionType type)
 {
     this.Raw  = (uint)id;
     this.Type = type;
 }
Exemplo n.º 7
0
 public PetActionEntry(uint raw)
 {
     this.Type       = (PetActionType)0;
     this.m_ActionId = 0U;
     this.Raw        = raw;
 }