Core/Items: Implemented new item bonus and enchantment types

This commit is contained in:
Shauren
2017-05-07 16:47:49 +02:00
parent 8aa516528f
commit 6828c7bc2f
12 changed files with 132 additions and 27 deletions

View File

@@ -82,6 +82,9 @@ void HotfixDatabaseConnection::DoPrepareStatements()
// ArtifactPowerLink.db2
PrepareStatement(HOTFIX_SEL_ARTIFACT_POWER_LINK, "SELECT ID, FromArtifactPowerID, ToArtifactPowerID FROM artifact_power_link ORDER BY ID DESC", CONNECTION_SYNCH);
// ArtifactPowerPicker.db2
PrepareStatement(HOTFIX_SEL_ARTIFACT_POWER_PICKER, "SELECT ID, PlayerConditionID FROM artifact_power_picker ORDER BY ID DESC", CONNECTION_SYNCH);
// ArtifactPowerRank.db2
PrepareStatement(HOTFIX_SEL_ARTIFACT_POWER_RANK, "SELECT ID, SpellID, Value, ArtifactPowerID, Unknown, Rank FROM artifact_power_rank"
" ORDER BY ID DESC", CONNECTION_SYNCH);

View File

@@ -61,6 +61,8 @@ enum HotfixDatabaseStatements
HOTFIX_SEL_ARTIFACT_POWER_LINK,
HOTFIX_SEL_ARTIFACT_POWER_PICKER,
HOTFIX_SEL_ARTIFACT_POWER_RANK,
HOTFIX_SEL_ARTIFACT_QUEST_XP,