├── .github └── ISSUE_TEMPLATE │ ├── bug_report.md │ ├── feature_request.md │ └── question.md ├── .gitignore ├── .gitmodules ├── Documentation ├── Bindings_112_vanilla │ ├── AnimationData.txt │ ├── AreaGroup.txt │ ├── AreaTable.txt │ ├── ItemClass.txt │ ├── ItemSubClass.txt │ ├── SkillRaceClassInfo.txt │ ├── Spell.txt │ ├── SpellCastTimes.txt │ ├── SpellCategory.txt │ ├── SpellDescriptionVariables.txt │ ├── SpellDifficulty.txt │ ├── SpellDispelType.txt │ ├── SpellDuration.txt │ ├── SpellFocusObject.txt │ ├── SpellIcon.txt │ ├── SpellMechanic.txt │ ├── SpellRadius.txt │ ├── SpellRange.txt │ ├── SpellRuneCost.txt │ ├── SpellVisual.txt │ ├── SpellVisualEffectName.txt │ ├── SpellVisualKit.txt │ ├── SpellVisualPrecastTransitions.txt │ └── TotemCategory.txt ├── Bindings_243_tbc │ ├── AnimationData.txt │ ├── AreaGroup.txt │ ├── AreaTable.txt │ ├── ItemClass.txt │ ├── ItemSubClass.txt │ ├── SkillRaceClassInfo.txt │ ├── Spell.txt │ ├── SpellCastTimes.txt │ ├── SpellCategory.txt │ ├── SpellDescriptionVariables.txt │ ├── SpellDifficulty.txt │ ├── SpellDispelType.txt │ ├── SpellDuration.txt │ ├── SpellFocusObject.txt │ ├── SpellIcon.txt │ ├── SpellMechanic.txt │ ├── SpellRadius.txt │ ├── SpellRange.txt │ ├── SpellRuneCost.txt │ ├── SpellVisual.txt │ ├── SpellVisualEffectName.txt │ ├── SpellVisualKit.txt │ ├── SpellVisualPrecastTransitions.txt │ └── TotemCategory.txt ├── Bindings_335_wotlk │ ├── Achievement.txt │ ├── Achievement_Category.txt │ ├── Achievement_Criteria.txt │ ├── AnimationData.txt │ ├── AreaGroup.txt │ ├── AreaTable.txt │ ├── AreaTrigger.txt │ ├── CharStartOutfit.txt │ ├── CharTitles.txt │ ├── ChatChannels.txt │ ├── ChrClasses.txt │ ├── ChrRaces.txt │ ├── CinematicCamera.txt │ ├── CinematicSequences.txt │ ├── CreatureDisplayInfo.txt │ ├── CreatureDisplayInfoExtra.txt │ ├── CreatureModelData.txt │ ├── CreatureSoundData.txt │ ├── CurrencyCategory.txt │ ├── CurrencyTypes.txt │ ├── DungeonEncounter.txt │ ├── Faction.txt │ ├── FactionGroup.txt │ ├── FactionTemplate.txt │ ├── FileData.txt │ ├── GameObjectDisplayInfo.txt │ ├── GameTips.txt │ ├── GemProperties.txt │ ├── HolidayDescriptions.txt │ ├── HolidayNames.txt │ ├── Holidays.txt │ ├── Item.txt │ ├── ItemClass.txt │ ├── ItemDisplayInfo.txt │ ├── ItemExtendedCost.txt │ ├── ItemSet.txt │ ├── ItemSubClass.txt │ ├── LFGDungeonGroup.txt │ ├── LFGDungeons.txt │ ├── Light.txt │ ├── LightFloatBand.txt │ ├── LightIntBand.txt │ ├── LightParams.txt │ ├── LightSkybox.txt │ ├── LoadingScreens.txt │ ├── Lock.txt │ ├── LockType.txt │ ├── Map.txt │ ├── MapDifficulty.txt │ ├── Movie.txt │ ├── MovieFileData.txt │ ├── MovieVariation.txt │ ├── OverrideSpellData.txt │ ├── QuestSort.txt │ ├── ScreenEffect.txt │ ├── SkillLine.txt │ ├── SkillLineAbility.txt │ ├── SkillRaceClassInfo.txt │ ├── SoundEntries.txt │ ├── Spell.txt │ ├── SpellCastTimes.txt │ ├── SpellCategory.txt │ ├── SpellChainEffects.txt │ ├── SpellDescriptionVariables.txt │ ├── SpellDifficulty.txt │ ├── SpellDispelType.txt │ ├── SpellDuration.txt │ ├── SpellFocusObject.txt │ ├── SpellIcon.txt │ ├── SpellItemEnchantment.txt │ ├── SpellMechanic.txt │ ├── SpellMissile.txt │ ├── SpellMissileMotion.txt │ ├── SpellRadius.txt │ ├── SpellRange.txt │ ├── SpellRuneCost.txt │ ├── SpellShapeshiftForm.txt │ ├── SpellVisual.txt │ ├── SpellVisualEffectName.txt │ ├── SpellVisualKit.txt │ ├── SpellVisualKitAreaModel.txt │ ├── SpellVisualKitModelAttach.txt │ ├── SpellVisualPrecastTransitions.txt │ ├── Stationery.txt │ ├── Talent.txt │ ├── TalentTab.txt │ ├── TaxiNodes.txt │ ├── TaxiPath.txt │ ├── TaxiPathNode.txt │ ├── TotemCategory.txt │ ├── Vehicle.txt │ ├── VehicleSeat.txt │ ├── WMOAreaTable.txt │ ├── WorldStateUI.txt │ └── ZoneMusic.txt ├── Languages │ ├── enUS.xaml │ ├── frFR.xaml │ └── zhCN.xaml ├── Misc_Value_A values for usage of Spell_Aura_Name 107 and 108.txt ├── Vels Spell String Tag Documentation.txt ├── VisualMapBuilder │ ├── creature.sql_template.txt │ ├── creature_model_info.sql_template.txt │ └── creature_template.sql_template.txt └── spell-basics.md ├── HeadlessExport ├── App.config ├── HeadlessDbc.cs ├── HeadlessExport.csproj ├── Program.cs └── Properties │ └── AssemblyInfo.cs ├── README.md ├── SereniaBLPLib ├── BlpFile.cs ├── DXTDecompression.cs ├── Properties │ └── AssemblyInfo.cs └── SereniaBLPLib.csproj ├── SpellGUIV2.sln └── SpellGUIV2 ├── App.config ├── App.xaml ├── App.xaml.cs ├── ConfigWindow.xaml ├── ConfigWindow.xaml.cs ├── Costura32 ├── SQLite.Interop.dll └── StormLib.dll ├── Costura64 ├── SQLite.Interop.dll └── StormLib.dll ├── FodyWeavers.xml ├── ImportExportWindow.xaml ├── ImportExportWindow.xaml.cs ├── LogBookWindow.xaml ├── LogBookWindow.xaml.cs ├── MainWindow.xaml ├── MainWindow.xaml.cs ├── Properties ├── AssemblyInfo.cs ├── Resources.Designer.cs ├── Resources.resx ├── Settings.Designer.cs └── Settings.settings ├── Resources ├── Entypo-license.txt ├── Entypo.ttf ├── Icons.xaml ├── IconsNonShared.xaml ├── MahApps.Metro.dll ├── MahApps.Metro.xml ├── SereniaBLPLib.dll ├── System.Windows.Interactivity.dll ├── WindowsIcons-license.txt └── icon.ico ├── Sources ├── BLP │ └── BlpManager.cs ├── Binding │ ├── Binding.cs │ ├── BindingEntry.cs │ ├── BindingManager.cs │ └── BindingType.cs ├── Config │ └── Config.cs ├── Constants │ ├── Locale.cs │ ├── SpellVisualKitModelAttach.cs │ ├── Targets.cs │ └── TextFlags.cs ├── Controls │ ├── Common │ │ ├── AbstractListEntry.cs │ │ ├── FilteredComboBox.cs │ │ ├── FriendlyLabel.cs │ │ ├── IListEntry.cs │ │ ├── ListContextMenu.cs │ │ ├── SyntaxHighlightBox.cs │ │ ├── ThreadSafeCheckBox.cs │ │ ├── ThreadSafeComboBox.cs │ │ └── ThreadSafeTextBox.cs │ ├── DBC │ │ ├── DBCBoxContainer.cs │ │ └── IBoxContentProvider.cs │ ├── SpellSelectList │ │ ├── PinIconConverter.cs │ │ ├── RelayCommand.cs │ │ ├── SpellLogRecord.cs │ │ ├── SpellSelectionEntry.cs │ │ └── SpellSelectionList.cs │ └── Visual │ │ ├── VisualEffectListEntry.cs │ │ ├── VisualKitListEntry.cs │ │ ├── VisualMissileSelectMenuItem.cs │ │ └── VisualPasteListEntry.cs ├── DBC │ ├── AbstractDBC.cs │ ├── AnimationData.cs │ ├── AreaGroup.cs │ ├── AreaTable.cs │ ├── DBCBodyToSerialize.cs │ ├── DBCManager.cs │ ├── DBCReader.cs │ ├── GenericDbc.cs │ ├── IGraphicUserInterfaceDBC.cs │ ├── ItemClass.cs │ ├── ItemSubClass.cs │ ├── MutableGenericDbc.cs │ ├── SpellCastTimes.cs │ ├── SpellCategory.cs │ ├── SpellDBC.cs │ ├── SpellDescriptionVariables.cs │ ├── SpellDifficulty.cs │ ├── SpellDispelType.cs │ ├── SpellDuration.cs │ ├── SpellFocusObject.cs │ ├── SpellIconDBC.cs │ ├── SpellMechanic.cs │ ├── SpellRadius.cs │ ├── SpellRange.cs │ ├── SpellRuneCost.cs │ └── TotemCategory.cs ├── Database │ ├── AdapterFactory.cs │ ├── CsvFileStorage.cs │ ├── DbcFileStorage.cs │ ├── IDatabaseAdapter.cs │ ├── ImportExportType.cs │ ├── MySQL.cs │ ├── SQLite.cs │ ├── SqlFileStorage.cs │ ├── StorageAdapter.cs │ └── StorageFactory.cs ├── Locale │ └── LocaleManager.cs ├── Tools │ ├── MPQ │ │ └── MpqExport.cs │ ├── SpellStringTools │ │ ├── SpellStringParser.cs │ │ ├── SpellStringReferenceResolver.cs │ │ ├── Token.cs │ │ ├── TokenType.cs │ │ └── spellFamilyClassMaskParser.cs │ └── VisualTools │ │ ├── VisualController.cs │ │ └── VisualMapBuilder.cs └── VersionControl │ ├── WoWVersion.cs │ └── WoWVersionManager.cs ├── SpellEditor.csproj ├── icon.ico └── packages.config /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoneharry/WoW-Spell-Editor/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoneharry/WoW-Spell-Editor/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/question.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoneharry/WoW-Spell-Editor/HEAD/.github/ISSUE_TEMPLATE/question.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoneharry/WoW-Spell-Editor/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoneharry/WoW-Spell-Editor/HEAD/.gitmodules -------------------------------------------------------------------------------- /Documentation/Bindings_112_vanilla/AnimationData.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoneharry/WoW-Spell-Editor/HEAD/Documentation/Bindings_112_vanilla/AnimationData.txt -------------------------------------------------------------------------------- /Documentation/Bindings_112_vanilla/AreaGroup.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoneharry/WoW-Spell-Editor/HEAD/Documentation/Bindings_112_vanilla/AreaGroup.txt -------------------------------------------------------------------------------- /Documentation/Bindings_112_vanilla/AreaTable.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoneharry/WoW-Spell-Editor/HEAD/Documentation/Bindings_112_vanilla/AreaTable.txt -------------------------------------------------------------------------------- /Documentation/Bindings_112_vanilla/ItemClass.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoneharry/WoW-Spell-Editor/HEAD/Documentation/Bindings_112_vanilla/ItemClass.txt -------------------------------------------------------------------------------- /Documentation/Bindings_112_vanilla/ItemSubClass.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoneharry/WoW-Spell-Editor/HEAD/Documentation/Bindings_112_vanilla/ItemSubClass.txt -------------------------------------------------------------------------------- /Documentation/Bindings_112_vanilla/SkillRaceClassInfo.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoneharry/WoW-Spell-Editor/HEAD/Documentation/Bindings_112_vanilla/SkillRaceClassInfo.txt -------------------------------------------------------------------------------- /Documentation/Bindings_112_vanilla/Spell.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoneharry/WoW-Spell-Editor/HEAD/Documentation/Bindings_112_vanilla/Spell.txt -------------------------------------------------------------------------------- /Documentation/Bindings_112_vanilla/SpellCastTimes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoneharry/WoW-Spell-Editor/HEAD/Documentation/Bindings_112_vanilla/SpellCastTimes.txt -------------------------------------------------------------------------------- /Documentation/Bindings_112_vanilla/SpellCategory.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoneharry/WoW-Spell-Editor/HEAD/Documentation/Bindings_112_vanilla/SpellCategory.txt -------------------------------------------------------------------------------- /Documentation/Bindings_112_vanilla/SpellDescriptionVariables.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoneharry/WoW-Spell-Editor/HEAD/Documentation/Bindings_112_vanilla/SpellDescriptionVariables.txt -------------------------------------------------------------------------------- /Documentation/Bindings_112_vanilla/SpellDifficulty.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoneharry/WoW-Spell-Editor/HEAD/Documentation/Bindings_112_vanilla/SpellDifficulty.txt -------------------------------------------------------------------------------- /Documentation/Bindings_112_vanilla/SpellDispelType.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoneharry/WoW-Spell-Editor/HEAD/Documentation/Bindings_112_vanilla/SpellDispelType.txt -------------------------------------------------------------------------------- /Documentation/Bindings_112_vanilla/SpellDuration.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoneharry/WoW-Spell-Editor/HEAD/Documentation/Bindings_112_vanilla/SpellDuration.txt -------------------------------------------------------------------------------- /Documentation/Bindings_112_vanilla/SpellFocusObject.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoneharry/WoW-Spell-Editor/HEAD/Documentation/Bindings_112_vanilla/SpellFocusObject.txt -------------------------------------------------------------------------------- /Documentation/Bindings_112_vanilla/SpellIcon.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoneharry/WoW-Spell-Editor/HEAD/Documentation/Bindings_112_vanilla/SpellIcon.txt -------------------------------------------------------------------------------- /Documentation/Bindings_112_vanilla/SpellMechanic.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoneharry/WoW-Spell-Editor/HEAD/Documentation/Bindings_112_vanilla/SpellMechanic.txt -------------------------------------------------------------------------------- /Documentation/Bindings_112_vanilla/SpellRadius.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoneharry/WoW-Spell-Editor/HEAD/Documentation/Bindings_112_vanilla/SpellRadius.txt -------------------------------------------------------------------------------- /Documentation/Bindings_112_vanilla/SpellRange.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoneharry/WoW-Spell-Editor/HEAD/Documentation/Bindings_112_vanilla/SpellRange.txt -------------------------------------------------------------------------------- /Documentation/Bindings_112_vanilla/SpellRuneCost.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoneharry/WoW-Spell-Editor/HEAD/Documentation/Bindings_112_vanilla/SpellRuneCost.txt -------------------------------------------------------------------------------- /Documentation/Bindings_112_vanilla/SpellVisual.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoneharry/WoW-Spell-Editor/HEAD/Documentation/Bindings_112_vanilla/SpellVisual.txt -------------------------------------------------------------------------------- /Documentation/Bindings_112_vanilla/SpellVisualEffectName.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoneharry/WoW-Spell-Editor/HEAD/Documentation/Bindings_112_vanilla/SpellVisualEffectName.txt -------------------------------------------------------------------------------- /Documentation/Bindings_112_vanilla/SpellVisualKit.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoneharry/WoW-Spell-Editor/HEAD/Documentation/Bindings_112_vanilla/SpellVisualKit.txt -------------------------------------------------------------------------------- /Documentation/Bindings_112_vanilla/SpellVisualPrecastTransitions.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoneharry/WoW-Spell-Editor/HEAD/Documentation/Bindings_112_vanilla/SpellVisualPrecastTransitions.txt -------------------------------------------------------------------------------- /Documentation/Bindings_112_vanilla/TotemCategory.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoneharry/WoW-Spell-Editor/HEAD/Documentation/Bindings_112_vanilla/TotemCategory.txt -------------------------------------------------------------------------------- /Documentation/Bindings_243_tbc/AnimationData.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoneharry/WoW-Spell-Editor/HEAD/Documentation/Bindings_243_tbc/AnimationData.txt -------------------------------------------------------------------------------- /Documentation/Bindings_243_tbc/AreaGroup.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoneharry/WoW-Spell-Editor/HEAD/Documentation/Bindings_243_tbc/AreaGroup.txt -------------------------------------------------------------------------------- /Documentation/Bindings_243_tbc/AreaTable.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoneharry/WoW-Spell-Editor/HEAD/Documentation/Bindings_243_tbc/AreaTable.txt -------------------------------------------------------------------------------- /Documentation/Bindings_243_tbc/ItemClass.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoneharry/WoW-Spell-Editor/HEAD/Documentation/Bindings_243_tbc/ItemClass.txt -------------------------------------------------------------------------------- /Documentation/Bindings_243_tbc/ItemSubClass.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoneharry/WoW-Spell-Editor/HEAD/Documentation/Bindings_243_tbc/ItemSubClass.txt -------------------------------------------------------------------------------- /Documentation/Bindings_243_tbc/SkillRaceClassInfo.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoneharry/WoW-Spell-Editor/HEAD/Documentation/Bindings_243_tbc/SkillRaceClassInfo.txt -------------------------------------------------------------------------------- /Documentation/Bindings_243_tbc/Spell.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoneharry/WoW-Spell-Editor/HEAD/Documentation/Bindings_243_tbc/Spell.txt -------------------------------------------------------------------------------- /Documentation/Bindings_243_tbc/SpellCastTimes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoneharry/WoW-Spell-Editor/HEAD/Documentation/Bindings_243_tbc/SpellCastTimes.txt -------------------------------------------------------------------------------- /Documentation/Bindings_243_tbc/SpellCategory.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoneharry/WoW-Spell-Editor/HEAD/Documentation/Bindings_243_tbc/SpellCategory.txt -------------------------------------------------------------------------------- /Documentation/Bindings_243_tbc/SpellDescriptionVariables.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoneharry/WoW-Spell-Editor/HEAD/Documentation/Bindings_243_tbc/SpellDescriptionVariables.txt -------------------------------------------------------------------------------- /Documentation/Bindings_243_tbc/SpellDifficulty.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoneharry/WoW-Spell-Editor/HEAD/Documentation/Bindings_243_tbc/SpellDifficulty.txt -------------------------------------------------------------------------------- /Documentation/Bindings_243_tbc/SpellDispelType.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoneharry/WoW-Spell-Editor/HEAD/Documentation/Bindings_243_tbc/SpellDispelType.txt -------------------------------------------------------------------------------- /Documentation/Bindings_243_tbc/SpellDuration.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoneharry/WoW-Spell-Editor/HEAD/Documentation/Bindings_243_tbc/SpellDuration.txt -------------------------------------------------------------------------------- /Documentation/Bindings_243_tbc/SpellFocusObject.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoneharry/WoW-Spell-Editor/HEAD/Documentation/Bindings_243_tbc/SpellFocusObject.txt -------------------------------------------------------------------------------- /Documentation/Bindings_243_tbc/SpellIcon.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoneharry/WoW-Spell-Editor/HEAD/Documentation/Bindings_243_tbc/SpellIcon.txt -------------------------------------------------------------------------------- /Documentation/Bindings_243_tbc/SpellMechanic.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoneharry/WoW-Spell-Editor/HEAD/Documentation/Bindings_243_tbc/SpellMechanic.txt -------------------------------------------------------------------------------- /Documentation/Bindings_243_tbc/SpellRadius.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoneharry/WoW-Spell-Editor/HEAD/Documentation/Bindings_243_tbc/SpellRadius.txt -------------------------------------------------------------------------------- /Documentation/Bindings_243_tbc/SpellRange.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoneharry/WoW-Spell-Editor/HEAD/Documentation/Bindings_243_tbc/SpellRange.txt -------------------------------------------------------------------------------- /Documentation/Bindings_243_tbc/SpellRuneCost.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoneharry/WoW-Spell-Editor/HEAD/Documentation/Bindings_243_tbc/SpellRuneCost.txt -------------------------------------------------------------------------------- /Documentation/Bindings_243_tbc/SpellVisual.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoneharry/WoW-Spell-Editor/HEAD/Documentation/Bindings_243_tbc/SpellVisual.txt -------------------------------------------------------------------------------- /Documentation/Bindings_243_tbc/SpellVisualEffectName.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoneharry/WoW-Spell-Editor/HEAD/Documentation/Bindings_243_tbc/SpellVisualEffectName.txt -------------------------------------------------------------------------------- /Documentation/Bindings_243_tbc/SpellVisualKit.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoneharry/WoW-Spell-Editor/HEAD/Documentation/Bindings_243_tbc/SpellVisualKit.txt -------------------------------------------------------------------------------- /Documentation/Bindings_243_tbc/SpellVisualPrecastTransitions.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoneharry/WoW-Spell-Editor/HEAD/Documentation/Bindings_243_tbc/SpellVisualPrecastTransitions.txt -------------------------------------------------------------------------------- /Documentation/Bindings_243_tbc/TotemCategory.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoneharry/WoW-Spell-Editor/HEAD/Documentation/Bindings_243_tbc/TotemCategory.txt -------------------------------------------------------------------------------- /Documentation/Bindings_335_wotlk/Achievement.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoneharry/WoW-Spell-Editor/HEAD/Documentation/Bindings_335_wotlk/Achievement.txt -------------------------------------------------------------------------------- /Documentation/Bindings_335_wotlk/Achievement_Category.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoneharry/WoW-Spell-Editor/HEAD/Documentation/Bindings_335_wotlk/Achievement_Category.txt -------------------------------------------------------------------------------- /Documentation/Bindings_335_wotlk/Achievement_Criteria.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoneharry/WoW-Spell-Editor/HEAD/Documentation/Bindings_335_wotlk/Achievement_Criteria.txt -------------------------------------------------------------------------------- /Documentation/Bindings_335_wotlk/AnimationData.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoneharry/WoW-Spell-Editor/HEAD/Documentation/Bindings_335_wotlk/AnimationData.txt -------------------------------------------------------------------------------- /Documentation/Bindings_335_wotlk/AreaGroup.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoneharry/WoW-Spell-Editor/HEAD/Documentation/Bindings_335_wotlk/AreaGroup.txt -------------------------------------------------------------------------------- /Documentation/Bindings_335_wotlk/AreaTable.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoneharry/WoW-Spell-Editor/HEAD/Documentation/Bindings_335_wotlk/AreaTable.txt -------------------------------------------------------------------------------- /Documentation/Bindings_335_wotlk/AreaTrigger.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoneharry/WoW-Spell-Editor/HEAD/Documentation/Bindings_335_wotlk/AreaTrigger.txt -------------------------------------------------------------------------------- /Documentation/Bindings_335_wotlk/CharStartOutfit.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoneharry/WoW-Spell-Editor/HEAD/Documentation/Bindings_335_wotlk/CharStartOutfit.txt -------------------------------------------------------------------------------- /Documentation/Bindings_335_wotlk/CharTitles.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoneharry/WoW-Spell-Editor/HEAD/Documentation/Bindings_335_wotlk/CharTitles.txt -------------------------------------------------------------------------------- /Documentation/Bindings_335_wotlk/ChatChannels.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoneharry/WoW-Spell-Editor/HEAD/Documentation/Bindings_335_wotlk/ChatChannels.txt -------------------------------------------------------------------------------- /Documentation/Bindings_335_wotlk/ChrClasses.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoneharry/WoW-Spell-Editor/HEAD/Documentation/Bindings_335_wotlk/ChrClasses.txt -------------------------------------------------------------------------------- /Documentation/Bindings_335_wotlk/ChrRaces.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoneharry/WoW-Spell-Editor/HEAD/Documentation/Bindings_335_wotlk/ChrRaces.txt -------------------------------------------------------------------------------- /Documentation/Bindings_335_wotlk/CinematicCamera.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoneharry/WoW-Spell-Editor/HEAD/Documentation/Bindings_335_wotlk/CinematicCamera.txt -------------------------------------------------------------------------------- /Documentation/Bindings_335_wotlk/CinematicSequences.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoneharry/WoW-Spell-Editor/HEAD/Documentation/Bindings_335_wotlk/CinematicSequences.txt -------------------------------------------------------------------------------- /Documentation/Bindings_335_wotlk/CreatureDisplayInfo.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoneharry/WoW-Spell-Editor/HEAD/Documentation/Bindings_335_wotlk/CreatureDisplayInfo.txt -------------------------------------------------------------------------------- /Documentation/Bindings_335_wotlk/CreatureDisplayInfoExtra.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoneharry/WoW-Spell-Editor/HEAD/Documentation/Bindings_335_wotlk/CreatureDisplayInfoExtra.txt -------------------------------------------------------------------------------- /Documentation/Bindings_335_wotlk/CreatureModelData.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoneharry/WoW-Spell-Editor/HEAD/Documentation/Bindings_335_wotlk/CreatureModelData.txt -------------------------------------------------------------------------------- /Documentation/Bindings_335_wotlk/CreatureSoundData.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoneharry/WoW-Spell-Editor/HEAD/Documentation/Bindings_335_wotlk/CreatureSoundData.txt -------------------------------------------------------------------------------- /Documentation/Bindings_335_wotlk/CurrencyCategory.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoneharry/WoW-Spell-Editor/HEAD/Documentation/Bindings_335_wotlk/CurrencyCategory.txt -------------------------------------------------------------------------------- /Documentation/Bindings_335_wotlk/CurrencyTypes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoneharry/WoW-Spell-Editor/HEAD/Documentation/Bindings_335_wotlk/CurrencyTypes.txt -------------------------------------------------------------------------------- /Documentation/Bindings_335_wotlk/DungeonEncounter.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoneharry/WoW-Spell-Editor/HEAD/Documentation/Bindings_335_wotlk/DungeonEncounter.txt -------------------------------------------------------------------------------- /Documentation/Bindings_335_wotlk/Faction.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoneharry/WoW-Spell-Editor/HEAD/Documentation/Bindings_335_wotlk/Faction.txt -------------------------------------------------------------------------------- /Documentation/Bindings_335_wotlk/FactionGroup.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoneharry/WoW-Spell-Editor/HEAD/Documentation/Bindings_335_wotlk/FactionGroup.txt -------------------------------------------------------------------------------- /Documentation/Bindings_335_wotlk/FactionTemplate.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoneharry/WoW-Spell-Editor/HEAD/Documentation/Bindings_335_wotlk/FactionTemplate.txt -------------------------------------------------------------------------------- /Documentation/Bindings_335_wotlk/FileData.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoneharry/WoW-Spell-Editor/HEAD/Documentation/Bindings_335_wotlk/FileData.txt -------------------------------------------------------------------------------- /Documentation/Bindings_335_wotlk/GameObjectDisplayInfo.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoneharry/WoW-Spell-Editor/HEAD/Documentation/Bindings_335_wotlk/GameObjectDisplayInfo.txt -------------------------------------------------------------------------------- /Documentation/Bindings_335_wotlk/GameTips.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoneharry/WoW-Spell-Editor/HEAD/Documentation/Bindings_335_wotlk/GameTips.txt -------------------------------------------------------------------------------- /Documentation/Bindings_335_wotlk/GemProperties.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoneharry/WoW-Spell-Editor/HEAD/Documentation/Bindings_335_wotlk/GemProperties.txt -------------------------------------------------------------------------------- /Documentation/Bindings_335_wotlk/HolidayDescriptions.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoneharry/WoW-Spell-Editor/HEAD/Documentation/Bindings_335_wotlk/HolidayDescriptions.txt -------------------------------------------------------------------------------- /Documentation/Bindings_335_wotlk/HolidayNames.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoneharry/WoW-Spell-Editor/HEAD/Documentation/Bindings_335_wotlk/HolidayNames.txt -------------------------------------------------------------------------------- /Documentation/Bindings_335_wotlk/Holidays.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoneharry/WoW-Spell-Editor/HEAD/Documentation/Bindings_335_wotlk/Holidays.txt -------------------------------------------------------------------------------- /Documentation/Bindings_335_wotlk/Item.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoneharry/WoW-Spell-Editor/HEAD/Documentation/Bindings_335_wotlk/Item.txt -------------------------------------------------------------------------------- /Documentation/Bindings_335_wotlk/ItemClass.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoneharry/WoW-Spell-Editor/HEAD/Documentation/Bindings_335_wotlk/ItemClass.txt -------------------------------------------------------------------------------- /Documentation/Bindings_335_wotlk/ItemDisplayInfo.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoneharry/WoW-Spell-Editor/HEAD/Documentation/Bindings_335_wotlk/ItemDisplayInfo.txt -------------------------------------------------------------------------------- /Documentation/Bindings_335_wotlk/ItemExtendedCost.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoneharry/WoW-Spell-Editor/HEAD/Documentation/Bindings_335_wotlk/ItemExtendedCost.txt -------------------------------------------------------------------------------- /Documentation/Bindings_335_wotlk/ItemSet.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoneharry/WoW-Spell-Editor/HEAD/Documentation/Bindings_335_wotlk/ItemSet.txt -------------------------------------------------------------------------------- /Documentation/Bindings_335_wotlk/ItemSubClass.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoneharry/WoW-Spell-Editor/HEAD/Documentation/Bindings_335_wotlk/ItemSubClass.txt -------------------------------------------------------------------------------- /Documentation/Bindings_335_wotlk/LFGDungeonGroup.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoneharry/WoW-Spell-Editor/HEAD/Documentation/Bindings_335_wotlk/LFGDungeonGroup.txt -------------------------------------------------------------------------------- /Documentation/Bindings_335_wotlk/LFGDungeons.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoneharry/WoW-Spell-Editor/HEAD/Documentation/Bindings_335_wotlk/LFGDungeons.txt -------------------------------------------------------------------------------- /Documentation/Bindings_335_wotlk/Light.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoneharry/WoW-Spell-Editor/HEAD/Documentation/Bindings_335_wotlk/Light.txt -------------------------------------------------------------------------------- /Documentation/Bindings_335_wotlk/LightFloatBand.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoneharry/WoW-Spell-Editor/HEAD/Documentation/Bindings_335_wotlk/LightFloatBand.txt -------------------------------------------------------------------------------- /Documentation/Bindings_335_wotlk/LightIntBand.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoneharry/WoW-Spell-Editor/HEAD/Documentation/Bindings_335_wotlk/LightIntBand.txt -------------------------------------------------------------------------------- /Documentation/Bindings_335_wotlk/LightParams.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoneharry/WoW-Spell-Editor/HEAD/Documentation/Bindings_335_wotlk/LightParams.txt -------------------------------------------------------------------------------- /Documentation/Bindings_335_wotlk/LightSkybox.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoneharry/WoW-Spell-Editor/HEAD/Documentation/Bindings_335_wotlk/LightSkybox.txt -------------------------------------------------------------------------------- /Documentation/Bindings_335_wotlk/LoadingScreens.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoneharry/WoW-Spell-Editor/HEAD/Documentation/Bindings_335_wotlk/LoadingScreens.txt -------------------------------------------------------------------------------- /Documentation/Bindings_335_wotlk/Lock.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoneharry/WoW-Spell-Editor/HEAD/Documentation/Bindings_335_wotlk/Lock.txt -------------------------------------------------------------------------------- /Documentation/Bindings_335_wotlk/LockType.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoneharry/WoW-Spell-Editor/HEAD/Documentation/Bindings_335_wotlk/LockType.txt -------------------------------------------------------------------------------- /Documentation/Bindings_335_wotlk/Map.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoneharry/WoW-Spell-Editor/HEAD/Documentation/Bindings_335_wotlk/Map.txt -------------------------------------------------------------------------------- /Documentation/Bindings_335_wotlk/MapDifficulty.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoneharry/WoW-Spell-Editor/HEAD/Documentation/Bindings_335_wotlk/MapDifficulty.txt -------------------------------------------------------------------------------- /Documentation/Bindings_335_wotlk/Movie.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoneharry/WoW-Spell-Editor/HEAD/Documentation/Bindings_335_wotlk/Movie.txt -------------------------------------------------------------------------------- /Documentation/Bindings_335_wotlk/MovieFileData.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoneharry/WoW-Spell-Editor/HEAD/Documentation/Bindings_335_wotlk/MovieFileData.txt -------------------------------------------------------------------------------- /Documentation/Bindings_335_wotlk/MovieVariation.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoneharry/WoW-Spell-Editor/HEAD/Documentation/Bindings_335_wotlk/MovieVariation.txt -------------------------------------------------------------------------------- /Documentation/Bindings_335_wotlk/OverrideSpellData.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoneharry/WoW-Spell-Editor/HEAD/Documentation/Bindings_335_wotlk/OverrideSpellData.txt -------------------------------------------------------------------------------- /Documentation/Bindings_335_wotlk/QuestSort.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoneharry/WoW-Spell-Editor/HEAD/Documentation/Bindings_335_wotlk/QuestSort.txt -------------------------------------------------------------------------------- /Documentation/Bindings_335_wotlk/ScreenEffect.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoneharry/WoW-Spell-Editor/HEAD/Documentation/Bindings_335_wotlk/ScreenEffect.txt -------------------------------------------------------------------------------- /Documentation/Bindings_335_wotlk/SkillLine.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoneharry/WoW-Spell-Editor/HEAD/Documentation/Bindings_335_wotlk/SkillLine.txt -------------------------------------------------------------------------------- /Documentation/Bindings_335_wotlk/SkillLineAbility.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoneharry/WoW-Spell-Editor/HEAD/Documentation/Bindings_335_wotlk/SkillLineAbility.txt -------------------------------------------------------------------------------- /Documentation/Bindings_335_wotlk/SkillRaceClassInfo.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoneharry/WoW-Spell-Editor/HEAD/Documentation/Bindings_335_wotlk/SkillRaceClassInfo.txt -------------------------------------------------------------------------------- /Documentation/Bindings_335_wotlk/SoundEntries.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoneharry/WoW-Spell-Editor/HEAD/Documentation/Bindings_335_wotlk/SoundEntries.txt -------------------------------------------------------------------------------- /Documentation/Bindings_335_wotlk/Spell.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoneharry/WoW-Spell-Editor/HEAD/Documentation/Bindings_335_wotlk/Spell.txt -------------------------------------------------------------------------------- /Documentation/Bindings_335_wotlk/SpellCastTimes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoneharry/WoW-Spell-Editor/HEAD/Documentation/Bindings_335_wotlk/SpellCastTimes.txt -------------------------------------------------------------------------------- /Documentation/Bindings_335_wotlk/SpellCategory.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoneharry/WoW-Spell-Editor/HEAD/Documentation/Bindings_335_wotlk/SpellCategory.txt -------------------------------------------------------------------------------- /Documentation/Bindings_335_wotlk/SpellChainEffects.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoneharry/WoW-Spell-Editor/HEAD/Documentation/Bindings_335_wotlk/SpellChainEffects.txt -------------------------------------------------------------------------------- /Documentation/Bindings_335_wotlk/SpellDescriptionVariables.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoneharry/WoW-Spell-Editor/HEAD/Documentation/Bindings_335_wotlk/SpellDescriptionVariables.txt -------------------------------------------------------------------------------- /Documentation/Bindings_335_wotlk/SpellDifficulty.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoneharry/WoW-Spell-Editor/HEAD/Documentation/Bindings_335_wotlk/SpellDifficulty.txt -------------------------------------------------------------------------------- /Documentation/Bindings_335_wotlk/SpellDispelType.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoneharry/WoW-Spell-Editor/HEAD/Documentation/Bindings_335_wotlk/SpellDispelType.txt -------------------------------------------------------------------------------- /Documentation/Bindings_335_wotlk/SpellDuration.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoneharry/WoW-Spell-Editor/HEAD/Documentation/Bindings_335_wotlk/SpellDuration.txt -------------------------------------------------------------------------------- /Documentation/Bindings_335_wotlk/SpellFocusObject.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoneharry/WoW-Spell-Editor/HEAD/Documentation/Bindings_335_wotlk/SpellFocusObject.txt -------------------------------------------------------------------------------- /Documentation/Bindings_335_wotlk/SpellIcon.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoneharry/WoW-Spell-Editor/HEAD/Documentation/Bindings_335_wotlk/SpellIcon.txt -------------------------------------------------------------------------------- /Documentation/Bindings_335_wotlk/SpellItemEnchantment.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoneharry/WoW-Spell-Editor/HEAD/Documentation/Bindings_335_wotlk/SpellItemEnchantment.txt -------------------------------------------------------------------------------- /Documentation/Bindings_335_wotlk/SpellMechanic.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoneharry/WoW-Spell-Editor/HEAD/Documentation/Bindings_335_wotlk/SpellMechanic.txt -------------------------------------------------------------------------------- /Documentation/Bindings_335_wotlk/SpellMissile.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoneharry/WoW-Spell-Editor/HEAD/Documentation/Bindings_335_wotlk/SpellMissile.txt -------------------------------------------------------------------------------- /Documentation/Bindings_335_wotlk/SpellMissileMotion.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoneharry/WoW-Spell-Editor/HEAD/Documentation/Bindings_335_wotlk/SpellMissileMotion.txt -------------------------------------------------------------------------------- /Documentation/Bindings_335_wotlk/SpellRadius.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoneharry/WoW-Spell-Editor/HEAD/Documentation/Bindings_335_wotlk/SpellRadius.txt -------------------------------------------------------------------------------- /Documentation/Bindings_335_wotlk/SpellRange.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoneharry/WoW-Spell-Editor/HEAD/Documentation/Bindings_335_wotlk/SpellRange.txt -------------------------------------------------------------------------------- /Documentation/Bindings_335_wotlk/SpellRuneCost.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoneharry/WoW-Spell-Editor/HEAD/Documentation/Bindings_335_wotlk/SpellRuneCost.txt -------------------------------------------------------------------------------- /Documentation/Bindings_335_wotlk/SpellShapeshiftForm.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoneharry/WoW-Spell-Editor/HEAD/Documentation/Bindings_335_wotlk/SpellShapeshiftForm.txt -------------------------------------------------------------------------------- /Documentation/Bindings_335_wotlk/SpellVisual.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoneharry/WoW-Spell-Editor/HEAD/Documentation/Bindings_335_wotlk/SpellVisual.txt -------------------------------------------------------------------------------- /Documentation/Bindings_335_wotlk/SpellVisualEffectName.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoneharry/WoW-Spell-Editor/HEAD/Documentation/Bindings_335_wotlk/SpellVisualEffectName.txt -------------------------------------------------------------------------------- /Documentation/Bindings_335_wotlk/SpellVisualKit.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoneharry/WoW-Spell-Editor/HEAD/Documentation/Bindings_335_wotlk/SpellVisualKit.txt -------------------------------------------------------------------------------- /Documentation/Bindings_335_wotlk/SpellVisualKitAreaModel.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoneharry/WoW-Spell-Editor/HEAD/Documentation/Bindings_335_wotlk/SpellVisualKitAreaModel.txt -------------------------------------------------------------------------------- /Documentation/Bindings_335_wotlk/SpellVisualKitModelAttach.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoneharry/WoW-Spell-Editor/HEAD/Documentation/Bindings_335_wotlk/SpellVisualKitModelAttach.txt -------------------------------------------------------------------------------- /Documentation/Bindings_335_wotlk/SpellVisualPrecastTransitions.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoneharry/WoW-Spell-Editor/HEAD/Documentation/Bindings_335_wotlk/SpellVisualPrecastTransitions.txt -------------------------------------------------------------------------------- /Documentation/Bindings_335_wotlk/Stationery.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoneharry/WoW-Spell-Editor/HEAD/Documentation/Bindings_335_wotlk/Stationery.txt -------------------------------------------------------------------------------- /Documentation/Bindings_335_wotlk/Talent.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoneharry/WoW-Spell-Editor/HEAD/Documentation/Bindings_335_wotlk/Talent.txt -------------------------------------------------------------------------------- /Documentation/Bindings_335_wotlk/TalentTab.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoneharry/WoW-Spell-Editor/HEAD/Documentation/Bindings_335_wotlk/TalentTab.txt -------------------------------------------------------------------------------- /Documentation/Bindings_335_wotlk/TaxiNodes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoneharry/WoW-Spell-Editor/HEAD/Documentation/Bindings_335_wotlk/TaxiNodes.txt -------------------------------------------------------------------------------- /Documentation/Bindings_335_wotlk/TaxiPath.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoneharry/WoW-Spell-Editor/HEAD/Documentation/Bindings_335_wotlk/TaxiPath.txt -------------------------------------------------------------------------------- /Documentation/Bindings_335_wotlk/TaxiPathNode.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoneharry/WoW-Spell-Editor/HEAD/Documentation/Bindings_335_wotlk/TaxiPathNode.txt -------------------------------------------------------------------------------- /Documentation/Bindings_335_wotlk/TotemCategory.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoneharry/WoW-Spell-Editor/HEAD/Documentation/Bindings_335_wotlk/TotemCategory.txt -------------------------------------------------------------------------------- /Documentation/Bindings_335_wotlk/Vehicle.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoneharry/WoW-Spell-Editor/HEAD/Documentation/Bindings_335_wotlk/Vehicle.txt -------------------------------------------------------------------------------- /Documentation/Bindings_335_wotlk/VehicleSeat.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoneharry/WoW-Spell-Editor/HEAD/Documentation/Bindings_335_wotlk/VehicleSeat.txt -------------------------------------------------------------------------------- /Documentation/Bindings_335_wotlk/WMOAreaTable.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoneharry/WoW-Spell-Editor/HEAD/Documentation/Bindings_335_wotlk/WMOAreaTable.txt -------------------------------------------------------------------------------- /Documentation/Bindings_335_wotlk/WorldStateUI.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoneharry/WoW-Spell-Editor/HEAD/Documentation/Bindings_335_wotlk/WorldStateUI.txt -------------------------------------------------------------------------------- /Documentation/Bindings_335_wotlk/ZoneMusic.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoneharry/WoW-Spell-Editor/HEAD/Documentation/Bindings_335_wotlk/ZoneMusic.txt -------------------------------------------------------------------------------- /Documentation/Languages/enUS.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoneharry/WoW-Spell-Editor/HEAD/Documentation/Languages/enUS.xaml -------------------------------------------------------------------------------- /Documentation/Languages/frFR.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoneharry/WoW-Spell-Editor/HEAD/Documentation/Languages/frFR.xaml -------------------------------------------------------------------------------- /Documentation/Languages/zhCN.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoneharry/WoW-Spell-Editor/HEAD/Documentation/Languages/zhCN.xaml -------------------------------------------------------------------------------- /Documentation/Misc_Value_A values for usage of Spell_Aura_Name 107 and 108.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoneharry/WoW-Spell-Editor/HEAD/Documentation/Misc_Value_A values for usage of Spell_Aura_Name 107 and 108.txt -------------------------------------------------------------------------------- /Documentation/Vels Spell String Tag Documentation.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoneharry/WoW-Spell-Editor/HEAD/Documentation/Vels Spell String Tag Documentation.txt -------------------------------------------------------------------------------- /Documentation/VisualMapBuilder/creature.sql_template.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoneharry/WoW-Spell-Editor/HEAD/Documentation/VisualMapBuilder/creature.sql_template.txt -------------------------------------------------------------------------------- /Documentation/VisualMapBuilder/creature_model_info.sql_template.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoneharry/WoW-Spell-Editor/HEAD/Documentation/VisualMapBuilder/creature_model_info.sql_template.txt -------------------------------------------------------------------------------- /Documentation/VisualMapBuilder/creature_template.sql_template.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoneharry/WoW-Spell-Editor/HEAD/Documentation/VisualMapBuilder/creature_template.sql_template.txt -------------------------------------------------------------------------------- /Documentation/spell-basics.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoneharry/WoW-Spell-Editor/HEAD/Documentation/spell-basics.md -------------------------------------------------------------------------------- /HeadlessExport/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoneharry/WoW-Spell-Editor/HEAD/HeadlessExport/App.config -------------------------------------------------------------------------------- /HeadlessExport/HeadlessDbc.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoneharry/WoW-Spell-Editor/HEAD/HeadlessExport/HeadlessDbc.cs -------------------------------------------------------------------------------- /HeadlessExport/HeadlessExport.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoneharry/WoW-Spell-Editor/HEAD/HeadlessExport/HeadlessExport.csproj -------------------------------------------------------------------------------- /HeadlessExport/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoneharry/WoW-Spell-Editor/HEAD/HeadlessExport/Program.cs -------------------------------------------------------------------------------- /HeadlessExport/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoneharry/WoW-Spell-Editor/HEAD/HeadlessExport/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoneharry/WoW-Spell-Editor/HEAD/README.md -------------------------------------------------------------------------------- /SereniaBLPLib/BlpFile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoneharry/WoW-Spell-Editor/HEAD/SereniaBLPLib/BlpFile.cs -------------------------------------------------------------------------------- /SereniaBLPLib/DXTDecompression.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoneharry/WoW-Spell-Editor/HEAD/SereniaBLPLib/DXTDecompression.cs -------------------------------------------------------------------------------- /SereniaBLPLib/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoneharry/WoW-Spell-Editor/HEAD/SereniaBLPLib/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /SereniaBLPLib/SereniaBLPLib.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoneharry/WoW-Spell-Editor/HEAD/SereniaBLPLib/SereniaBLPLib.csproj -------------------------------------------------------------------------------- /SpellGUIV2.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoneharry/WoW-Spell-Editor/HEAD/SpellGUIV2.sln -------------------------------------------------------------------------------- /SpellGUIV2/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoneharry/WoW-Spell-Editor/HEAD/SpellGUIV2/App.config -------------------------------------------------------------------------------- /SpellGUIV2/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoneharry/WoW-Spell-Editor/HEAD/SpellGUIV2/App.xaml -------------------------------------------------------------------------------- /SpellGUIV2/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoneharry/WoW-Spell-Editor/HEAD/SpellGUIV2/App.xaml.cs -------------------------------------------------------------------------------- /SpellGUIV2/ConfigWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoneharry/WoW-Spell-Editor/HEAD/SpellGUIV2/ConfigWindow.xaml -------------------------------------------------------------------------------- /SpellGUIV2/ConfigWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoneharry/WoW-Spell-Editor/HEAD/SpellGUIV2/ConfigWindow.xaml.cs -------------------------------------------------------------------------------- /SpellGUIV2/Costura32/SQLite.Interop.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoneharry/WoW-Spell-Editor/HEAD/SpellGUIV2/Costura32/SQLite.Interop.dll -------------------------------------------------------------------------------- /SpellGUIV2/Costura32/StormLib.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoneharry/WoW-Spell-Editor/HEAD/SpellGUIV2/Costura32/StormLib.dll -------------------------------------------------------------------------------- /SpellGUIV2/Costura64/SQLite.Interop.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoneharry/WoW-Spell-Editor/HEAD/SpellGUIV2/Costura64/SQLite.Interop.dll -------------------------------------------------------------------------------- /SpellGUIV2/Costura64/StormLib.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoneharry/WoW-Spell-Editor/HEAD/SpellGUIV2/Costura64/StormLib.dll -------------------------------------------------------------------------------- /SpellGUIV2/FodyWeavers.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoneharry/WoW-Spell-Editor/HEAD/SpellGUIV2/FodyWeavers.xml -------------------------------------------------------------------------------- /SpellGUIV2/ImportExportWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoneharry/WoW-Spell-Editor/HEAD/SpellGUIV2/ImportExportWindow.xaml -------------------------------------------------------------------------------- /SpellGUIV2/ImportExportWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoneharry/WoW-Spell-Editor/HEAD/SpellGUIV2/ImportExportWindow.xaml.cs -------------------------------------------------------------------------------- /SpellGUIV2/LogBookWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoneharry/WoW-Spell-Editor/HEAD/SpellGUIV2/LogBookWindow.xaml -------------------------------------------------------------------------------- /SpellGUIV2/LogBookWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoneharry/WoW-Spell-Editor/HEAD/SpellGUIV2/LogBookWindow.xaml.cs -------------------------------------------------------------------------------- /SpellGUIV2/MainWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoneharry/WoW-Spell-Editor/HEAD/SpellGUIV2/MainWindow.xaml -------------------------------------------------------------------------------- /SpellGUIV2/MainWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoneharry/WoW-Spell-Editor/HEAD/SpellGUIV2/MainWindow.xaml.cs -------------------------------------------------------------------------------- /SpellGUIV2/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoneharry/WoW-Spell-Editor/HEAD/SpellGUIV2/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /SpellGUIV2/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoneharry/WoW-Spell-Editor/HEAD/SpellGUIV2/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /SpellGUIV2/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoneharry/WoW-Spell-Editor/HEAD/SpellGUIV2/Properties/Resources.resx -------------------------------------------------------------------------------- /SpellGUIV2/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoneharry/WoW-Spell-Editor/HEAD/SpellGUIV2/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /SpellGUIV2/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoneharry/WoW-Spell-Editor/HEAD/SpellGUIV2/Properties/Settings.settings -------------------------------------------------------------------------------- /SpellGUIV2/Resources/Entypo-license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoneharry/WoW-Spell-Editor/HEAD/SpellGUIV2/Resources/Entypo-license.txt -------------------------------------------------------------------------------- /SpellGUIV2/Resources/Entypo.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoneharry/WoW-Spell-Editor/HEAD/SpellGUIV2/Resources/Entypo.ttf -------------------------------------------------------------------------------- /SpellGUIV2/Resources/Icons.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoneharry/WoW-Spell-Editor/HEAD/SpellGUIV2/Resources/Icons.xaml -------------------------------------------------------------------------------- /SpellGUIV2/Resources/IconsNonShared.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoneharry/WoW-Spell-Editor/HEAD/SpellGUIV2/Resources/IconsNonShared.xaml -------------------------------------------------------------------------------- /SpellGUIV2/Resources/MahApps.Metro.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoneharry/WoW-Spell-Editor/HEAD/SpellGUIV2/Resources/MahApps.Metro.dll -------------------------------------------------------------------------------- /SpellGUIV2/Resources/MahApps.Metro.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoneharry/WoW-Spell-Editor/HEAD/SpellGUIV2/Resources/MahApps.Metro.xml -------------------------------------------------------------------------------- /SpellGUIV2/Resources/SereniaBLPLib.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoneharry/WoW-Spell-Editor/HEAD/SpellGUIV2/Resources/SereniaBLPLib.dll -------------------------------------------------------------------------------- /SpellGUIV2/Resources/System.Windows.Interactivity.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoneharry/WoW-Spell-Editor/HEAD/SpellGUIV2/Resources/System.Windows.Interactivity.dll -------------------------------------------------------------------------------- /SpellGUIV2/Resources/WindowsIcons-license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoneharry/WoW-Spell-Editor/HEAD/SpellGUIV2/Resources/WindowsIcons-license.txt -------------------------------------------------------------------------------- /SpellGUIV2/Resources/icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoneharry/WoW-Spell-Editor/HEAD/SpellGUIV2/Resources/icon.ico -------------------------------------------------------------------------------- /SpellGUIV2/Sources/BLP/BlpManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoneharry/WoW-Spell-Editor/HEAD/SpellGUIV2/Sources/BLP/BlpManager.cs -------------------------------------------------------------------------------- /SpellGUIV2/Sources/Binding/Binding.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoneharry/WoW-Spell-Editor/HEAD/SpellGUIV2/Sources/Binding/Binding.cs -------------------------------------------------------------------------------- /SpellGUIV2/Sources/Binding/BindingEntry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoneharry/WoW-Spell-Editor/HEAD/SpellGUIV2/Sources/Binding/BindingEntry.cs -------------------------------------------------------------------------------- /SpellGUIV2/Sources/Binding/BindingManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoneharry/WoW-Spell-Editor/HEAD/SpellGUIV2/Sources/Binding/BindingManager.cs -------------------------------------------------------------------------------- /SpellGUIV2/Sources/Binding/BindingType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoneharry/WoW-Spell-Editor/HEAD/SpellGUIV2/Sources/Binding/BindingType.cs -------------------------------------------------------------------------------- /SpellGUIV2/Sources/Config/Config.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoneharry/WoW-Spell-Editor/HEAD/SpellGUIV2/Sources/Config/Config.cs -------------------------------------------------------------------------------- /SpellGUIV2/Sources/Constants/Locale.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoneharry/WoW-Spell-Editor/HEAD/SpellGUIV2/Sources/Constants/Locale.cs -------------------------------------------------------------------------------- /SpellGUIV2/Sources/Constants/SpellVisualKitModelAttach.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoneharry/WoW-Spell-Editor/HEAD/SpellGUIV2/Sources/Constants/SpellVisualKitModelAttach.cs -------------------------------------------------------------------------------- /SpellGUIV2/Sources/Constants/Targets.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoneharry/WoW-Spell-Editor/HEAD/SpellGUIV2/Sources/Constants/Targets.cs -------------------------------------------------------------------------------- /SpellGUIV2/Sources/Constants/TextFlags.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoneharry/WoW-Spell-Editor/HEAD/SpellGUIV2/Sources/Constants/TextFlags.cs -------------------------------------------------------------------------------- /SpellGUIV2/Sources/Controls/Common/AbstractListEntry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoneharry/WoW-Spell-Editor/HEAD/SpellGUIV2/Sources/Controls/Common/AbstractListEntry.cs -------------------------------------------------------------------------------- /SpellGUIV2/Sources/Controls/Common/FilteredComboBox.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoneharry/WoW-Spell-Editor/HEAD/SpellGUIV2/Sources/Controls/Common/FilteredComboBox.cs -------------------------------------------------------------------------------- /SpellGUIV2/Sources/Controls/Common/FriendlyLabel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoneharry/WoW-Spell-Editor/HEAD/SpellGUIV2/Sources/Controls/Common/FriendlyLabel.cs -------------------------------------------------------------------------------- /SpellGUIV2/Sources/Controls/Common/IListEntry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoneharry/WoW-Spell-Editor/HEAD/SpellGUIV2/Sources/Controls/Common/IListEntry.cs -------------------------------------------------------------------------------- /SpellGUIV2/Sources/Controls/Common/ListContextMenu.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoneharry/WoW-Spell-Editor/HEAD/SpellGUIV2/Sources/Controls/Common/ListContextMenu.cs -------------------------------------------------------------------------------- /SpellGUIV2/Sources/Controls/Common/SyntaxHighlightBox.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoneharry/WoW-Spell-Editor/HEAD/SpellGUIV2/Sources/Controls/Common/SyntaxHighlightBox.cs -------------------------------------------------------------------------------- /SpellGUIV2/Sources/Controls/Common/ThreadSafeCheckBox.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoneharry/WoW-Spell-Editor/HEAD/SpellGUIV2/Sources/Controls/Common/ThreadSafeCheckBox.cs -------------------------------------------------------------------------------- /SpellGUIV2/Sources/Controls/Common/ThreadSafeComboBox.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoneharry/WoW-Spell-Editor/HEAD/SpellGUIV2/Sources/Controls/Common/ThreadSafeComboBox.cs -------------------------------------------------------------------------------- /SpellGUIV2/Sources/Controls/Common/ThreadSafeTextBox.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoneharry/WoW-Spell-Editor/HEAD/SpellGUIV2/Sources/Controls/Common/ThreadSafeTextBox.cs -------------------------------------------------------------------------------- /SpellGUIV2/Sources/Controls/DBC/DBCBoxContainer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoneharry/WoW-Spell-Editor/HEAD/SpellGUIV2/Sources/Controls/DBC/DBCBoxContainer.cs -------------------------------------------------------------------------------- /SpellGUIV2/Sources/Controls/DBC/IBoxContentProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoneharry/WoW-Spell-Editor/HEAD/SpellGUIV2/Sources/Controls/DBC/IBoxContentProvider.cs -------------------------------------------------------------------------------- /SpellGUIV2/Sources/Controls/SpellSelectList/PinIconConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoneharry/WoW-Spell-Editor/HEAD/SpellGUIV2/Sources/Controls/SpellSelectList/PinIconConverter.cs -------------------------------------------------------------------------------- /SpellGUIV2/Sources/Controls/SpellSelectList/RelayCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoneharry/WoW-Spell-Editor/HEAD/SpellGUIV2/Sources/Controls/SpellSelectList/RelayCommand.cs -------------------------------------------------------------------------------- /SpellGUIV2/Sources/Controls/SpellSelectList/SpellLogRecord.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoneharry/WoW-Spell-Editor/HEAD/SpellGUIV2/Sources/Controls/SpellSelectList/SpellLogRecord.cs -------------------------------------------------------------------------------- /SpellGUIV2/Sources/Controls/SpellSelectList/SpellSelectionEntry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoneharry/WoW-Spell-Editor/HEAD/SpellGUIV2/Sources/Controls/SpellSelectList/SpellSelectionEntry.cs -------------------------------------------------------------------------------- /SpellGUIV2/Sources/Controls/SpellSelectList/SpellSelectionList.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoneharry/WoW-Spell-Editor/HEAD/SpellGUIV2/Sources/Controls/SpellSelectList/SpellSelectionList.cs -------------------------------------------------------------------------------- /SpellGUIV2/Sources/Controls/Visual/VisualEffectListEntry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoneharry/WoW-Spell-Editor/HEAD/SpellGUIV2/Sources/Controls/Visual/VisualEffectListEntry.cs -------------------------------------------------------------------------------- /SpellGUIV2/Sources/Controls/Visual/VisualKitListEntry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoneharry/WoW-Spell-Editor/HEAD/SpellGUIV2/Sources/Controls/Visual/VisualKitListEntry.cs -------------------------------------------------------------------------------- /SpellGUIV2/Sources/Controls/Visual/VisualMissileSelectMenuItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoneharry/WoW-Spell-Editor/HEAD/SpellGUIV2/Sources/Controls/Visual/VisualMissileSelectMenuItem.cs -------------------------------------------------------------------------------- /SpellGUIV2/Sources/Controls/Visual/VisualPasteListEntry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoneharry/WoW-Spell-Editor/HEAD/SpellGUIV2/Sources/Controls/Visual/VisualPasteListEntry.cs -------------------------------------------------------------------------------- /SpellGUIV2/Sources/DBC/AbstractDBC.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoneharry/WoW-Spell-Editor/HEAD/SpellGUIV2/Sources/DBC/AbstractDBC.cs -------------------------------------------------------------------------------- /SpellGUIV2/Sources/DBC/AnimationData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoneharry/WoW-Spell-Editor/HEAD/SpellGUIV2/Sources/DBC/AnimationData.cs -------------------------------------------------------------------------------- /SpellGUIV2/Sources/DBC/AreaGroup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoneharry/WoW-Spell-Editor/HEAD/SpellGUIV2/Sources/DBC/AreaGroup.cs -------------------------------------------------------------------------------- /SpellGUIV2/Sources/DBC/AreaTable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoneharry/WoW-Spell-Editor/HEAD/SpellGUIV2/Sources/DBC/AreaTable.cs -------------------------------------------------------------------------------- /SpellGUIV2/Sources/DBC/DBCBodyToSerialize.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoneharry/WoW-Spell-Editor/HEAD/SpellGUIV2/Sources/DBC/DBCBodyToSerialize.cs -------------------------------------------------------------------------------- /SpellGUIV2/Sources/DBC/DBCManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoneharry/WoW-Spell-Editor/HEAD/SpellGUIV2/Sources/DBC/DBCManager.cs -------------------------------------------------------------------------------- /SpellGUIV2/Sources/DBC/DBCReader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoneharry/WoW-Spell-Editor/HEAD/SpellGUIV2/Sources/DBC/DBCReader.cs -------------------------------------------------------------------------------- /SpellGUIV2/Sources/DBC/GenericDbc.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoneharry/WoW-Spell-Editor/HEAD/SpellGUIV2/Sources/DBC/GenericDbc.cs -------------------------------------------------------------------------------- /SpellGUIV2/Sources/DBC/IGraphicUserInterfaceDBC.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoneharry/WoW-Spell-Editor/HEAD/SpellGUIV2/Sources/DBC/IGraphicUserInterfaceDBC.cs -------------------------------------------------------------------------------- /SpellGUIV2/Sources/DBC/ItemClass.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoneharry/WoW-Spell-Editor/HEAD/SpellGUIV2/Sources/DBC/ItemClass.cs -------------------------------------------------------------------------------- /SpellGUIV2/Sources/DBC/ItemSubClass.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoneharry/WoW-Spell-Editor/HEAD/SpellGUIV2/Sources/DBC/ItemSubClass.cs -------------------------------------------------------------------------------- /SpellGUIV2/Sources/DBC/MutableGenericDbc.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoneharry/WoW-Spell-Editor/HEAD/SpellGUIV2/Sources/DBC/MutableGenericDbc.cs -------------------------------------------------------------------------------- /SpellGUIV2/Sources/DBC/SpellCastTimes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoneharry/WoW-Spell-Editor/HEAD/SpellGUIV2/Sources/DBC/SpellCastTimes.cs -------------------------------------------------------------------------------- /SpellGUIV2/Sources/DBC/SpellCategory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoneharry/WoW-Spell-Editor/HEAD/SpellGUIV2/Sources/DBC/SpellCategory.cs -------------------------------------------------------------------------------- /SpellGUIV2/Sources/DBC/SpellDBC.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoneharry/WoW-Spell-Editor/HEAD/SpellGUIV2/Sources/DBC/SpellDBC.cs -------------------------------------------------------------------------------- /SpellGUIV2/Sources/DBC/SpellDescriptionVariables.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoneharry/WoW-Spell-Editor/HEAD/SpellGUIV2/Sources/DBC/SpellDescriptionVariables.cs -------------------------------------------------------------------------------- /SpellGUIV2/Sources/DBC/SpellDifficulty.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoneharry/WoW-Spell-Editor/HEAD/SpellGUIV2/Sources/DBC/SpellDifficulty.cs -------------------------------------------------------------------------------- /SpellGUIV2/Sources/DBC/SpellDispelType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoneharry/WoW-Spell-Editor/HEAD/SpellGUIV2/Sources/DBC/SpellDispelType.cs -------------------------------------------------------------------------------- /SpellGUIV2/Sources/DBC/SpellDuration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoneharry/WoW-Spell-Editor/HEAD/SpellGUIV2/Sources/DBC/SpellDuration.cs -------------------------------------------------------------------------------- /SpellGUIV2/Sources/DBC/SpellFocusObject.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoneharry/WoW-Spell-Editor/HEAD/SpellGUIV2/Sources/DBC/SpellFocusObject.cs -------------------------------------------------------------------------------- /SpellGUIV2/Sources/DBC/SpellIconDBC.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoneharry/WoW-Spell-Editor/HEAD/SpellGUIV2/Sources/DBC/SpellIconDBC.cs -------------------------------------------------------------------------------- /SpellGUIV2/Sources/DBC/SpellMechanic.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoneharry/WoW-Spell-Editor/HEAD/SpellGUIV2/Sources/DBC/SpellMechanic.cs -------------------------------------------------------------------------------- /SpellGUIV2/Sources/DBC/SpellRadius.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoneharry/WoW-Spell-Editor/HEAD/SpellGUIV2/Sources/DBC/SpellRadius.cs -------------------------------------------------------------------------------- /SpellGUIV2/Sources/DBC/SpellRange.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoneharry/WoW-Spell-Editor/HEAD/SpellGUIV2/Sources/DBC/SpellRange.cs -------------------------------------------------------------------------------- /SpellGUIV2/Sources/DBC/SpellRuneCost.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoneharry/WoW-Spell-Editor/HEAD/SpellGUIV2/Sources/DBC/SpellRuneCost.cs -------------------------------------------------------------------------------- /SpellGUIV2/Sources/DBC/TotemCategory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoneharry/WoW-Spell-Editor/HEAD/SpellGUIV2/Sources/DBC/TotemCategory.cs -------------------------------------------------------------------------------- /SpellGUIV2/Sources/Database/AdapterFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoneharry/WoW-Spell-Editor/HEAD/SpellGUIV2/Sources/Database/AdapterFactory.cs -------------------------------------------------------------------------------- /SpellGUIV2/Sources/Database/CsvFileStorage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoneharry/WoW-Spell-Editor/HEAD/SpellGUIV2/Sources/Database/CsvFileStorage.cs -------------------------------------------------------------------------------- /SpellGUIV2/Sources/Database/DbcFileStorage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoneharry/WoW-Spell-Editor/HEAD/SpellGUIV2/Sources/Database/DbcFileStorage.cs -------------------------------------------------------------------------------- /SpellGUIV2/Sources/Database/IDatabaseAdapter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoneharry/WoW-Spell-Editor/HEAD/SpellGUIV2/Sources/Database/IDatabaseAdapter.cs -------------------------------------------------------------------------------- /SpellGUIV2/Sources/Database/ImportExportType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoneharry/WoW-Spell-Editor/HEAD/SpellGUIV2/Sources/Database/ImportExportType.cs -------------------------------------------------------------------------------- /SpellGUIV2/Sources/Database/MySQL.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoneharry/WoW-Spell-Editor/HEAD/SpellGUIV2/Sources/Database/MySQL.cs -------------------------------------------------------------------------------- /SpellGUIV2/Sources/Database/SQLite.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoneharry/WoW-Spell-Editor/HEAD/SpellGUIV2/Sources/Database/SQLite.cs -------------------------------------------------------------------------------- /SpellGUIV2/Sources/Database/SqlFileStorage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoneharry/WoW-Spell-Editor/HEAD/SpellGUIV2/Sources/Database/SqlFileStorage.cs -------------------------------------------------------------------------------- /SpellGUIV2/Sources/Database/StorageAdapter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoneharry/WoW-Spell-Editor/HEAD/SpellGUIV2/Sources/Database/StorageAdapter.cs -------------------------------------------------------------------------------- /SpellGUIV2/Sources/Database/StorageFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoneharry/WoW-Spell-Editor/HEAD/SpellGUIV2/Sources/Database/StorageFactory.cs -------------------------------------------------------------------------------- /SpellGUIV2/Sources/Locale/LocaleManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoneharry/WoW-Spell-Editor/HEAD/SpellGUIV2/Sources/Locale/LocaleManager.cs -------------------------------------------------------------------------------- /SpellGUIV2/Sources/Tools/MPQ/MpqExport.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoneharry/WoW-Spell-Editor/HEAD/SpellGUIV2/Sources/Tools/MPQ/MpqExport.cs -------------------------------------------------------------------------------- /SpellGUIV2/Sources/Tools/SpellStringTools/SpellStringParser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoneharry/WoW-Spell-Editor/HEAD/SpellGUIV2/Sources/Tools/SpellStringTools/SpellStringParser.cs -------------------------------------------------------------------------------- /SpellGUIV2/Sources/Tools/SpellStringTools/SpellStringReferenceResolver.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoneharry/WoW-Spell-Editor/HEAD/SpellGUIV2/Sources/Tools/SpellStringTools/SpellStringReferenceResolver.cs -------------------------------------------------------------------------------- /SpellGUIV2/Sources/Tools/SpellStringTools/Token.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoneharry/WoW-Spell-Editor/HEAD/SpellGUIV2/Sources/Tools/SpellStringTools/Token.cs -------------------------------------------------------------------------------- /SpellGUIV2/Sources/Tools/SpellStringTools/TokenType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoneharry/WoW-Spell-Editor/HEAD/SpellGUIV2/Sources/Tools/SpellStringTools/TokenType.cs -------------------------------------------------------------------------------- /SpellGUIV2/Sources/Tools/SpellStringTools/spellFamilyClassMaskParser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoneharry/WoW-Spell-Editor/HEAD/SpellGUIV2/Sources/Tools/SpellStringTools/spellFamilyClassMaskParser.cs -------------------------------------------------------------------------------- /SpellGUIV2/Sources/Tools/VisualTools/VisualController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoneharry/WoW-Spell-Editor/HEAD/SpellGUIV2/Sources/Tools/VisualTools/VisualController.cs -------------------------------------------------------------------------------- /SpellGUIV2/Sources/Tools/VisualTools/VisualMapBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoneharry/WoW-Spell-Editor/HEAD/SpellGUIV2/Sources/Tools/VisualTools/VisualMapBuilder.cs -------------------------------------------------------------------------------- /SpellGUIV2/Sources/VersionControl/WoWVersion.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoneharry/WoW-Spell-Editor/HEAD/SpellGUIV2/Sources/VersionControl/WoWVersion.cs -------------------------------------------------------------------------------- /SpellGUIV2/Sources/VersionControl/WoWVersionManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoneharry/WoW-Spell-Editor/HEAD/SpellGUIV2/Sources/VersionControl/WoWVersionManager.cs -------------------------------------------------------------------------------- /SpellGUIV2/SpellEditor.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoneharry/WoW-Spell-Editor/HEAD/SpellGUIV2/SpellEditor.csproj -------------------------------------------------------------------------------- /SpellGUIV2/icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoneharry/WoW-Spell-Editor/HEAD/SpellGUIV2/icon.ico -------------------------------------------------------------------------------- /SpellGUIV2/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoneharry/WoW-Spell-Editor/HEAD/SpellGUIV2/packages.config --------------------------------------------------------------------------------