Core/Artifact Handle Artifact tiers + Artifact unlock (3rd relic bonus)

This commit is contained in:
hondacrx
2018-08-01 14:14:51 -04:00
parent 92481d8d9f
commit ae08c81ce6
19 changed files with 275 additions and 63 deletions
+10 -1
View File
@@ -883,13 +883,22 @@ namespace Framework.Constants
Unk9 = 0x40000000,
}
public enum ArtifactCategory
{
Primary = 1,
Fishing = 2
}
public enum ArtifactPowerFlag : byte
{
Gold = 0x01,
First = 0x02,
NoLinkRequired = 0x02,
Final = 0x04,
ScalesWithNumPowers = 0x08,
DontCountFirstBonusRank = 0x10,
MaxRankWithTier = 0x20,
First = NoLinkRequired | DontCountFirstBonusRank,
}
public enum BattlegroundBracketId // bracketId for level ranges
-1
View File
@@ -1052,7 +1052,6 @@ namespace Framework.Constants
JusticePoints = 395,
ValorPoints = 396,
ApexisCrystals = 823,
ArtifactKnowledge = 1171,
}
public enum PlayerCurrencyState
@@ -67,6 +67,8 @@ namespace Framework.Constants
public const int ArtifactsAllWeaponsGeneralWeaponEquippedPassive = 197886;
public const int MaxArtifactTier = 1;
public const byte MaxHonorLevel = 50;
public const byte LevelMinHonor = 110;
public const uint SpellPvpRulesEnabled = 134735;
@@ -1066,6 +1066,7 @@ namespace Framework.Constants
CurrencyResetInterval,
CurrencyStartApexisCrystals,
CurrencyStartJusticePoints,
CurrencyStartArtifactKnowledge,
DailyQuestResetTimeHour,
DbcEnforceItemAttributes,
DeathBonesBgOrArena,