├── .gitignore ├── .nuget ├── NuGet.Config ├── NuGet.exe └── NuGet.targets ├── README.md ├── WowHeadParser.VC.VC.opendb ├── WowHeadParser.VC.db ├── WowHeadParser.sln └── WowHeadParser ├── App.config ├── Classes ├── Range.cs ├── Tools.cs ├── WowheadWebclient.cs └── Zone.cs ├── Entities ├── BlackMarket.cs ├── Creature.cs ├── Entity.cs ├── Gameobject.cs ├── Item.cs ├── Quest.cs ├── Zone.cs └── ZoneEntity.cs ├── MainWindow.Designer.cs ├── MainWindow.cs ├── MainWindow.resx ├── Newtonsoft.Json.dll ├── Newtonsoft.Json.xml ├── Program.cs ├── Properties ├── AssemblyInfo.cs ├── Resources.Designer.cs ├── Resources.resx ├── Settings.Designer.cs └── Settings.settings ├── Ressources ├── CurrencyTypes.db2.csv ├── ItemExtendedCost.db2.csv ├── NpcTotalHp.txt ├── NpcTotalHpExp1.txt ├── NpcTotalHpExp2.txt ├── NpcTotalHpExp3.txt ├── NpcTotalHpExp4.txt ├── NpcTotalHpExp5.txt ├── NpcTotalHpExp6.txt └── PlayerCondition.db2.csv ├── SqlBuilder ├── SqlBuilder.cs ├── SqlBuilderException.cs └── SqlItem.cs ├── WowHeadParser.csproj └── packages.config /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AshamaneProject/WowheadParser/HEAD/.gitignore -------------------------------------------------------------------------------- /.nuget/NuGet.Config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AshamaneProject/WowheadParser/HEAD/.nuget/NuGet.Config -------------------------------------------------------------------------------- /.nuget/NuGet.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AshamaneProject/WowheadParser/HEAD/.nuget/NuGet.exe -------------------------------------------------------------------------------- /.nuget/NuGet.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AshamaneProject/WowheadParser/HEAD/.nuget/NuGet.targets -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # WowpacketParser for AshamaneProject 2 | -------------------------------------------------------------------------------- /WowHeadParser.VC.VC.opendb: -------------------------------------------------------------------------------- 1 | TheltTHELT-PC -------------------------------------------------------------------------------- /WowHeadParser.VC.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AshamaneProject/WowheadParser/HEAD/WowHeadParser.VC.db -------------------------------------------------------------------------------- /WowHeadParser.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AshamaneProject/WowheadParser/HEAD/WowHeadParser.sln -------------------------------------------------------------------------------- /WowHeadParser/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AshamaneProject/WowheadParser/HEAD/WowHeadParser/App.config -------------------------------------------------------------------------------- /WowHeadParser/Classes/Range.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AshamaneProject/WowheadParser/HEAD/WowHeadParser/Classes/Range.cs -------------------------------------------------------------------------------- /WowHeadParser/Classes/Tools.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AshamaneProject/WowheadParser/HEAD/WowHeadParser/Classes/Tools.cs -------------------------------------------------------------------------------- /WowHeadParser/Classes/WowheadWebclient.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AshamaneProject/WowheadParser/HEAD/WowHeadParser/Classes/WowheadWebclient.cs -------------------------------------------------------------------------------- /WowHeadParser/Classes/Zone.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AshamaneProject/WowheadParser/HEAD/WowHeadParser/Classes/Zone.cs -------------------------------------------------------------------------------- /WowHeadParser/Entities/BlackMarket.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AshamaneProject/WowheadParser/HEAD/WowHeadParser/Entities/BlackMarket.cs -------------------------------------------------------------------------------- /WowHeadParser/Entities/Creature.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AshamaneProject/WowheadParser/HEAD/WowHeadParser/Entities/Creature.cs -------------------------------------------------------------------------------- /WowHeadParser/Entities/Entity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AshamaneProject/WowheadParser/HEAD/WowHeadParser/Entities/Entity.cs -------------------------------------------------------------------------------- /WowHeadParser/Entities/Gameobject.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AshamaneProject/WowheadParser/HEAD/WowHeadParser/Entities/Gameobject.cs -------------------------------------------------------------------------------- /WowHeadParser/Entities/Item.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AshamaneProject/WowheadParser/HEAD/WowHeadParser/Entities/Item.cs -------------------------------------------------------------------------------- /WowHeadParser/Entities/Quest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AshamaneProject/WowheadParser/HEAD/WowHeadParser/Entities/Quest.cs -------------------------------------------------------------------------------- /WowHeadParser/Entities/Zone.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AshamaneProject/WowheadParser/HEAD/WowHeadParser/Entities/Zone.cs -------------------------------------------------------------------------------- /WowHeadParser/Entities/ZoneEntity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AshamaneProject/WowheadParser/HEAD/WowHeadParser/Entities/ZoneEntity.cs -------------------------------------------------------------------------------- /WowHeadParser/MainWindow.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AshamaneProject/WowheadParser/HEAD/WowHeadParser/MainWindow.Designer.cs -------------------------------------------------------------------------------- /WowHeadParser/MainWindow.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AshamaneProject/WowheadParser/HEAD/WowHeadParser/MainWindow.cs -------------------------------------------------------------------------------- /WowHeadParser/MainWindow.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AshamaneProject/WowheadParser/HEAD/WowHeadParser/MainWindow.resx -------------------------------------------------------------------------------- /WowHeadParser/Newtonsoft.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AshamaneProject/WowheadParser/HEAD/WowHeadParser/Newtonsoft.Json.dll -------------------------------------------------------------------------------- /WowHeadParser/Newtonsoft.Json.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AshamaneProject/WowheadParser/HEAD/WowHeadParser/Newtonsoft.Json.xml -------------------------------------------------------------------------------- /WowHeadParser/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AshamaneProject/WowheadParser/HEAD/WowHeadParser/Program.cs -------------------------------------------------------------------------------- /WowHeadParser/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AshamaneProject/WowheadParser/HEAD/WowHeadParser/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /WowHeadParser/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AshamaneProject/WowheadParser/HEAD/WowHeadParser/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /WowHeadParser/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AshamaneProject/WowheadParser/HEAD/WowHeadParser/Properties/Resources.resx -------------------------------------------------------------------------------- /WowHeadParser/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AshamaneProject/WowheadParser/HEAD/WowHeadParser/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /WowHeadParser/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AshamaneProject/WowheadParser/HEAD/WowHeadParser/Properties/Settings.settings -------------------------------------------------------------------------------- /WowHeadParser/Ressources/CurrencyTypes.db2.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AshamaneProject/WowheadParser/HEAD/WowHeadParser/Ressources/CurrencyTypes.db2.csv -------------------------------------------------------------------------------- /WowHeadParser/Ressources/ItemExtendedCost.db2.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AshamaneProject/WowheadParser/HEAD/WowHeadParser/Ressources/ItemExtendedCost.db2.csv -------------------------------------------------------------------------------- /WowHeadParser/Ressources/NpcTotalHp.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AshamaneProject/WowheadParser/HEAD/WowHeadParser/Ressources/NpcTotalHp.txt -------------------------------------------------------------------------------- /WowHeadParser/Ressources/NpcTotalHpExp1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AshamaneProject/WowheadParser/HEAD/WowHeadParser/Ressources/NpcTotalHpExp1.txt -------------------------------------------------------------------------------- /WowHeadParser/Ressources/NpcTotalHpExp2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AshamaneProject/WowheadParser/HEAD/WowHeadParser/Ressources/NpcTotalHpExp2.txt -------------------------------------------------------------------------------- /WowHeadParser/Ressources/NpcTotalHpExp3.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AshamaneProject/WowheadParser/HEAD/WowHeadParser/Ressources/NpcTotalHpExp3.txt -------------------------------------------------------------------------------- /WowHeadParser/Ressources/NpcTotalHpExp4.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AshamaneProject/WowheadParser/HEAD/WowHeadParser/Ressources/NpcTotalHpExp4.txt -------------------------------------------------------------------------------- /WowHeadParser/Ressources/NpcTotalHpExp5.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AshamaneProject/WowheadParser/HEAD/WowHeadParser/Ressources/NpcTotalHpExp5.txt -------------------------------------------------------------------------------- /WowHeadParser/Ressources/NpcTotalHpExp6.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AshamaneProject/WowheadParser/HEAD/WowHeadParser/Ressources/NpcTotalHpExp6.txt -------------------------------------------------------------------------------- /WowHeadParser/Ressources/PlayerCondition.db2.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AshamaneProject/WowheadParser/HEAD/WowHeadParser/Ressources/PlayerCondition.db2.csv -------------------------------------------------------------------------------- /WowHeadParser/SqlBuilder/SqlBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AshamaneProject/WowheadParser/HEAD/WowHeadParser/SqlBuilder/SqlBuilder.cs -------------------------------------------------------------------------------- /WowHeadParser/SqlBuilder/SqlBuilderException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AshamaneProject/WowheadParser/HEAD/WowHeadParser/SqlBuilder/SqlBuilderException.cs -------------------------------------------------------------------------------- /WowHeadParser/SqlBuilder/SqlItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AshamaneProject/WowheadParser/HEAD/WowHeadParser/SqlBuilder/SqlItem.cs -------------------------------------------------------------------------------- /WowHeadParser/WowHeadParser.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AshamaneProject/WowheadParser/HEAD/WowHeadParser/WowHeadParser.csproj -------------------------------------------------------------------------------- /WowHeadParser/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AshamaneProject/WowheadParser/HEAD/WowHeadParser/packages.config --------------------------------------------------------------------------------