├── .gitignore ├── LICENSE ├── README.md ├── SpellWork.sln ├── SpellWork ├── .gitignore ├── DBC │ ├── DBC.cs │ └── Structures │ │ ├── AreaGroupMemberEntry.cs │ │ ├── AreaTableEntry.cs │ │ ├── ContentTuningEntry.cs │ │ ├── ContentTuningXExpectedEntry.cs │ │ ├── DifficultyEntry.cs │ │ ├── ExpectedStatEntry.cs │ │ ├── ExpectedStatModEntry.cs │ │ ├── ItemEffectEntry.cs │ │ ├── ItemEntry.cs │ │ ├── ItemSparseEntry.cs │ │ ├── ItemXItemEffectEntry.cs │ │ ├── MapDifficultyEntry.cs │ │ ├── MapEntry.cs │ │ ├── OverrideSpellDataEntry.cs │ │ ├── RandPropPointsEntry.cs │ │ ├── ScreenEffectEntry.cs │ │ ├── SkillLineAbilityEntry.cs │ │ ├── SkillLineEntry.cs │ │ ├── SpellAuraOptionsEntry.cs │ │ ├── SpellAuraRestrictionsEntry.cs │ │ ├── SpellCastTimesEntry.cs │ │ ├── SpellCastingRequirementsEntry.cs │ │ ├── SpellCategoriesEntry.cs │ │ ├── SpellCategoryEntry.cs │ │ ├── SpellClassOptionsEntry.cs │ │ ├── SpellCooldownsEntry.cs │ │ ├── SpellDescriptionVariablesEntry.cs │ │ ├── SpellDurationEntry.cs │ │ ├── SpellEffectEntry.cs │ │ ├── SpellEntry.cs │ │ ├── SpellEquippedItemsEntry.cs │ │ ├── SpellInterruptsEntry.cs │ │ ├── SpellLabelEntry.cs │ │ ├── SpellLevelsEntry.cs │ │ ├── SpellMiscEntry.cs │ │ ├── SpellMissileEntry.cs │ │ ├── SpellNameEntry.cs │ │ ├── SpellPowerEntry.cs │ │ ├── SpellProcsPerMinuteEntry.cs │ │ ├── SpellRadiusEntry.cs │ │ ├── SpellRangeEntry.cs │ │ ├── SpellReagentsCurrencyEntry.cs │ │ ├── SpellReagentsEntry.cs │ │ ├── SpellScalingEntry.cs │ │ ├── SpellShapeshiftEntry.cs │ │ ├── SpellTargetRestrictionsEntry.cs │ │ ├── SpellTotemsEntry.cs │ │ ├── SpellXDescriptionVariables.cs │ │ └── SpellXSpellVisualEntry.cs ├── Database │ ├── MySQLConnect.cs │ └── Structures.cs ├── Extensions │ ├── CheckedListBoxExtensions.cs │ ├── Extensions.cs │ ├── RichTextBoxExtensions.cs │ └── TreeViewExtensions.cs ├── Filtering │ └── FilterFactory.cs ├── Forms │ ├── FormCalculateFlags.Designer.cs │ ├── FormCalculateFlags.cs │ ├── FormCalculateFlags.resx │ ├── FormMain.Designer.cs │ ├── FormMain.cs │ ├── FormMain.resx │ ├── FormSearch.Designer.cs │ ├── FormSearch.cs │ ├── FormSearch.resx │ ├── FormSettings.Designer.cs │ ├── FormSettings.cs │ ├── FormSettings.resx │ ├── FormSpellScaling.Designer.cs │ ├── FormSpellScaling.cs │ └── FormSpellScaling.resx ├── GameTables │ ├── GameTables.cs │ └── Structures │ │ └── GtSpellScalingEntry.cs ├── New Icon.ico ├── Program.cs ├── Properties │ ├── Resources.Designer.cs │ ├── Resources.resx │ ├── Settings.Designer.cs │ └── Settings.settings ├── Settings.cs ├── Spell │ ├── ExpectedStat.cs │ ├── ProcInfo.cs │ ├── SpellCompare.cs │ ├── SpellEnums.cs │ └── SpellInfo.cs ├── SpellWork.csproj ├── Utilities │ └── ProgressHandler.cs ├── app.config └── res │ ├── down.ico │ ├── drop.ico │ ├── family.ico │ ├── info.ico │ ├── munus.ico │ ├── ok.ico │ └── plus.ico ├── appveyor.yml ├── coverity.bat ├── packages └── DBFileReaderLib.1.0.0.0 │ └── lib │ └── DBFileReaderLib.dll └── screenshot.png /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityCore/SpellWork/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityCore/SpellWork/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityCore/SpellWork/HEAD/README.md -------------------------------------------------------------------------------- /SpellWork.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityCore/SpellWork/HEAD/SpellWork.sln -------------------------------------------------------------------------------- /SpellWork/.gitignore: -------------------------------------------------------------------------------- 1 | 2 | bin/* 3 | obj/* 4 | -------------------------------------------------------------------------------- /SpellWork/DBC/DBC.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityCore/SpellWork/HEAD/SpellWork/DBC/DBC.cs -------------------------------------------------------------------------------- /SpellWork/DBC/Structures/AreaGroupMemberEntry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityCore/SpellWork/HEAD/SpellWork/DBC/Structures/AreaGroupMemberEntry.cs -------------------------------------------------------------------------------- /SpellWork/DBC/Structures/AreaTableEntry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityCore/SpellWork/HEAD/SpellWork/DBC/Structures/AreaTableEntry.cs -------------------------------------------------------------------------------- /SpellWork/DBC/Structures/ContentTuningEntry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityCore/SpellWork/HEAD/SpellWork/DBC/Structures/ContentTuningEntry.cs -------------------------------------------------------------------------------- /SpellWork/DBC/Structures/ContentTuningXExpectedEntry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityCore/SpellWork/HEAD/SpellWork/DBC/Structures/ContentTuningXExpectedEntry.cs -------------------------------------------------------------------------------- /SpellWork/DBC/Structures/DifficultyEntry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityCore/SpellWork/HEAD/SpellWork/DBC/Structures/DifficultyEntry.cs -------------------------------------------------------------------------------- /SpellWork/DBC/Structures/ExpectedStatEntry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityCore/SpellWork/HEAD/SpellWork/DBC/Structures/ExpectedStatEntry.cs -------------------------------------------------------------------------------- /SpellWork/DBC/Structures/ExpectedStatModEntry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityCore/SpellWork/HEAD/SpellWork/DBC/Structures/ExpectedStatModEntry.cs -------------------------------------------------------------------------------- /SpellWork/DBC/Structures/ItemEffectEntry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityCore/SpellWork/HEAD/SpellWork/DBC/Structures/ItemEffectEntry.cs -------------------------------------------------------------------------------- /SpellWork/DBC/Structures/ItemEntry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityCore/SpellWork/HEAD/SpellWork/DBC/Structures/ItemEntry.cs -------------------------------------------------------------------------------- /SpellWork/DBC/Structures/ItemSparseEntry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityCore/SpellWork/HEAD/SpellWork/DBC/Structures/ItemSparseEntry.cs -------------------------------------------------------------------------------- /SpellWork/DBC/Structures/ItemXItemEffectEntry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityCore/SpellWork/HEAD/SpellWork/DBC/Structures/ItemXItemEffectEntry.cs -------------------------------------------------------------------------------- /SpellWork/DBC/Structures/MapDifficultyEntry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityCore/SpellWork/HEAD/SpellWork/DBC/Structures/MapDifficultyEntry.cs -------------------------------------------------------------------------------- /SpellWork/DBC/Structures/MapEntry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityCore/SpellWork/HEAD/SpellWork/DBC/Structures/MapEntry.cs -------------------------------------------------------------------------------- /SpellWork/DBC/Structures/OverrideSpellDataEntry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityCore/SpellWork/HEAD/SpellWork/DBC/Structures/OverrideSpellDataEntry.cs -------------------------------------------------------------------------------- /SpellWork/DBC/Structures/RandPropPointsEntry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityCore/SpellWork/HEAD/SpellWork/DBC/Structures/RandPropPointsEntry.cs -------------------------------------------------------------------------------- /SpellWork/DBC/Structures/ScreenEffectEntry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityCore/SpellWork/HEAD/SpellWork/DBC/Structures/ScreenEffectEntry.cs -------------------------------------------------------------------------------- /SpellWork/DBC/Structures/SkillLineAbilityEntry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityCore/SpellWork/HEAD/SpellWork/DBC/Structures/SkillLineAbilityEntry.cs -------------------------------------------------------------------------------- /SpellWork/DBC/Structures/SkillLineEntry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityCore/SpellWork/HEAD/SpellWork/DBC/Structures/SkillLineEntry.cs -------------------------------------------------------------------------------- /SpellWork/DBC/Structures/SpellAuraOptionsEntry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityCore/SpellWork/HEAD/SpellWork/DBC/Structures/SpellAuraOptionsEntry.cs -------------------------------------------------------------------------------- /SpellWork/DBC/Structures/SpellAuraRestrictionsEntry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityCore/SpellWork/HEAD/SpellWork/DBC/Structures/SpellAuraRestrictionsEntry.cs -------------------------------------------------------------------------------- /SpellWork/DBC/Structures/SpellCastTimesEntry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityCore/SpellWork/HEAD/SpellWork/DBC/Structures/SpellCastTimesEntry.cs -------------------------------------------------------------------------------- /SpellWork/DBC/Structures/SpellCastingRequirementsEntry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityCore/SpellWork/HEAD/SpellWork/DBC/Structures/SpellCastingRequirementsEntry.cs -------------------------------------------------------------------------------- /SpellWork/DBC/Structures/SpellCategoriesEntry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityCore/SpellWork/HEAD/SpellWork/DBC/Structures/SpellCategoriesEntry.cs -------------------------------------------------------------------------------- /SpellWork/DBC/Structures/SpellCategoryEntry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityCore/SpellWork/HEAD/SpellWork/DBC/Structures/SpellCategoryEntry.cs -------------------------------------------------------------------------------- /SpellWork/DBC/Structures/SpellClassOptionsEntry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityCore/SpellWork/HEAD/SpellWork/DBC/Structures/SpellClassOptionsEntry.cs -------------------------------------------------------------------------------- /SpellWork/DBC/Structures/SpellCooldownsEntry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityCore/SpellWork/HEAD/SpellWork/DBC/Structures/SpellCooldownsEntry.cs -------------------------------------------------------------------------------- /SpellWork/DBC/Structures/SpellDescriptionVariablesEntry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityCore/SpellWork/HEAD/SpellWork/DBC/Structures/SpellDescriptionVariablesEntry.cs -------------------------------------------------------------------------------- /SpellWork/DBC/Structures/SpellDurationEntry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityCore/SpellWork/HEAD/SpellWork/DBC/Structures/SpellDurationEntry.cs -------------------------------------------------------------------------------- /SpellWork/DBC/Structures/SpellEffectEntry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityCore/SpellWork/HEAD/SpellWork/DBC/Structures/SpellEffectEntry.cs -------------------------------------------------------------------------------- /SpellWork/DBC/Structures/SpellEntry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityCore/SpellWork/HEAD/SpellWork/DBC/Structures/SpellEntry.cs -------------------------------------------------------------------------------- /SpellWork/DBC/Structures/SpellEquippedItemsEntry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityCore/SpellWork/HEAD/SpellWork/DBC/Structures/SpellEquippedItemsEntry.cs -------------------------------------------------------------------------------- /SpellWork/DBC/Structures/SpellInterruptsEntry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityCore/SpellWork/HEAD/SpellWork/DBC/Structures/SpellInterruptsEntry.cs -------------------------------------------------------------------------------- /SpellWork/DBC/Structures/SpellLabelEntry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityCore/SpellWork/HEAD/SpellWork/DBC/Structures/SpellLabelEntry.cs -------------------------------------------------------------------------------- /SpellWork/DBC/Structures/SpellLevelsEntry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityCore/SpellWork/HEAD/SpellWork/DBC/Structures/SpellLevelsEntry.cs -------------------------------------------------------------------------------- /SpellWork/DBC/Structures/SpellMiscEntry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityCore/SpellWork/HEAD/SpellWork/DBC/Structures/SpellMiscEntry.cs -------------------------------------------------------------------------------- /SpellWork/DBC/Structures/SpellMissileEntry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityCore/SpellWork/HEAD/SpellWork/DBC/Structures/SpellMissileEntry.cs -------------------------------------------------------------------------------- /SpellWork/DBC/Structures/SpellNameEntry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityCore/SpellWork/HEAD/SpellWork/DBC/Structures/SpellNameEntry.cs -------------------------------------------------------------------------------- /SpellWork/DBC/Structures/SpellPowerEntry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityCore/SpellWork/HEAD/SpellWork/DBC/Structures/SpellPowerEntry.cs -------------------------------------------------------------------------------- /SpellWork/DBC/Structures/SpellProcsPerMinuteEntry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityCore/SpellWork/HEAD/SpellWork/DBC/Structures/SpellProcsPerMinuteEntry.cs -------------------------------------------------------------------------------- /SpellWork/DBC/Structures/SpellRadiusEntry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityCore/SpellWork/HEAD/SpellWork/DBC/Structures/SpellRadiusEntry.cs -------------------------------------------------------------------------------- /SpellWork/DBC/Structures/SpellRangeEntry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityCore/SpellWork/HEAD/SpellWork/DBC/Structures/SpellRangeEntry.cs -------------------------------------------------------------------------------- /SpellWork/DBC/Structures/SpellReagentsCurrencyEntry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityCore/SpellWork/HEAD/SpellWork/DBC/Structures/SpellReagentsCurrencyEntry.cs -------------------------------------------------------------------------------- /SpellWork/DBC/Structures/SpellReagentsEntry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityCore/SpellWork/HEAD/SpellWork/DBC/Structures/SpellReagentsEntry.cs -------------------------------------------------------------------------------- /SpellWork/DBC/Structures/SpellScalingEntry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityCore/SpellWork/HEAD/SpellWork/DBC/Structures/SpellScalingEntry.cs -------------------------------------------------------------------------------- /SpellWork/DBC/Structures/SpellShapeshiftEntry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityCore/SpellWork/HEAD/SpellWork/DBC/Structures/SpellShapeshiftEntry.cs -------------------------------------------------------------------------------- /SpellWork/DBC/Structures/SpellTargetRestrictionsEntry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityCore/SpellWork/HEAD/SpellWork/DBC/Structures/SpellTargetRestrictionsEntry.cs -------------------------------------------------------------------------------- /SpellWork/DBC/Structures/SpellTotemsEntry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityCore/SpellWork/HEAD/SpellWork/DBC/Structures/SpellTotemsEntry.cs -------------------------------------------------------------------------------- /SpellWork/DBC/Structures/SpellXDescriptionVariables.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityCore/SpellWork/HEAD/SpellWork/DBC/Structures/SpellXDescriptionVariables.cs -------------------------------------------------------------------------------- /SpellWork/DBC/Structures/SpellXSpellVisualEntry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityCore/SpellWork/HEAD/SpellWork/DBC/Structures/SpellXSpellVisualEntry.cs -------------------------------------------------------------------------------- /SpellWork/Database/MySQLConnect.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityCore/SpellWork/HEAD/SpellWork/Database/MySQLConnect.cs -------------------------------------------------------------------------------- /SpellWork/Database/Structures.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityCore/SpellWork/HEAD/SpellWork/Database/Structures.cs -------------------------------------------------------------------------------- /SpellWork/Extensions/CheckedListBoxExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityCore/SpellWork/HEAD/SpellWork/Extensions/CheckedListBoxExtensions.cs -------------------------------------------------------------------------------- /SpellWork/Extensions/Extensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityCore/SpellWork/HEAD/SpellWork/Extensions/Extensions.cs -------------------------------------------------------------------------------- /SpellWork/Extensions/RichTextBoxExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityCore/SpellWork/HEAD/SpellWork/Extensions/RichTextBoxExtensions.cs -------------------------------------------------------------------------------- /SpellWork/Extensions/TreeViewExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityCore/SpellWork/HEAD/SpellWork/Extensions/TreeViewExtensions.cs -------------------------------------------------------------------------------- /SpellWork/Filtering/FilterFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityCore/SpellWork/HEAD/SpellWork/Filtering/FilterFactory.cs -------------------------------------------------------------------------------- /SpellWork/Forms/FormCalculateFlags.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityCore/SpellWork/HEAD/SpellWork/Forms/FormCalculateFlags.Designer.cs -------------------------------------------------------------------------------- /SpellWork/Forms/FormCalculateFlags.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityCore/SpellWork/HEAD/SpellWork/Forms/FormCalculateFlags.cs -------------------------------------------------------------------------------- /SpellWork/Forms/FormCalculateFlags.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityCore/SpellWork/HEAD/SpellWork/Forms/FormCalculateFlags.resx -------------------------------------------------------------------------------- /SpellWork/Forms/FormMain.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityCore/SpellWork/HEAD/SpellWork/Forms/FormMain.Designer.cs -------------------------------------------------------------------------------- /SpellWork/Forms/FormMain.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityCore/SpellWork/HEAD/SpellWork/Forms/FormMain.cs -------------------------------------------------------------------------------- /SpellWork/Forms/FormMain.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityCore/SpellWork/HEAD/SpellWork/Forms/FormMain.resx -------------------------------------------------------------------------------- /SpellWork/Forms/FormSearch.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityCore/SpellWork/HEAD/SpellWork/Forms/FormSearch.Designer.cs -------------------------------------------------------------------------------- /SpellWork/Forms/FormSearch.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityCore/SpellWork/HEAD/SpellWork/Forms/FormSearch.cs -------------------------------------------------------------------------------- /SpellWork/Forms/FormSearch.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityCore/SpellWork/HEAD/SpellWork/Forms/FormSearch.resx -------------------------------------------------------------------------------- /SpellWork/Forms/FormSettings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityCore/SpellWork/HEAD/SpellWork/Forms/FormSettings.Designer.cs -------------------------------------------------------------------------------- /SpellWork/Forms/FormSettings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityCore/SpellWork/HEAD/SpellWork/Forms/FormSettings.cs -------------------------------------------------------------------------------- /SpellWork/Forms/FormSettings.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityCore/SpellWork/HEAD/SpellWork/Forms/FormSettings.resx -------------------------------------------------------------------------------- /SpellWork/Forms/FormSpellScaling.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityCore/SpellWork/HEAD/SpellWork/Forms/FormSpellScaling.Designer.cs -------------------------------------------------------------------------------- /SpellWork/Forms/FormSpellScaling.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityCore/SpellWork/HEAD/SpellWork/Forms/FormSpellScaling.cs -------------------------------------------------------------------------------- /SpellWork/Forms/FormSpellScaling.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityCore/SpellWork/HEAD/SpellWork/Forms/FormSpellScaling.resx -------------------------------------------------------------------------------- /SpellWork/GameTables/GameTables.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityCore/SpellWork/HEAD/SpellWork/GameTables/GameTables.cs -------------------------------------------------------------------------------- /SpellWork/GameTables/Structures/GtSpellScalingEntry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityCore/SpellWork/HEAD/SpellWork/GameTables/Structures/GtSpellScalingEntry.cs -------------------------------------------------------------------------------- /SpellWork/New Icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityCore/SpellWork/HEAD/SpellWork/New Icon.ico -------------------------------------------------------------------------------- /SpellWork/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityCore/SpellWork/HEAD/SpellWork/Program.cs -------------------------------------------------------------------------------- /SpellWork/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityCore/SpellWork/HEAD/SpellWork/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /SpellWork/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityCore/SpellWork/HEAD/SpellWork/Properties/Resources.resx -------------------------------------------------------------------------------- /SpellWork/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityCore/SpellWork/HEAD/SpellWork/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /SpellWork/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityCore/SpellWork/HEAD/SpellWork/Properties/Settings.settings -------------------------------------------------------------------------------- /SpellWork/Settings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityCore/SpellWork/HEAD/SpellWork/Settings.cs -------------------------------------------------------------------------------- /SpellWork/Spell/ExpectedStat.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityCore/SpellWork/HEAD/SpellWork/Spell/ExpectedStat.cs -------------------------------------------------------------------------------- /SpellWork/Spell/ProcInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityCore/SpellWork/HEAD/SpellWork/Spell/ProcInfo.cs -------------------------------------------------------------------------------- /SpellWork/Spell/SpellCompare.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityCore/SpellWork/HEAD/SpellWork/Spell/SpellCompare.cs -------------------------------------------------------------------------------- /SpellWork/Spell/SpellEnums.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityCore/SpellWork/HEAD/SpellWork/Spell/SpellEnums.cs -------------------------------------------------------------------------------- /SpellWork/Spell/SpellInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityCore/SpellWork/HEAD/SpellWork/Spell/SpellInfo.cs -------------------------------------------------------------------------------- /SpellWork/SpellWork.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityCore/SpellWork/HEAD/SpellWork/SpellWork.csproj -------------------------------------------------------------------------------- /SpellWork/Utilities/ProgressHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityCore/SpellWork/HEAD/SpellWork/Utilities/ProgressHandler.cs -------------------------------------------------------------------------------- /SpellWork/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityCore/SpellWork/HEAD/SpellWork/app.config -------------------------------------------------------------------------------- /SpellWork/res/down.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityCore/SpellWork/HEAD/SpellWork/res/down.ico -------------------------------------------------------------------------------- /SpellWork/res/drop.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityCore/SpellWork/HEAD/SpellWork/res/drop.ico -------------------------------------------------------------------------------- /SpellWork/res/family.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityCore/SpellWork/HEAD/SpellWork/res/family.ico -------------------------------------------------------------------------------- /SpellWork/res/info.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityCore/SpellWork/HEAD/SpellWork/res/info.ico -------------------------------------------------------------------------------- /SpellWork/res/munus.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityCore/SpellWork/HEAD/SpellWork/res/munus.ico -------------------------------------------------------------------------------- /SpellWork/res/ok.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityCore/SpellWork/HEAD/SpellWork/res/ok.ico -------------------------------------------------------------------------------- /SpellWork/res/plus.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityCore/SpellWork/HEAD/SpellWork/res/plus.ico -------------------------------------------------------------------------------- /appveyor.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityCore/SpellWork/HEAD/appveyor.yml -------------------------------------------------------------------------------- /coverity.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityCore/SpellWork/HEAD/coverity.bat -------------------------------------------------------------------------------- /packages/DBFileReaderLib.1.0.0.0/lib/DBFileReaderLib.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityCore/SpellWork/HEAD/packages/DBFileReaderLib.1.0.0.0/lib/DBFileReaderLib.dll -------------------------------------------------------------------------------- /screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrinityCore/SpellWork/HEAD/screenshot.png --------------------------------------------------------------------------------