mirror of
https://github.com/mod-playerbots/azerothcore-wotlk.git
synced 2026-01-21 12:47:07 +00:00
feat(Core/DBC): Implement NamesProfanity and NamesReserved DBC (#14956)
This commit is contained in:
@@ -1377,6 +1377,20 @@ struct MovieEntry
|
||||
//uint32 unk2; // 2 always 100
|
||||
};
|
||||
|
||||
struct NamesReservedEntry
|
||||
{
|
||||
//uint32 ID; // 0
|
||||
char const* Pattern; // 1
|
||||
//uint32 Language; // 2
|
||||
};
|
||||
|
||||
struct NamesProfanityEntry
|
||||
{
|
||||
//uint32 ID; // 0
|
||||
char const* Pattern; // 1
|
||||
//uint32 Language; // 2
|
||||
};
|
||||
|
||||
#define MAX_OVERRIDE_SPELL 10
|
||||
|
||||
struct OverrideSpellDataEntry
|
||||
|
||||
@@ -84,6 +84,8 @@ char constexpr MailTemplateEntryfmt[] = "nxxxxxxxxxxxxxxxxxssssssssssssssssx";
|
||||
char constexpr MapEntryfmt[] = "nxiixssssssssssssssssxixxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxixiffxiii";
|
||||
char constexpr MapDifficultyEntryfmt[] = "diisxxxxxxxxxxxxxxxxiix";
|
||||
char constexpr MovieEntryfmt[] = "nxx";
|
||||
char constexpr NamesReservedfmt[] = "xsx";
|
||||
char constexpr NamesProfanityfmt[] = "xsx";
|
||||
char constexpr OverrideSpellDatafmt[] = "niiiiiiiiiix";
|
||||
char constexpr PowerDisplayfmt[] = "nixxxx";
|
||||
char constexpr QuestSortEntryfmt[] = "nxxxxxxxxxxxxxxxxx";
|
||||
|
||||
Reference in New Issue
Block a user