DB/CreatureFamily: Difference between revisions

From wowdev
Jump to navigation Jump to search
m (Added Category WotLK)
m (add full and correct info for 6.0.1.18179)
Line 38: Line 38:
| 28 || IconFile || String || "Interface\Icons\Ability_[a-z_]"  
| 28 || IconFile || String || "Interface\Icons\Ability_[a-z_]"  
|}
|}
 
==6.0.1.18179==
struct CreatureFamilyRec {
  int m_ID;
  float m_minScale;
  int m_minScaleLevel;
  float m_maxScale;
  int m_maxScaleLevel;
  int m_skillLine[2];
  int m_petFoodMask;
  int m_petTalentType;
  int m_categoryEnumID;
  stringref m_name_lang;
  stringref m_iconFile;
};
==Old structure (?)==
==Old structure (?)==



Revision as of 02:56, 11 July 2014

Header Info

Records....................30
Fields.....................18
Record Size................72
String Block Size........1231

Structure

Column Field Type Notes
1 ID Integer
2 minScale Float
3 minScaleLevel Integer
4 maxScale Float
5 maxScaleLevel Integer
6 SkillLine iRefID
7 SkillLine iRefID
8 ItemPetFood iRefMask
9 petTalentType Integer
10 categoryEnumID Integer
11 Name Loc
28 IconFile String "Interface\Icons\Ability_[a-z_]"

6.0.1.18179

struct CreatureFamilyRec {
  int m_ID;
  float m_minScale;
  int m_minScaleLevel;
  float m_maxScale;
  int m_maxScaleLevel;
  int m_skillLine[2];
  int m_petFoodMask;
  int m_petTalentType;
  int m_categoryEnumID;
  stringref m_name_lang;
  stringref m_iconFile;
};

Old structure (?)

Column 	Field 			Type 		Notes 
1 	ID 			Integer 	
2 	Unknown 		Float 		Q: movement or attack speed modifier? 
3 	iRefID_PetPersonality 	Integer 	Base data columns 11-19. 
4 	Unknown 		Float 		Q: movement or attack speed modifier? 
5 	Unknown 		Integer 	Q: is player controlled? 
6 	iRefID_SkillLine 	Integer 	
7 	Unknown 		Integer 	Q: is tameable? 
8 	iRefMask_ItemPetFood 	BitMask 	
9-17 	sRefName 		String + Loc		
18 	sRefPath 		String 		path: "Interface\Icons\Ability_[a-z_]" 

Retrieved from "http://www.sourcepeek.com/wiki/CreatureFamily.dbc"