DB/ItemArmorTotal: Difference between revisions

From wowdev
Jump to navigation Jump to search
mNo edit summary
m (Marlamin moved page ItemArmorTotal.dbc to DB/ItemArmorTotal)
(No difference)

Revision as of 23:45, 12 February 2016

New in Cataclysm.

struct ItemArmorTotalEntry // sizeof(0x18)
{
   m_ID; // +0x0, size 0x4, type 0
   m_itemLevel; // +0x4, size 0x4, type 0
   m_cloth; // +0x8, size 0x4, type 3
   m_leather; // +0xC, size 0x4, type 3
   m_mail; // +0x10, size 0x4, type 3
   m_plate; // +0x14, size 0x4, type 3
};

6.0.1.18179

struct ItemArmorTotalRec {
  uint32_t m_ID;
  uint32_t m_itemLevel;
  float m_cloth;
  float m_leather;
  float m_mail;
  float m_plate;
};